/*
 * O Grande Plano — Landing Page Styles
 * Product: Template de Plano de Negocios por Toni Deivid
 * Design: Dark premium com dourado (#C9A84C)
 * Typography: Playfair Display (display), DM Sans (body), DM Mono (labels)
 */

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

:root {
  --black:   #080807;
  --black2:  #111110;
  --black3:  #1a1a18;
  --gold:    #C9A84C;
  --gold-lt: #E8C96A;
  --gold-dk: #8B6914;
  --gold-bg: #1e1a10;
  --cream:   #F5F0E8;
  --gray:    #A09882;
  --gray2:   #6A6458;
  --white:   #FAFAF8;
  --red:     #C94C4C;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max: 1080px;
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITIES ──────────────────────────────────── */
.container   { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.gold        { color: var(--gold); }
.cream       { color: var(--cream); }
.gray        { color: var(--gray); }
.serif       { font-family: var(--font-display); }
.mono        { font-family: var(--font-mono); }
.center      { text-align: center; }
.upper       { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 600; }
strong       { color: var(--cream); font-weight: 600; }

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,.4); }
  70%  { box-shadow: 0 0 0 18px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes scanline {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── NOISE TEXTURE ──────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: .4;
}

/* ─── TOP BAR ────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(8,8,7,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-brand {
  display: flex;
  align-items: center;
}
.topbar-brand img {
  height: 32px;
  width: auto;
}
.topbar-cta {
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.topbar-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201,168,76,.04) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 7px 14px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 6px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-sub strong { color: var(--cream); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 36px;
  border: none; cursor: pointer;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, transform .15s, box-shadow .2s;
  animation: pulse-ring 2.5s 3s 3;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.25);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gray);
  font-size: 14px;
  text-decoration: none;
  margin-top: 16px;
  transition: color .2s;
}
.btn-secondary:hover { color: var(--gold); }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; }

/* Hero card */
.hero-card {
  background: var(--black2);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 12px;
  padding: 40px 36px;
  position: relative;
  animation: float 5s ease-in-out infinite;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-card-book {
  background: linear-gradient(135deg, #1a2a3a 0%, #0d1620 100%);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
}
.book-logo {
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 6px;
}
.book-logo .o { font-size: 14px; color: var(--cream); display: block; }
.book-logo .grande { font-size: 38px; color: var(--cream); line-height: 1; }
.book-logo .plano { font-size: 13px; color: var(--gold); letter-spacing: .3em; text-transform: uppercase; display: block; margin-top: 2px; }
.book-tagline { font-size: 12px; color: var(--gray); margin-top: 10px; }
.hero-card-includes { margin-bottom: 28px; }
.include-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.include-item:last-child { border-bottom: none; }
.include-item .check {
  color: var(--gold); font-size: 13px; margin-top: 2px; flex-shrink: 0;
}
.price-block { text-align: center; }
.price-from { font-size: 12px; color: var(--gray2); text-decoration: line-through; margin-bottom: 4px; font-family: var(--font-mono); }
.price-main {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.price-main .currency { font-size: 22px; vertical-align: super; }
.price-note { font-size: 12px; color: var(--gray); margin-top: 6px; }
.hero-guarantee {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px; color: var(--gray2);
}
.hero-guarantee svg { width: 20px; height: 20px; color: var(--gold-dk); flex-shrink: 0; }

/* ─── STATS BAR ──────────────────────────────────── */
#stats {
  background: var(--gold-bg);
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 36px 24px;
}
.stats-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(201,168,76,.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--gray); letter-spacing: .06em; }

/* ─── PROBLEM ────────────────────────────────────── */
#problem {
  padding: var(--section-pad);
  position: relative;
}
.problem-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--gold);
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 17px; color: var(--gray); line-height: 1.75;
}
.problem-stat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 72px; font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 40px 0 12px;
}
.problem-stat-label {
  font-size: 15px; color: var(--cream);
  margin-bottom: 32px;
}
.obstacle-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 60px;
}
.obstacle-card {
  background: var(--black2);
  padding: 32px 24px;
  text-align: left;
  border-top: 2px solid transparent;
  border-radius: 8px;
  transition: border-color .3s;
}
.obstacle-card:hover { border-color: var(--gold); }
.obstacle-num {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--gold);
  letter-spacing: .2em; margin-bottom: 16px;
}
.obstacle-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--cream); margin-bottom: 12px;
}
.obstacle-desc { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ─── SOLUTION ───────────────────────────────────── */
#solution {
  padding: var(--section-pad);
  background: var(--black2);
}
.solution-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.solution-text .section-h2 { text-align: left; }
.solution-text .section-body { text-align: left; margin-bottom: 32px; }
.benefit-list { list-style: none; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 16px; color: var(--gray);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  width: 24px; height: 24px;
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px; color: var(--gold);
}
.solution-visual {
  background: var(--black3);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 10px;
  padding: 36px;
}
.toc-title {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--gold);
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.toc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 14px; color: var(--gray);
  transition: color .2s;
  cursor: default;
}
.toc-item:hover { color: var(--cream); }
.toc-item:last-child { border-bottom: none; }
.toc-num {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--gold-dk);
  flex-shrink: 0; width: 20px;
}
.toc-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--gold-bg);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .08em;
}

