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

:root {
  --navy: #08111f;
  --navy-mid: #0f1c2e;
  --navy-soft: #162a42;
  --gold: #f0c14d;
  --gold-light: #ffe08a;
  --gold-dark: #c9972e;
  --gold-glow: rgba(240, 193, 77, 0.22);
  --white: #ffffff;
  --off: #f6f8fc;
  --text: #eef3fa;
  --text-dim: #8fa3bb;
  --text-dark: #142033;
  --text-muted: #5c7088;
  --success: #34d399;
  --danger: #fb7185;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.2);
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(240, 193, 77, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(56, 120, 200, 0.06), transparent),
    linear-gradient(180deg, var(--navy) 0%, #0a1525 100%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  pointer-events: none;
  z-index: -1;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 17, 31, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.logo:hover { color: var(--white); }

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--navy);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  padding: 0.5rem 1rem !important;
  font-size: 0.82rem !important;
}

.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.35rem 0.6rem;
}

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

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 8px 32px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-primary:hover { color: var(--navy); box-shadow: 0 14px 40px var(--gold-glow); }

.btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,193,77,0.08); }

.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* HERO */
.hero {
  padding: 3.5rem 0 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  background: rgba(240, 193, 77, 0.1);
  border: 1px solid rgba(240, 193, 77, 0.2);
  border-radius: 999px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeUp 0.7s ease-out; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  max-width: 500px;
  line-height: 1.7;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 0.45rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}

.trust-pill svg { width: 14px; height: 14px; color: var(--success); flex-shrink: 0; }

/* STATS */
.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat span {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
  display: block;
}

/* LOOM PREVIEW MOCKUP */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s ease-out 0.15s both;
  margin-top: 2rem;
  max-width: 420px;
}

.mockup-wrap {
  position: relative;
  animation: float 5s ease-in-out infinite;
}

.browser-mock {
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  background: rgba(0,0,0,0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.mockup-body {
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.mock-video {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #1a2d45, #0f1c2e);
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.play-btn {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 1.1rem;
  box-shadow: 0 8px 24px var(--gold-glow);
}

.mock-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(0,0,0,0.5);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.mock-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.mock-metric {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
}

.mock-metric .label { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.mock-metric .val { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); }
.mock-metric .val.up { color: var(--success); }
.mock-metric .val.down { color: var(--danger); }

.float-badge {
  position: absolute;
  background: var(--white);
  color: var(--text-dark);
  padding: 0.6rem 1rem;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.float-badge.top-right { top: -12px; right: -12px; }
.float-badge.bottom-left { bottom: 20px; left: -20px; }

.float-badge .icon {
  width: 28px;
  height: 28px;
  background: rgba(52, 211, 153, 0.15);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

/* FORM CARD */
.form-col { position: relative; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.05);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s ease-out 0.1s both;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  background: rgba(240, 193, 77, 0.15);
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.85rem;
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.form-card .form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-group { margin-bottom: 0.9rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 11px;
  font-family: var(--font);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafbfd;
  color: var(--text-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 88px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
  background: var(--white);
}

.form-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid #fecaca;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* SECTIONS */
.section { padding: 5rem 0; position: relative; }
.section-light { background: var(--off); color: var(--text-dark); }
.section-mid { background: rgba(15, 28, 46, 0.6); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.65rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section-light .section-title { color: var(--text-dark); }

.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.section-light .section-sub { color: var(--text-muted); }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
}

.step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 193, 77, 0.25);
  background: rgba(240, 193, 77, 0.04);
}

.section-light .step {
  background: var(--white);
  border-color: #e8edf4;
  box-shadow: 0 4px 24px rgba(20, 32, 51, 0.06);
}

.section-light .step:hover {
  border-color: rgba(240, 193, 77, 0.4);
  box-shadow: 0 12px 32px rgba(20, 32, 51, 0.1);
}

.step-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(240,193,77,0.2), rgba(240,193,77,0.05));
  border: 1px solid rgba(240, 193, 77, 0.25);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.section-light .step h3 { color: var(--text-dark); }
.step p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.55; }
.section-light .step p { color: var(--text-muted); }

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.section-light .testimonial {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }

.testimonial q {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 1rem;
}

.section-light .testimonial q { color: var(--text-muted); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-soft), var(--gold-dark));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--white); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-dim); }
.section-light .testimonial-author strong { color: var(--text-dark); }

