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

:root {
  --navy: #08172e;
  --navy-mid: #0f2444;
  --navy-glow: #162d52;
  --cream: #faf6ef;
  --cream-2: #f5efe4;
  --cream-3: #ede5d8;
  --gold: #c4881a;
  --gold-lt: #fdf3dc;
  --gold-bright: #e8a020;
  --coral: #c94b1a;
  --coral-lt: #fceee8;
  --coral-mid: #d9541f;
  --green: #156040;
  --green-lt: #e4f2eb;
  --text: #12121e;
  --text-2: #3a3a4a;
  --muted: #6b7080;
  --muted-lt: #9298a8;
  --border: rgba(12, 24, 48, 0.1);
  --border-md: rgba(12, 24, 48, 0.16);
  --shadow-sm:
    0 1px 2px rgba(8, 23, 46, 0.04), 0 4px 16px rgba(8, 23, 46, 0.06);
  --shadow-md:
    0 1px 3px rgba(8, 23, 46, 0.04), 0 8px 32px rgba(8, 23, 46, 0.09),
    0 24px 48px rgba(8, 23, 46, 0.05);
  --shadow-card:
    0 0 0 0.5px rgba(8, 23, 46, 0.08), 0 2px 8px rgba(8, 23, 46, 0.04),
    0 16px 40px rgba(8, 23, 46, 0.07);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────── NAV ─────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo span {
  color: var(--gold-bright);
}
.nav-cta {
  background: transparent;
  border: 1px solid rgba(196, 136, 26, 0.5);
  color: var(--gold-bright);
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 3px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ─────────────── SHARED ─────────────── */
.section {
  padding: 88px 5vw;
}
.inner {
  max-width: 1080px;
  margin: 0 auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.tag::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tag-amber {
  background: var(--gold-lt);
  color: #7a5410;
}
.tag-amber::before {
  background: var(--gold);
}
.tag-coral {
  background: var(--coral-lt);
  color: #7a2a10;
}
.tag-coral::before {
  background: var(--coral);
}
.tag-green {
  background: var(--green-lt);
  color: #0d3d28;
}
.tag-green::before {
  background: var(--green);
}
.tag-navy {
  background: rgba(196, 136, 26, 0.14);
  color: var(--gold-bright);
}
.tag-navy::before {
  background: var(--gold-bright);
}

.section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
}
.section-h2 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.7;
  font-weight: 300;
}

/* Thin gold rule decoration */
.rule {
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 28px;
  border: none;
}

/* ─────────────── HERO ─────────────── */
.hero {
  background: var(--navy);
  padding: 88px 5vw 80px;
  position: relative;
  overflow: hidden;
}
/* Dot grid texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
/* Colour wash */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 65% 55% at 82% 18%,
      rgba(196, 136, 26, 0.22) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 45% 45% at 8% 88%,
      rgba(201, 75, 26, 0.16) 0%,
      transparent 65%
    );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 136, 26, 0.14);
  border: 1px solid rgba(196, 136, 26, 0.25);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 300;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 3px;
  text-decoration: none;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.15s;
  box-shadow: 0 4px 16px rgba(196, 136, 26, 0.35);
}
.btn-hero:hover {
  background: var(--gold-bright);
  box-shadow: 0 6px 24px rgba(196, 136, 26, 0.45);
  transform: translateY(-1px);
}
.btn-hero svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.btn-hero:hover svg {
  transform: translateX(3px);
}
.hero-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.02em;
}

/* Hero visual card */
.hero-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 24px 22px 20px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero-visual-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.rank-item:last-of-type {
  border-bottom: none;
}
.rank-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  min-width: 28px;
  line-height: 1;
}
.rank-num.good {
  color: var(--gold-bright);
}
.rank-num.bad {
  color: rgba(255, 255, 255, 0.18);
}
.rank-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.rank-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.rank-bar.good {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}
.rank-bar.bad {
  background: rgba(255, 255, 255, 0.12);
}
.rank-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  min-width: 74px;
  text-align: right;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 16px;
}
.hero-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 4px;
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stat-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

/* ─────────────── PROBLEM ─────────────── */
.problem {
  background: var(--cream-2);
}
.problem-swiper {
  width: 100%;
  overflow: hidden;
}
.problem-swiper .swiper-slide {
  background: var(--cream);
  border-radius: 14px;
  padding: 32px 26px 28px;
  position: relative;
  overflow: hidden;
  height: auto;
  box-shadow: var(--shadow-card);
}
.problem-slide-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--coral-mid));
}
.problem-icon {
  font-size: 26px;
  margin-bottom: 18px;
  display: block;
}
.problem-swiper h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.problem-swiper p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  margin-top: 22px;
}
.swiper-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.swiper-btn:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow-md);
}
.swiper-counter {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-lt);
  letter-spacing: 0.06em;
  min-width: 36px;
}
.swiper-progress {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}
.swiper-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.35s ease;
}

