/* ═══════════════════════════════════════════════════════════
   KING SELLER — Public Website Design System
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #030508;
  --bg-elevated: #0c1018;
  --bg-card: rgba(14, 18, 28, 0.72);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border: rgba(148, 163, 184, 0.1);
  --border-hover: rgba(148, 163, 184, 0.22);
  --text: #f1f5f9;
  --text-display: #fafbfc;
  --text-heading: #e8edf5;
  --text-secondary: #a8b4c8;
  --text-muted: #6b7a90;
  --accent: #8b7dff;
  --accent-2: #5ec8f8;
  --gold: #e8c468;
  --gold-light: #f5dfa0;
  --gold-2: #c9a227;
  --gold-deep: #a67c1a;
  --success: #34d399;
  --gradient-brand: linear-gradient(135deg, #9d8fff 0%, #5ec8f8 45%, #e8c468 100%);
  --gradient-gold: linear-gradient(135deg, #f5dfa0 0%, #e8c468 45%, #c9a227 100%);
  --gradient-heading: linear-gradient(180deg, #ffffff 0%, #dce3ef 55%, #b8c4d8 100%);
  --gradient-gold-text: linear-gradient(135deg, #fff8e7 0%, #f5dfa0 35%, #e8c468 70%, #c9a227 100%);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px rgba(124, 108, 255, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-h: 72px;
  --container: min(1200px, 92vw);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% -10%, rgba(124, 108, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(56, 189, 248, 0.1), transparent 50%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(246, 196, 83, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { width: var(--container); margin-inline: auto; }

/* ─── Navbar ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top, 0);
  background: rgba(3, 5, 8, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 196, 104, 0.08);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
}

.site-nav::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 196, 104, 0.35) 50%, transparent);
  opacity: 0.6;
  pointer-events: none;
}

.site-nav.is-scrolled {
  background: rgba(3, 5, 8, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(232, 196, 104, 0.14);
}

.site-nav__inner {
  height: var(--nav-h);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-width: 0;
  z-index: 1002;
}

.site-logo--footer {
  margin-bottom: 0.25rem;
}

.site-logo__img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.2));
}

.site-logo__img--footer {
  width: 48px;
  height: 48px;
}

.site-logo__text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.site-nav__drawer-head {
  display: none;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.site-nav__link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.25s var(--ease-out);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--text);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  width: 100%;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: #0a0a0f !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(246, 196, 83, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(246, 196, 83, 0.4);
}

.btn-nav--wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.28);
}

.btn-nav--wa:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232, 196, 104, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  font-size: 1.15rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.nav-toggle:hover {
  background: rgba(232, 196, 104, 0.1);
  border-color: rgba(232, 196, 104, 0.35);
}

.nav-overlay {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

/* ─── Main ─── */
.site-main {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0a0a0f;
  box-shadow: 0 8px 28px rgba(246, 196, 83, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(246, 196, 83, 0.45);
}

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  color: #fff;
}