/* ─── WHAT'S INSIDE ──────────────────────────────── */
#inside {
  padding: var(--section-pad);
}
.inside-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.inside-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.inside-card {
  background: var(--black2);
  padding: 36px 28px;
  border-top: 1px solid rgba(201,168,76,.08);
  border-radius: 8px;
  transition: background .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.inside-card:hover {
  background: var(--black3);
  border-color: rgba(201,168,76,.3);
}
.inside-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.2), transparent);
  transform: scaleX(0);
  transition: transform .4s;
}
.inside-card:hover::after { transform: scaleX(1); }
.inside-icon {
  width: 40px; height: 40px;
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 18px;
}
.inside-card-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--cream); margin-bottom: 10px;
}
.inside-card-desc { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ─── AUTHORITY ──────────────────────────────────── */
#authority {
  padding: var(--section-pad);
  background: var(--black2);
}
.authority-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 360px 1fr;
  gap: 80px; align-items: start;
}
.authority-photo {
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 12px;
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.authority-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.authority-photo::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(8,8,7,.8), transparent);
  z-index: 2;
}
.authority-text { padding-top: 12px; }
.authority-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; font-style: italic;
  color: var(--cream); line-height: 1.4;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}
.authority-bio { font-size: 16px; color: var(--gray); margin-bottom: 32px; line-height: 1.75; }
.credentials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cred-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray);
  padding: 10px 14px;
  background: var(--black3);
  border-left: 2px solid var(--gold-dk);
  border-radius: 4px;
}
.cred-item::before { content: '\2014'; color: var(--gold); }

/* ─── TESTIMONIALS ───────────────────────────────── */
#testimonials {
  padding: var(--section-pad);
}
.testimonials-header { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.testimonials-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--black2);
  padding: 36px 28px;
  border-top: 2px solid transparent;
  border-radius: 8px;
  transition: border-color .3s;
}
.testimonial-card:hover { border-color: var(--gold); }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-text {
  font-size: 15px; color: var(--gray);
  line-height: 1.7; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-text strong { color: var(--cream); font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px; color: var(--gold); font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 14px; color: var(--cream); font-weight: 600; margin-bottom: 2px; }
.author-role { font-size: 12px; color: var(--gray2); }

/* ─── OBJECTIONS / FAQ ───────────────────────────── */
#objections {
  padding: var(--section-pad);
  background: var(--black2);
}
.objections-inner { max-width: 760px; margin: 0 auto; }
.objections-header { text-align: center; margin-bottom: 50px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 16px; color: var(--cream); font-weight: 500;
}
.faq-q .icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold);
  transition: transform .3s;
}
.faq-a {
  font-size: 15px; color: var(--gray);
  line-height: 1.7; margin-top: 16px;
  padding-left: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .3s;
  opacity: 0;
}
.faq-item.open .faq-a { max-height: 200px; opacity: 1; }
.faq-item.open .icon { transform: rotate(45deg); }