/* BEFORE AFTER */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.compare-card {
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.compare-card.before { background: rgba(251, 113, 133, 0.08); border-color: rgba(251, 113, 133, 0.2); }
.compare-card.after { background: rgba(52, 211, 153, 0.08); border-color: rgba(52, 211, 153, 0.2); }

.compare-card .tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.compare-card.before .tag { color: var(--danger); }
.compare-card.after .tag { color: var(--success); }

.compare-metric {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.compare-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.25rem; }

/* PROBLEM LIST */
.problem-list { list-style: none; max-width: 600px; margin: 0 auto; }

.problem-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.02rem;
  color: var(--text-dim);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.problem-list li::before {
  content: "✕";
  color: var(--danger);
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(251, 113, 133, 0.15);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

/* CHECK LIST */
.check-list { list-style: none; display: grid; gap: 0.7rem; }

.check-list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-dim);
  align-items: flex-start;
}

.section-light .check-list li { color: var(--text-muted); }

.check-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(52, 211, 153, 0.12);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}

/* BONUS */
.bonus-grid { display: grid; gap: 0.65rem; }

.bonus-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.section-light .bonus-row {
  background: var(--white);
  border-color: #e8edf4;
}

.bonus-row .strike { text-decoration: line-through; color: var(--text-dim); font-size: 0.82rem; }
.bonus-row .free { color: var(--success); font-weight: 700; font-size: 0.82rem; }

.price-box {
  text-align: center;
  background: linear-gradient(160deg, var(--navy-soft), var(--navy-mid));
  border: 2px solid rgba(240, 193, 77, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 0 60px var(--gold-glow);
}

.price-box .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-box .amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-box .note { font-size: 0.88rem; color: var(--text-dim); margin: 1.25rem 0 1.5rem; line-height: 1.6; }

.scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251, 113, 133, 0.12);
  color: #fda4af;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(251, 113, 133, 0.25);
}

.scarcity::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 8px var(--danger);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.guarantee-card {
  background: linear-gradient(145deg, rgba(240,193,77,0.1), rgba(240,193,77,0.02));
  border: 1px solid rgba(240, 193, 77, 0.22);
  border-radius: var(--radius);
  padding: 1.65rem;
}

.guarantee-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.guarantee-card p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.6; }

.thanks-hero {
  text-align: center;
  padding: 5rem 0 3rem;
  max-width: 620px;
  margin: 0 auto;
}

.check-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success), #10b981);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  margin: 0 auto 1.75rem;
  color: white;
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.35);
  animation: fadeUp 0.5s ease-out;
}

.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  background: rgba(0,0,0,0.15);
}

.footer p { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 0.4rem; }
.footer a { color: var(--gold); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.cta-band {
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(240,193,77,0.08), rgba(15,28,46,0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 193, 77, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.cta-band p { color: var(--text-dim); margin-bottom: 1.75rem; font-size: 1.05rem; max-width: 520px; margin-inline: auto; }

.divider-label {
  text-align: center;
  margin-bottom: 2.5rem;
}

.divider-label span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  position: relative;
  padding: 0 1.5rem;
}

.divider-label span::before,
.divider-label span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15));
}

.divider-label span::before { right: 100%; }
.divider-label span::after { left: 100%; transform: scaleX(-1); }

/* MOBILE */
@media (max-width: 900px) {
  .hero-grid, .two-col, .compare { grid-template-columns: 1fr; }
  .hero-form-first .form-col { order: -1; }
  .hero-visual { display: none; }
  .stats-row { gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 17, 31, 0.98);
    padding: 1rem 4vw 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 0.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.5rem 0; }
}