/* =========================================================================
   Jornada da Escrita Perfeita — Edição Mestre
   Design tokens + page styles
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  /* Navy */
  --navy-50:  #EEF2FB;
  --navy-100: #D8E0F2;
  --navy-200: #A9B7DD;
  --navy-300: #7A8EC9;
  --navy-400: #4F69B0;
  --navy-500: #2F4A99;
  --navy-600: #1E3A8A;
  --navy-700: #182E6E;
  --navy-800: #122553;
  --navy-900: #0B1838;
  --navy-ink: #07102A;

  /* Gold */
  --gold-50:  #FEF7E6;
  --gold-100: #FDECC2;
  --gold-200: #FBD888;
  --gold-300: #F9C24E;
  --gold-400: #F59E0B;
  --gold-500: #D98708;
  --gold-600: #B26C04;
  --gold-700: #8A5202;
  --gold-800: #5E3801;

  /* Cream */
  --cream-50:  #FBF8F1;
  --cream-100: #F6F0E1;
  --cream-200: #ECE2C7;
  --cream-300: #DCCFA8;
  --cream-400: #C4B485;

  /* Ink / Neutrals */
  --ink-900: #0F172A;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;
  --white:   #FFFFFF;

  /* Semantic */
  --success-500: #10B981;
  --success-600: #059669;
  --success-50:  #ECFDF5;
  --danger-500:  #EF4444;
  --warning-500: #F59E0B;
  --info-500:    #3B82F6;

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Radii */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-sm:   0 2px 6px -1px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md:   0 8px 20px -6px rgba(15, 23, 42, 0.12), 0 2px 6px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg:   0 20px 40px -16px rgba(15, 23, 42, 0.18), 0 6px 14px -6px rgba(15, 23, 42, 0.08);
  --shadow-xl:   0 32px 64px -24px rgba(11, 24, 56, 0.28), 0 12px 24px -10px rgba(11, 24, 56, 0.12);
  --shadow-gold: 0 18px 44px -12px rgba(245, 158, 11, 0.45);

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:    150ms;
  --dur-base:    240ms;
  --dur-slow:    420ms;

  /* Layout */
  --container:        1180px;
  --container-narrow: 880px;
  --gutter:           clamp(20px, 4vw, 40px);
}

/* ----- Reset / base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: light; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy-ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0 0 16px; text-wrap: pretty; }

a {
  color: var(--navy-600);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--gold-500); }

::selection { background: var(--gold-200); color: var(--navy-ink); }

/* ----- Layout primitives ------------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}
.container.narrow { max-width: var(--container-narrow); }

.section {
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.section--cream { background: var(--cream-50); color: var(--navy-ink); }
.section--white { background: var(--white); color: var(--navy-ink); }
.section--warm  { background: var(--cream-100); color: var(--navy-ink); }
.section--navy  {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: var(--cream-50);
}
.section--deep  { background: var(--navy-900); color: var(--cream-50); }

.section--navy::before,
.section--deep::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(245,158,11,0.18), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(245,158,11,0.08), transparent 60%);
}

/* ----- Eyebrow / Divider ------------------------------------------------ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow--ondark { color: var(--gold-300); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 32px;
}
.divider span:first-child,
.divider span:last-child {
  width: 28px; height: 2px; background: var(--gold-400); border-radius: 2px;
}
.divider .diamond { color: var(--gold-400); font-size: 12px; line-height: 1; }
.divider--ondark span:first-child,
.divider--ondark span:last-child { background: var(--gold-300); }
.divider--ondark .diamond { color: var(--gold-300); }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 12px;
  transition:
    transform 150ms var(--ease-out),
    background 150ms var(--ease-out),
    box-shadow 150ms var(--ease-out);
}
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn:active { transform: scale(0.98); }

.btn--lg { padding: 18px 28px; font-size: 17px; border-radius: 14px; }
.btn--xl { padding: 22px 34px; font-size: 19px; border-radius: 16px; }

.btn--primary {
  background: var(--gold-400);
  color: var(--navy-ink);
  box-shadow: 0 14px 32px -10px rgba(245,158,11,.6), 0 4px 0 0 var(--gold-600);
}
.btn--primary:hover { background: var(--gold-500); color: var(--navy-ink); }

.btn--mega {
  background: var(--gold-400);
  color: var(--navy-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  width: 100%;
  box-shadow: 0 0 0 6px rgba(245,158,11,0.18), 0 18px 44px -8px rgba(245,158,11,0.55);
}
.btn--mega:hover { background: var(--gold-500); color: var(--navy-ink); }

.btn--secondary {
  background: var(--navy-600);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-50);
  box-shadow: inset 0 0 0 1.5px rgba(251,248,241,0.4);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold-300); color: var(--gold-300); }

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(245,158,11,0.18), 0 18px 44px -8px rgba(245,158,11,0.55);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 0 0 12px rgba(245,158,11,0.10), 0 22px 56px -8px rgba(245,158,11,0.7);
  }
}
.cta-pulse { animation: ctaPulse 2.4s var(--ease-in-out) infinite; }
.cta-pulse:hover { animation-play-state: paused; }

/* ----- Badges ----------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
}
.badge--cream   { background: var(--gold-50);  color: var(--gold-700); }
.badge--success { background: var(--success-50); color: #065F46; }
.badge--gold {
  background: var(--gold-400);
  color: var(--navy-ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}
.badge--ondark {
  background: rgba(255,255,255,0.08);
  color: var(--cream-50);
  box-shadow: inset 0 0 0 1px rgba(245,158,11,0.32);
}
.badge--ondark .star { color: var(--gold-300); }

/* ----- FadeUp reveal ---------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* =========================================================================
   HERO
   ========================================================================= */
.hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.hero__rules {
  position: absolute; inset: 0;
  opacity: 0.08; pointer-events: none;
  background-image: repeating-linear-gradient(180deg, transparent 0, transparent 47px, var(--gold-300) 47px, var(--gold-300) 48px);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw + 1rem, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream-50);
  margin: 0 0 22px;
}
.hero__title em { font-style: italic; color: var(--gold-300); font-weight: inherit; }
.hero__title small {
  display: block;
  font-size: 0.55em;
  font-style: italic;
  font-weight: 400;
  color: var(--cream-100);
  margin-top: 8px;
}
.hero__lead {
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.25rem);
  line-height: 1.6;
  color: rgba(251,248,241,0.82);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero__lead strong { color: var(--gold-300); font-weight: 700; }
.hero__actions {
  display: flex; flex-wrap: wrap;
  gap: 14px; align-items: center;
  margin-bottom: 18px;
}
.hero__badges {
  display: flex; flex-wrap: wrap;
  gap: 10px; align-items: center;
}

/* Handwriting mockup */
.mockup {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(245,158,11,0.18);
  background: linear-gradient(180deg, #FFFDF7 0%, #FBF3DD 100%);
  aspect-ratio: 4 / 5;
}
.mockup__rules {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg, transparent 0, transparent 39px, rgba(30,58,138,0.10) 39px, rgba(30,58,138,0.10) 40px);
}
.mockup__margin {
  position: absolute; top: 0; bottom: 0;
  left: 14%; width: 1px;
  background: rgba(220,38,38,0.45);
}
.mockup__text {
  position: absolute; left: 16%; right: 8%; top: 14%;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy-700);
}
.mockup__name {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 80px;
  font-weight: 500;
}
.mockup__line {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 80px;
  font-weight: 400;
  opacity: 0.85;
}
.mockup__star {
  position: absolute; top: 24px; right: 24px;
  background: var(--gold-400); color: var(--navy-ink);
  width: 76px; height: 76px;
  border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -8px rgba(245,158,11,0.6);
  transform: rotate(8deg);
  font-family: var(--font-display);
  text-align: center;
  font-weight: 700;
}
.mockup__star .glyph { font-size: 22px; line-height: 1; }
.mockup__star .label {
  font-size: 11px;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1.1;
}
.mockup__pencil {
  position: absolute;
  bottom: -10px; right: -8px;
  transform: rotate(-18deg);
  font-size: 64px;
}

/* =========================================================================
   PROBLEM
   ========================================================================= */
.problem__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 2vw + 1rem, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
  margin: 0 auto 40px;
  max-width: 720px;
  color: var(--navy-ink);
}
.problem__list {
  display: flex; flex-direction: column;
  gap: 24px;
}
.problem__list p {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 0.3vw + 1rem, 1.2rem);
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold-300);
}
.problem__list strong { color: var(--navy-ink); }
.problem__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem);
  line-height: 1.4;
  color: var(--navy-700);
  text-align: center;
  text-wrap: balance;
  margin: 56px auto 0;
  max-width: 720px;
}

