
    *, *::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-primary-lg { font-size: 17px; padding: 14px 28px; }

    /* ─── 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: 510px;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      padding: 72px 0 0;
      background: #020e2f;
    }
    .hero-bg-overlay {
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(160deg, #010d28 0%, #031a50 45%, #020f35 100%);
    }
    .hero-bg-glow {
      position: absolute; inset: 0; z-index: 1;
      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;
      background: rgba(1,6,22,0.45);
    }
    /* container sits as the flex child inside hero; push it to fill available width */
    .hero > .container {
      width: 100%;
      position: relative;
      z-index: 4;
    }

    .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-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; }

    /* ─── COUNTER STRIP ───────────────────────────────────── */
    .counter-strip {
      position: relative; z-index: 3;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      padding: 0 0 72px;
      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: 10px;
    }
    .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: 13px; 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 svg { width: 18px; height: 18px; flex-shrink: 0; }
    .section-tag--center { justify-content: center; margin: 0 auto 16px; }
    .section-tag--white  { background: #fff; }
    .section-tag--mb     { margin-bottom: 16px; }

    .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); }
    .section-h1--left { text-align: left; max-width: 580px; }
    .section-h2--left { text-align: left; margin-top: 12px; }

    /* ─── PROOF CARDS ─────────────────────────────────────── */
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .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-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; }

    .proof-card:hover .proof-card-icon {
        background: #04092A;
    }

    .proof-card:hover .proof-card-icon svg {
        stroke: #fff;
    }

    /* ─── PRICING CALCULATOR (Slider) ────────────────────── */
    .pricing-calc-outer {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 48px rgba(58,88,239,0.14);
    }

    /* LEFT: Environment panel */
    .pricing-env-panel {
      background: #fff;
      border: 1px solid #EAECF0;
      border-right: none;
      border-radius: 20px 0 0 20px;
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }
    .pricing-env-title {
      font-size: 20px;
      font-weight: 700;
      color: #101828;
      margin-bottom: 4px;
    }
    .pricing-env-subtitle {
      font-size: 14px;
      font-weight: 400;
      color: #667085;
    }

    /* Slider group */
    .slider-group { display: flex; flex-direction: column; gap: 14px; }
    .slider-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }
    .slider-label-wrap {}
    .slider-label {
      font-size: 16px;
      font-weight: 600;
      color: #101828;
    }
    .slider-sublabel {
      font-size: 13px;
      font-weight: 400;
      color: #667085;
      margin-top: 2px;
    }
    .slider-value-badge {
      text-align: right;
    }
    .slider-value-num {
      font-size: 28px;
      font-weight: 700;
      color: #3A58EF;
      line-height: 1;
    }
    .slider-value-unit {
      font-size: 12px;
      font-weight: 500;
      color: #667085;
      margin-top: 2px;
    }

    /* Custom range slider */
    .slider-track-wrap { position: relative; }
    input[type="range"].price-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 6px;
      border-radius: 999px;
      background: #EAECF0;
      outline: none;
      cursor: pointer;
    }
    input[type="range"].price-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #3A58EF;
      border: 3px solid #fff;
      box-shadow: 0 0 0 1.5px #3A58EF, 0 2px 6px rgba(58,88,239,0.30);
      cursor: pointer;
      transition: box-shadow 0.15s;
    }
    input[type="range"].price-slider::-webkit-slider-thumb:hover {
      box-shadow: 0 0 0 3px rgba(58,88,239,0.18), 0 2px 8px rgba(58,88,239,0.35);
    }
    input[type="range"].price-slider::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #3A58EF;
      border: 3px solid #fff;
      box-shadow: 0 0 0 1.5px #3A58EF;
      cursor: pointer;
    }
    .slider-range-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 6px;
      font-size: 12px;
      font-weight: 400;
      color: #98A2B3;
    }
    .slider-divider { height: 1px; background: #EAECF0; }

    /* RIGHT: Cost breakdown panel */
    .pricing-result-panel {
      background: linear-gradient(145deg, #1a3a8f 0%, #2A52D5 50%, #3A58EF 100%);
      border-radius: 0 20px 20px 0;
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      position: relative;
      overflow: hidden;
    }
    .pricing-result-panel::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .pricing-result-panel::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -40px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .result-label {
      font-size: 11px;
      font-weight: 700;
      color: rgba(255,255,255,0.60);
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .result-amount {
      font-size: 52px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -1.5px;
      line-height: 1;
    }
    .result-amount-unit {
      font-size: 22px;
      font-weight: 500;
      color: rgba(255,255,255,0.70);
      margin-left: 4px;
    }
    .result-based {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-top: 4px;
    }
    .result-breakdown {
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      z-index: 1;
    }
    .result-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255,255,255,0.10);
      border-radius: 8px;
      padding: 12px 16px;
      gap: 12px;
    }
    .result-line-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .result-line-icon {
      width: 28px; height: 28px;
      border-radius: 6px;
      background: rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .result-line-icon svg { width: 15px; height: 15px; }
    .result-line-name {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
    }
    .result-line-cost {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
    }
    .result-total-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255,255,255,0.18);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 8px;
      padding: 14px 16px;
      position: relative; z-index: 1;
    }
    .result-total-label {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }
    .result-total-cost {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
    }
    .result-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #fff;
      color: #3A58EF;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 13px 20px;
      border-radius: 8px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      position: relative; z-index: 1;
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    }
    .result-cta:hover { background: #EBEEFD; transform: translateY(-1px); }

    /* ─── 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 SECTION ────────────────────────────── */
    .contact-section {
      background: #F9FAFB;
      padding: 72px 0;
    }
    .contact-section-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 48px;
    }
    .contact-section-inner {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }
    .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;
    }
    .fi-rows-wrap { display: flex; flex-direction: column; gap: 24px; }
    .fi-row { display: flex; gap: 24px; align-items: flex-start; }
    .fi-wrap { flex: 1 0 0; min-width: 0; position: relative; }
    .fi-field {
      width: 100%;
      height: 44px;
      padding: 8px 12px 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;
      box-sizing: border-box;
      transition: border-color 0.15s;
      appearance: none;
    }
    .fi-field:focus { border-color: #3A58EF; }
    .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-req { color: #F04438; }
    .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; }
    .fi-select-wrap {
      position: relative;
      flex: 0 0 auto;
      width: 50%;
    }
    .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;
      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; }
    .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; }
    .fi-textarea-wrap { position: relative; }
    .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; }
    .form-note { font-size: 13px; color: #667085; margin-top: 4px; display: flex; align-items: center; gap: 8px; justify-content: center; flex-wrap: wrap; }
    .form-note-dot { width: 4px; height: 4px; border-radius: 50%; background: #667085; flex-shrink: 0; }
    .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; }

    /* ─── 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); }

    /* ─── CHECK ICON INLINE ───────────────────────────────── */
    .check-svg { display: inline-block; flex-shrink: 0; }

    /* ─── HERO ────────────────────────────────────────────── */
    .hero-bg-pattern > svg {
      position: absolute;
      inset: 0;
    }
    .hero-title-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    /* ─── PRICING RESULT PANEL INNER ────────────────────── */
    .result-header {
      position: relative;
      z-index: 1;
    }
    .result-amount-wrap {
      margin-top: 10px;
    }

    /* ─── COMPLEX REQUIREMENTS CARD ─────────────────────── */
    .complex-inner .section-h1 { text-align: left; }
    .complex-inner .section-h2 { text-align: left; margin-top: 16px; margin-bottom: 0; }

    .complex-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);
    }
    .complex-card-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      border-radius: 20px;
    }
    .complex-card-blob-top {
      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%);
    }
    .complex-card-blob-bottom {
      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%);
    }
    .complex-card-blob-center {
      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%);
    }
    .complex-card-header {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .complex-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);
    }
    .complex-card-label {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .complex-card-title {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin: 0;
    }
    .complex-card-desc {
      position: relative;
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      line-height: 1.65;
      margin: 0;
    }
    .complex-card-list {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .complex-card-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .complex-card-item-dot {
      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;
    }
    .complex-card-item-text {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
    }
    .complex-card-divider {
      position: relative;
      height: 1px;
      background: rgba(255,255,255,0.12);
    }
    .complex-card-cta-area {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .complex-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);
    }
    .complex-card-btn:hover {
      background: #EBEEFD;
      transform: translateY(-1px);
    }
    .complex-card-badges {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .complex-card-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: rgba(255,255,255,0.50);
      font-weight: 500;
    }
    .complex-card-badge-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
    }

    /* ─── RESPONSIVE ──────────────────────────────────────── */

    /* Large (≤ 1199px) */
    @media (max-width: 1199px) {
      .hero-title { font-size: 42px; }
      .counter-strip { margin-top: -120px; }
    }

    /* Medium / Tablet landscape (≤ 991px) */
    @media (max-width: 991px) {
      .hero { padding: 60px 0 0; min-height: 440px; }
      .hero-title { font-size: 36px; letter-spacing: -0.5px; }
      .hero-subtitle { font-size: 18px; }

      .counter-strip {
        grid-template-columns: repeat(3, 1fr);
        margin-top: -80px;
      }

      .section { padding: 60px 0; }

      .proof-grid { grid-template-columns: repeat(2, 1fr); }
      .proof-grid-3 { grid-template-columns: repeat(2, 1fr); }

      .pricing-calc-outer {
        grid-template-columns: 1fr;
      }
      .pricing-env-panel {
        border-radius: 20px 20px 0 0;
        border-right: 1px solid #EAECF0;
        border-bottom: none;
      }
      .pricing-result-panel {
        border-radius: 0 0 20px 20px;
      }

      .crosslink-inner  { flex-direction: column; gap: 32px; align-items: flex-start; }
      .crosslink-text   { max-width: 100%; }

      .complex-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .contact-section-inner {
        flex-direction: column;
      }
      .contact-quick-card {
        width: 100%;
      }
    }

    /* Small / Tablet portrait (≤ 767px) */
    @media (max-width: 767px) {
      .hero { padding: 48px 0 0; /* min-height: unset;*/ }
      .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; }

      .result-amount { font-size: 40px; }
      .slider-value-num { font-size: 22px; }

      .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;
      }

      .contact-quick-card { width: 100%; }

      .sub-nav { padding: 0 16px; gap: 20px; }
    }

    /* 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: 0; }

      .counter-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 0 40px;
        margin-top: -110px;
      }
      .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; }

      .pricing-env-panel { padding: 24px 20px; }
      .pricing-result-panel { padding: 24px 20px; }
      .result-amount { font-size: 34px; }

      .complex-points { gap: 10px; }
      .complex-point { 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; }
    }