/* ─── Floating WhatsApp (beranda) ─── */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1.25rem, 4vw, 2rem);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float i {
  font-size: 1.6rem;
  line-height: 1;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.cta-strip .btn-wa {
  margin-top: 0;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ─── Premium typography ─── */
.heading-display {
  font-family: 'Syne', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-display);
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.heading-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.text-gold {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-soft {
  background: var(--gradient-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Section utilities ─── */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(232, 196, 104, 0.1), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(232, 196, 104, 0.28);
  margin-bottom: 1.35rem;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.08);
}

.section-label i {
  font-size: 0.62rem;
  color: var(--gold);
}

.section-title {
  font-family: 'Syne', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.14;
  margin-bottom: 1.1rem;
  color: var(--text-display);
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.section-title .title-accent,
.section-title em {
  font-style: normal;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.75rem, 6vw, 4.25rem);
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  margin: 1.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.section-header--left {
  text-align: left;
}

.section-header--left::after {
  margin-left: 0;
  margin-right: auto;
}

.section-header--left .section-desc {
  margin-inline: 0;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* legacy alias removed — use .text-gradient / .text-gold */

/* ─── Hero ─── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139, 125, 255, 0.12), rgba(232, 196, 104, 0.08));
  border: 1px solid rgba(232, 196, 104, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero__badge i {
  color: var(--gold);
  font-size: 0.7rem;
}

.hero__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.35rem, 6.2vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.35rem;
  color: var(--text-display);
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.hero__title-line {
  display: block;
  color: var(--text-display);
}

.hero__title-accent {
  display: block;
  margin-top: 0.15em;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 0.92em;
  letter-spacing: 0.02em;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-heading);
  margin-bottom: 1.25rem;
  font-weight: 500;
  line-height: 1.55;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero__subtitle strong {
  color: var(--gold-light);
  font-weight: 700;
}

.hero__desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero__panel {
  position: relative;
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}

.hero__panel-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  animation: floatY 6s ease-in-out infinite;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-box {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.stat-box:hover {
  border-color: rgba(124, 108, 255, 0.35);
  transform: translateY(-4px);
}

.stat-box__num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-box__label {
  font-size: 0.68rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
  font-weight: 700;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.hero__orb--1 {
  width: 280px;
  height: 280px;
  background: rgba(124, 108, 255, 0.25);
  top: -40px;
  right: -40px;
  animation: pulseOrb 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 200px;
  height: 200px;
  background: rgba(246, 196, 83, 0.15);
  bottom: -30px;
  left: -30px;
  animation: pulseOrb 10s ease-in-out infinite reverse;
}

/* ─── Features bento ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: linear-gradient(165deg, rgba(18, 22, 34, 0.92), rgba(10, 12, 20, 0.88));
  border: 1px solid rgba(232, 196, 104, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  backdrop-filter: blur(14px);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 196, 104, 0.28);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 162, 39, 0.06);
}

.feature-card:nth-child(1) { grid-column: span 1; }
.feature-card:nth-child(4) { grid-column: span 1; }

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.35rem;
  background: linear-gradient(135deg, rgba(232, 196, 104, 0.14), rgba(139, 125, 255, 0.1));
  color: var(--gold-light);
  border: 1px solid rgba(232, 196, 104, 0.22);
}

.feature-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  color: var(--text-display);
  line-height: 1.35;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── About + Promo ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(232, 196, 104, 0.06);
  border: 1px solid rgba(232, 196, 104, 0.18);
  color: var(--text-heading);
  letter-spacing: 0.02em;
}

.chip i { color: var(--gold); font-size: 0.75rem; }

/* Promo carousel — promo1.png & promo2.png */
.promo-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.promo-showcase__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.promo-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s var(--ease-out), transform 1.2s var(--ease-out);
}

.promo-showcase__img.is-active {
  opacity: 1;
  transform: scale(1);
}

.promo-showcase__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.promo-showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.promo-showcase__dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

.promo-showcase__glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,108,255,0.5), rgba(246,196,83,0.3), rgba(56,189,248,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlow 4s linear infinite;
}

/* ─── Testimonials ─── */
.rating-banner {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(246, 196, 83, 0.08), rgba(124, 108, 255, 0.06));
  border: 1px solid rgba(246, 196, 83, 0.2);
}

.rating-banner__score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rating-banner__stars {
  color: var(--gold);
  font-size: 1.15rem;
  margin: 0.55rem 0;
  letter-spacing: 0.2em;
}

.rating-banner__count {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(124, 108, 255, 0.12);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.1em;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-display);
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ─── CTA strip ─── */
.cta-strip {
  margin: 0 auto;
  max-width: var(--container);
  padding: clamp(2.75rem, 5vw, 3.75rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(139, 125, 255, 0.12), rgba(232, 196, 104, 0.06));
  border: 1px solid rgba(232, 196, 104, 0.22);
  text-align: center;
  box-shadow: 0 0 80px rgba(201, 162, 39, 0.08), var(--shadow-md);
}

.cta-strip__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-display);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.cta-strip__title .text-gold {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: italic;
}

.cta-strip__desc {
  color: var(--text-secondary);
  margin-bottom: 1.85rem;
  max-width: 520px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.75;
}

/* ─── Footer ─── */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem) calc(2rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, rgba(6, 8, 14, 0.4) 0%, rgba(4, 6, 10, 0.98) 100%);
}

