:root {
  --gold: #C8A24E;
  --gold-light: #E8D48B;
  --gold-dark: #9B7A2F;
  --navy: #0A1628;
  --navy-mid: #111E33;
  --navy-light: #1A2D4A;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --green: #10B981;
  --green-dark: #059669;
  --red: #EF4444;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 50px -5px rgba(0,0,0,0.2);
  --shadow-gold: 0 4px 30px rgba(200,162,78,0.25);
}

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

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.7; overflow-x: hidden; }

/* ===== UTILITY ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement {
  background: linear-gradient(90deg, var(--red) 0%, #DC2626 100%);
  color: white; text-align: center; padding: 10px 20px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
  animation: pulse-bg 3s ease-in-out infinite;
}
.announcement span { opacity: 0.9; }
@keyframes pulse-bg {
  0%, 100% { background: linear-gradient(90deg, var(--red) 0%, #DC2626 100%); }
  50% { background: linear-gradient(90deg, #DC2626 0%, #B91C1C 100%); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(200,162,78,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,162,78,0.12); border: 1px solid rgba(200,162,78,0.25);
  border-radius: 100px; padding: 6px 16px; font-size: 0.8rem;
  font-weight: 600; color: var(--gold-light); margin-bottom: 24px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero__badge::before { content: '✦'; font-size: 0.7rem; }

.hero__pretitle {
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--gray-400); margin-bottom: 12px; letter-spacing: 0.02em;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic; color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.1rem; color: var(--gray-300); margin-bottom: 32px;
  line-height: 1.8; max-width: 520px;
}
.hero__sub strong { color: var(--white); font-weight: 600; }

.hero__stats {
  display: flex; gap: 32px; margin-bottom: 36px;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero__stat-num {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 700; color: var(--gold);
}
.hero__stat-label { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }

/* CTA Button */
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); font-weight: 700; font-size: 1.05rem;
  padding: 16px 36px; border-radius: 8px; text-decoration: none;
  border: none; cursor: pointer; letter-spacing: 0.02em;
  transition: all 0.3s ease; box-shadow: var(--shadow-gold);
  text-transform: uppercase; font-family: var(--font-body);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(200,162,78,0.4);
}
.btn-cta--green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white; box-shadow: 0 4px 30px rgba(16,185,129,0.3);
}
.btn-cta--green:hover { box-shadow: 0 8px 40px rgba(16,185,129,0.45); }
.btn-cta--large { padding: 20px 48px; font-size: 1.15rem; border-radius: 10px; }
.btn-cta svg { width: 20px; height: 20px; }

.hero__trust {
  display: flex; align-items: center; gap: 16px; margin-top: 16px;
  font-size: 0.82rem; color: var(--gray-400);
}
.hero__trust-item { display: flex; align-items: center; gap: 6px; }
.hero__trust-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* Hero Right */
.hero__visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero__card {
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(200,162,78,0.15); border-radius: 16px;
  padding: 40px 32px; width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero__card-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); font-weight: 700; margin-bottom: 20px;
}
.hero__card-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero__card-item:last-child { border-bottom: none; }
.hero__card-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,0.15); display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.hero__card-check svg { width: 12px; height: 12px; color: var(--green); }
.hero__card-text { font-size: 0.92rem; color: var(--gray-300); line-height: 1.5; }
.hero__card-text strong { color: var(--white); }

.hero__float-badge {
  position: absolute; top: -10px; right: -10px;
  background: var(--red); color: white;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 8px 16px; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(239,68,68,0.4);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== PROBLEM SECTION ===== */
.problem {
  padding: 80px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.problem__eyebrow {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--red); font-weight: 700; margin-bottom: 12px;
}
.problem h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 20px;
}
.problem__text { color: var(--gray-600); margin-bottom: 24px; font-size: 1.05rem; }

.problem__list { list-style: none; }
.problem__list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; font-size: 1rem; color: var(--gray-700);
}
.problem__icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; margin-top: 2px;
}
.problem__icon--red { background: rgba(239,68,68,0.1); color: var(--red); }
.problem__icon--green { background: rgba(16,185,129,0.1); color: var(--green); }

.problem__comparison {
  background: var(--white); border-radius: 16px; border: 1px solid var(--gray-200);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.problem__comp-header {
  display: grid; grid-template-columns: 1fr 1fr;
}
.problem__comp-header div {
  padding: 14px 20px; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.08em; text-align: center;
}
.problem__comp-header div:first-child { background: var(--gray-100); color: var(--gray-500); }
.problem__comp-header div:last-child { background: var(--navy); color: var(--gold); }
.problem__comp-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gray-100);
}
.problem__comp-cell {
  padding: 14px 20px; font-size: 0.9rem; color: var(--gray-600);
  display: flex; align-items: center; gap: 8px;
}
.problem__comp-cell:last-child {
  background: rgba(10,22,40,0.02); color: var(--navy); font-weight: 500;
}
.problem__comp-cell .x { color: var(--red); font-weight: 700; }
.problem__comp-cell .check { color: var(--green); font-weight: 700; }