.problem-callout {
  margin-top: 32px;
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(8, 23, 46, 0.18);
  position: relative;
  overflow: hidden;
}
.problem-callout::before {
  content: '"';
  font-family: "Cormorant Garamond", serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: -24px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.problem-callout p {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
  min-width: 220px;
  position: relative;
  line-height: 1.6;
}
.problem-callout p strong {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 600;
}
.btn-callout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral-mid);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(201, 75, 26, 0.35);
}
.btn-callout:hover {
  background: var(--coral);
  box-shadow: 0 6px 20px rgba(201, 75, 26, 0.45);
}

/* ─────────────── SOLUTION ─────────────── */
.solution {
  background: var(--cream);
}
.sol-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.sol-tab {
  padding: 10px 18px 12px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s;
  letter-spacing: 0.01em;
  margin-bottom: -1px;
  border-radius: 0;
}
.sol-tab:hover {
  color: var(--text);
}
.sol-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  font-weight: 600;
}
.sol-panel {
  display: none;
}
.sol-panel.active {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  animation: panelIn 0.25s ease both;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sol-panel-icon {
  font-size: 36px;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-lt), #fff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 136, 26, 0.15);
}
.sol-panel-body {
  flex: 1;
  min-width: 240px;
}
.sol-panel-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sol-panel-body > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}
.sol-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sol-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 400;
}
.sol-bullets li::before {
  content: "✓";
  color: var(--green);
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--green-lt);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────── TRUST ─────────────── */
.trust {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.trust::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 136, 26, 0.12) 0%,
    transparent 70%
  );
}
.trust .inner {
  position: relative;
  z-index: 1;
}
.trust .section-h2 {
  color: #fff;
}
.trust .section-h2 em {
  color: var(--gold-bright);
}
.trust .section-sub {
  color: rgba(255, 255, 255, 0.45);
}
.trust .rule {
  background: rgba(196, 136, 26, 0.5);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.trust-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.trust-stat:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 136, 26, 0.25);
}
.trust-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.trust-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Testimonial Swiper */
.testi-swiper {
  width: 100%;
  overflow: hidden;
}
.testi-swiper .swiper-slide {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  height: auto;
  transition: border-color 0.2s;
}
.testi-swiper .swiper-slide:hover {
  border-color: rgba(196, 136, 26, 0.22);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testi-stars span {
  color: var(--gold-bright);
  font-size: 13px;
}
.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 22px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.av1 {
  background: rgba(45, 106, 159, 0.4);
  color: #7db8e8;
  border: 1px solid rgba(45, 106, 159, 0.3);
}
.av2 {
  background: rgba(92, 61, 158, 0.4);
  color: #b8a8e8;
  border: 1px solid rgba(92, 61, 158, 0.3);
}
.av3 {
  background: rgba(21, 96, 64, 0.4);
  color: #6ecfa4;
  border: 1px solid rgba(21, 96, 64, 0.3);
}
.testi-name {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}
.testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 1px;
  font-weight: 300;
}

.testi-swiper-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.testi-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}
.testi-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}
.testi-pagination {
  display: flex;
  gap: 5px;
  align-items: center;
}
.testi-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.testi-dot.active {
  background: var(--gold-bright);
  width: 18px;
  border-radius: 3px;
}

/* ─────────────── PLAN ─────────────── */
.plan {
  background: var(--cream-2);
}
.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.plan-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.66% + 18px);
  right: calc(16.66% + 18px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 20%,
    var(--gold-bright) 50%,
    var(--gold) 80%,
    transparent 100%
  );
  opacity: 0.4;
}
.plan-step {
  padding: 0 28px;
  text-align: center;
}
.plan-step:first-child {
  padding-left: 0;
}
.plan-step:last-child {
  padding-right: 0;
}
.step-num {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border: 1px solid rgba(196, 136, 26, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 4px 20px rgba(8, 23, 46, 0.2),
    0 0 0 6px var(--cream-2);
}
.step-num span {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}
.plan-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.plan-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─────────────── FORM ─────────────── */
.form-section {
  background: var(--cream);
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
}
.form-left h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.form-left h2 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
}
.form-left > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 300;
}
.form-reassure {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reassure-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 300;
}
.reassure-dot {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--green-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196, 136, 26, 0.1);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-bright),
    var(--gold)
  );
}
.form-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.form-card > p {
  font-size: 13px;
  color: var(--muted-lt);
  margin-bottom: 26px;
  font-weight: 300;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 11px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  border: 1px solid var(--border-md);
  border-radius: 6px;
  background: var(--cream);
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  /* -webkit-appearance: none; */
}
.field input:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 136, 26, 0.1);
  background: #fff;
}
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(8, 23, 46, 0.25);
}
.btn-submit:hover {
  background: var(--navy-mid);
  box-shadow: 0 6px 24px rgba(8, 23, 46, 0.32);
  transform: translateY(-1px);
}
.form-fine {
  font-size: 11px;
  color: var(--muted-lt);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.02em;
  font-weight: 300;
}
.success-msg {
  display: none;
  background: var(--green-lt);
  border: 1px solid rgba(21, 96, 64, 0.2);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
}
.success-msg .success-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.success-msg p {
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
  line-height: 1.6;
}

