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

/* =====================================================================
   DESIGN TOKENS
===================================================================== */
:root {
  --bg:             #000;
  --gold:           #c9a84c;
  --gold-lt:        #f0d080;
  --gold-dk:        #8a5e10;
  --text:           #f4f1ec;
  --muted:          #7a7468;
  --green:          #22c55e;
  --wa:             #25d366;
  --surface:        rgba(11,11,11,.97);
  --surface-2:      rgba(8,8,8,.92);
  --r:              12px;
  --r-lg:           20px;
  --serif:          'Cormorant Garamond', serif;
  --sans:           'Manrope', sans-serif;
  --gold-grad:      linear-gradient(90deg,#8a5e10 0%,#f0d080 25%,#fffbe6 50%,#f0d080 75%,#8a5e10 100%);
  --gold-grad-tilt: linear-gradient(135deg,#f0d080 0%,#c9a84c 55%,#c08030 100%);
  --max-w:          1340px;
  --nav-h:          78px;
}

/* =====================================================================
   BASE
===================================================================== */
/* Scroll offset so fixed nav never hides anchor targets */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img, svg { max-width: 100%; height: auto; display: block; }
a        { color: inherit; text-decoration: none; }
button   { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Touch: removes 300ms tap delay on all interactive elements */
a,
button,
[role="button"],
summary,
.nav-cta,
.btn-gold,
.btn-whatsapp,
.btn-submit,
.faq-aside__btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Keyboard focus-visible ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* =====================================================================
   KEYFRAMES
===================================================================== */
@keyframes shimmer   { from{ background-position:200% center; } to{ background-position:-200% center; } }
@keyframes blink     { 0%,100%{opacity:1;} 50%{opacity:.25;} }
@keyframes slideUp   { from{transform:translateY(18px);opacity:0;} to{transform:translateY(0);opacity:1;} }
@keyframes float     { 0%,100%{transform:translateY(0);}  50%{transform:translateY(-12px);} }
@keyframes popIn     { from{transform:scale(0);opacity:0;}  to{transform:scale(1);opacity:1;} }
@keyframes waPulse   { from{transform:scale(1);opacity:1;}  to{transform:scale(1.65);opacity:0;} }
@keyframes ticker    { from{transform:translateX(0);}       to{transform:translateX(-50%);} }
@keyframes ctaPulse  {
  0%,100% { box-shadow:0 4px 22px rgba(201,168,76,.32),0 0 0 0   rgba(201,168,76,.30); }
  55%     { box-shadow:0 4px 30px rgba(201,168,76,.52),0 0 0 7px rgba(201,168,76, 0); }
}
@keyframes submitPulse {
  0%,100% { box-shadow:0 8px 28px rgba(201,168,76,.35),0 0 0 0   rgba(201,168,76,.28); }
  55%     { box-shadow:0 8px 36px rgba(201,168,76,.55),0 0 0 8px rgba(201,168,76, 0); }
}
@keyframes ringGold  { 0%{box-shadow:0 0 0 0 rgba(201,168,76,.60);} 70%{box-shadow:0 0 0 7px rgba(201,168,76,0);} 100%{box-shadow:0 0 0 0 rgba(201,168,76,0);} }
@keyframes ringGreen { 0%{box-shadow:0 0 0 0 rgba( 34,197,94,.65);} 70%{box-shadow:0 0 0 7px rgba( 34,197,94,0);} 100%{box-shadow:0 0 0 0 rgba( 34,197,94,0);} }

/* =====================================================================
   UTILITIES
===================================================================== */
.gold-text {
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2.8s linear infinite;
}
.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.link-gold { color:var(--gold-lt); transition:color .2s; }
.link-gold:hover { color:#fff; }

/* =====================================================================
   BACKGROUND GRID + RADIAL GLOW
===================================================================== */
.bg-decor { position:fixed; inset:0; z-index:0; pointer-events:none; }
.bg-decor::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(201,168,76,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.022) 1px, transparent 1px);
  background-size: 64px 64px;
}
.bg-decor::after {
  content:''; position:absolute;
  width:900px; height:900px; top:-320px; left:-280px;
  background: radial-gradient(circle, rgba(201,168,76,.055) 0%, transparent 62%);
}

/* =====================================================================
   LAYOUT CONTAINER
===================================================================== */
.container {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 52px;
}

/* =====================================================================
   SECTION CHROME
===================================================================== */
.section { padding-bottom: 80px; }

.eyebrow-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 11px;
}
.eyebrow-label::before {
  content: ''; flex-shrink: 0; height: 1px; width: 52px;
  background: rgba(201,168,76,.18);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 700; line-height: 1.08; letter-spacing: -.025em;
  color: #fff; margin-bottom: 48px;
}

/* =====================================================================
   NAV
===================================================================== */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--nav-h); padding: 0 42px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,7,7,.9);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: height .38s cubic-bezier(.4,0,.2,1),
              background .38s, border-color .38s, box-shadow .38s;
}
.site-nav.scrolled {
  height: 60px; background: rgba(4,4,4,.97);
  border-bottom-color: rgba(201,168,76,.18);
  box-shadow: 0 4px 48px rgba(0,0,0,.7), 0 1px 0 rgba(201,168,76,.1);
}

