*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue-dark: #0d1b6e;
      --blue-brand: #1a3bdb;
      --blue-btn: #1638d4;
      --text-dark: #0d1226;
      --text-muted: #6b7a9a;
      --border: #dde3f0;
      --bg-page: #f5f7ff;
    }
    body {
      font-family: 'Geist', sans-serif;
      -webkit-font-smoothing: antialiased;
      background: #fff;
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      background: rgba(255,255,255,.42);
      backdrop-filter: blur(32px);
      -webkit-backdrop-filter: blur(22px);
      border-bottom: 1px solid rgba(255,255,255,.35);
      box-shadow: 0 4px 30px rgba(0,0,0,.03);
      transition: .35s ease;
      z-index: 9999;
    }
    .navbar.scrolled {
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(30px);
      box-shadow: 0 8px 35px rgba(0,0,0,.06);
    }
    .navbar .container { max-width: 1100px; }
    .nav-link {
      font-family: 'Geist', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: #08112D;
      margin: 0 14px;
      transition: .3s;
    }
    .nav-link:hover { color: #2455FF; }
    .btn-book {
      padding: 12px 24px;
      border-radius: 50px;
      background: #1652F0;
      color: white;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: .3s;
      display: inline-flex;
      align-items: center;
    }
    .btn-book:hover { background: #0B45DB; color: white; }
    .navbar-brand img { width: 100px; }

    /* ===== HERO ===== */
    .about-hero {
      position: relative;
      min-height: 72vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 100px 0 60px;
      background: #fff;
    }
    .about-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, #eef2ff 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f0f3ff;
      border: 1px solid #c7d0f5;
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--blue-brand);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow .dot {
      width: 7px; height: 7px;
      background: var(--blue-brand);
      border-radius: 50%;
    }
    .about-hero h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.1;
      color: var(--text-dark);
      margin-bottom: 1.25rem;
      letter-spacing: -1.5px;
    }
    .about-hero h1 .accent { color: var(--blue-brand); }
    .about-hero .sub {
      font-size: clamp(1rem, 2vw, 1.1rem);
      color: #4a5578;
      max-width: 560px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    .vision-mission-row {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    .vm-pill {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 18px 24px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #e2e7f5;
      max-width: 280px;
      text-align: left;
      box-shadow: 0 4px 20px rgba(30,60,200,.05);
    }
    .vm-pill .vm-icon {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: #eef2ff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .vm-pill .vm-icon i { color: #2455FF; font-size: 16px; }
    .vm-pill h6 {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #2455FF;
      margin-bottom: 4px;
    }
    .vm-pill p { font-size: 13px; line-height: 1.6; color: #4a5578; margin: 0; }
    .hero-cta-group {
      display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
    }
    .btn-cta-primary {
      background: var(--blue-btn); color: #fff;
      border: none; border-radius: 50px;
      padding: .75rem 1.8rem;
      font-size: 15.5px; font-weight: 600;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .btn-cta-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }
    .btn-cta-secondary {
      background: #fff; color: var(--text-dark);
      border: 1.5px solid #c5ccdf; border-radius: 50px;
      padding: .72rem 1.8rem;
      font-size: 15.5px; font-weight: 600;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none;
      transition: border-color .2s, color .2s, transform .15s;
    }
    .btn-cta-secondary:hover { border-color: var(--blue-brand); color: var(--blue-brand); transform: translateY(-2px); }

    /* ===== TRUSTED BY MARQUEE ===== */
    .trusted-bar {
      padding: 26px 0;
      background: #f9faff;
      border-top: 1px solid #eceef7;
      border-bottom: 1px solid #eceef7;
      overflow: hidden;
    }
    .trusted-bar .trusted-label {
      font-size: 11px; font-weight: 700; letter-spacing: .15em;
      text-transform: uppercase; color: #b0b8cf;
      text-align: center; margin-bottom: 20px;
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee-scroll 28s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    @keyframes marquee-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee-inner {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .brand-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 42px;
      opacity: 0.45;
      transition: opacity .3s;
      flex-shrink: 0;
    }
    .brand-logo-item:hover { opacity: 0.9; }
    .brand-logo-item svg {
      height: 26px;
      width: auto;
      fill: #4a5578;
    }
    .marquee-sep {
      width: 1px; height: 22px;
      background: #dde3f0;
      flex-shrink: 0;
    }

    /* ===== STATS ===== */
    .stats-section {
      padding: 60px 0;
      background: #fff;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid #eceef7;
      border-radius: 20px;
      overflow: hidden;
    }
    .stat-item {
      padding: 2.2rem 1.5rem;
      text-align: center;
      border-right: 1px solid #eceef7;
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--blue-dark);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 11px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ===== ABOUT PARTNER ===== */
    .about-partner {
      padding: 90px 0;
      background: #f5f6fa;
    }
    .about-partner .container { max-width: 1060px; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 700;
      color: #2455FF; letter-spacing: .3px;
      margin-bottom: 18px;
    }
    .section-eyebrow::before {
      content: ""; width: 18px; height: 2px;
      background: #2455FF; display: block;
    }
    .about-partner h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.1;
      color: #02112D;
      margin-bottom: 1.5rem;
    }
    .about-partner .lead-text {
      font-size: 15px;
      line-height: 1.8;
      color: #4a5578;
      max-width: 500px;
      margin-bottom: 2rem;
    }
    .partner-stat-row {
      display: flex; gap: 32px; flex-wrap: wrap;
      
    }
    .partner-stat h4 {
      font-size: 28px; font-weight: 800;
      color: var(--blue-dark); margin-bottom: 2px;
    }
    .partner-stat span {
      font-size: 11px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--text-muted);
    }
    .about-right-card {
      padding: 40px;
      border-radius: 24px;
      background: linear-gradient(135deg, #2F63FF, #2444BF);
      color: white;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }
    .about-right-card::before {
      content: "";
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      top: -80px; right: -80px;
    }
    .about-right-card h3 {
      font-size: 28px; font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 16px;
      position: relative; z-index: 2;
    }
    .about-right-card p {
      font-size: 14px; line-height: 1.8;
      color: rgba(255,255,255,.8);
      position: relative; z-index: 2;
      margin-bottom: 28px;
    }
    .about-chip-row {
      display: flex; gap: 8px; flex-wrap: wrap;
      position: relative; z-index: 2;
    }
    .about-chip {
      padding: 6px 14px;
      border-radius: 30px;
      background: rgba(255,255,255,.14);
      font-size: 11px; font-weight: 700;
      color: white; letter-spacing: .04em;
    }

    /* ===== WHY FUNNEL WORKS ===== */
    .why-section {
      padding: 90px 0;
      background: #01030A;
    }
    .why-section .container { max-width: 1060px; }
    .why-eyebrow {
      display: inline-block;
      padding: 5px 12px;
      border-radius: 30px;
      font-size: 10px; font-weight: 700;
      letter-spacing: 1px; color: white;
      background: rgba(255,255,255,.06);
      margin-bottom: 20px;
    }
    .why-section h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: white;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 14px;
    }
    .why-section .why-sub {
      color: #7a85a0;
      font-size: 15px;
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 55px;
    }
    .why-card {
      position: relative;
      overflow: hidden;
      padding: 28px;
      border-radius: 10px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      height: 100%;
      transition: all .35s ease;
      cursor: pointer;
    }
    .why-card:hover, .why-card.active {
      border-color: #2D5BFF;
      box-shadow: 0 0 0 1px #2D5BFF, 0 10px 30px rgba(45,91,255,.15);
      transform: translateY(-2px);
      background: white;

    }
    .why-card .why-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      transition: .35s;
    }
    .why-card:hover .why-icon, .why-card.active .why-icon { background: rgba(45,91,255,.4); }
    .why-card .why-icon i { color: #6b8fff; font-size: 17px; }
   .why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #7a85a0;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }

    .why-card:hover h4 {
      color: #7a85a0;
    }

    
    .why-card p {
      font-size: 14px; line-height: 1.75;
      color: #7a85a0; margin: 0;
      max-width: 210px;
    }

    .why-card .why-big-num {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 82px;
  font-weight: 800;
  line-height: 1;
  color: #7a85a0;
  pointer-events: none;
  user-select: none;
  transition: color 0.3s ease;
}

.why-card:hover .why-big-num {
  color: #7a85a0;
  margin: 0;
}
    .why-card .why-big-num {
      position: absolute;
      top: 10px; right: 16px;
      font-size: 82px; font-weight: 800;
      line-height: 1;
      color: rgba(255,255,255,.04);
      pointer-events: none;
      user-select: none;
    }
    .why-card .why-dot {
      position: absolute;
      bottom: 16px; right: 16px;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #2D5BFF;
      opacity: 0;
      transition: .3s;
    }
    .why-card:hover .why-dot, .why-card.active .why-dot { opacity: 1; }

    /* ===== VALUES ===== */
    .values-section {
      padding: 90px 0;
      background: #F4F5FB;
    }
    .values-section .container { max-width: 1060px; }
    .values-section h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -1.5px;
      color: #02112D;
      margin-bottom: 10px;
    }
    .values-section .vals-sub {
      font-size: 15px; color: #66708E; max-width: 500px;
      margin: 0 auto 55px; line-height: 1.7;
    }
    .value-card {
      padding: 32px 28px;
      border-radius: 16px;
      background: white;
      border: 1px solid #ECEEF7;
      height: 100%;
      transition: all .35s ease;
      position: relative;
      overflow: hidden;
    }
    .value-card::after {
      content: "";
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--blue-brand);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
    }
    .value-card:hover::after { transform: scaleX(1); }
    .value-card:hover {
      box-shadow: 0 12px 32px rgba(45,91,255,.1);
      transform: translateY(-3px);
    }
    .value-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: #edf2ff;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .value-icon i { color: #2455FF; font-size: 18px; }
    .value-card h4 {
      font-size: 17px; font-weight: 700;
      color: #08112C; margin-bottom: 10px;
    }
    .value-card p { font-size: 13.5px; line-height: 1.75; color: #66708E; margin: 0; }

    /* ===== PROCESS ===== */
    .process-section {
      padding: 90px 0 85px;
      background: #fff;
      font-family: 'Geist', sans-serif;
    }
    .process-section .container { max-width: 1060px; }
    .section-head { margin-bottom: 55px; }
    .section-head span {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 700;
      color: #2455FF; letter-spacing: .3px;
    }
    .section-head span::before {
      content: ""; width: 18px; height: 2px;
      background: #2455FF; display: block;
    }
    .section-head h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700; line-height: 1.05;
      letter-spacing: -2px; color: #02112D;
      margin-top: 18px; max-width: 580px;
    }
    .process-step {
      position: relative;
      padding: 32px 28px;
      border-radius: 16px;
      background: #F4F5FB;
      border: 1px solid #ECEEF7;
      height: 100%;
      transition: all .35s ease;
      overflow: hidden;
    }
    .process-step:hover, .process-step.active {
      border-color: #2D5BFF;
      box-shadow: 0 0 0 1px #2D5BFF, 0 10px 30px rgba(45,91,255,.08);
      transform: translateY(-2px);
      background: #fff;
    }
    .step-num {
      position: absolute;
      top: 14px; right: 20px;
      font-size: 80px; font-weight: 800;
      line-height: 1; color: #EEF1F8;
      pointer-events: none;
    }
    .step-label {
      font-size: 11px; font-weight: 700;
      color: #2D5BFF; margin-bottom: 12px;
    }
    .process-step h3 {
      font-size: 20px; font-weight: 700;
      color: #08112C; margin-bottom: 10px;
    }
    .process-step p {
      font-size: 14px; line-height: 1.7;
      color: #66708E; margin: 0;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      padding: 90px 0;
      background: #F4F5FB;
    }
    .testimonials-section .container { max-width: 1060px; }
    .testimonials-section h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800; letter-spacing: -1.5px;
      color: #02112D; margin-bottom: 10px;
    }
    .testimonials-section .test-sub {
      font-size: 15px; color: #66708E;
      max-width: 480px; margin: 0 auto 50px; line-height: 1.7;
    }
    .testi-card {
      padding: 32px;
      border-radius: 18px;
      background: white;
      border: 1px solid #ECEEF7;
      height: 100%;
    }
    .stars { color: #FFB800; font-size: 13px; margin-bottom: 16px; }
    .testi-card p {
      font-size: 14px; line-height: 1.8;
      color: #4a5578; font-style: italic;
      margin-bottom: 22px;
    }
    .testi-author { font-size: 13px; font-weight: 700; color: #08112C; }
    .testi-role { font-size: 12px; color: #2455FF; font-weight: 600; }

    /* ===== FAQ ===== */
    .faq-section {
      padding: 90px 0;
      background: #fff;
    }
    .faq-section .container { max-width: 1060px; }
    .faq-section h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800; letter-spacing: -1.5px;
      color: #02112D; margin-bottom: 10px;
    }
    .faq-section .faq-sub {
      font-size: 15px; color: #66708E;
      max-width: 450px; margin: 0 auto 50px; line-height: 1.7;
    }
    .faq-item {
      border-bottom: 1px solid #ECEEF7;
      padding: 22px 0;
    }
    .faq-item:first-of-type { border-top: 1px solid #ECEEF7; }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      cursor: pointer; gap: 16px;
    }
    .faq-q h5 {
      font-size: 16px; font-weight: 600;
      color: #08112C; margin: 0;
    }
    .faq-q .faq-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: #edf2ff;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 14px; color: #2455FF;
      transition: .3s;
    }
    .faq-item.open .faq-icon { background: #2455FF; color: white; transform: rotate(45deg); }
    .faq-a {
      font-size: 14px; line-height: 1.75;
      color: #66708E;
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, padding .3s ease;
    }
    .faq-item.open .faq-a { max-height: 200px; padding-top: 14px; }

    /* ===== CTA FINAL ===== */
    .cta-final {
      padding: 70px 0 60px;
      background: #01030A;
      overflow: hidden;
    }
    .cta-container { max-width: 1020px; }
    .cta-pill {
      display: inline-block; padding: 6px 14px;
      border-radius: 30px; background: rgba(255,255,255,.05);
      font-size: 12px; font-weight: 700; color: white;
      margin-bottom: 30px;
    }
    .cta-final h2 {
      font-size: 40px; font-weight: 800;
      line-height: 1.05; letter-spacing: -2px;
      color: white; max-width: 430px; margin-bottom: 24px;
    }
    .cta-final p { max-width: 420px; font-size: 14px; line-height: 1.8; color: #8B93AB; margin-bottom: 35px; }
    .trial-card {
      position: relative; width: 100%; max-width: 470px;
      min-height: 340px; padding: 35px 40px;
      margin-left: auto; border-radius: 24px;
      background: linear-gradient(135deg, #2F63FF, #2A46BF);
      box-shadow: 0 0 80px rgba(47,99,255,.25);
      border: 1px solid rgba(255,255,255,.15);
    }
    .trial-card span {
      display: inline-block; padding: 6px 12px;
      border-radius: 30px; font-size: 11px; font-weight: 700;
      color: white; background: rgba(255,255,255,.12); margin-bottom: 25px;
    }
    .trial-card h3 {
      font-size: 32px; font-weight: 700;
      line-height: 1.05; letter-spacing: -1.5px;
      max-width: 300px; color: white; margin-bottom: 18px;
    }
    .trial-card p { font-size: 14px; line-height: 1.8; max-width: 290px; color: rgba(255,255,255,.78); margin-bottom: 24px; }
    .card-divider { width: 80px; height: 3px; border-radius: 30px; background: rgba(255,255,255,.4); margin-bottom: 20px; }
    .trial-card a {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0 22px; height: 42px; border-radius: 8px;
      background: white; font-size: 13px; font-weight: 600;
      text-decoration: none; color: black; transition: .3s;
    }
    .trial-card a:hover { background: #F3F4F8; color: black; }

    /* ===== FOOTER ===== */
    .fw-footer { background: #020A2B; padding: 50px 0 15px; }
    .fw-container { max-width: 1020px; }
    .footer-brand {
      padding-right: 40px;
      border-right: 1px solid rgba(255,255,255,.15);
      min-height: 220px;
    }
    .footer-brand p { max-width: 270px; font-size: 14px; line-height: 1.7; color: #C4CBDF; margin-bottom: 22px; }
    .footer-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 10px 22px; border-radius: 30px;
      background: #0B4CFF; color: white;
      font-size: 12px; font-weight: 700; text-decoration: none; transition: .3s;
    }
    .footer-btn:hover { background: #215DFF; color: white; }
    .footer-links { display: flex; justify-content: flex-start; padding-left: 35px; gap: 90px; }
    .footer-links h5 { font-size: 14px; font-weight: 600; margin-bottom: 18px; color: white; }
    .footer-links ul { padding: 0; margin: 0; list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { text-decoration: none; font-size: 14px; color: #C4CBDF; transition: .3s; }
    .footer-links a:hover { color: #2463FF; }
    .contact-list li { font-size: 14px; line-height: 1.7; color: #C4CBDF; }
    .footer-bottom {
      margin-top: 35px; padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.08);
      text-align: center; font-size: 14px; color: #B5BED7;
    }
    .footer-bottom a { color: #2463FF; text-decoration: none; margin: 0 6px; }
    .footer-bottom a:hover { text-decoration: underline; }

    /* ===== RESPONSIVE ===== */
    @media(max-width:991px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
      .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
      .footer-brand { border-right: none; padding-right: 0; margin-bottom: 50px; }
      .footer-links { padding-left: 0; justify-content: space-between; }
      .trial-card { margin: auto; }
      .cta-final { text-align: center; }
      .cta-final h2 { max-width: 100%; }
      .cta-final p { margin: auto auto 40px; }
    }
    @media(max-width:768px) {
      .about-hero { min-height: auto; padding: 80px 0 40px; }
      .footer-links { flex-direction: column; gap: 40px; }
      .about-right-card { min-height: auto; }
      .partner-stat-row { gap: 20px; }
    }
    @media(max-width:576px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .vm-pill { max-width: 100%; }
      .brand-logos { gap: 20px; }
    }