/* ─────────────── FINAL CTA ─────────────── */
.final-cta {
  background: var(--coral-mid);
  padding: 88px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 70% at 50% -10%,
      rgba(255, 255, 255, 0.14) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 85% 110%,
      rgba(0, 0, 0, 0.12) 0%,
      transparent 60%
    );
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}
.final-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}
.btn-final {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--coral-mid);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 38px;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  transition:
    box-shadow 0.2s,
    transform 0.15s,
    background 0.2s;
}
.btn-final:hover {
  background: var(--cream);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}
.final-cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 16px;
  letter-spacing: 0.04em;
  font-weight: 300;
}

footer {
  background: var(--navy);
  padding: 22px 5vw;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
  font-weight: 300;
}
footer span {
  color: rgba(255, 255, 255, 0.1);
  margin: 0 8px;
}

/* ─────────────── ANIMATIONS ─────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  animation: fadeUp 0.5s ease both;
}
.hero h1 {
  animation: fadeUp 0.55s 0.08s ease both;
}
.hero-sub {
  animation: fadeUp 0.55s 0.18s ease both;
}
.hero-actions {
  animation: fadeUp 0.55s 0.28s ease both;
}
.hero-visual {
  animation: fadeUp 0.55s 0.34s ease both;
}

/* ─────────────────────────────────────────────
       RESPONSIVE — TABLET (≤ 900px)
       ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .section {
    padding: 64px 5vw;
  }

  .hero {
    padding: 64px 5vw 56px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-visual {
    display: none;
  }
  .hero h1 {
    font-size: clamp(34px, 6vw, 48px);
  }

  .form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plan-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .plan-steps::before {
    display: none;
  }
  .plan-step {
    padding: 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .step-num {
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(8, 23, 46, 0.2);
  }
  .plan-step-text {
    flex: 1;
    padding-top: 16px;
  }
}

/* ─────────────────────────────────────────────
       RESPONSIVE — SMALL MOBILE (≤ 600px)
       ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .section {
    padding: 52px 4.5vw;
  }
  .hero {
    padding: 48px 4.5vw 44px;
  }

  /* Typography scale down */
  .section-h2 {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 10px;
  }
  .section-sub {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .hero h1 {
    font-size: clamp(30px, 8.5vw, 40px);
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }

  /* Nav tighter */
  nav {
    height: 50px;
  }
  .nav-logo {
    font-size: 17px;
  }
  .nav-cta {
    padding: 6px 14px;
    font-size: 12px;
  }

  /* Hero */
  .hero-note {
    display: none;
  }
  .btn-hero {
    font-size: 13px;
    padding: 13px 24px;
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  /* Problem cards — full width on smallest screens */
  .problem-swiper .swiper-slide {
    padding: 24px 20px 20px;
  }
  .problem-icon {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .problem-swiper h3 {
    font-size: 18px;
  }
  .problem-callout {
    padding: 20px;
    gap: 16px;
  }
  .problem-callout p {
    font-size: 16px;
    min-width: 0;
  }
  .btn-callout {
    width: 100%;
    justify-content: center;
  }

  /* Solution tabs — 2×2 grid */
  .sol-tabs {
    gap: 4px;
  }
  .sol-tab {
    font-size: 12px;
    padding: 8px 12px 10px;
  }
  .sol-panel.active {
    flex-direction: column;
    gap: 20px;
  }
  .sol-panel-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
    border-radius: 10px;
  }
  .sol-panel-body h3 {
    font-size: 22px;
  }

  /* Trust stats — single column at xs */
  .trust-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .trust-stat {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .trust-stat-num {
    font-size: 34px;
    margin-bottom: 0;
  }

  /* Plan steps — compact row layout */
  .plan-step {
    gap: 14px;
  }
  .step-num {
    width: 56px;
    height: 56px;
  }
  .step-num span {
    font-size: 24px;
  }
  .plan-step-text {
    padding-top: 10px;
  }
  .plan-step h3 {
    font-size: 18px;
  }
  .plan-step p {
    font-size: 13px;
  }

  /* Form */
  .form-card {
    padding: 26px 20px;
    border-radius: 12px;
  }
  .form-left h2 {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  /* Final CTA */
  .final-cta {
    padding: 56px 4.5vw;
  }
  .final-cta h2 {
    font-size: clamp(24px, 7.5vw, 36px);
  }
  .btn-final {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* ─────────────────────────────────────────────
       RESPONSIVE — XS (≤ 380px, iPhone SE etc.)
       ─────────────────────────────────────────── */
@media (max-width: 380px) {
  .section {
    padding: 40px 4vw;
  }
  .hero {
    padding: 40px 4vw 36px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .section-h2 {
    font-size: 24px;
  }
  .sol-tab {
    font-size: 11px;
    padding: 7px 10px 9px;
  }
  .trust-stat-num {
    font-size: 30px;
  }
  .step-num {
    width: 48px;
    height: 48px;
  }
  .step-num span {
    font-size: 20px;
  }
}