.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }

.nav-logo__icon {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden; padding: 3px;
  box-shadow:
    0 0 0 1.5px rgba(201,168,76,.35),
    0 4px 18px rgba(0,0,0,.55),
    0 0 28px rgba(201,168,76,.12);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
}
.nav-logo__icon img { width:100%; height:100%; border-radius:50%; object-fit:cover; display:block; }
.nav-logo:hover .nav-logo__icon {
  transform: rotate(-5deg) scale(1.08);
  box-shadow:
    0 0 0 2px rgba(201,168,76,.7),
    0 6px 24px rgba(0,0,0,.65),
    0 0 36px rgba(201,168,76,.3);
}

.nav-logo__name {
  font-family: var(--sans);
  font-size: 24px; font-weight: 900; letter-spacing: -.03em;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  filter: drop-shadow(0 0 12px rgba(201,168,76,.45));
  -webkit-text-stroke: 0.5px rgba(240,208,128,.25);
}

/* Nav CTA — min 44px touch target */
.nav-cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  padding: 0 28px; border-radius: 100px;
  background: var(--gold-grad); background-size: 200% auto;
  font-size: 12px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: #000; white-space: nowrap;
  animation: shimmer 3.2s linear infinite, ctaPulse 2.6s ease-in-out infinite;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
}
.nav-cta::before {
  content: ''; position: absolute;
  top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
  transform: skewX(-15deg); transition: left .5s;
}
.nav-cta:hover {
  transform: translateY(-2.5px) scale(1.05);
  animation-play-state: paused;
  box-shadow: 0 14px 44px rgba(201,168,76,.6);
}
.nav-cta:hover::before { left: 120%; }

/* =====================================================================
   TICKER
===================================================================== */
.ticker {
  position: relative; z-index: 10; margin-top: var(--nav-h);
  overflow: hidden; background: rgba(14,14,14,.95);
  border-bottom: 1px solid rgba(201,168,76,.1); padding: .55rem 0;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track {
  display: flex; gap: 3rem; width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker__item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; white-space: nowrap;
  color: rgba(240,208,128,.4);
}
.ticker__item::before {
  content: ''; flex-shrink: 0;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); opacity: .6;
}

/* =====================================================================
   HERO
===================================================================== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
  padding: 64px 52px 80px;
  max-width: var(--max-w); margin: 0 auto;
  position: relative; z-index: 1;
}

.hero__media {
  display: flex; flex-direction: column; align-items: center; position: relative;
}
.hero__media-heading { width:100%; text-align:center; padding:24px 16px 12px; }
.hero__media-heading h2 {
  font-family: var(--serif);
  font-size: clamp(20px,2.4vw,32px);
  font-weight: 700; line-height: 1.12; letter-spacing: -.025em; color: #fff;
}

.hero__img-wrap {
  position: relative; width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.hero__img {
  width: 100%; max-width: 500px; position: relative; z-index: 2;
  filter: brightness(1.04) contrast(1.02);
  animation: float 5s ease-in-out infinite;
}
.hero__img-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 340px; height: 60px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(201,168,76,.25), transparent 70%);
  filter: blur(18px);
}

/* Live badges */
.live-badge {
  background: var(--surface-2);
  border: 1px solid rgba(201,168,76,.32); border-radius: 16px;
  padding: 13px 16px 12px;
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 8px 32px rgba(0,0,0,.55), 0 1px 0 rgba(255,255,220,.06) inset;
  min-width: 170px; z-index: 10;
}
.live-badge--earnings {
  position: absolute; top: 20px; left: 8px;
  animation: slideUp .7s .4s ease both;
}
.live-badge--members {
  align-self: flex-start; margin: 10px 0 0 8px;
  animation: slideUp .7s .6s ease both;
}
.badge-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 900; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.badge-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.badge-dot--gold  { background:var(--gold);  animation:ringGold  1.9s ease-out infinite; }
.badge-dot--green { background:var(--green); animation:ringGreen 2.1s ease-out infinite; }