/* =========================================================================
   SOLUTION
   ========================================================================= */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 2vw + 1rem, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 16px;
  max-width: 760px;
}
.section-head--ondark h2 { color: var(--cream-50); }
.section-head h2 em { font-style: italic; color: var(--navy-600); font-weight: inherit; }
.section-head--ondark h2 em { color: var(--gold-300); }
.section-head p {
  font-size: clamp(1.05rem, 0.3vw + 1rem, 1.2rem);
  line-height: 1.6;
  color: var(--ink-600);
  max-width: 640px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid transparent;
  height: 100%;
}
.feature-card--accent {
  background: var(--cream-100);
  border-top-color: var(--gold-400);
}
.feature-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cream-100);
  display: grid; place-items: center;
  font-size: 28px; margin-bottom: 18px;
  filter: saturate(0.9);
}
.feature-card--accent .feature-card__icon { background: #fff; }
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--navy-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-600);
  margin: 0;
}

/* =========================================================================
   INCLUSIONS
   ========================================================================= */
.inclusions__head { text-align: center; margin-bottom: 48px; }
.inclusions__head .eyebrow { display: block; margin-bottom: 12px; }
.inclusions__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 2vw + 1rem, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto;
  color: var(--navy-ink);
}
.inclusions__list {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
}
.incl-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--ink-100);
}
.incl-row:last-of-type { border-bottom: 0; }
.incl-row__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cream-100);
  display: grid; place-items: center;
  font-size: 26px;
  filter: saturate(0.9);
}
.incl-row__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.incl-row__sub {
  font-size: 0.9rem;
  color: var(--ink-600);
  line-height: 1.45;
}
.incl-row__price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-500);
  white-space: nowrap;
}

.incl-total {
  padding: 24px 28px;
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border-top: 2px solid var(--gold-400);
}
.incl-total__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-500);
  font-weight: 600;
}
.incl-total__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy-ink);
  margin-top: 4px;
}
.incl-total__value s { color: var(--ink-400); text-decoration-thickness: 1.5px; }
.incl-total__value .new { margin-left: 16px; color: var(--gold-500); }
.incl-total__pill {
  background: var(--success-500);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

/* =========================================================================
   BONUSES
   ========================================================================= */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,158,11,0.32);
  border-radius: 20px;
  padding: 28px 26px;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  height: 100%;
}
.bonus-card .badge--gold {
  position: absolute; top: 18px; right: 18px;
}
.bonus-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-300);
  font-weight: 500;
  margin-bottom: 8px;
}
.bonus-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--cream-50);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  padding-right: 90px;
}
.bonus-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(251,248,241,0.72);
  margin: 0 0 16px;
}
.bonus-card__price {
  font-size: 13px;
  color: rgba(251,248,241,0.6);
}
.bonus-card__price strong { color: var(--gold-300); }

/* =========================================================================
   SOCIAL PROOF
   ========================================================================= */
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
}
.proof-grid__col { display: flex; flex-direction: column; gap: 20px; }

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.testimonial--lead {
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  height: 100%;
}
.testimonial--lead .quote-mark {
  position: absolute; top: 18px; right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 96px;
  line-height: 1;
  color: var(--gold-200);
  user-select: none;
  pointer-events: none;
}
.testimonial .stars {
  color: var(--gold-400);
  letter-spacing: 2px;
  font-size: 16px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--navy-ink);
  margin: 10px 0 16px;
}
.testimonial--lead blockquote {
  font-size: 1.25rem;
  margin: 14px 0 22px;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial--lead figcaption { gap: 14px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.avatar--navy   { background: var(--navy-600); }
.avatar--navy-d { background: var(--navy-700); }
.avatar--gold   { background: var(--gold-500); }
.testimonial__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy-ink);
}
.testimonial--lead .testimonial__name { font-size: 14px; }
.testimonial__role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-500);
}
.testimonial--lead .testimonial__role { font-size: 12.5px; }

/* =========================================================================
   OFFER
   ========================================================================= */
