    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #1e3a5f;
      --navy-900: #152a45;
      --navy-700: #1e3a5f;
      --navy-500: #2a4f7a;
      --cobalt: #004aad;
      --cobalt-400: #0066cc;
      --cobalt-100: rgba(0,74,173,0.07);
      --cobalt-200: rgba(0,74,173,0.12);
      --gray-900: #0f172a;
      --gray-700: #334155;
      --gray-500: #64748b;
      --gray-300: #cbd5e1;
      --gray-100: #f1f5f9;
      --gray-50: #f8fafc;
      --white: #ffffff;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--gray-900);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      padding-top: 72px;
    }
    a { text-decoration: none; }
    img { max-width: 100%; display: block; }
    ::selection { background: var(--cobalt); color: var(--white); }

    /* ── LAYOUT ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .section { padding: 7rem 2rem; }
    .section-sm { padding: 4rem 2rem; }

    /* ── COLORS ── */
    .text-navy { color: var(--navy); }
    .text-cobalt { color: var(--cobalt); }
    .text-muted { color: var(--gray-500); }
    .bg-navy { background: var(--navy); }
    .bg-navy-900 { background: var(--navy-900); }
    .bg-gray { background: var(--gray-50); }
    .bg-white { background: var(--white); }

    /* ── TYPOGRAPHY ── */
    .eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cobalt);
      margin-bottom: 0.75rem;
    }
    .headline-xl {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      color: var(--navy);
      line-height: 1.05;
      letter-spacing: -0.04em;
    }
    .headline-lg {
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.1;
      letter-spacing: -0.035em;
    }
    .headline-md {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.015em;
    }
    .body-lg { font-size: 1.1rem; color: var(--gray-500); line-height: 1.75; }
    .body-md { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 2rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--cobalt);
      color: var(--white);
    }
    .btn-primary:hover {
      background: var(--cobalt-400);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0,74,173,0.3);
    }
    .btn-navy {
      background: var(--navy);
      color: var(--white);
    }
    .btn-navy:hover {
      background: var(--navy-900);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(30,58,95,0.25);
    }
    .btn-outline-navy {
      background: transparent;
      color: var(--navy);
      border: 2px solid var(--gray-300);
    }
    .btn-outline-navy:hover {
      border-color: var(--navy);
      background: var(--navy);
      color: var(--white);
    }
    .btn-ghost {
      background: transparent;
      color: var(--cobalt);
      border: 2.5px solid var(--cobalt);
    }
    .btn-ghost:hover { background: var(--cobalt); color: var(--white); }
    .btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: 12px; }
    .btn-sm { padding: 0.55rem 1.4rem; font-size: 0.85rem; }

    /* ── NAVBAR ── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1rem 2rem;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(30,58,95,0.06);
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled { box-shadow: 0 4px 30px rgba(30,58,95,0.08); }
    .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    .nav-logo {
      font-size: 1.35rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--navy);
    }
    .nav-logo span { color: var(--cobalt); }
    .nav-links { display: flex; gap: 0.15rem; align-items: center; }
    .nav-links a {
      padding: 0.5rem 0.9rem;
      color: var(--gray-500);
      font-weight: 500;
      font-size: 0.88rem;
      border-radius: 8px;
      transition: all 0.2s;
    }
    .nav-links a:hover { color: var(--navy); background: var(--gray-50); }

    /* ── HERO ── */
    .hero {
      padding-top: 100px;
      padding-bottom: 0;
      overflow: hidden;
    }
    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem 5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .hero-copy { }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 1rem 0.35rem 0.5rem;
      background: var(--cobalt-100);
      border: 1px solid var(--cobalt-200);
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--cobalt);
      margin-bottom: 1.5rem;
      letter-spacing: 0.03em;
    }
    .hero-tag-dot {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--cobalt);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-tag-dot::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--white);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.85); }
    }
    .hero-headline { margin-bottom: 1.5rem; }
    .hero-headline .accent { color: var(--cobalt); }
    .hero-body { margin-bottom: 2.5rem; max-width: 480px; }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--gray-300);
    }
    .hero-stat { }
    .hero-stat-num {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--navy);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.78rem;
      color: var(--gray-500);
      font-weight: 500;
      margin-top: 0.3rem;
    }
    .hero-image-wrap {
      position: relative;
    }
    .hero-image {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(30,58,95,0.15), 0 0 0 1px rgba(30,58,95,0.05);
    }
    .hero-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }
    .hero-image-caption {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    .hero-caption-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--cobalt);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-caption-text { font-size: 0.82rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
    .hero-caption-sub { font-size: 0.75rem; color: var(--gray-500); font-weight: 400; }

    /* ── LOGOS ── */
    .logos-bar {
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
      padding: 2rem 0;
      background: var(--white);
    }
    .logos-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .logos-label {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--gray-300);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .logos-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
    }
    .logos-grid span {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--gray-300);
      letter-spacing: -0.03em;
      transition: color 0.2s;
    }
    .logos-grid span:hover { color: var(--gray-500); }

    /* ── HOW IT WORKS ── */
    .hiw { background: var(--white); }
    .section-header { text-align: center; margin-bottom: 4rem; }
    .section-header-left { margin-bottom: 3rem; }
    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cobalt);
      margin-bottom: 0.75rem;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gray-300) 20%, var(--gray-300) 80%, transparent);
      z-index: 0;
    }
    .step { position: relative; z-index: 1; }
    .step-icon-wrap {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      background: var(--white);
      border: 1.5px solid var(--gray-300);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      position: relative;
      box-shadow: 0 4px 20px rgba(30,58,95,0.06);
    }
    .step-icon-svg { }
    .step-num {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--cobalt);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .step-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; text-align: center; letter-spacing: -0.01em; }
    .step-body { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; text-align: center; }

    /* ── TWO COLUMN ── */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .two-col.reverse { direction: rtl; }
    .two-col.reverse > * { direction: ltr; }
    .section-image {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(30,58,95,0.12);
    }
    .section-image img { width: 100%; height: 400px; object-fit: cover; }
    .section-copy { }
    .section-copy .headline-lg { margin-bottom: 1.25rem; }
    .section-copy .body-lg { margin-bottom: 2rem; }
    .check-list { display: flex; flex-direction: column; gap: 1rem; }
    .check-item { display: flex; align-items: flex-start; gap: 0.9rem; }
    .check-circle {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--cobalt);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .check-text { font-size: 0.92rem; color: var(--gray-700); font-weight: 500; line-height: 1.5; }

    /* ── STATS BAR ── */
    .stats-bar { background: var(--navy); }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat-item { padding: 2rem; }
    .stat-value {
      font-size: 3rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-value span { color: var(--cobalt-400); }
    .stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-weight: 500; }
    .stat-sub { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.25rem; }

    /* ── TALENT FEATURES ── */
    .talent-features { display: flex; flex-direction: column; gap: 1rem; }
    .talent-feat {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      transition: all 0.25s;
    }
    .talent-feat:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
    .talent-feat-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--cobalt);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .talent-feat-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.15rem; }
    .talent-feat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

    /* ── PRICING ── */
    .pricing { background: var(--gray-50); }
    .pricing-toggle {
      display: inline-flex;
      background: var(--white);
      border-radius: 100px;
      padding: 0.35rem;
      gap: 0.25rem;
      border: 1px solid var(--gray-300);
    }
    .toggle-btn {
      padding: 0.55rem 1.4rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.85rem;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      background: transparent;
      color: var(--gray-500);
    }
    .toggle-btn.active { background: var(--navy); color: var(--white); }
    .toggle-save {
      display: inline-flex;
      align-items: center;
      background: var(--cobalt);
      color: var(--white);
      border-radius: 100px;
      padding: 0.15rem 0.55rem;
      font-size: 0.68rem;
      font-weight: 800;
      margin-left: 0.35rem;
    }
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      align-items: start;
    }
    .plan-card {
      background: var(--white);
      border-radius: 20px;
      padding: 2rem;
      border: 1.5px solid var(--gray-300);
      position: relative;
      transition: all 0.3s;
    }
    .plan-card:hover { box-shadow: 0 20px 60px rgba(30,58,95,0.1); transform: translateY(-4px); }
    .plan-card.featured {
      border-color: var(--cobalt);
      border-width: 2px;
      transform: scale(1.03);
      box-shadow: 0 20px 60px rgba(0,74,173,0.15);
    }
    .plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
    .plan-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--cobalt);
      color: var(--white);
      padding: 0.3rem 1.1rem;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 800;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }
    .plan-name {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 0.35rem;
      letter-spacing: -0.02em;
    }
    .plan-desc { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.5rem; line-height: 1.5; }
    .plan-price {
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 0.25rem;
    }
    .plan-price small { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
    .plan-price-sub { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 1.5rem; }
    .plan-divider {
      height: 2px;
      border-radius: 1px;
      background: var(--gray-100);
      margin-bottom: 1.5rem;
    }
    .plan-divider.colored { background: linear-gradient(90deg, var(--navy), var(--cobalt)); }
    .plan-features { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
    .plan-feat { display: flex; align-items: center; gap: 0.65rem; font-size: 0.88rem; color: var(--gray-700); }
    .plan-feat-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--cobalt-100); border: 1px solid var(--cobalt-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

    /* ── WAITLIST ── */
    .waitlist { background: var(--navy); text-align: center; }
    .waitlist .headline-xl { color: var(--white); }
    .waitlist .body-lg { color: rgba(255,255,255,0.55); }
    .wl-inner { max-width: 560px; margin: 0 auto; }
    .wl-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 2.5rem;
    }
    .wl-input {
      padding: 0.9rem 1.2rem;
      border: 1.5px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      background: rgba(255,255,255,0.07);
      color: var(--white);
      font-size: 0.95rem;
      font-family: inherit;
      outline: none;
      transition: border 0.2s, background 0.2s;
    }
    .wl-input::placeholder { color: rgba(255,255,255,0.3); }
    .wl-input:focus { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); }
    .wl-input.full { grid-column: 1 / -1; }
    .wl-input.select { grid-column: 1 / -1; }
    .wl-input.select option { color: var(--gray-900); background: var(--white); }
    .wl-submit { grid-column: 1 / -1; }
    .wl-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 1rem; }
    .wl-success {
      display: none;
      margin-top: 1.5rem;
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 1.5rem;
      color: var(--white);
      font-weight: 700;
      font-size: 1rem;
    }

    /* ── FOOTER ── */
    .footer { background: var(--navy-900); padding: 3rem 0; }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-logo { font-size: 1.15rem; font-weight: 900; color: var(--white); letter-spacing: -0.04em; }
    .footer-logo span { color: var(--cobalt-400); }
    .footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .footer-links a:hover { color: rgba(255,255,255,0.8); }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid::before { display: none; }
      .stats-grid { grid-template-columns: repeat(3, 1fr); }
      .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .plan-card.featured { transform: none; }
      .plan-card.featured:hover { transform: translateY(-4px); }
    }
    @media (max-width: 768px) {
      .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .two-col { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
      .two-col.reverse { direction: ltr; }
      .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
      .nav-links { display: none; }
      .wl-form { grid-template-columns: 1fr; }
      .wl-input, .wl-submit { grid-column: 1; }
      .stats-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .section { padding: 4rem 1.25rem; }
      .container { padding: 0 1.25rem; }
      .hero-inner { padding: 0 1.25rem 3rem; }
    }

/* ── PAGE HERO (inner page headers) ─────────────────────────── */
.page-hero {
  padding: 6rem 2rem 5rem;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.page-hero .tag { margin-bottom: 1.5rem; }
.page-hero .headline-xl { max-width: 680px; margin: 0 auto 1.25rem; }

/* ── GRIDS ───────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 20px;
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(30,58,95,0.1);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cobalt-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.card-body {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── ACCORDION (FAQ) ─────────────────────────────────────────── */
.accordion-item {
  border: 1.5px solid var(--gray-100);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.accordion-item:has(.accordion-body[style*="grid"]) {
  border-color: var(--cobalt);
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s;
}
.accordion-header:hover { background: var(--gray-50); }
.accordion-arrow {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.3s;
}
.accordion-item.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.accordion-item.open .accordion-body {
  display: block;
}

/* ── STAT BARS ──────────────────────────────────────────────── */
.stat-bar {
  background: var(--navy);
  padding: 4rem 2rem;
}
.stat-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { }
.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-value span { color: var(--cobalt-400); }
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}

/* ── SECTION IMAGE ───────────────────────────────────────────── */
.section-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,58,95,0.12);
  border: 1.5px solid var(--gray-100);
}
.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CHECK LIST ──────────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cobalt-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.check-circle svg { display: block; }
.check-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ── PRICING TOGGLE ─────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.toggle-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.toggle-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── MEDIA QUERIES (inner pages) ────────────────────────────── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .page-hero { padding: 4rem 1.25rem 3rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 2rem; }
}