.badge-number {
  font-size: 26px; font-weight: 900; line-height: 1; display: inline-block;
  background: var(--gold-grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2.6s linear infinite;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), filter .18s;
}
.badge-number.pop {
  transform: scale(1.06);
  filter: drop-shadow(0 0 8px rgba(201,168,76,.65));
}
.badge-sparkline { display:block; margin:7px 0 5px; width:138px; height:34px; overflow:visible; }
.badge-sub { font-size:9px; color:var(--muted); font-weight:700; min-height:12px; transition:color .3s; }
.badge-sub--green { color:var(--green); }
.badge-progress { margin:7px 0 5px; width:138px; height:4px; background:rgba(255,255,255,.04); border-radius:100px; overflow:hidden; }
.badge-progress__bar {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg,var(--green),#4ade80);
  box-shadow: 0 0 6px rgba(34,197,94,.5);
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.badge-progress__labels {
  display: flex; justify-content: space-between;
  font-size: 8.5px; font-weight: 700; letter-spacing: .04em;
  color: rgba(122,116,104,.55); margin-top: 3px;
}

/* Hero content column */
.hero__content { display:flex; flex-direction:column; padding-top:4px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(201,168,76,.09); border: 1px solid rgba(201,168,76,.28);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 20px;
  animation: slideUp .6s ease both;
}
.hero-eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: blink 1.8s ease-in-out infinite;
}

.hero__title {
  font-family: var(--serif); font-size: clamp(30px,3.8vw,56px);
  font-weight: 900; line-height: 1.05; letter-spacing: -.028em;
  color: #fff; margin-bottom: 16px; animation: slideUp .65s .08s ease both;
}
.hero__lead {
  font-size: 15px; font-weight: 400; line-height: 1.82;
  color: var(--muted); max-width: 460px; margin-bottom: 26px;
  animation: slideUp .65s .14s ease both;
}
.hero__lead strong { color:var(--text); font-weight:600; }

/* KPI strip */
.kpi-row {
  display: flex; margin-bottom: 26px;
  border: 1px solid rgba(201,168,76,.1); border-radius: var(--r);
  overflow: hidden; animation: slideUp .65s .18s ease both;
}
.kpi-item {
  flex: 1; padding: 18px 12px; text-align: center;
  background: rgba(255,255,255,.02); transition: background .2s;
  min-height: 44px;
}
.kpi-item + .kpi-item { border-left: 1px solid rgba(201,168,76,.08); }
.kpi-item:hover { background: rgba(201,168,76,.05); }
.kpi-item__value {
  font-size: 26px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg,var(--gold-lt),var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.kpi-item__label {
  font-size: 9px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .07em; margin-top: 5px;
}

/* Hero bullets */
.hero-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 26px; animation: slideUp .65s .22s ease both;
}
.hero-bullets__item {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13.5px; line-height: 1.6; color: var(--text); font-weight: 500;
}
.hero-bullets__item strong { color:var(--gold-lt); }
.hero-bullets__item::before {
  content: '✓'; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg,var(--gold-dk),var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #000; font-size: 9px; font-weight: 900;
  box-shadow: 0 2px 8px rgba(201,168,76,.3); margin-top: 2px;
}

/* =====================================================================
   LEAD FORM CARD
===================================================================== */
.form-card {
  position: relative; overflow: hidden;
  padding: 26px 24px 22px; border-radius: var(--r-lg);
  background: rgba(11,11,11,.98); border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  animation: slideUp .7s .28s ease both;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 52%; height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold-lt),transparent);
}