/* ===== AUTHORITY ===== */
.authority {
  padding: 80px 0; background: var(--white);
}
.authority__grid { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center; }
.authority__photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 16px;
  background: linear-gradient(145deg, var(--gray-200), var(--gray-100));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gray-400); text-align: center;
  padding: 20px; border: 1px solid var(--gray-200);
  position: relative; overflow: hidden;
}
.authority__photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.authority__eyebrow {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold-dark); font-weight: 700; margin-bottom: 12px;
}
.authority h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 20px;
}
.authority__text { color: var(--gray-600); margin-bottom: 16px; font-size: 1rem; }
.authority__credentials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px;
}
.authority__cred {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 10px; padding: 16px; display: flex; align-items: flex-start; gap: 12px;
}
.authority__cred-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.authority__cred-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.4; }
.authority__cred-text strong { color: var(--navy); display: block; margin-bottom: 2px; font-size: 0.9rem; }

/* ===== MODULES ===== */
.modules {
  padding: 80px 0; background: var(--navy); color: var(--white);
  position: relative;
}
.modules::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37,99,235,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.modules .container { position: relative; z-index: 1; }

.section-eyebrow {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; margin-bottom: 12px; text-align: center;
}
.section-eyebrow--gold { color: var(--gold); }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; text-align: center; line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  text-align: center; max-width: 600px; margin: 0 auto 48px;
  font-size: 1.05rem; opacity: 0.7; line-height: 1.7;
}

.modules__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.module-card {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  padding: 32px 28px; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.module-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0; transition: opacity 0.3s ease;
}
.module-card:hover::before { opacity: 1; }
.module-card:hover { border-color: rgba(200,162,78,0.2); transform: translateY(-4px); }

.module-card__num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: rgba(200,162,78,0.15); line-height: 1; margin-bottom: 16px;
}
.module-card h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  margin-bottom: 12px; line-height: 1.35;
}
.module-card p {
  font-size: 0.9rem; color: var(--gray-400); line-height: 1.6;
}
.module-card__topics {
  list-style: none; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.module-card__topics li {
  font-size: 0.82rem; color: var(--gray-400); padding: 6px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.module-card__topics li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ===== BONUS ===== */
.bonus {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.bonus__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bonus-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(200,162,78,0.12);
  border-radius: 12px; padding: 28px; display: flex; align-items: flex-start; gap: 16px;
  transition: all 0.3s ease;
}
.bonus-card:hover { border-color: rgba(200,162,78,0.3); background: rgba(200,162,78,0.04); }
.bonus-card__icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,162,78,0.15), rgba(200,162,78,0.05));
  border: 1px solid rgba(200,162,78,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.bonus-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.bonus-card p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.5; }
.bonus-card__value {
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
  margin-top: 8px; text-transform: uppercase; letter-spacing: 0.05em;
}

.bonus-card--special {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(200,162,78,0.08), rgba(200,162,78,0.02));
  border-color: var(--gold-dark);
  position: relative; overflow: hidden;
}
.bonus-card--special::before {
  content: 'EXCLUSIVO'; position: absolute; top: 16px; right: -30px;
  background: var(--red); color: white; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.1em; padding: 4px 40px;
  transform: rotate(45deg);
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0; background: var(--white);
}
.pricing__wrapper {
  max-width: 580px; margin: 0 auto;
  background: var(--white); border-radius: 20px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(200,162,78,0.1), 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}
.pricing__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 36px 40px; text-align: center; color: var(--white);
  position: relative;
}
.pricing__header::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; background: var(--gold); border-radius: 2px;
}
.pricing__name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 8px;
}
.pricing__desc { font-size: 0.9rem; color: var(--gray-400); }

.pricing__body { padding: 36px 40px; }
.pricing__stack { margin-bottom: 28px; }
.pricing__stack-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.pricing__stack-item span:first-child { color: var(--gray-700); }
.pricing__stack-item span:last-child {
  color: var(--gray-400); text-decoration: line-through; font-size: 0.85rem;
}
.pricing__stack-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; margin-top: 4px; font-weight: 700; font-size: 1rem;
  border-top: 2px solid var(--navy);
}
.pricing__stack-total span:last-child { color: var(--red); text-decoration: line-through; font-size: 1.1rem; }