.offer__head { text-align: center; margin-bottom: 40px; }
.offer__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 2vw + 1rem, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 12px;
  max-width: 720px;
  color: var(--cream-50);
}
.offer__head p {
  font-size: 1.1rem;
  color: rgba(251,248,241,0.72);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}
.countdown__digit { text-align: center; }
.countdown__digit-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.4rem);
  background: var(--navy-900);
  color: var(--gold-300);
  padding: 10px 14px;
  border-radius: 12px;
  min-width: 64px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 4px 14px -6px rgba(0,0,0,0.3);
  letter-spacing: 0.04em;
}
.countdown__digit-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(251,248,241,0.6);
  margin-top: 8px;
}
.countdown__sep {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold-300);
  align-self: flex-start;
  padding-top: 14px;
}

.price-card {
  background: linear-gradient(180deg, #fff 0%, var(--gold-50) 100%);
  color: var(--navy-ink);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 0 0 6px rgba(245,158,11,0.18), 0 30px 80px -20px rgba(245,158,11,0.5);
  border-top: 4px solid var(--gold-400);
  text-align: center;
  position: relative;
}
.price-card .eyebrow { display: block; margin-bottom: 8px; }
.price-card__strikes {
  display: flex; gap: 14px;
  justify-content: center; align-items: baseline;
  margin: 6px 0;
  flex-wrap: wrap;
  font-family: var(--font-body);
}
.price-card__strikes s:nth-child(1) { font-size: 18px; color: var(--ink-400); }
.price-card__strikes s:nth-child(2) { font-size: 22px; color: var(--ink-500); }
.price-card__main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 8vw, 7rem);
  line-height: 1;
  color: var(--navy-ink);
  letter-spacing: -0.04em;
  margin: 4px 0;
}
.price-card__main .currency {
  font-size: 0.4em;
  vertical-align: top;
  margin-right: 6px;
  font-weight: 700;
}
.price-card__save {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--success-600);
  font-size: 14px;
  margin-bottom: 6px;
}
.price-card__installments {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 24px;
}
.price-card__trust {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--ink-500);
  font-weight: 500;
}

.price-card__checklist {
  border-top: 1px dashed var(--ink-200);
  margin-top: 24px;
  padding-top: 22px;
  text-align: left;
}
.price-card__checklist h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  margin: 0 0 14px;
  letter-spacing: 0.16em;
}
.price-card__checklist ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.price-card__checklist li {
  display: flex; gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.45;
}
.check-dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--gold-400);
  color: var(--navy-ink);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 12px;
}

.price-card__methods {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-100);
  display: flex; gap: 10px;
  justify-content: center; flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-500);
}
.price-card__methods span {
  padding: 6px 12px;
  background: var(--ink-100);
  border-radius: 999px;
  font-weight: 600;
}

/* =========================================================================
   GUARANTEE
   ========================================================================= */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  background: var(--cream-50);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  border: 2px solid var(--gold-300);
  box-shadow: var(--shadow-md);
}
.guarantee__seal {
  width: 160px; height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--gold-100), var(--gold-400) 70%, var(--gold-600));
  display: grid; place-items: center;
  color: var(--navy-ink);
  position: relative;
  box-shadow: 0 16px 32px -8px rgba(245,158,11,0.5), inset 0 0 0 4px rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.guarantee__seal-inner {
  width: 138px; height: 138px;
  border-radius: 999px;
  border: 2px dashed rgba(11,24,56,0.3);
  display: grid; place-items: center;
  text-align: center;
}
.guarantee__seal-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
}
.guarantee__seal-days {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.1;
  margin-top: 4px;
}
.guarantee__seal-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  margin-top: 6px;
  text-transform: uppercase;
}
.guarantee__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.guarantee h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--navy-ink);
}
.guarantee p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq__head { text-align: center; margin-bottom: 40px; }
.faq__head .eyebrow { display: block; margin-bottom: 12px; }
.faq__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy-ink);
}
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--ink-200);
  transition: box-shadow 200ms, border-color 200ms;
}
.faq__item.is-open {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.faq__btn {
  background: none; border: 0; padding: 0; width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font: inherit;
  color: inherit;
}
.faq__q {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-ink);
  line-height: 1.3;
}
.faq__chev {
  color: var(--gold-500);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 200ms var(--ease-out);
  font-weight: 600;
  display: inline-block;
}
.faq__item.is-open .faq__chev { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 280ms var(--ease-out), opacity 240ms;
}
.faq__item.is-open .faq__a {
  max-height: 600px;
  opacity: 1;
}
.faq__a p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-600);
  margin: 14px 0 0;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--navy-900);
  color: rgba(251,248,241,0.6);
  padding: 56px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245,158,11,0.18);
}
.footer__brand img {
  width: 220px; height: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(2deg);
}
.footer__brand p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(251,248,241,0.55);
  margin: 18px 0 0;
  max-width: 480px;
}
.footer__cols {
  display: flex;
  gap: 36px;
  font-size: 13.5px;
  flex-wrap: wrap;
}
.footer__col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  margin: 0 0 12px;
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: rgba(251,248,241,0.72);
  text-decoration: none;
}
.footer__col a:hover { color: var(--gold-300); }
.footer__col li.muted { color: rgba(251,248,241,0.55); }