.form-urgency {
  text-align: center; font-size: 11px; font-weight: 700;
  color: rgba(240,208,128,.85); letter-spacing: .06em; margin-bottom: 14px;
  animation: blink 2.5s ease-in-out infinite;
}
.form-title {
  font-size: 18px; font-weight: 900; text-align: center;
  color: #fff; margin-bottom: 4px; letter-spacing: -.01em;
}
.form-sub { font-size: 12px; color: var(--muted); text-align: center; margin-bottom: 20px; }
.form-sub span { color: var(--gold-lt); font-weight: 600; }

/* Floating-label inputs */
.form-field {
  position: relative; margin-bottom: 20px;
  padding: 1.5px; border-radius: calc(var(--r) + 2px);
  background: rgba(201,168,76,.12);
  transition: transform .2s, background .25s, box-shadow .2s;
}
.form-field:hover  { background:rgba(201,168,76,.24); transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,.35); }
.form-field:focus-within {
  transform: translateY(-2px) scale(1.008);
  box-shadow: 0 0 0 4px rgba(201,168,76,.09), 0 12px 32px rgba(0,0,0,.5);
}

.form-field__input {
  width: 100%;
  padding: 22px 15px 10px;
  background: rgba(11,11,11,.99); border: none; border-radius: var(--r);
  outline: none;
  font-family: var(--sans); font-size: 14px;
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
}
.form-field__input::placeholder { color: transparent; }

.form-field__label {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 13px; font-weight: 600; color: rgba(122,116,104,.7);
  pointer-events: none;
  transition: top .2s, transform .2s, font-size .2s, color .2s, letter-spacing .2s;
}
.form-field__input:focus          + .form-field__label,
.form-field__input:not(:placeholder-shown) + .form-field__label {
  top: 11px; transform: translateY(0);
  font-size: 9.5px; font-weight: 800; color: var(--gold-lt);
  letter-spacing: .1em; text-transform: uppercase;
}

/* Submit button */
.btn-submit {
  width: 100%; padding: 16px 24px; border-radius: var(--r);
  background: var(--gold-grad); background-size: 200% auto;
  font: 800 14px/1 var(--sans); color: #000; letter-spacing: .07em;
  text-transform: uppercase; position: relative; overflow: hidden;
  min-height: 52px;
  animation: shimmer 3s linear infinite, submitPulse 2.8s ease-in-out infinite;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
}
.btn-submit::before {
  content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  transform: skewX(-15deg); transition: left .5s;
}
.btn-submit:hover { transform:translateY(-2px) scale(1.02); animation-play-state:paused; box-shadow:0 16px 48px rgba(201,168,76,.6); }
.btn-submit:hover::before { left: 120%; }

/* Trust line */
.form-trust {
  margin-top: 14px; display: flex; align-items: center;
  justify-content: center; gap: 6px; text-align: center;
  font-size: 10.5px; font-weight: 600; color: rgba(122,116,104,.5); letter-spacing: .04em;
}
.form-trust svg { width:11px; height:11px; fill:var(--gold-lt); }