.pricing__price-box {
  text-align: center; padding: 28px 0; margin: 0 -40px;
  background: linear-gradient(135deg, rgba(200,162,78,0.06), rgba(200,162,78,0.02));
  border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
}
.pricing__from {
  font-size: 0.85rem; color: var(--gray-500); margin-bottom: 4px;
}
.pricing__from s { color: var(--red); }
.pricing__installment {
  font-size: 1rem; color: var(--gray-600); margin-bottom: 4px;
}
.pricing__installment strong {
  font-size: 2.8rem; font-family: var(--font-display); font-weight: 800;
  color: var(--navy); line-height: 1;
}
.pricing__cash {
  font-size: 1.05rem; color: var(--green-dark); font-weight: 700; margin-top: 4px;
}
.pricing__pix {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px; padding: 4px 14px; font-size: 0.78rem;
  color: var(--green-dark); font-weight: 600; margin-top: 8px;
}

.pricing__cta-area { text-align: center; padding-top: 28px; }
.pricing__cta-area .btn-cta { width: 100%; justify-content: center; }
.pricing__guarantee {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; font-size: 0.82rem; color: var(--gray-500);
}
.pricing__guarantee svg { width: 16px; height: 16px; color: var(--green); }

/* ===== FAQ ===== */
.faq {
  padding: 80px 0; background: var(--gray-50);
}
.faq__badge {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.78rem; color: var(--green-dark); font-weight: 600;
  margin-bottom: 24px; text-align: center;
}
.faq__badge::before { content: '💬'; }

.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
  transition: all 0.3s ease;
}
.faq__item:hover { border-color: var(--gray-300); }
.faq__question {
  width: 100%; padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; background: none; border: none;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--navy); text-align: left; gap: 16px;
}
.faq__question::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gray-400);
  flex-shrink: 0; transition: transform 0.3s ease;
}
.faq__item.active .faq__question::after { content: '−'; color: var(--gold-dark); }
.faq__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq__answer-inner {
  padding: 0 24px 20px; font-size: 0.95rem; color: var(--gray-600); line-height: 1.7;
}

/* ===== GUARANTEE ===== */
.guarantee {
  padding: 60px 0; background: var(--white);
}
.guarantee__box {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(16,185,129,0.04), rgba(16,185,129,0.01));
  border: 2px solid rgba(16,185,129,0.2); border-radius: 16px;
  padding: 40px; display: flex; align-items: flex-start; gap: 28px;
}
.guarantee__shield {
  width: 80px; height: 80px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.guarantee h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.guarantee p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(145deg, var(--navy) 0%, #05101E 100%);
  color: var(--white); text-align: center;
  position: relative;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,162,78,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; margin-bottom: 16px; line-height: 1.25;
}
.final-cta h2 em {
  font-style: italic; color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta p { color: var(--gray-400); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.final-cta .btn-cta { font-size: 1.15rem; padding: 20px 48px; }

.final-cta__urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25);
  border-radius: 100px; padding: 8px 20px; font-size: 0.82rem;
  color: #FCA5A5; font-weight: 600; margin-bottom: 28px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 28px 0; background: var(--gray-900); text-align: center;
  font-size: 0.78rem; color: var(--gray-500);
}
.footer a { color: var(--gray-400); text-decoration: none; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,0.95); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(200,162,78,0.2);
  padding: 12px 20px; display: flex; align-items: center; justify-content: center;
  gap: 20px; transform: translateY(100%); transition: transform 0.4s ease;
}
.floating-cta.visible { transform: translateY(0); }
.floating-cta__text { color: var(--gray-300); font-size: 0.9rem; font-weight: 500; }
.floating-cta__text strong { color: var(--gold); }
.floating-cta .btn-cta { padding: 12px 28px; font-size: 0.9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__stats { gap: 20px; flex-wrap: wrap; }
  .hero { padding: 50px 0 60px; }
  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .authority__grid { grid-template-columns: 1fr; gap: 32px; }
  .authority__photo { max-width: 280px; margin: 0 auto; }
  .authority__credentials { grid-template-columns: 1fr; }
  .modules__grid { grid-template-columns: 1fr; }
  .bonus__grid { grid-template-columns: 1fr; }
  .guarantee__box { flex-direction: column; align-items: center; text-align: center; }
  .pricing__body, .pricing__header { padding-left: 24px; padding-right: 24px; }
  .pricing__price-box { margin: 0 -24px; }
  .floating-cta__text { display: none; }
  .floating-cta { justify-content: center; }
  .floating-cta .btn-cta { width: 100%; max-width: 360px; justify-content: center; }
  .hero__card { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 12px; }
  .pricing__wrapper { margin: 0 -8px; border-radius: 14px; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ===== VIDEO ===== */
.hero__video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(200,162,78,0.15);
  width: 100%;
  background: var(--navy-mid);
}
.hero__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