.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  position: relative;
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 196, 104, 0.45) 30%, rgba(139, 125, 255, 0.35) 70%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.footer-brand__desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 340px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  margin-bottom: 1.35rem;
  font-weight: 700;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-contact {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.footer-contact--static {
  cursor: default;
}

.footer-contact__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(232, 196, 104, 0.15);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(232, 196, 104, 0.14);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
}

.social-row a:hover {
  background: var(--gradient-gold);
  color: #0a0a0f;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.25);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.08);
  color: #4ade80;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-bottom__wa:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
  color: #86efac;
}

/* ─── Download page ─── */
.page-download {
  padding: clamp(2.5rem, 6vw, 4rem) 0 5rem;
  position: relative;
}

.page-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 420px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.08), transparent 70%);
  pointer-events: none;
}

.page-download .container {
  position: relative;
  z-index: 1;
}

.page-download__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.85rem;
  color: var(--text-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}

.page-download__subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.75;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
}

.apps-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 1080px;
  margin: 0 auto;
}

.app-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(18, 22, 34, 0.95), rgba(8, 10, 16, 0.9));
  border: 1px solid rgba(232, 196, 104, 0.12);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,108,255,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.app-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 196, 83, 0.35);
  box-shadow: var(--shadow-md);
}

.app-card:hover::before { opacity: 1; }

.app-card__icon-wrap {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  flex: 1;
}

.app-card__icon {
  width: 100%;
  max-width: 180px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out);
}

.app-card:hover .app-card__icon { transform: scale(1.05) rotate(1deg); }

.app-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.4rem;
  color: var(--text-display);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.app-card__dev {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.app-card__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.app-card__stars { color: var(--gold); letter-spacing: 0.05em; }

.app-card__tag {
  display: block;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(246, 196, 83, 0.12);
  color: var(--gold);
  border: 1px solid rgba(246, 196, 83, 0.25);
}

.app-card__btn {
  display: block;
  text-align: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: auto;
  letter-spacing: 0.02em;
}

.app-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  background: rgba(232, 196, 104, 0.12);
  border: 1px solid rgba(232, 196, 104, 0.25);
}

/* ─── App detail page ─── */
.app-detail {
  padding: clamp(1.5rem, 4vw, 3rem) 0 5rem;
}

.app-detail__nav {
  margin-bottom: 2rem;
}

.app-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  transition: color 0.2s, border-color 0.2s;
}

.app-detail__back:hover {
  color: var(--gold-light);
  border-color: rgba(232, 196, 104, 0.3);
}

.app-detail__hero {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(18, 22, 34, 0.92), rgba(8, 10, 16, 0.88));
  border: 1px solid rgba(232, 196, 104, 0.14);
  box-shadow: var(--shadow-md), 0 0 60px rgba(201, 162, 39, 0.06);
}

.app-detail__media {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.app-detail__icon {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.app-detail__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-display);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.65rem;
}

.app-detail__publisher {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.app-detail__platform {
  display: inline-flex;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  background: rgba(232, 196, 104, 0.1);
  border: 1px solid rgba(232, 196, 104, 0.25);
  margin-bottom: 1.5rem;
}

.app-detail__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.app-detail__rating-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-detail__rating-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.app-detail__stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.app-detail__stat-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
}

.app-detail__download {
  min-width: 220px;
}

.app-detail__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .app-detail__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-detail__grid > .app-detail__panel:nth-child(1),
  .app-detail__grid > .app-detail__panel:nth-child(4) {
    grid-column: 1 / -1;
  }
}

.app-detail__head .section-label {
  margin-bottom: 0.85rem;
}