/* Success state */
.form-success { display:none; flex-direction:column; align-items:center; gap:13px; text-align:center; padding:16px 0; }
.form-success.show { display:flex; }
.form-success__icon { font-size:46px; animation:popIn .5s cubic-bezier(.34,1.56,.64,1) both; }
.form-success h3 { font-family:var(--serif); font-size:24px; font-weight:700; color:#fff; }
.form-success p { font-size:13px; color:var(--muted); line-height:1.65; }

/* =====================================================================
   PROOF BAR
===================================================================== */
.proof { padding-bottom: 64px; }

.proof__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 32px 40px;
  background: rgba(10,10,10,.95); border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--r-lg); position: relative; overflow: hidden;
}
.proof__grid::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(201,168,76,.4),rgba(240,208,128,.5),rgba(201,168,76,.4),transparent);
}
.proof__stat { padding: 6px 20px; text-align: center; position: relative; }
.proof__stat + .proof__stat::before {
  content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 1px;
  background: rgba(201,168,76,.1);
}
.proof__number {
  font-size: 32px; font-weight: 900; line-height: 1; margin-bottom: 7px;
  background: linear-gradient(135deg,var(--gold-lt),var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.proof__stat:hover .proof__number { transform: scale(1.08); }
.proof__label { font-size:11px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; }

/* =====================================================================
   SHARED CARD BASE
===================================================================== */
.card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

.card {
  padding: 28px; background: var(--surface);
  border: 1px solid rgba(201,168,76,.1); border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--gold-dk),var(--gold-lt),var(--gold-dk));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.card:hover { border-color:rgba(201,168,76,.3); transform:translateY(-6px); box-shadow:0 28px 64px rgba(0,0,0,.55); }
.card:hover::after { transform: scaleX(1); }

/* Testimonial parts */
.card__stars { display:flex; gap:3px; margin-bottom:14px; color:var(--gold); font-size:14px; }
.card__quote { font-family:var(--serif); font-style:italic; font-size:16px; line-height:1.75; color:rgba(244,241,236,.78); margin-bottom:20px; }
.card__author { display:flex; align-items:center; gap:11px; }
.card__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,var(--gold-dk),var(--gold));
  font-size: 15px; font-weight: 800; color: #000;
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.card:hover .card__avatar { transform:scale(1.12) rotate(-4deg); }
.card__author-name { font-size:13px; font-weight:700; color:var(--text); }
.card__author-loc  { font-size:11px; color:var(--muted); margin-top:1px; }

/* Feature parts */
.card__icon {
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  background: linear-gradient(135deg,rgba(201,168,76,.12),rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.2);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.card:hover .card__icon { transform:scale(1.12) rotate(-6deg); box-shadow:0 8px 24px rgba(201,168,76,.25); }
.card__feat-title { font-size:15px; font-weight:800; color:#fff; margin-bottom:10px; letter-spacing:-.01em; }
.card__feat-desc  { font-size:13px; color:var(--muted); line-height:1.75; }

/* =====================================================================
   FAQ
===================================================================== */
.faq-layout { display:grid; grid-template-columns:1fr 1.6fr; gap:24px; align-items:start; }

.faq-aside {
  padding: 32px 28px; background: var(--surface);
  border: 1px solid rgba(201,168,76,.1); border-radius: var(--r-lg);
}
.faq-aside p { font-size:13.5px; line-height:1.75; color:var(--muted); margin-bottom:20px; }
.faq-aside__list { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.faq-aside__list li { display:flex; align-items:flex-start; gap:11px; font-size:13px; line-height:1.55; color:var(--text); }
.faq-aside__list li::before {
  content: ''; flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-top: 6px; box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

/* FAQ button — 44px touch target */
.faq-aside__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  padding: 0 24px; border-radius: 100px;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.25);
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-lt);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.faq-aside__btn:hover { background:rgba(201,168,76,.15); transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,168,76,.2); }

.faq-list { display:flex; flex-direction:column; gap:14px; }

details.faq-item {
  padding: 22px 26px; background: var(--surface);
  border: 1px solid rgba(201,168,76,.1); border-radius: var(--r-lg);
  transition: border-color .3s, box-shadow .3s;
}
details.faq-item[open] { border-color:rgba(201,168,76,.28); box-shadow:0 12px 32px rgba(0,0,0,.45); }

details.faq-item summary {
  list-style: none; display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 20px; cursor: pointer;
  min-height: 44px;
  user-select: none; -webkit-user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__question { font-size:16px; font-weight:800; color:#fff; line-height:1.35; }
.faq-item__category {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); margin-top: 6px;
}

/* Toggle — 44×44 touch target */
.faq-item__toggle {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-lt); font-size: 22px; font-weight: 300; line-height: 1;
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .25s;
}
details.faq-item[open] .faq-item__toggle { transform:rotate(45deg); background:rgba(201,168,76,.2); }

.faq-item__answer {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(201,168,76,.12);
  font-size: 13.5px; line-height: 1.75; color: var(--muted);
}
.faq-item__answer strong { color:var(--text); }

/* =====================================================================
   CTA SECTION
===================================================================== */
.cta-section { padding-bottom: 100px; }

.cta-box {
  padding: 64px 48px; text-align: center; background: var(--surface);
  border: 1px solid rgba(201,168,76,.15); border-radius: var(--r-lg);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold-lt),transparent);
}
.cta-box::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% -10%, rgba(201,168,76,.09) 0%, transparent 58%);
}
.cta-box__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; margin-bottom: 20px;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2);
  border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-lt);
  position: relative; z-index: 1;
  animation: blink 2.2s ease-in-out infinite;
}
.cta-box__title {
  font-family: var(--serif); font-size: clamp(28px,3.5vw,52px);
  font-weight: 700; line-height: 1.08; color: #fff; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-box__sub {
  font-size: 15px; line-height: 1.8; color: var(--muted);
  max-width: 480px; margin: 0 auto 16px; position: relative; z-index: 1;
}
.cta-box__actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* =====================================================================
   SHARED BUTTONS
