
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; color: #101828; background: #fff; overflow-x: hidden; }

    /* ─── TOP UTILITY BAR ─────────────────────────────────── */
    .top-bar {
      background: #EBEEFD;
      height: 44px;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #EAECF0;
    }
    .top-bar-left { display: flex; align-items: center; gap: 24px; }
    .top-bar-link { font-size: 13px; font-weight: 500; color: #344054; text-decoration: none; }
    .top-bar-link:hover { color: #3A58EF; }
    .top-bar-right { display: flex; align-items: center; gap: 12px; }

    /* ─── MAIN HEADER ─────────────────────────────────────── */
    .main-header {
      background: #fff;
      height: 88px;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #EAECF0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 1px 3px rgba(16,24,40,0.06);
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-mark {
      width: 36px; height: 36px;
      background: #3A58EF;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-mark svg { width: 20px; height: 20px; fill: #fff; }
    .logo-text { font-size: 20px; font-weight: 700; color: #101828; }
    .logo-text span { color: #3A58EF; }
    .main-nav { display: flex; align-items: center; gap: 32px; }
    .main-nav a { font-size: 15px; font-weight: 500; color: #344054; text-decoration: none; display: flex; align-items: center; gap: 4px; }
    .main-nav a:hover { color: #3A58EF; }
    .header-actions { display: flex; align-items: center; gap: 12px; }
    .btn { display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 600; border-radius: 4px; transition: all 0.15s ease; text-decoration: none; white-space: nowrap; }
    .btn-primary { background: #3A58EF; color: #fff; padding: 10px 18px; font-size: 16px; }
    .btn-primary:hover { background: #314BD0; }
    .btn-primary-sm { background: #3A58EF; color: #fff; padding: 8px 14px; font-size: 14px; }
    .btn-primary-sm:hover { background: #314BD0; }
    .btn-outline { background: transparent; border: 1.5px solid #3A58EF; color: #3A58EF; padding: 10px 18px; font-size: 16px; }
    .btn-outline:hover { background: #EBEEFD; }
    .btn-outline-sm { background: transparent; border: 1.5px solid #D0D5DD; color: #344054; padding: 6px 12px; font-size: 14px; }
    .btn-white { background: #fff; color: #3A58EF; padding: 12px 20px; font-size: 16px; box-shadow: 0 1px 2px rgba(16,24,40,0.05); }
    .btn-white:hover {     background: #F2F4F7;     color: #3A58EF;}
    .btn-white-outline { background: transparent; border: 1.5px solid #fff; color: #fff; padding: 12px 20px; font-size: 16px; }
    .btn-white-outline:hover { background: rgba(255,255,255,0.1);     color: #fff;     border: 1.5px solid #fff; }
    .btn-dark { background: #12327B; color: #fff; padding: 12px 24px; font-size: 16px; border-radius: 4px; }
    .btn-dark:hover { background: #0e2a68; }

    /* ─── SUB NAV ─────────────────────────────────────────── */
    .sub-nav {
      background: #EBEEFD;
      height: 64px;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 40px;
      border-bottom: 1px solid #D8DEFC;
      overflow-x: auto;
    }
    .sub-nav a { font-size: 14px; font-weight: 600; color: #475467; text-decoration: none; white-space: nowrap; padding: 4px 0; border-bottom: 2px solid transparent; }
    .sub-nav a.active { color: #3A58EF; border-bottom-color: #3A58EF; }
    .sub-nav a:hover { color: #3A58EF; }

    /* ─── HERO SECTION ────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 580px;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      padding: 72px 0 0;
      background: #020e2f;
    }
    /* container is the flex child inside hero */
    .hero > .container {
      width: 100%;
      position: relative;
      z-index: 4;
    }
    .hero-bg-overlay {
      position: absolute; inset: 0; z-index: 0;
      /* Deep dark-navy base matching reference */
      background: linear-gradient(160deg, #010d28 0%, #031a50 45%, #020f35 100%);
    }
    .hero-bg-glow {
      position: absolute; inset: 0; z-index: 1;
      /* Main radial glow centre-right like reference, plus soft accent glows */
      background:
        radial-gradient(ellipse 75% 65% at 68% 52%, rgba(20,85,200,0.60) 0%, transparent 68%),
        radial-gradient(ellipse 45% 45% at 85% 20%, rgba(10,55,170,0.30) 0%, transparent 58%),
        radial-gradient(ellipse 35% 55% at 5%  75%, rgba(5,25,90,0.45)  0%, transparent 60%),
        radial-gradient(ellipse 28% 35% at 30% 15%, rgba(30,70,180,0.18) 0%, transparent 55%);
    }
    .hero-bg-pattern {
      position: absolute; inset: 0; z-index: 2;
      overflow: hidden;
    }
    .hero-darken {
      position: absolute; inset: 0; z-index: 3;
      /* Gentle veil to ensure text readability */
      background: rgba(1,6,22,0.45);
    }
    .hero-content {
      position: relative; z-index: 4;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 36px;
      padding-bottom: 72px;
    }
    .hero-badge {
      background: #fff;
      border-radius: 500px;
      padding: 4px 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #2A3343;
    }
    .hero-badge-icon { font-size: 16px; }
    .hero-title {
      font-size: 48px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      line-height: 1.25;
      letter-spacing: -0.96px;
      max-width: 1000px;
    }
    .hero-subtitle {
      font-size: 20px;
      font-weight: 400;
      color: #fff;
      text-align: center;
      line-height: 1.5;
      max-width: 900px;
    }
    .hero-ctas { display: flex; gap: 24px; align-items: center; }
    .hero-trust-badges { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
    .hero-trust-badge {
      background: rgba(0,0,0,0.20);
      border-radius: 50px;
      padding: 4px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
    }
    .hero-trust-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* ─── COUNTER STRIP ───────────────────────────────────── */
    .counter-strip {
      position: relative; z-index: 3;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
       padding: 0 0 0px;
      margin-top: -150px;
    }
    .counter-card {
      background: #fff;
      border: 1px solid #D0D5DD;
      border-radius: 12px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .counter-icon {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .counter-icon svg { width: 28px; height: 28px; }
    .counter-value { font-size: 24px; font-weight: 700; color: #2A3343; text-align: center; line-height: 1.33; }
    .counter-label { font-size: 14px; font-weight: 400; color: #2A3343; text-align: center; line-height: 1.43; }

    /* ─── SECTION BASE ────────────────────────────────────── */
    .section { padding: 72px 0; }
    .section-white { background: #fff; }
    .section-brand { background: #EBEEFD; }
    .section-light { background: #F9FAFB; }
    .section-dark { background: #12327B; }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #EBEEFD;
      border-radius: 500px;
      padding: 4px 16px;
      font-size: 14px;
      font-weight: 600;
      color: #2A3343;
      margin-bottom: 12px;
    }
    .section-tag.on-dark { background: rgba(255,255,255,0.15); color: #fff; }
    .section-tag svg { width: 18px; height: 18px; flex-shrink: 0; }

    .section-header { text-align: center; max-width: 880px; margin: 0 auto 48px; }
    .section-header.left { text-align: left; margin: 0 0 48px; }

    .section-h1 {
      font-size: 36px;
      font-weight: 700;
      color: #101828;
      line-height: 1.2;
      letter-spacing: -0.72px;
      margin-bottom: 16px;
    }
    .section-h1.on-dark { color: #fff; }
    .section-h1 .accent { color: #3A58EF; }

    .section-h2 {
      font-size: 18px;
      font-weight: 400;
      color: #475467;
      line-height: 1.56;
    }
    .section-h2.on-dark { color: rgba(255,255,255,0.85); }

    /* ─── PRICING FOLD ────────────────────────────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }
    .plan-card {
      background: #fff;
      border: 1px solid #EAECF0;
      border-radius: 16px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
    }
    .plan-card:hover {
      box-shadow: 4px 4px 0px #000;
      border-color: #5D667B;
      transform: translate(-2px, -2px);
    }
    .plan-card.featured {
      border: 2px solid #3A58EF;
      box-shadow: 0 8px 16px rgba(58,88,239,0.15);
    }
    .plan-card.featured:hover { box-shadow: 4px 4px 0px #000; border-color: #5D667B; transform: translate(-2px, -2px); }
    .plan-icon-wrap {
      width: 48px; height: 48px;
      background: #EBEEFD;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .plan-icon-wrap.dark { background: #04092A; }
    .plan-icon-wrap svg { width: 26px; height: 26px; }
    .plan-name { font-size: 24px; font-weight: 700; color: #2A3343; }
    .plan-desc { font-size: 16px; font-weight: 400; color: #475467; line-height: 1.5; }
    .plan-cta-wrap { margin-top: auto; }

    .plan-card:hover .plan-icon-wrap {
      background: #04092A;
    }

    .plan-card:hover .plan-icon-wrap svg {
      stroke: #fff;
    }

    /* ─── CPA FOCUS / WHY MYCPE CARDS ────────────────────── */
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    /* 3-column variant for 6-card sections */
    .proof-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .proof-card {
      background: #fff;
      border: 1px solid #EAECF0;
      border-radius: 12px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
      cursor: default;
      position: relative;
    }
    .proof-card:hover {
      box-shadow: 4px 4px 0px #000;
      border-color: #5D667B;
      transform: translate(-2px, -2px);
    }
    .proof-card.featured-card {
      border: 1.5px solid #5D667B;
      box-shadow: 4px 4px 0px #000;
    }

    .proof-card:hover .proof-card-icon {
        background: #04092A;
    }

    .proof-card:hover .proof-card-icon svg {
        stroke: #fff;
    }

    /* ─── FOLD CARDS (Why Under Attack + MSSP Approach) ─── */
    .fold-card {
      background: #fff;
      border: 1px solid #EAECF0;
      border-radius: 12px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      height: 100%;
      box-sizing: border-box;
      transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
      cursor: default;
      position: relative;
    }
    .fold-card:hover {
      box-shadow: 4px 4px 0px #000;
      border-color: #5D667B;
      transform: translate(-2px, -2px);
    }
    .fold-card-coloured {
      border: 1px solid #EAECF0;
      border-radius: 12px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      height: 100%;
      box-sizing: border-box;
      transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
      cursor: default;
      position: relative;
    }
    .fold-card-coloured:hover {
      box-shadow: 4px 4px 0px #000;
      border-color: #5D667B;
      transform: translate(-2px, -2px);
    }
    .fold-card-wrap {
      padding-top: 12px;
    }
    .proof-card-icon {
      width: 48px; height: 48px;
      border-radius: 8px;
      background: #EBEEFD;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .proof-card-icon.dark { background: #04092A; }
    .proof-card-icon svg { width: 26px; height: 26px; }
    .proof-card-title { font-size: 20px; font-weight: 600; color: #2A3343; line-height: 1.5; }
    .proof-card-desc { font-size: 16px; font-weight: 400; color: #475467; line-height: 1.5; }

    /* ─── COVERAGE GRID ───────────────────────────────────── */
    .coverage-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .coverage-card {
      background: #fff;
      border: 1px solid #EAECF0;
      border-radius: 12px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
      cursor: default;
      position: relative;
    }
    .coverage-card:hover {
      box-shadow: 4px 4px 0px #000;
      border-color: #5D667B;
      transform: translate(-2px, -2px);
    }
    .coverage-num {
      font-size: 13px;
      font-weight: 700;
      color: #3A58EF;
      background: #EBEEFD;
      width: 28px; height: 28px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .coverage-title { font-size: 20px; font-weight: 700; color: #2A3343; }
    .coverage-desc { font-size: 15px; color: #475467; line-height: 1.5; }

    /* ─── COMPLIANCE ──────────────────────────────────────── */
    .compliance-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 40px;
    }
    .compliance-badge {
      background: #fff;
      border: 1.5px solid #EAECF0;
      border-radius: 8px;
      padding: 12px 24px;
      font-size: 15px;
      font-weight: 700;
      color: #344054;
      transition: all 0.2s ease;
    }
    .compliance-badge:hover {
      border-color: #3A58EF;
      color: #3A58EF;
      background: #EBEEFD;
    }

    /* ─── CROSS-LINK ──────────────────────────────────────── */
    .crosslink-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
    }
    .crosslink-text { max-width: 640px; }

    /* ─── COMPLEX REQUIREMENTS ───────────────────────────── */
    .complex-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .complex-points {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 24px;
    }
    .complex-point {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      font-weight: 500;
      color: #344054;
    }
    .complex-point-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #3A58EF;
      flex-shrink: 0;
    }

    /* ─── CONTACT FORM ────────────────────────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
    .form-label { font-size: 14px; font-weight: 600; color: #344054; }
    .form-input {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid #D0D5DD;
      border-radius: 4px;
      font-size: 16px;
      font-family: 'Inter', sans-serif;
      color: #101828;
      outline: none;
      transition: border-color 0.15s;
      background: #fff;
    }
    .form-input:focus { border-color: #3A58EF; box-shadow: 0 0 0 3px rgba(58,88,239,0.08); }
    .form-input::placeholder { color: #98A2B3; }
    textarea.form-input { resize: vertical; min-height: 120px; }
    .form-note { font-size: 13px; color: #667085; margin-top: 12px; display: flex; align-items: center; gap: 8px; }
    .form-note-dot { width: 4px; height: 4px; border-radius: 50%; background: #667085; flex-shrink: 0; }

    /* ─── DIVIDER ─────────────────────────────────────────── */
    .divider { height: 1px; background: #EAECF0; margin: 0; }

    /* ─── FOOTER ──────────────────────────────────────────── */
    .footer {
      background: #04092A;
      padding: 60px 140px 32px;
      color: rgba(255,255,255,0.8);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .footer-logo-mark { width: 32px; height: 32px; background: #3A58EF; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
    .footer-logo-text { font-size: 18px; font-weight: 700; color: #fff; }
    .footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 280px; }
    .footer-col-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 16px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
    .footer-legal a:hover { color: rgba(255,255,255,0.7); }

    /* ─── SVG ICONS inline ───────────────────────────────── */
    .icon-shield { display: inline-block; }


    /* ─── HIDE ALL EYEBROW / BADGE ELEMENTS ─────────────────── */
    .hero-badge,
    .section-tag,
    div[style*="border-radius:500px"],
    div[style*="border-radius: 500px"] {
      display: none !important;
    }


    /* ─── CONTACT FORM SECTION ───────────── */

  /* ─── CONTACT SECTION (Figma node 7248:114923) ───────────── */
  .contact-section {
    background:#F9FAFB;
    padding: 48px 0;
  }
  .contact-section-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
  }

  /* Left: Form card */
  .contact-form-card {
    flex: 1 0 0;
    min-width: 0;
    background: #fff;
    border: 1px solid #EAECF0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .contact-form-title {
    font-size: 26px;
    font-weight: 700;
    color: #1D2939;
    line-height: 1.3;
  }

  /* Floating label inputs */
  .fi-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .fi-wrap {
    flex: 1 0 0;
    min-width: 0;
    position: relative;
  }
  .fi-wrap.fi-fixed {
    flex: 0 0 auto;
    width: calc(50% - 12px);
  }
  .fi-field {
    width: 100%;
    height: 44px;
    padding: 8px 12px;
    border: 1px solid #EAECF0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #101828;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s;
    appearance: none;
    -webkit-appearance: none;
  }
  .fi-field:focus {
    border-color: #3A58EF;
  }
  .fi-field.fi-error {
    border-color: #F04438;
    box-shadow: 0 0 0 3px rgba(240,68,56,0.10);
  }
  .fi-label {
    position: absolute;
    top: -9px;
    left: 11px;
    background: #fff;
    padding: 0 4px;
    font-size: 12px;
    font-weight: 400;
    color: #5D667B;
    line-height: 18px;
    pointer-events: none;
    white-space: nowrap;
  }
  .fi-label.fi-label-error { color: #F04438; }
  .fi-label .fi-req { color: #F04438; }

  /* Inline label (non-floating, like Full Name / Phone) */
  .fi-inline-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 400;
    color: #101828;
    pointer-events: none;
  }
  .fi-inline-req { color: #F04438; }

  /* Select / dropdown */
  .fi-select-wrap {
    position: relative;
    flex: 0 0 auto;
    width: calc(50% - 12px);
  }
  .fi-select {
    width: 100%;
    height: 44px;
    padding: 8px 36px 8px 16px;
    border: 1px solid #EAECF0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #101828;
    background: #fff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.15s;
  }
  .fi-select:focus { border-color: #3A58EF; }
  .fi-caret {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #667085;
  }
  .fi-caret svg { display: block; }

  /* Error message */
  .fi-error-msg {
    font-size: 14px;
    font-weight: 400;
    color: #F04438;
    line-height: 20px;
    margin-top: 4px;
  }

  /* Textarea */
  .fi-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #EAECF0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #101828;
    background: #fff;
    outline: none;
    resize: vertical;
    min-height: 120px;
    box-sizing: border-box;
    transition: border-color 0.15s;
  }
  .fi-textarea:focus { border-color: #3A58EF; }
  .fi-textarea::placeholder { color: #98A2B3; }

  /* Submit button */
  .contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #3A58EF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    box-shadow: 0px 1px 2px 0px rgba(16,24,40,0.05);
    transition: background 0.15s;
  }
  .contact-submit-btn:hover { background: #314BD0; }
  .contact-submit-btn svg { flex-shrink: 0; }

  /* Right: Quick contact card */
  .contact-quick-card {
    flex: 0 0 auto;
    width: 424px;
    background: #fff;
    border: 1px solid #EAECF0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
  }
  .contact-quick-title {
    font-size: 20px;
    font-weight: 700;
    color: #26244A;
    line-height: 30px;
  }
  .contact-quick-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .contact-quick-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .contact-quick-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #EBEEFD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-quick-icon svg { width: 24px; height: 24px; }
  .contact-quick-meta { display: flex; flex-direction: column; gap: 4px; }
  .contact-quick-sub {
    font-size: 14px;
    font-weight: 500;
    color: #5D667B;
    line-height: 20px;
    white-space: nowrap;
  }
  .contact-quick-val {
    font-size: 18px;
    font-weight: 600;
    color: #2A3343;
    line-height: 28px;
  }

  /* Form rows spacing */
  .fi-rows-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .fi-textarea-wrap { position: relative; }


    /* ─── ACCENT ─────────────────────────────────────────── */
    .accent { color: #3A58EF; }

    /* ─── HERO ─────────────────────────────────────────────── */
    .hero-pattern-svg { position: absolute; inset: 0; }
    .hero-header-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }

    /* ─── FOLD SECTIONS ─────────────────────────────────────── */
    .fold-header { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 48px; }
    .fold-badge { border-radius: 500px; padding: 4px 16px; display: inline-flex; align-items: center; gap: 10px; }
    .fold-badge-white { background: #fff; }
    .fold-badge-brand { background: #EBEEFD; }
    .fold-badge-label { font-size: 14px; font-weight: 600; color: #2A3343; white-space: nowrap; }
    .fold-heading { font-size: 36px; font-weight: 700; color: #26244A; text-align: center; line-height: 1.2; letter-spacing: -0.72px; margin: 0; }
    .fold-subheading { font-size: 18px; font-weight: 400; color: #475467; text-align: center; line-height: 1.56; max-width: 760px; margin: 0 auto; }
    .fold-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1320px; margin: 0 auto; }
    .fold-grid-3.mb { margin-bottom: 24px; }
    .fold-stat-num { font-size: 36px; font-weight: 700; color: #3A58EF; line-height: 1.33; }
    .fold-card-body { display: flex; flex-direction: column; gap: 8px; }
    .fold-card-title { font-size: 20px; font-weight: 600; color: #2A3343; line-height: 1.6; }
    .fold-card-desc { font-size: 16px; font-weight: 400; color: #475467; line-height: 1.5; }
    .fold-card-icon { width: 48px; height: 48px; border-radius: 8px; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .fold-card-coloured--red    { background: #FEE4E2; }
    .fold-card-coloured--green  { background: #D1FADF; }
    .fold-card-coloured--yellow { background: #FBEDC4; }
    .fold-card-coloured--blue   { background: #D8DEFC; }
    .fold-card-coloured--pink   { background: #FAD1F6; }
    .fold-card-coloured--purple { background: #DCC4FB; }

    /* ─── SECTION TAG MODIFIERS ─────────────────────────────── */
    .section-tag--center { justify-content: center; margin: 0 auto 16px; }
    .section-tag--white  { background: #fff; }
    .section-tag--mb     { margin-bottom: 16px; }
    .section-header--sm  { max-width: 820px; }

    /* ─── SECTION HEADING MODIFIERS ─────────────────────────── */
    .section-h1--left { text-align: left; max-width: 580px; }
    .section-h2--left { text-align: left; margin-top: 12px; }
    .section-h2--mt16 { text-align: left; margin-top: 16px; margin-bottom: 0; }

    /* ─── COMPLIANCE (dark variant) ─────────────────────────── */
    .compliance-badge.on-dark {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .compliance-badge.on-dark svg { flex-shrink: 0; }
    .compliance-note { margin-top: 24px; text-align: center; }
    .compliance-note-text { font-size: 14px; color: #fff; font-weight: 600; }

    /* ─── PLAN CARDS ─────────────────────────────────────────── */
    .plan-desc { margin-top: 8px; }
    .plan-header-row { display: flex; align-items: center; justify-content: space-between; }
    .plan-badge-most { background: #027A48; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 500px; }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .plan-feature-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #344054; font-weight: 500; }
    .btn-full { width: 100%; justify-content: center; }
    .btn-primary-lg { font-size: 17px; padding: 14px 28px; }

    /* ─── DARK CARD (Complex requirements) ──────────────────── */
    .dark-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #04092A 0%, #0d2060 50%, #1a3a8f 100%);
      border-radius: 20px;
      padding: 44px 40px 40px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      box-shadow: 0 20px 60px rgba(58,88,239,0.25);
    }
    .dark-card-bg {
      position: absolute; inset: 0;
      pointer-events: none; overflow: hidden; border-radius: 20px;
    }
    .dark-card-glow-1 {
      position: absolute; top: -60px; right: -60px;
      width: 260px; height: 260px; border-radius: 50%;
      background: radial-gradient(circle, rgba(58,88,239,0.45) 0%, transparent 70%);
    }
    .dark-card-glow-2 {
      position: absolute; bottom: -40px; left: -40px;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle, rgba(99,120,255,0.25) 0%, transparent 70%);
    }
    .dark-card-glow-3 {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 350px; height: 180px; border-radius: 50%;
      background: radial-gradient(ellipse, rgba(58,88,239,0.12) 0%, transparent 70%);
    }
    .dark-card-header { position: relative; display: flex; align-items: flex-start; gap: 16px; }
    .dark-card-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; backdrop-filter: blur(8px);
    }
    .dark-card-eyebrow { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 6px; }
    .dark-card-title { font-size: 24px; font-weight: 700; color: #fff; line-height: 1.3; margin: 0; }
    .dark-card-desc { position: relative; font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0; }
    .dark-card-features { position: relative; display: flex; flex-direction: column; gap: 12px; }
    .dark-card-feature { display: flex; align-items: center; gap: 12px; }
    .dark-card-check {
      width: 20px; height: 20px; border-radius: 50%;
      background: rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .dark-card-feature-text { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); }
    .dark-card-divider { position: relative; height: 1px; background: rgba(255,255,255,0.12); }
    .dark-card-cta-wrap { position: relative; display: flex; flex-direction: column; gap: 16px; }
    .dark-card-btn {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      background: #fff; color: #3A58EF;
      font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700;
      padding: 15px 24px; border-radius: 8px;
      text-decoration: none; transition: all 0.2s ease;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .dark-card-btn:hover { background: #EBEEFD; transform: translateY(-1px); color: #3A58EF; }
    .dark-card-trust { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .dark-card-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.50); font-weight: 500; }
    .dark-card-trust-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.25); }
    .dark-card-trust-text { font-size: 12px; color: rgba(255,255,255,0.50); font-weight: 500; }

    /* ─── FORM MODIFIERS ─────────────────────────────────────── */
    .fi-field-padded  { padding-left: 16px; }
    .fi-field-padded-r { padding-left: 16px; padding-right: 12px; }
    .form-note--center { justify-content: center; }

    /* ─── RESPONSIVE ──────────────────────────────────────── */

    /* Large (≤ 1199px) */
    @media (max-width: 1199px) {
      .hero-title { font-size: 42px; }
      .counter-strip { margin-top: -120px; }
      .complex-inner { gap: 48px; }
    }

    /* Medium / Tablet landscape (≤ 991px) */
    @media (max-width: 991px) {
      .hero { padding: 60px 0 0;  min-height: 620px; }
      .hero-title { font-size: 36px; letter-spacing: -0.5px; }
      .hero-subtitle { font-size: 18px; }

      .counter-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -80px;
      }

      .section { padding: 60px 0; }

      /* proof & coverage grids */
      .proof-grid        { grid-template-columns: repeat(2, 1fr); }
      .proof-grid-3      { grid-template-columns: repeat(2, 1fr); }
      .coverage-grid     { grid-template-columns: repeat(2, 1fr); }

      /* pricing */
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }

      /* complex / crosslink */
      .complex-inner    { grid-template-columns: 1fr; gap: 40px; }
      .crosslink-inner  { flex-direction: column; gap: 32px; align-items: flex-start; }
      .crosslink-text   { max-width: 100%; }

      /* contact */
      .contact-section-inner { flex-direction: column; }
      .contact-quick-card    { width: 100%; }

      /* inline-style fold sections override */
      section[style*="padding:72px 140px"],
      section[style*="padding: 72px 140px"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }

    /* Small / Tablet portrait (≤ 767px) */
    @media (max-width: 767px) {
      .hero { padding: 48px 0 0; }
      .hero-title    { font-size: 30px; letter-spacing: -0.3px; max-width: 100%; }
      .hero-subtitle { font-size: 16px; max-width: 100%; }
      .hero-ctas {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 14px;
      }
      .hero-ctas .btn { justify-content: center; }

      .counter-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
        padding: 0 0 48px;
      }

      .section { padding: 48px 0; }

      .section-h1 { font-size: 26px; letter-spacing: -0.2px; }
      .section-h2 { font-size: 16px; }

      .proof-grid    { grid-template-columns: 1fr; }
      .proof-grid-3  { grid-template-columns: 1fr; }
      .coverage-grid { grid-template-columns: 1fr; }

      .complex-inner   { gap: 28px; }
      .crosslink-inner { flex-direction: column; gap: 24px; }

      .fi-row { flex-direction: column; gap: 20px; }
      .fi-wrap { width: 100%; }
      .fi-select-wrap  { width: 100% !important; }
      .fi-wrap.fi-fixed { width: 100%; }

      .contact-quick-card { width: 100%; }

      .sub-nav { padding: 0 16px; gap: 20px; }

      /* inline-style fold sections */
      section[style*="padding:72px 140px"],
      section[style*="padding: 72px 140px"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }

    /* Extra small / Mobile portrait (≤ 575px) */
    @media (max-width: 575px) {
      .hero { padding: 40px 0 0; }
      .hero-title    { font-size: 26px; }
      .hero-subtitle { font-size: 15px; }
      .hero-content  { gap: 24px; padding-bottom: 48px; }
      .hero-trust-badges { gap: 8px; }

      .counter-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 0 40px;
        margin-top: -100px;
      }
      .counter-value { font-size: 20px; }
      .counter-label { font-size: 12px; }

      .section    { padding: 40px 0; }
      .section-h1 { font-size: 22px; margin-bottom: 12px; }
      .section-h2 { font-size: 15px; }

      .proof-card-title  { font-size: 17px; }
      .proof-card-desc   { font-size: 14px; }
      .coverage-title    { font-size: 17px; }
      .coverage-desc     { font-size: 14px; }

      .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
      .plan-card    { padding: 24px 20px; }

      .complex-points { gap: 10px; }
      .complex-point  { font-size: 14px; }

      .compliance-badges { gap: 8px; }
      .compliance-badge  { padding: 10px 16px; font-size: 14px; }

      .contact-section     { padding: 40px 0; }
      .contact-form-card   { padding: 16px; }
      .contact-form-title  { font-size: 20px; }
      .contact-quick-val   { font-size: 15px; }

      .sub-nav { height: auto; padding: 10px 16px; flex-wrap: wrap; gap: 12px; }

      /* inline-style fold sections */
      section[style*="padding:72px 140px"],
      section[style*="padding: 72px 140px"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
      }
    }

    /* responsive for fold grids and dark card */
    @media (max-width: 991px) {
      .fold-grid-3 { grid-template-columns: repeat(2, 1fr); }
      .dark-card { padding: 32px 28px; }
    }
    @media (max-width: 767px) {
      .fold-grid-3 { grid-template-columns: 1fr; }
      .fold-heading { font-size: 28px; }
      .fold-subheading { font-size: 16px; }
      .plan-features { gap: 8px; }
    }
    @media (max-width: 575px) {
      .fold-heading { font-size: 24px; }
      .fold-stat-num { font-size: 28px; }
      .dark-card { padding: 24px 20px; }
      .dark-card-title { font-size: 20px; }
    }