.footer__legal {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(251,248,241,0.5);
}
.footer__legal > div:last-child {
  max-width: 540px;
  line-height: 1.5;
}

/* =========================================================================
   STICKY MOBILE CTA
   ========================================================================= */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(11, 24, 56, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(245,158,11,0.32);
  padding: 12px 20px;
  transform: translateY(110%);
  transition: transform 280ms var(--ease-out);
  z-index: 60;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__copy {
  color: var(--cream-50);
  font-family: var(--font-body);
}
.sticky-cta__eyebrow {
  font-size: 11px;
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sticky-cta__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.sticky-cta__price s {
  color: rgba(251,248,241,0.4);
  font-size: 13px;
  margin-right: 8px;
}

/* =========================================================================
   PURCHASE NOTIFICATION
   ========================================================================= */
@keyframes pnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.purchase-notif {
  position: fixed;
  left: clamp(12px, 2vw, 24px);
  bottom: clamp(80px, 9vw, 110px);
  z-index: 55;
  max-width: 340px;
  width: calc(100vw - 32px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px -12px rgba(11, 24, 56, 0.28), 0 4px 12px -4px rgba(11, 24, 56, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.32);
  padding: 12px 14px 12px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 320ms var(--ease-out), transform 420ms var(--ease-out);
  pointer-events: none;
}
.purchase-notif.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.purchase-notif__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--gold-50), var(--gold-100));
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(245,158,11,0.32);
  font-size: 22px;
}
.purchase-notif__body { min-width: 0; flex: 1; }
.purchase-notif__msg {
  font-size: 13px;
  color: var(--navy-ink);
  line-height: 1.35;
}
.purchase-notif__msg strong { font-weight: 700; }
.purchase-notif__msg .city {
  color: var(--ink-700);
  font-weight: 600;
}
.purchase-notif__msg .gray { color: var(--ink-600); }
.purchase-notif__meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
  font-size: 11px;
  color: var(--ink-500);
  font-weight: 500;
}
.purchase-notif__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--success-600);
  font-weight: 600;
}
.purchase-notif__dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--success-500);
  animation: pnPulse 2s var(--ease-in-out) infinite;
}
.purchase-notif__sep { color: var(--ink-300); }
.purchase-notif__close {
  background: transparent;
  border: 0; padding: 4px;
  color: var(--ink-400);
  cursor: pointer;
  font-size: 16px; line-height: 1;
  align-self: flex-start;
}
.purchase-notif__close:hover { color: var(--navy-ink); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 880px) {
  .hero__grid,
  .proof-grid,
  .footer__grid,
  .guarantee {
    grid-template-columns: 1fr !important;
  }
  .guarantee__seal { margin: 0 auto; }
}

@media (max-width: 640px) {
  .incl-row {
    grid-template-columns: 48px 1fr !important;
    gap: 14px;
    padding: 18px 20px;
  }
  .incl-row__icon { width: 48px; height: 48px; font-size: 22px; }
  .incl-row__price {
    grid-column: 2 / 3;
    font-size: 13px;
  }
  .incl-total { padding: 20px; }
  .countdown { gap: 8px; }
  .countdown__digit-num { min-width: 56px; padding: 8px 10px; }
  .bonus-card h3 { padding-right: 0; }
  .bonus-card .badge--gold { position: static; display: inline-flex; margin-bottom: 12px; }
}