===================================================================== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 40px; border-radius: 100px; min-height: 52px;
  background: var(--gold-grad); background-size: 200% auto;
  font-size: 14px; font-weight: 800; color: #000; letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(201,168,76,.35);
  animation: shimmer 3.5s linear infinite;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
}
.btn-gold:hover { transform:translateY(-2px) scale(1.04); animation-play-state:paused; box-shadow:0 16px 48px rgba(201,168,76,.6); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px; border-radius: 100px; min-height: 52px;
  background: rgba(37,211,102,.07); border: 1px solid rgba(37,211,102,.25);
  font-size: 13px; font-weight: 700; color: var(--wa); letter-spacing: .04em;
  transition: background .22s, transform .22s, box-shadow .22s;
}
.btn-whatsapp:hover { background:rgba(37,211,102,.15); transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,.2); }
.btn-whatsapp svg { width:18px; height:18px; fill:currentColor; flex-shrink:0; }

/* =====================================================================
   FOOTER
===================================================================== */
.site-footer {
  position: relative; z-index: 1; padding: 28px 48px;
  background: rgba(4,4,4,.99); border-top: 2px solid rgba(201,168,76,.07);
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(201,168,76,.45) 20%,
    rgba(240,208,128,.65) 50%, rgba(201,168,76,.45) 80%, transparent 100%);
}
.site-footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand {
  font-size: 16px; font-weight: 900; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text); display: inline-block;
  transition: letter-spacing .3s, color .25s, text-shadow .25s;
}
.footer-brand span {
  background: var(--gold-grad-tilt);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-brand:hover { letter-spacing:.22em; color:var(--gold-lt); text-shadow:0 0 22px rgba(201,168,76,.55); }
.footer-copy { font-size:10px; font-weight:600; color:rgba(122,116,104,.45); margin-top:8px; letter-spacing:.1em; line-height:1.7; }

.footer-nav { display:flex; gap:20px; align-items:center; flex-wrap:wrap; }

/* Footer links — 44px touch target via padding */
.footer-nav a {
  position: relative;
  padding: 10px 4px 4px;
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  color: rgba(122,116,104,.6); transition: color .25s;
}
.footer-nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 4px; right: 4px; height: 1px;
  background: linear-gradient(90deg,var(--gold-dk),var(--gold-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.footer-nav a:hover { color:var(--gold-lt); }
.footer-nav a:hover::after { transform:scaleX(1); }

.footer-contact {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: .09em;
}
.footer-contact svg { width:13px; height:13px; }

/* =====================================================================
   FLOATING WHATSAPP
===================================================================== */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 1000;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--wa); box-shadow: 0 8px 32px rgba(37,211,102,.38);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 14px 44px rgba(37,211,102,.5); }
.wa-float svg { width:28px; height:28px; fill:#fff; }
.wa-float::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: waPulse 2s ease-out infinite;
}

/* =====================================================================
   RESPONSIVE BREAKPOINTS
   ① 1060px — tablet/desktop switch
   ② 900px  — tablet polish
   ③ 700px  — phablet
   ④ 480px  — phone
   ⑤ 380px  — small phone
===================================================================== */

/* ① ≤1060px */
@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 32px 56px;
  }
  .hero__media   { display: none; }
  .hero__content { max-width: 640px; margin: 0 auto; width: 100%; }
  .hero__lead    { max-width: 100%; }
  .card-grid     { grid-template-columns: 1fr 1fr; }
  .proof__grid   { grid-template-columns: 1fr 1fr; }
  .faq-layout    { grid-template-columns: 1fr; }
  .container     { padding: 0 32px; }
}