/* ─── OFFER ──────────────────────────────────────── */
#offer {
  padding: var(--section-pad);
  position: relative; overflow: hidden;
}
#offer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
}
.offer-inner {
  max-width: 860px; margin: 0 auto;
  background: var(--black2);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 16px;
  position: relative; z-index: 2;
  overflow: hidden;
}
.offer-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.offer-header {
  padding: 48px 48px 0;
  text-align: center;
}
.offer-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900; color: var(--cream);
  margin-bottom: 12px;
}
.offer-sub { font-size: 16px; color: var(--gray); }
.offer-stack {
  padding: 40px 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stack-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 15px;
}
.stack-item:last-child { border-bottom: none; }
.stack-left { display: flex; align-items: center; gap: 12px; color: var(--gray); }
.stack-check { color: var(--gold); }
.stack-price {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--gray2);
  text-decoration: line-through; flex-shrink: 0;
}
.stack-price--bonus {
  text-decoration: none;
  color: var(--gold);
}
.offer-price-block { padding: 40px 48px; text-align: center; }
.total-value {
  font-size: 13px; color: var(--gray2); margin-bottom: 6px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em;
}
.total-strike {
  font-family: var(--font-display);
  font-size: 28px; color: var(--gray2);
  text-decoration: line-through; margin-bottom: 6px;
}
.real-price {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.real-price .cur { font-size: 28px; vertical-align: super; margin-right: 4px; }
.access-note {
  font-size: 13px; color: var(--gray);
  margin-bottom: 36px;
  font-family: var(--font-mono);
}
.btn-offer {
  display: block; width: 100%;
  background: var(--gold);
  color: var(--black);
  font-size: 17px; font-weight: 700;
  padding: 22px 40px;
  border: none; cursor: pointer;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase; letter-spacing: .06em;
  text-align: center;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-bottom: 16px;
  animation: pulse-ring 2.5s 1s 5;
}
.btn-offer:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(201,168,76,.3);
}
.guarantee-bar {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; color: var(--gray2);
}

/* ─── UPSELL HINT ────────────────────────────────── */
#upsell-hint {
  padding: 48px 24px;
  background: var(--gold-bg);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.upsell-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.upsell-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 11px; font-weight: 700;
  padding: 6px 12px; letter-spacing: .1em;
  text-transform: uppercase; flex-shrink: 0;
  border-radius: 6px;
}
.upsell-text { font-size: 15px; color: var(--gray); }
.upsell-text strong { color: var(--cream); }
.upsell-link {
  color: var(--gold); text-decoration: underline;
  font-size: 13px; white-space: nowrap; flex-shrink: 0;
  transition: color .2s;
}
.upsell-link:hover { color: var(--gold-lt); }

/* ─── FINAL CTA ──────────────────────────────────── */
#final-cta {
  padding: 100px 24px;
  background: var(--black);
  text-align: center;
}
.final-inner { max-width: 640px; margin: 0 auto; }
.final-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; line-height: 1.1;
  color: var(--cream); margin-bottom: 20px;
}
.final-h2 em { color: var(--gold); font-style: italic; }
.final-sub { font-size: 17px; color: var(--gray); margin-bottom: 48px; }

/* ─── FOOTER ─────────────────────────────────────── */
#footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px; color: var(--gray2); margin-bottom: 12px;
}
.footer-brand span { color: var(--gold-dk); }
.footer-links {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  font-size: 12px; color: var(--gray2); flex-wrap: wrap;
}
.footer-links a { color: var(--gray2); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ─── STICKY MOBILE CTA ──────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--gold);
  padding: 18px 24px;
  text-align: center;
}
.sticky-cta a {
  color: var(--black); font-weight: 700; font-size: 15px;
  text-decoration: none; text-transform: uppercase; letter-spacing: .05em;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid          { grid-template-columns: 1fr; }
  .hero-card          { animation: none; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item          { border-right: none; border-bottom: 1px solid rgba(201,168,76,.1); padding-bottom: 20px; }
  .obstacle-grid      { grid-template-columns: 1fr; }
  .solution-grid      { grid-template-columns: 1fr; }
  .inside-grid        { grid-template-columns: 1fr; }
  .authority-grid     { grid-template-columns: 1fr; }
  .authority-photo    { aspect-ratio: 4/3; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .credentials-grid   { grid-template-columns: 1fr; }
  .offer-header,
  .offer-stack,
  .offer-price-block  { padding-left: 28px; padding-right: 28px; }
  .upsell-inner       { flex-direction: column; text-align: center; }
  .sticky-cta         { display: block; }
  body                { padding-bottom: 60px; }
}