.app-detail__panel {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(14, 18, 28, 0.88), rgba(8, 10, 16, 0.85));
  border: 1px solid var(--border);
}

.app-detail__panel-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-display);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-detail__panel-title i {
  color: var(--gold);
  font-size: 0.95rem;
}

.app-detail__desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
}

.app-detail__features {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.app-detail__features li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

.app-detail__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-gold);
  box-shadow: 0 0 10px rgba(232, 196, 104, 0.4);
}

.app-detail__features strong {
  color: var(--text-heading);
  font-weight: 600;
}

.app-detail__req {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

.app-detail__req h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-detail__req ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.app-detail__req li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 1.1rem;
  position: relative;
}

.app-detail__req li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.app-detail__reviews {
  display: grid;
  gap: 1rem;
}

.app-detail__review {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border);
}

.app-detail__review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}

.app-detail__review-name {
  font-weight: 700;
  color: var(--text-display);
  font-size: 0.95rem;
}

.app-detail__review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.app-detail__review-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}

.app-detail__review-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}

.app-detail__review-helpful {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.app-detail__review-helpful i {
  color: #f87171;
  margin-right: 0.35rem;
}

/* ─── Auth (login) ─── */
.auth-page {
  min-height: calc(100vh - var(--nav-h) - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 4rem;
}

.auth-card {
  width: min(440px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 2.75rem);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.auth-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.45rem;
  color: var(--text-display);
  letter-spacing: -0.02em;
}

.auth-card__sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-field { margin-bottom: 1.25rem; }

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 108, 255, 0.15);
}

.auth-card .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Keyframes ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseOrb {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .site-nav__menu {
    gap: 1rem;
  }

  .site-nav__link {
    font-size: 0.85rem;
  }

  .btn-nav {
    padding: 0.58rem 1.1rem;
    font-size: 0.82rem;
  }

  .site-nav__actions .btn-nav--wa {
    display: none;
  }
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 900px) {
  .hero__grid,
  .about-grid { grid-template-columns: 1fr; }

  .hero__panel { order: -1; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  .site-logo__text {
    font-size: 0.88rem;
  }

  .nav-toggle { display: flex; }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(2, 4, 8, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    z-index: 999;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 90vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--nav-h) + env(safe-area-inset-top, 0) + 0.75rem) 1.5rem calc(2rem + env(safe-area-inset-bottom, 0));
    background: linear-gradient(180deg, rgba(10, 12, 20, 0.98) 0%, rgba(6, 8, 14, 0.99) 100%);
    border-left: 1px solid rgba(232, 196, 104, 0.12);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1001;
    overflow-y: auto;
  }

  .site-nav__links.is-open { transform: translateX(0); }

  .site-nav__drawer-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-bottom: 1.25rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }

  .site-nav__drawer-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
  }

  .site-nav__drawer-title {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-display);
  }

  .site-nav__drawer-sub {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-top: 0.15rem;
  }

  .site-nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__link {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    font-size: 1rem;
  }

  .site-nav__link::after {
    bottom: 0.85rem;
  }

  .site-nav__actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 0.5rem;
  }

  .site-nav__actions .btn-nav,
  .site-nav__actions .btn-nav--wa {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
  }

  .features-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .apps-showcase,
  .apps-grid { grid-template-columns: 1fr; max-width: 400px; }

  .app-detail__hero { grid-template-columns: 1fr; text-align: center; }
  .app-detail__platform { margin-inline: auto; }
  .app-detail__stats { justify-content: center; }
  .app-detail__download { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:last-child { grid-column: auto; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .apps-showcase,
  .apps-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .apps-showcase .app-card:last-child { grid-column: 1 / -1; max-width: 360px; margin-inline: auto; width: 100%; }
}

@media (max-width: 560px) {
  .site-nav .site-logo__text {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
  }

  .site-nav .site-logo__img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr; gap: 0.75rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .footer-grid {
    gap: 1.5rem;
  }

  .wa-float {
    right: max(1rem, env(safe-area-inset-right, 1rem));
    bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
