    /* Lenis Smooth Scroll CSS */
    html.lenis,
    html.lenis body {
      height: auto;
    }

    .lenis-smooth {
      scroll-behavior: auto !important;
    }

    .lenis-smooth [data-lenis-prevent] {
      overscroll-behavior: contain;
    }

    .lenis-stopped {
      overflow: hidden;
    }

    .lenis-scrolling iframe {
      pointer-events: none;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #fff;
      color: #0A1423;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::selection {
      background: var(--navy);
      color: #fff;
    }

    /* ── Custom Scrollbar ─────────────────────────────────── */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--g50);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--g200);
      border-radius: 4px;
      border: 2px solid var(--g50);
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--grey);
    }

    /* ── Tokens ───────────────────────────────────────────── */
    :root {
      --navy: #12355B;
      /* Premium Blue */
      --navy-dark: #0D2948;
      --gold: #D4A017;
      --gold-light: #F4C542;
      --card-bg: #F8FBFF;
      --text-on-blue: #FFFFFF;
      --muted-on-blue: #DCE8F7;
      --g50: #F8FAFC;
      --g100: #EEF2F7;
      --g200: #D7DEE7;
      --grey: #667085;
      --r-md: 8px;
      --r-lg: 12px;
      --r-pill: 999px;
    }

    /* ── Helpers ──────────────────────────────────────────── */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #0A1423;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: var(--r-pill);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .04em;
    }

    .pill-amber {
      background: rgba(212, 160, 23, .1);
      color: #8B6914;
    }

    .pill .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: var(--r-lg);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: all 250ms ease;
      white-space: nowrap;
    }

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

    .btn-primary {
      background: var(--navy);
      color: #fff;
    }

    .btn-primary:hover {
      box-shadow: 0 8px 20px rgba(18, 53, 91, 0.2);
    }

    .btn-amber {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 8px 24px rgba(212, 160, 23, .22);
    }

    .btn-amber:hover {
      box-shadow: 0 10px 28px rgba(212, 160, 23, 0.35);
    }

    .btn-ghost {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid var(--g200);
    }

    .btn-ghost:hover {
      border-color: var(--navy);
      background: var(--g50);
      transform: translateY(-1px);
    }

    .btn-ghost-inv {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .25);
    }

    .btn-ghost-inv:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .05);
    }

    .btn-sm {
      padding: 9px 18px;
      font-size: 13px;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .55s ease, transform .55s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    section {
      padding: 80px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(26px, 3.5vw, 36px);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
      margin-top: 10px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.2;
    }

    .section-sub {
      font-size: 15px;
      color: #404854;
      margin-top: 8px;
      line-height: 1.65;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ════ NAV ═══════════════════════════════════════════════ */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--g100);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
      gap: 20px;
    }

    .nav-logo-link {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo {
      display: block;
      height: 32px;
      width: auto;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      gap: 4px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 600;
      color: #404854;
      text-decoration: none;
      padding: 6px 11px;
      border-radius: var(--r-md);
      transition: color .15s, background .15s;
    }

    .nav-links a:hover {
      color: var(--navy);
      background: var(--g50);
    }

    @media (max-width: 680px) {
      .nav-links {
        display: none;
      }
    }

    /* ════ HERO SPLIT ════════════════════════════════════════ */
    .hero {
      background: #fff;
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 5% 50%, rgba(212, 160, 23, .04), transparent 55%), radial-gradient(ellipse 50% 70% at 95% 20%, rgba(10, 20, 35, .03), transparent 55%);
      pointer-events: none;
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(var(--g100) 1px, transparent 1px), linear-gradient(90deg, var(--g100) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity: .28;
      pointer-events: none;
    }

    .hero-glow {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(212, 160, 23, .07), transparent 70%);
      pointer-events: none;
      z-index: 0;
      filter: blur(50px);
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 100px 0 88px;
      position: relative;
      z-index: 2;
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 0 60px;
        text-align: center;
      }

      .hero-right {
        display: none;
      }

      .trust-row {
        justify-content: center;
      }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(212, 160, 23, .08);
      border: 1px solid rgba(212, 160, 23, .2);
      border-radius: var(--r-pill);
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #8B6914;
      margin-bottom: 22px;
    }

    .live-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ef4444;
      animation: blink 1.2s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .3;
      }
    }

    .hero-h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(36px, 4.8vw, 62px);
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: -.03em;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .hero-h1 .accent {
      color: var(--gold);
      display: inline-block;
      position: relative;
    }

    .hero-h1 .accent::after {
      content: '';
      position: absolute;
      bottom: 1px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      opacity: .2;
      border-radius: 2px;
    }

    .hero-p {
      font-size: 16px;
      color: var(--grey);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 440px;
      font-weight: 700;
    }

    .hero-p strong {
      color: var(--navy);
    }

    .hero-cta-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, auto);
      gap: 24px;
      align-items: start;
      justify-content: flex-start;
    }

    .trust-col {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 700;
      color: var(--navy);
    }

    .trust-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(212, 160, 23, .1);
      border: 1.5px solid rgba(212, 160, 23, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
      color: var(--gold);
    }

    @media (max-width: 900px) {
      .trust-grid {
        justify-content: center;
        grid-template-columns: repeat(2, auto);
        gap: 16px;
      }

      .trust-col {
        align-items: center;
      }
    }

    @media (max-width: 480px) {
      .trust-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
      }

      .trust-col {
        align-items: center;
        gap: 8px;
      }
    }

    .hero-price-main {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 26px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -.02em;
    }

    .hero-price-badge {
      background: var(--gold);
      color: var(--navy);
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--r-pill);
      letter-spacing: .06em;
    }

    .hero-meta {
      font-size: 12px;
      color: var(--grey);
      margin-top: 4px;
    }

    /* Hero Right Dashboard */
    .hero-right {
      position: relative;
      height: 480px;
    }

    .hero-dashboard {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .h-card {
      background: #fff;
      border: 1px solid var(--g100);
      border-radius: 16px;
      padding: 20px;
      position: absolute;
      box-shadow: 0 8px 32px rgba(10, 20, 35, .07);
    }

    .h-main {
      top: 0;
      left: 0;
      right: 0;
      bottom: 64px;
      display: flex;
      flex-direction: column;
    }

    .h-code-header {
      display: flex;
      align-items: center;
      gap: 7px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--g100);
      margin-bottom: 14px;
      flex-shrink: 0;
    }

    .h-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .h-dot-r {
      background: #ef4444;
    }

    .h-dot-y {
      background: #f59e0b;
    }

    .h-dot-g {
      background: #22c55e;
    }

    .h-file {
      font-size: 12px;
      font-weight: 600;
      color: #404854;
      margin-left: 4px;
    }

    .code-block {
      font-family: 'Courier New', monospace;
      font-size: 11.5px;
      line-height: 1.75;
      flex: 1;
      overflow: hidden;
    }

    .code-line {
      display: flex;
      gap: 14px;
    }

    .c-num {
      color: rgba(102, 112, 133, .35);
      user-select: none;
      width: 16px;
      flex-shrink: 0;
      text-align: right;
    }

    .c-kw {
      color: #7c3aed;
    }

    .c-fn {
      color: #0ea5e9;
    }

    .c-str {
      color: #16a34a;
    }

    .c-cm {
      color: rgba(102, 112, 133, .5);
      font-style: italic;
    }

    .c-plain {
      color: var(--navy);
    }

    .cursor-blink {
      display: inline-block;
      width: 2px;
      height: 13px;
      background: var(--gold);
      animation: cursorBlink .85s step-end infinite;
      margin-left: 1px;
      vertical-align: middle;
    }

    @keyframes cursorBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    .h-float1 {
      bottom: 14px;
      left: -24px;
      width: 168px;
      padding: 16px;
      animation: flt1 4s ease-in-out infinite;
      z-index: 10;
    }

    .h-float2 {
      top: 30px;
      right: -28px;
      width: 152px;
      padding: 14px;
      animation: flt2 5s ease-in-out infinite;
      z-index: 10;
    }

    .h-float3 {
      bottom: 110px;
      right: -24px;
      width: 148px;
      padding: 14px;
      animation: flt3 4.5s ease-in-out infinite;
      z-index: 10;
    }

    @keyframes flt1 {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes flt2 {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(8px);
      }
    }

    @keyframes flt3 {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .fl-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #0A1423;
      margin-bottom: 5px;
    }

    .fl-value {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.1;
    }

    .fl-sub {
      font-size: 12px;
      color: #404854;
      margin-top: 2px;
    }

    .fl-bar-wrap {
      height: 4px;
      background: var(--g100);
      border-radius: 2px;
      margin-top: 9px;
    }

    .fl-bar {
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px;
    }

    .fl-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-top: 8px;
    }

    .fl-tag {
      font-size: 11px;
      font-weight: 600;
      background: var(--g50);
      border: 1px solid var(--g100);
      color: #0A1423;
      padding: 3px 8px;
      border-radius: var(--r-pill);
    }

    .fl-tag.on {
      background: rgba(212, 160, 23, .1);
      border-color: rgba(212, 160, 23, .3);
      color: #8B6914;
    }

    .fl-status {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
      font-size: 11px;
      font-weight: 600;
      color: #16a34a;
    }

    .fl-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #22c55e;
      animation: pulse 1.5s ease-in-out infinite;
      flex-shrink: 0;
    }

    /* Stats strip kept for reuse */
    .stats-strip {
      display: flex;
      justify-content: center;
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      overflow: hidden;
      max-width: 620px;
      margin: 0 auto;
    }

    .stat-item {
      flex: 1;
      padding: 18px 12px;
      text-align: center;
      border-right: 1px solid var(--g100);
    }

    .stat-item:last-child {
      border-right: 0;
    }

    .stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--gold-light);
      letter-spacing: -.02em;
      line-height: 1;
      margin-bottom: 3px;
    }

    .stat-label {
      font-size: 13px;
      font-weight: 700;
      color: #0A1423;
    }

    /* ════ TOOLS & TECHNOLOGIES ══════════════════════════ */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    @media (max-width: 1024px) {
      .tools-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 680px) {
      .tools-grid {
        grid-template-columns: 1fr;
      }
    }

    .tool-category {
      background: #fff;
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      padding: 24px 20px;
    }

    .tool-cat-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 16px;
      display: block;
    }

    .tool-names {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .tool-name {
      font-size: 14px;
      font-weight: 500;
      color: #404854;
      line-height: 1.4;
    }

    /* ════ TICKER ════════════════════════════════════════════ */
    .ticker-wrap {
      background: var(--navy);
      padding: 12px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-track {
      display: inline-flex;
      animation: ticker 30s linear infinite;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 32px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, .65);
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .ticker-item .sep {
      color: var(--gold);
    }

    @keyframes ticker {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ════ PROBLEM ═══════════════════════════════════════════ */
    .problem {
      background: var(--g50);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    @media (max-width: 760px) {
      .problem-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .problem-card {
      background: #fff;
      border: 1px solid var(--g100);
      border-left: 3px solid var(--gold);
      border-radius: var(--r-lg);
      padding: 22px 18px;
    }

    .problem-icon {
      width: 34px;
      height: 34px;
      background: rgba(212, 160, 23, .08);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }

    .problem-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 5px;
    }

    .problem-card p {
      font-size: 13px;
      color: #404854;
      line-height: 1.5;
    }

    .problem-stat {
      margin-top: 36px;
      background: var(--navy);
      border-radius: var(--r-lg);
      padding: 20px 28px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .problem-stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 44px;
      font-weight: 800;
      color: var(--gold-light);
      letter-spacing: -.03em;
      white-space: nowrap;
    }

    .problem-stat-text {
      font-size: 15px;
      color: rgba(255, 255, 255, .7);
      line-height: 1.55;
    }

    .problem-stat-text strong {
      color: #fff;
    }

    /* ════ PROGRAMS ══════════════════════════════════════════ */
    .programs {
      background: #fff;
    }

    .prog-tabs {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .prog-tab {
      padding: 9px 20px;
      border-radius: var(--r-pill);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: 1.5px solid var(--g200);
      color: var(--grey);
      background: #fff;
      transition: all .2s;
    }

    .prog-tab.active {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }

    .prog-panel {
      display: none;
    }

    .prog-panel.active {
      display: block;
    }

    .bento {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    @media (max-width: 860px) {
      .bento {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .bento {
        grid-template-columns: 1fr;
      }
    }

    .bento-card {
      background: var(--g50);
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      padding: 30px 24px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
    }

    .bento-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(10, 20, 35, 0.04);
    }

    .bento-card.featured {
      background: linear-gradient(135deg, rgba(212, 160, 23, .08), rgba(212, 160, 23, .02));
      border-color: rgba(212, 160, 23, .3);
    }

    .bento-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 52px;
      font-weight: 800;
      color: var(--navy);
      opacity: 0.05;
      line-height: 1;
      position: absolute;
      right: 20px;
      top: 20px;
      letter-spacing: -.04em;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }

    .bento-card.featured .bento-num {
      color: var(--gold);
      opacity: 0.08;
    }

    .bento-content {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .bento-week {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #0A1423;
      margin-bottom: 14px;
    }

    .bento-card.featured .bento-week {
      color: rgba(212, 160, 23, .7);
    }

    .bento-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
      letter-spacing: -.01em;
      line-height: 1.3;
      max-width: 85%;
    }

    .bento-card.featured .bento-title {
      color: var(--navy);
    }

    .bento-card p {
      font-size: 13px;
      color: #404854;
      line-height: 1.5;
      margin-top: 4px;
    }

    .bento-card.featured p {
      color: var(--grey);
    }

    .bento-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 14px;
    }

    .bento-tag {
      font-size: 12px;
      font-weight: 600;
      background: var(--g100);
      color: #0A1423;
      padding: 4px 10px;
      border-radius: var(--r-pill);
    }

    .bento-card.featured .bento-tag {
      background: rgba(212, 160, 23, .12);
      color: #8B6914;
      border: 1px solid rgba(212, 160, 23, .2);
    }

    /* Responsive adjustments for background numbers */
    @media (max-width: 600px) {
      .bento-num {
        font-size: 42px;
        opacity: 0.04;
        top: 15px;
        right: 15px;
      }

      .bento-title {
        max-width: 100%;
      }
    }

    /* ════ BUILD ══════════════════════════════════════════════ */
    .build {
      background: var(--g50);
    }

    .build-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    @media (max-width: 580px) {
      .build-grid {
        grid-template-columns: 1fr;
      }
    }

    .build-card {
      background: #fff;
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      padding: 26px 22px;
      transition: border-color .2s;
    }

    .build-card:hover {
      border-color: var(--gold);
    }

    .build-num {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .12em;
      text-transform: capitalize;
      margin-bottom: 10px;
    }

    .build-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 17px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 7px;
      letter-spacing: -.01em;
    }

    .build-card p {
      font-size: 13px;
      color: #404854;
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .build-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .stack-tag {
      font-size: 11px;
      font-weight: 500;
      color: var(--navy);
      background: var(--g50);
      border: 1px solid var(--g100);
      padding: 3px 8px;
      border-radius: var(--r-pill);
    }

    /* ════ WHAT YOU GET ══════════════════════════════════════ */
    .get {
      background: var(--navy);
    }

    .get-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    @media (max-width: 680px) {
      .get-grid {
        grid-template-columns: 1fr;
      }
    }

    .get-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--r-lg);
      padding: 22px 18px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .get-check {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      border-radius: 50%;
      background: rgba(212, 160, 23, .12);
      border: 1.5px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .get-card-title {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 3px;
    }

    .get-card-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, .4);
      line-height: 1.5;
    }

    /* ════ WHY ════════════════════════════════════════════════ */
    .why {
      background: #fff;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    @media (max-width: 680px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    .why-card {
      background: var(--g50);
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      padding: 26px 22px;
      transition: border-color .2s, transform .2s;
    }

    .why-card:hover {
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    .why-num {
      font-size: 12px;
      font-weight: 700;
      color: #0A1423;
      letter-spacing: .1em;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .why-num::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--g100);
    }

    .why-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 17px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 8px;
      letter-spacing: -.01em;
    }

    .why-card p {
      font-size: 13px;
      color: #404854;
      line-height: 1.65;
    }

    /* ════ INSTRUCTOR ════════════════════════════════════════ */
    .instructor {
      background: var(--g50);
    }

    .instructor-inner {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 48px;
      align-items: center;
    }

    @media (max-width: 700px) {
      .instructor-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .instructor-avatar {
        margin: 0 auto;
      }

      .instructor-tags {
        justify-content: center;
      }

      .instructor-stats {
        justify-content: center;
      }
    }

    .instructor-avatar {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      border: 3px solid var(--g200);
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }

    .instructor-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .instructor-avatar-ring {
      position: absolute;
      inset: -7px;
      border-radius: 50%;
      border: 2px dashed rgba(212, 160, 23, .35);
      pointer-events: none;
    }

    .instructor-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 30px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -.02em;
      margin: 8px 0 4px;
    }

    .instructor-role {
      font-size: 14px;
      color: #404854;
      margin-bottom: 18px;
      line-height: 1.55;
    }

    .instructor-stats {
      display: flex;
      gap: 28px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }

    .i-stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: -.02em;
      line-height: 1;
    }

    .i-stat-lbl {
      font-size: 12px;
      color: #404854;
      margin-top: 2px;
      font-weight: 500;
    }

    .instructor-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .i-tag {
      font-size: 12px;
      font-weight: 500;
      color: var(--navy);
      background: #fff;
      border: 1px solid var(--g100);
      padding: 4px 11px;
      border-radius: var(--r-pill);
    }

    /* ════ PRICING ═══════════════════════════════════════════ */
    .pricing {
      background: var(--navy);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 0;
    }

    @media (max-width: 860px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
      }
    }

    .price-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 14px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }

    .price-card.featured {
      background: linear-gradient(160deg, rgba(212, 160, 23, .08), rgba(212, 160, 23, .02));
      border-color: rgba(212, 160, 23, .4);
    }

    .price-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: var(--r-pill);
      letter-spacing: .06em;
      white-space: nowrap;
    }

    .price-who {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 8px;
    }

    .price-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
      letter-spacing: -.01em;
    }

    .price-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .price-amount {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 6px;
    }

    .price-main {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 42px;
      font-weight: 800;
      color: var(--gold-light);
      letter-spacing: -.04em;
      line-height: 1;
    }

    .price-strike {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: rgba(255, 255, 255, .2);
      text-decoration: line-through;
    }

    .price-off {
      background: var(--gold);
      color: var(--navy);
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--r-pill);
    }

    .price-includes {
      font-size: 13px;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 4px;
    }

    .price-includes strong {
      color: rgba(255, 255, 255, .75);
      font-weight: 500;
    }

    .price-list {
      list-style: none;
      margin: 16px 0 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .price-list li {
      font-size: 13px;
      color: rgba(255, 255, 255, .75);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .price-list li::before {
      content: '';
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(212, 160, 23, .12);
      border: 1px solid rgba(212, 160, 23, .35);
      display: flex;
      flex-shrink: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23D4A017' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }

    .price-seats {
      font-size: 12px;
      color: rgba(255, 255, 255, .35);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 16px;
    }

    .seats-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 1.5s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .4;
        transform: scale(.8);
      }
    }

    .price-btn {
      display: block;
      text-align: center;
      padding: 13px;
      border-radius: var(--r-lg);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      margin-top: auto;
      transition: opacity .15s, transform .15s;
    }

    .price-btn:hover {
      opacity: .88;
      transform: translateY(-1px);
    }

    .price-btn-primary {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 8px 24px rgba(212, 160, 23, .22);
    }

    .price-btn-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .2);
    }

    /* ════ ENROLLMENT FORM ═══════════════════════════════════ */
    .enroll {
      background: var(--g50);
    }

    .enroll-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    @media (max-width: 760px) {
      .enroll-inner {
        grid-template-columns: 1fr;
      }
    }

    .enroll-left h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -.02em;
      margin: 10px 0 12px;
      line-height: 1.15;
    }

    .enroll-left p {
      font-size: 14px;
      color: #404854;
      line-height: 1.65;
      margin-bottom: 24px;
    }

    .enroll-perks {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .enroll-perk {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--navy);
    }

    .enroll-perk-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .enroll-form {
      background: #fff;
      border: 1px solid var(--g100);
      border-radius: 16px;
      padding: 32px 28px;
    }

    .enroll-form h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .enroll-form .form-sub {
      font-size: 13px;
      color: #404854;
      margin-bottom: 24px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: .03em;
      display: block;
      margin-bottom: 6px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 11px 14px;
      border-radius: var(--r-md);
      border: 1.5px solid var(--g200);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--navy);
      background: #fff;
      outline: none;
      transition: border-color .15s;
      -webkit-appearance: none;
      appearance: none;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--navy);
    }

    .form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }

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

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    @media (max-width: 480px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--navy);
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      border: none;
      border-radius: var(--r-lg);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 6px;
      transition: opacity .15s, transform .15s;
      letter-spacing: -.01em;
    }

    .form-submit:hover {
      opacity: .88;
      transform: translateY(-1px);
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 20px;
    }

    .form-success .success-icon {
      width: 52px;
      height: 52px;
      background: rgba(212, 160, 23, .1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      border: 2px solid var(--gold);
    }

    .form-success h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .form-success p {
      font-size: 14px;
      color: #404854;
    }

    /* ════ FOOTER ════════════════════════════════════════════ */
    footer {
      background: #143e6c; /* Exact match from the reference image */
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 80px 0 30px;
      color: var(--muted-on-blue);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 640px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      footer {
        padding: 60px 0 100px;
      }
    }

    /* Extra bottom padding for mobile sticky CTA */

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: flex-start;
    }

    .footer-logo {
      height: 42px; /* Slightly larger for perfect clarity */
      width: auto;
      display: block;
      object-fit: contain;
      image-rendering: -webkit-optimize-contrast;
      filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 10px rgba(255,255,255,0.15));
    }

    @media (max-width: 640px) {
      .footer-logo {
        height: 28px;
      }
    }

    .footer-brand-desc {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, .45);
      max-width: 280px;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    .footer-social-link {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .6);
      transition: all .2s ease;
      border: 1px solid rgba(255, 255, 255, .05);
    }

    .footer-social-link:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-2px);
      border-color: var(--gold);
    }

    .footer-col-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 24px;
    }

    .footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-list a {
      color: rgba(255, 255, 255, .45);
      text-decoration: none;
      font-size: 14px;
      transition: color .2s;
      display: inline-block;
    }

    .footer-list a:hover {
      color: var(--gold);
    }

    .footer-contact-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .footer-contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255, 255, 255, .45);
    }

    .footer-contact-item svg {
      width: 18px;
      height: 18px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-contact-item a {
      color: inherit;
      text-decoration: none;
      transition: color .2s;
    }

    .footer-contact-item a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: rgba(255, 255, 255, .3);
    }

    @media (max-width: 768px) {
      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
    }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }

    .footer-bottom-links a {
      color: inherit;
      text-decoration: none;
      transition: color .2s;
    }

    .footer-bottom-links a:hover {
      color: rgba(255, 255, 255, .6);
    }

    /* ════ INDUSTRY STATS ════════════════════════════════════ */
    .ind-stats {
      background: var(--navy);
      padding: 56px 0;
    }

    .ind-stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (max-width: 700px) {
      .ind-stats-grid {
        grid-template-columns: 1fr;
      }
    }

    .ind-stat-card {
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--r-lg);
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
    }

    .ind-stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

    .ind-stat-pct {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 52px;
      font-weight: 800;
      color: var(--gold-light);
      letter-spacing: -.04em;
      line-height: 1;
      margin-bottom: 10px;
    }

    .ind-stat-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .ind-stat-source {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .06em;
      text-transform: uppercase;
      background: rgba(212, 160, 23, .1);
      padding: 4px 12px;
      border-radius: var(--r-pill);
      transition: all 0.3s ease;
      border: 1px solid rgba(212, 160, 23, 0.1);
    }

    .ind-stat-source:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(212, 160, 23, 0.2);
      background: rgba(212, 160, 23, .15);
      border-color: rgba(212, 160, 23, 0.3);
    }

    .ind-quote {
      margin-top: 48px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--r-lg);
      padding: 32px;
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .ind-quote-mark {
      font-size: 48px;
      line-height: 1;
      color: var(--gold);
      opacity: .5;
      font-family: 'Sora', serif;
      flex-shrink: 0;
      margin-top: -8px;
    }

    .ind-quote-text {
      font-size: 16px;
      color: rgba(255, 255, 255, .85);
      line-height: 1.7;
      font-style: italic;
    }

    .ind-quote-attr {
      display: inline-flex;
      margin-top: 16px;
      font-size: 13px;
      color: var(--gold-light);
      font-style: normal;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.05);
      padding: 6px 14px;
      border-radius: var(--r-pill);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .ind-quote-attr:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
      border-color: var(--gold);
    }

    /* ════ PROBLEM + SOLUTION ════════════════════════════════ */
    .prob-sol-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
    }

    @media (max-width: 760px) {
      .prob-sol-wrap {
        grid-template-columns: 1fr;
      }
    }

    .prob-col,
    .sol-col {
      border-radius: var(--r-lg);
      padding: 28px 24px;
    }

    .prob-col {
      background: #fff;
      border: 1px solid var(--g100);
    }

    .sol-col {
      background: var(--navy);
      border: 1px solid rgba(212, 160, 23, .2);
    }

    .ps-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .ps-badge {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: var(--r-pill);
    }

    .ps-badge-prob {
      background: rgba(239, 68, 68, .1);
      color: #dc2626;
    }

    .ps-badge-sol {
      background: rgba(212, 160, 23, .15);
      color: var(--gold);
    }

    .ps-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 800;
    }

    .ps-title-prob {
      color: var(--navy);
    }

    .ps-title-sol {
      color: #fff;
    }

    .ps-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ps-list li {
      font-size: 13px;
      line-height: 1.5;
      display: flex;
      gap: 9px;
      align-items: flex-start;
    }

    .ps-list li::before {
      flex-shrink: 0;
      margin-top: 1px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    .prob-col .ps-list li {
      color: var(--grey);
    }

    .prob-col .ps-list li::before {
      content: '✕';
      background: rgba(239, 68, 68, .08);
      color: #dc2626;
      font-weight: 700;
    }

    .sol-col .ps-list li {
      color: rgba(255, 255, 255, .7);
    }

    .sol-col .ps-list li::before {
      content: '✓';
      background: rgba(212, 160, 23, .12);
      color: var(--gold);
      font-weight: 700;
    }

    /* ════ TOOLS GRID ════════════════════════════════════════ */
    .tools-section {
      background: var(--g50);
      padding: 64px 0;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    @media (max-width: 860px) {
      .tools-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .tool-category {
      background: #fff;
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      padding: 20px 18px;
    }

    .tool-cat-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .tool-names {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .tool-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--navy);
      padding: 5px 0;
      border-bottom: 1px solid var(--g100);
    }

    .tool-name:last-child {
      border-bottom: none;
    }

    /* ════ TRAINING MODES ════════════════════════════════════ */
    .modes {
      background: #fff;
    }

    .modes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    @media (max-width: 760px) {
      .modes-grid {
        grid-template-columns: 1fr;
      }
    }

    .mode-card {
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      padding: 30px 24px;
      transition: border-color .2s, transform .2s;
    }

    .mode-card:hover {
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    .mode-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--r-md);
      background: rgba(212, 160, 23, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
    }

    .mode-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .mode-sub {
      font-size: 12px;
      color: var(--grey);
      margin-bottom: 16px;
    }

    .mode-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .mode-list li {
      font-size: 13px;
      color: var(--grey);
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .mode-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 6px;
    }

    /* ════ ASSESSMENT ════════════════════════════════════════ */
    .assess {
      background: #fff;
      position: relative;
    }

    .assess-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: stretch;
    }

    @media (max-width: 900px) {
      .assess-inner {
        grid-template-columns: 1fr;
      }
    }

    .assess-box {
      background: var(--card-bg);
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      padding: 36px;
      height: 100%;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 20px rgba(18, 53, 91, 0.03);
    }

    .assess-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(18, 53, 91, 0.08);
      border-color: var(--gold);
    }

    .assess-box-title {
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .score-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .score-label {
      font-size: 14px;
      color: var(--grey);
      flex: 1;
      font-weight: 500;
    }

    .score-bar-wrap {
      width: 140px;
      height: 8px;
      background: var(--g100);
      border-radius: 99px;
      flex-shrink: 0;
      overflow: hidden;
    }

    .score-bar {
      height: 100%;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

    .score-pts {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      width: 32px;
      text-align: right;
      flex-shrink: 0;
    }

    .assess-weightage {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--g100);
      font-size: 13px;
      color: var(--grey);
      line-height: 1.8;
    }

    .assess-weightage strong {
      color: var(--navy);
      font-weight: 700;
    }

    .diff-levels {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .diff-level {
      padding: 16px 20px;
      border-radius: var(--r-md);
      border-left: 4px solid;
      transition: transform 0.2s ease;
    }

    .diff-level:hover {
      transform: translateX(5px);
    }

    .diff-level-1 {
      background: rgba(74, 222, 128, .08);
      border-color: #4ade80;
    }

    .diff-level-2 {
      background: rgba(251, 191, 36, .08);
      border-color: #fbbf24;
    }

    .diff-level-3 {
      background: rgba(239, 68, 68, .08);
      border-color: #ef4444;
    }

    .diff-level-title {
      font-size: 14px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .diff-level-desc {
      font-size: 13px;
      color: var(--grey);
      line-height: 1.5;
    }

    .leaderboard-box {
      grid-column: 1 / -1;
      justify-self: center;
      max-width: 800px;
      width: 100%;
      background: #F8FBFF;
      border: 1.5px solid rgba(18, 53, 91, 0.1);
      border-radius: var(--r-lg);
      padding: 40px;
      margin-top: 40px;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 20px rgba(18, 53, 91, 0.03);
    }

    .leaderboard-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(18, 53, 91, 0.08);
      border-color: var(--gold);
    }

    .lb-title {
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .lb-desc {
      font-size: 15px;
      color: var(--grey);
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ════ GUEST TRAINERS ════════════════════════════════════ */
    .guests {
      background: #fff;
    }

    .guests-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    @media (max-width: 760px) {
      .guests-grid {
        grid-template-columns: 1fr;
      }
    }

    .guest-card {
      background: var(--g50);
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      padding: 24px 20px;
      transition: border-color .2s;
    }

    .guest-card:hover {
      border-color: var(--gold);
    }

    .guest-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 14px;
      flex-shrink: 0;
    }

    .guest-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 3px;
    }

    .guest-role {
      font-size: 12px;
      color: var(--grey);
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .guest-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }

    .guest-tag {
      font-size: 11px;
      font-weight: 500;
      background: var(--g100);
      color: var(--grey);
      padding: 3px 9px;
      border-radius: var(--r-pill);
    }

    /* ════ CERTIFICATION ═════════════════════════════════════ */
    .cert-section {
      background: var(--navy);
    }

    .cert-partners {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .cert-partner {
      text-align: center;
      padding: 0 36px;
    }

    .cert-partner-plus {
      font-size: 24px;
      color: rgba(255, 255, 255, .2);
      font-weight: 300;
    }

    .cert-partner-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      font-size: 22px;
    }

    .cert-partner-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 3px;
    }

    .cert-partner-role {
      font-size: 11px;
      color: rgba(255, 255, 255, .35);
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .cert-tiers {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    @media (max-width: 680px) {
      .cert-tiers {
        grid-template-columns: 1fr;
      }
    }

    .cert-tier {
      border-radius: var(--r-lg);
      padding: 24px 20px;
      border: 1px solid rgba(255, 255, 255, .08);
      text-align: center;
    }

    .cert-tier-bronze {
      background: rgba(205, 127, 50, .06);
      border-color: rgba(205, 127, 50, .2);
    }

    .cert-tier-silver {
      background: rgba(192, 192, 192, .06);
      border-color: rgba(192, 192, 192, .2);
    }

    .cert-tier-gold {
      background: rgba(212, 160, 23, .07);
      border-color: rgba(212, 160, 23, .3);
    }

    .cert-medal {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .cert-tier-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }

    .cert-tier-desc {
      font-size: 12px;
      color: rgba(255, 255, 255, .45);
      line-height: 1.6;
    }

    .cert-tier-tag {
      display: inline-block;
      margin-top: 10px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: var(--r-pill);
    }

    .cert-tier-bronze .cert-tier-tag {
      background: rgba(205, 127, 50, .15);
      color: #cd7f32;
    }

    .cert-tier-silver .cert-tier-tag {
      background: rgba(192, 192, 192, .15);
      color: #c0c0c0;
    }

    .cert-tier-gold .cert-tier-tag {
      background: rgba(212, 160, 23, .15);
      color: var(--gold-light);
    }

    /* ════ TESTIMONIALS ══════════════════════════════════════ */
    .testimonials {
      background: var(--g50);
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    @media (max-width: 760px) {
      .testi-grid {
        grid-template-columns: 1fr;
      }
    }

    .testi-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--g100);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      overflow: hidden;
      flex-shrink: 0;
    }

    .testi-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .testi-card {
      background: #fff;
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      padding: 26px 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .testi-stars {
      color: var(--gold);
      font-size: 14px;
      letter-spacing: 2px;
    }

    .testi-text {
      font-size: 13px;
      color: var(--grey);
      line-height: 1.7;
      flex: 1;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 14px;
      border-top: 1px solid var(--g100);
    }

    .testi-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 800;
      color: var(--gold);
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
    }

    .testi-role {
      font-size: 11px;
      color: var(--grey);
      margin-top: 1px;
    }

    /* ════ FAQ ═══════════════════════════════════════════════ */
    .faq {
      background: #fff;
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      border: 1px solid var(--g100);
      border-radius: var(--r-lg);
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      text-align: left;
      padding: 18px 22px;
      background: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      transition: background .15s;
    }

    .faq-q:hover {
      background: var(--g50);
    }

    .faq-arrow {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--g100);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform .2s, background .2s;
    }

    .faq-item.open .faq-arrow {
      transform: rotate(180deg);
      background: var(--navy);
    }

    .faq-item.open .faq-arrow svg {
      stroke: #fff;
    }

    .faq-a {
      display: none;
      padding: 0 22px 18px;
      font-size: 14px;
      color: var(--grey);
      line-height: 1.7;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    /* ════ CHATBOT ═══════════════════════════════════════════ */
    .chat-fab {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--navy);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(11, 25, 41, .35);
      transition: transform .2s, box-shadow .2s;
    }

    .chat-fab:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 28px rgba(11, 25, 41, .45);
    }

    .chat-fab-ring {
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 2px solid rgba(212, 160, 23, .4);
      animation: fabring 2s ease-in-out infinite;
    }

    @keyframes fabring {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.12);
        opacity: .5;
      }
    }

    .chat-panel {
      position: fixed;
      bottom: 98px;
      right: 28px;
      z-index: 998;
      width: 340px;
      max-height: 520px;
      background: #fff;
      border: 1px solid var(--g100);
      border-radius: 16px;
      box-shadow: 0 8px 40px rgba(11, 25, 41, .18);
      display: flex;
      flex-direction: column;
      transform: scale(.92) translateY(12px);
      opacity: 0;
      pointer-events: none;
      transition: transform .2s, opacity .2s;
    }

    .chat-panel.open {
      transform: scale(1) translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .chat-header {
      background: var(--navy);
      border-radius: 14px 14px 0 0;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .chat-header-logo {
      height: 24px;
      width: auto;
      display: block;
    }

    .chat-header-info {
      flex: 1;
    }

    .chat-header-name {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .chat-header-status {
      font-size: 11px;
      color: rgba(255, 255, 255, .5);
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 1px;
    }

    .chat-status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4ade80;
      flex-shrink: 0;
    }

    .chat-close {
      background: rgba(255, 255, 255, .1);
      border: none;
      color: rgba(255, 255, 255, .7);
      cursor: pointer;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s;
    }

    .chat-close:hover {
      background: rgba(255, 255, 255, .2);
    }

    .chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      scroll-behavior: smooth;
    }

    .chat-messages::-webkit-scrollbar {
      width: 4px;
    }

    .chat-messages::-webkit-scrollbar-track {
      background: transparent;
    }

    .chat-messages::-webkit-scrollbar-thumb {
      background: var(--g200);
      border-radius: 4px;
    }

    .msg {
      max-width: 88%;
      line-height: 1.5;
    }

    .msg-bot {
      background: var(--g50);
      border: 1px solid var(--g100);
      border-radius: 4px 12px 12px 12px;
      padding: 10px 13px;
      font-size: 13px;
      color: var(--navy);
      align-self: flex-start;
    }

    .msg-user {
      background: var(--navy);
      color: #fff;
      border-radius: 12px 12px 4px 12px;
      padding: 10px 13px;
      font-size: 13px;
      align-self: flex-end;
    }

    .chat-quick {
      padding: 8px 14px 6px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      border-top: 1px solid var(--g100);
    }

    .quick-btn {
      font-size: 11px;
      font-weight: 500;
      padding: 5px 11px;
      border-radius: var(--r-pill);
      border: 1.5px solid var(--g200);
      background: #fff;
      color: var(--navy);
      cursor: pointer;
      transition: all .15s;
    }

    .quick-btn:hover {
      border-color: var(--navy);
      background: var(--g50);
    }

    .chat-input-row {
      padding: 10px 14px 14px;
      display: flex;
      gap: 8px;
    }

    .chat-input {
      flex: 1;
      padding: 9px 13px;
      border-radius: var(--r-pill);
      border: 1.5px solid var(--g200);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: var(--navy);
      outline: none;
      transition: border-color .15s;
    }

    .chat-input:focus {
      border-color: var(--navy);
    }

    .chat-send {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--navy);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: opacity .15s;
    }

    .chat-send:hover {
      opacity: .8;
    }

    .typing {
      display: flex;
      gap: 4px;
      align-items: center;
      padding: 12px 14px;
    }

    .typing span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--g200);
      animation: bounce .9s ease-in-out infinite;
    }

    .typing span:nth-child(2) {
      animation-delay: .15s;
    }

    .typing span:nth-child(3) {
      animation-delay: .3s;
    }

    @keyframes bounce {

      0%,
      60%,
      100% {
        transform: translateY(0);
      }

      30% {
        transform: translateY(-5px);
        background: var(--grey);
      }
    }

    @media (max-width: 400px) {
      .chat-panel {
        width: calc(100vw - 32px);
        right: 16px;
      }

      .chat-fab {
        right: 16px;
        bottom: 20px;
      }
    }

    /* ── WHATSAPP FAB ────────────────────────────────────────── */
    .wa-fab {
      position: fixed;
      bottom: 100px;
      right: 28px;
      z-index: 999;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
      text-decoration: none;
    }

    .wa-fab:hover {
      transform: scale(1.1) translateY(-4px);
      box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
    }

    .wa-tooltip {
      position: absolute;
      right: 74px;
      background: var(--navy);
      color: #fff;
      padding: 10px 16px;
      border-radius: var(--r-md);
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      transform: translateX(10px);
    }

    .wa-fab:hover .wa-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    .wa-tooltip::after {
      content: '';
      position: absolute;
      right: -5px;
      top: 50%;
      transform: translateY(-50%);
      border-left: 6px solid var(--navy);
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
    }

    /* ── COMMUNICATION SECTION ────────────────────────────────── */
    .contact-section {
      background: var(--g50);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--g200), transparent);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    @media (max-width: 860px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .comm-cards {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .comm-card {
      background: #fff;
      border: 1px solid var(--g100);
      border-radius: 16px;
      padding: 32px;
      display: flex;
      align-items: center;
      gap: 24px;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      position: relative;
    }

    .comm-card:hover {
      transform: translateX(8px);
      border-color: var(--gold);
    }

    .comm-card::after {
      content: '→';
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      color: var(--gold);
      opacity: 0;
      transition: all 0.3s;
    }

    .comm-card:hover::after {
      opacity: 1;
      transform: translateY(-50%) translateX(4px);
    }

    .comm-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .comm-card:hover .comm-icon {
      transform: scale(1.05);
    }

    .comm-icon.wa {
      background: rgba(37, 211, 102, 0.1);
      color: #25D366;
    }

    .comm-icon.mail {
      background: rgba(10, 20, 35, 0.05);
      color: var(--navy);
    }

    .comm-info h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .comm-card:visited h3,
    .comm-card:visited .comm-desc {
      color: var(--navy);
    }

    .comm-card:visited .comm-desc {
      color: var(--grey);
    }

    .comm-info p {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.5;
    }

    .contact-form-wrap {
      background: #fff;
      border: 1px solid var(--g100);
      border-radius: 24px;
      padding: 40px;
      position: relative;
    }

    .contact-form-wrap h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .contact-form-wrap .form-sub {
      font-size: 15px;
      color: var(--grey);
      margin-bottom: 32px;
    }

    .form-error {
      display: none;
      background: #FEF2F2;
      color: #DC2626;
      padding: 14px;
      border-radius: var(--r-md);
      font-size: 14px;
      margin-bottom: 20px;
      border: 1px solid #FECACA;
    }

    /* ════ HOW IT WORKS ═══════════════════════════════════════ */
    .how-works {
      background: var(--navy);
      padding: 80px 0;
    }

    .steps-flow {
      display: flex;
      position: relative;
      padding-top: 8px;
    }

    .steps-flow::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 8%;
      right: 8%;
      height: 2px;
      background: linear-gradient(90deg, rgba(212, 160, 23, 0), rgba(212, 160, 23, .4), rgba(212, 160, 23, 0));
    }

    @media (max-width: 760px) {
      .steps-flow {
        flex-direction: column;
        gap: 28px;
      }

      .steps-flow::before {
        display: none;
      }
    }

    .step-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 10px;
    }

    .step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04);
      border: 1.5px solid rgba(212, 160, 23, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 17px;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
      transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .step-item:hover .step-num {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold);
      transform: scale(1.12);
    }

    .step-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .step-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, .4);
      line-height: 1.55;
    }

    /* ════ COMPARISON ════════════════════════════════════════ */
    .compare {
      background: var(--g50);
    }

    .compare-table {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--g100);
    }

    .compare-head {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: var(--navy);
    }

    .compare-head-cell {
      padding: 16px 20px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: rgba(255, 255, 255, .4);
      text-align: center;
    }

    .compare-head-cell.hi {
      color: var(--gold);
    }

    .compare-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-bottom: 1px solid var(--g100);
      background: #fff;
      transition: background .15s;
    }

    .compare-row:last-child {
      border-bottom: none;
    }

    .compare-row:hover {
      background: var(--g50);
    }

    .compare-cell {
      padding: 14px 20px;
      font-size: 13px;
      color: var(--grey);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .compare-cell.topic {
      font-weight: 600;
      color: var(--navy);
    }

    .cx {
      color: #dc2626;
      font-weight: 700;
    }

    .ck {
      color: #16a34a;
      font-weight: 700;
    }

    /* ════ STICKY MOBILE CTA ════════════════════════════════ */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 996;
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 10px 16px;
      display: none;
      gap: 10px;
      backdrop-filter: blur(12px);
    }

    @media (max-width: 680px) {
      .sticky-cta {
        display: flex;
      }
    }

    .sticky-wa {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      background: #25D366;
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      padding: 12px 16px;
      border-radius: var(--r-lg);
      text-decoration: none;
    }

    .sticky-enroll {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: 13px;
      padding: 12px 16px;
      border-radius: var(--r-lg);
      text-decoration: none;
    }

    /* ════ STAGGER ANIMATION ════════════════════════════════ */
    .stagger>* {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .45s ease, transform .45s ease;
    }

    .stagger>*:nth-child(2) {
      transition-delay: .07s;
    }

    .stagger>*:nth-child(3) {
      transition-delay: .14s;
    }

    .stagger>*:nth-child(4) {
      transition-delay: .21s;
    }

    .stagger>*:nth-child(5) {
      transition-delay: .28s;
    }

    .stagger>*:nth-child(6) {
      transition-delay: .35s;
    }

    .stagger.visible>* {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Branding Section ─────────────────────────────────── */
    /* ── Branding Section ─────────────────────────────────── */
    .branding-section {
      background: var(--navy);
      /* Precise footer color match */
      padding: 160px 0 60px;
      position: relative;
      overflow: visible;
      color: #fff;
    }

    .branding-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
      opacity: 0.02;
      pointer-events: none;
    }

    .branding-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 80px;
    }

    .branding-tagline {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.8em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 60px;
      animation: taglineFade 2.5s ease-out forwards;
    }

    @keyframes taglineFade {
      0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    .giant-wordmark {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(120px, 26vw, 450px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.05em;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      user-select: none;
      margin: 0;
      padding: 20px 0;
      /* Extra vertical space to prevent cutting */
      position: relative;
      animation: wordmarkReveal 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes wordmarkReveal {
      0% {
        opacity: 0;
        transform: scale(0.98) translateY(20px);
      }

      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .branding-glow {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 300px;
      background: radial-gradient(circle at center, rgba(16, 68, 144, 0.1) 0%, transparent 70%);
      filter: blur(80px);
      z-index: 1;
      pointer-events: none;
    }

    .branding-visuals {
      position: absolute;
      inset: 0;
      opacity: 0.4;
      pointer-events: none;
    }

    .neural-lines {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        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: 80px 80px, 40px 40px, 40px 40px;
      mask-image: radial-gradient(circle at center, black, transparent 90%);
    }

    .branding-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 40px 0;
      margin-top: 120px;
      position: relative;
      z-index: 3;
    }

    .branding-bottom-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
    }

    .branding-bottom-links {
      display: flex;
      gap: 32px;
    }

    .branding-bottom-links a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s;
      letter-spacing: 0.05em;
    }

    .branding-bottom-links a:hover {
      color: #fff;
    }

    @media (max-width: 768px) {
      .branding-section {
        padding-top: 100px;
      }

      .branding-tagline {
        margin-bottom: 60px;
        letter-spacing: 0.4em;
      }

      .branding-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }

      .branding-bottom-links {
        justify-content: center;
        gap: 20px;
      }

      .giant-wordmark {
        margin-bottom: -30px;
      }
    }