/* ② ≤900px */
@media (max-width: 900px) {
  .hero { padding: 36px 28px 48px; }
  .hero__content { max-width: 580px; }
  .section        { padding-bottom: 60px; }
  .section-title  { margin-bottom: 36px; }
  .proof__grid    { padding: 28px 24px; }
  .card-grid      { gap: 16px; }
  .cta-box        { padding: 52px 36px; }
  .faq-aside      { padding: 28px 24px; }
}

/* ③ ≤700px */
@media (max-width: 700px) {
  .site-nav  { padding: 0 20px; }
  .hero      { padding: 24px 16px 44px; }
  .hero__content { max-width: 100%; }
  .section        { padding-bottom: 48px; }
  .section-title  { margin-bottom: 28px; font-size: clamp(24px,5vw,36px); }
  .card-grid      { grid-template-columns: 1fr; gap: 14px; }
  .proof__grid    { grid-template-columns: 1fr 1fr; padding: 20px 14px; gap: 12px 0; }
  .proof__stat:nth-child(2)::before,
  .proof__stat:nth-child(4)::before { display: none; }
  .proof__number  { font-size: 26px; }
  .proof__label   { font-size: 9.5px; letter-spacing: .05em; }
  .proof__stat    { padding: 6px 10px; }
  .cta-box        { padding: 36px 16px; }
  .cta-box__actions { flex-direction: column; align-items: stretch; }
  .btn-gold,
  .btn-whatsapp   { justify-content: center; width: 100%; }
  .site-footer       { padding: 36px 20px 32px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-nav        { gap: 4px 16px; }
  .container { padding: 0 16px; }
  .form-card         { padding: 20px 16px 18px; }
  /* iOS zoom fix: font-size ≥16px prevents auto-zoom on input focus */
  .form-field__input { padding: 22px 14px 10px; font-size: 16px; }
  .btn-submit        { padding: 16px 24px; font-size: 15px; min-height: 52px; }
  .faq-aside      { display: none; }
  details.faq-item   { padding: 16px 18px; }
  .faq-item__question { font-size: 14.5px; }
  .faq-item__toggle  { width: 44px; height: 44px; font-size: 20px; }
  .kpi-item       { padding: 14px 8px; }
  .kpi-item__value { font-size: 22px; }
  .wa-float       { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}

/* ④ ≤480px */
@media (max-width: 480px) {
  .kpi-item__value { font-size: 18px; }
  .kpi-item__label { font-size: 8px; letter-spacing: .04em; }
  .kpi-item        { padding: 12px 6px; }
  .proof__number   { font-size: 22px; }
  .proof__label    { font-size: 9px; }
  .proof__grid     { padding: 18px 10px; gap: 10px 0; }
  .hero { padding: 20px 14px 40px; }
  .hero__title { font-size: clamp(28px,7vw,40px); }
  .hero-bullets__item { font-size: 13px; }
  .form-title   { font-size: 16px; }
  .form-urgency { font-size: 10px; }
  .section      { padding-bottom: 40px; }
  .section-title { margin-bottom: 24px; }
  .ticker__item { font-size: .62rem; gap: .4rem; }
  .cta-box__title { font-size: clamp(24px,6vw,34px); }
  .cta-box__sub   { font-size: 13px; }
  .cta-box        { padding: 32px 14px; }
  .hero-eyebrow { font-size: 10px; padding: 6px 14px; }
  .footer-nav   { gap: 2px 12px; }
}

/* ⑤ ≤380px */
@media (max-width: 380px) {
  .site-nav       { padding: 0 12px; }
  .nav-cta        { padding: 0 16px; font-size: 10.5px; letter-spacing: .06em; }
  .nav-logo__name { font-size: 20px; }
  .nav-logo__icon { width: 44px; height: 44px; }
  .hero           { padding: 16px 12px 36px; }
  .hero__title    { font-size: clamp(26px,7.5vw,36px); }
  .kpi-row        { border-radius: 8px; }
  .kpi-item__value { font-size: 16px; }
  .container      { padding: 0 12px; }
  .form-card      { padding: 16px 14px 16px; border-radius: 14px; }
  .btn-submit     { font-size: 13.5px; }
  .proof__number  { font-size: 20px; }
  .proof__stat    { padding: 4px 8px; }
}

/* ⑥ Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
