

    /* ════════════════════════════════════════
       RESET
    ════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    img, svg { display: block; max-width: 100%; }

    /* ════════════════════════════════════════
       DESIGN TOKENS
    ════════════════════════════════════════ */
    :root {
      --navy:       #0B163F;
      --navy-88:    rgba(11,22,63,0.88);
      --blue:       #2B6BE6;
      --blue-bright:#2175F0;
      --white:      #FFFFFF;
      --w80:        rgba(255,255,255,0.80);
      --w10:        rgba(255,255,255,0.10);
      --muted:      #6B7A99;
      --font-h:     'Space Grotesk', sans-serif;
      --font-b:     'Manrope', sans-serif;
      --nav-r:      20px;
      --pill:       40px;
      --icon-r:     8px;
      --dur:        0.2s;
    }

    /* ════════════════════════════════════════
       BASE — body text standard: Manrope 11px/600
    ════════════════════════════════════════ */
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 400;
      color: var(--navy);
      background: linear-gradient(
        180deg,
        #B8D4F0  0%,
        #C6DCF5  6%,
        #D4E6F8 14%,
        #DFECF9 24%,
        #EAF2FB 38%,
        #F2F7FD 56%,
        #F9FCFE 72%,
        #FFFFFF 100%
      );
      background-attachment: fixed;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ════════════════════════════════════════
       SECTION CONTAINER — boxes all content
       on large screens, prevents full-width stretch
    ════════════════════════════════════════ */
    .section-inner {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    /* Sections use full-width bg but inner content is boxed */
    .showcase        { padding-left: 0; padding-right: 0; }
    .trusted         { padding-left: 0; padding-right: 0; }
    .solutions-section { padding-left: 0; padding-right: 0; }

    @media (max-width: 1280px) { .section-inner { padding: 0 40px; } }
    @media (max-width: 1024px) { .section-inner { padding: 0 24px; } }
    @media (max-width: 768px)  { .section-inner { padding: 0 20px; } }
    @media (max-width: 480px)  { .section-inner { padding: 0 16px; } }
    .sticky-top {
      position: sticky;
      top: 0;
      z-index: 900;
      background: transparent;
    }

    /* Header padding area — transparent, nav pill has its own glassmorphism bg */
    .hdr {
      position: relative;
      padding: 10px 32px;
      display: flex;
      justify-content: center;
      background: transparent;
    }

    /* ════════════════════════════════════════
       ANNOUNCEMENT BAR
    ════════════════════════════════════════ */
    .ann {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 9px 52px 9px 24px;
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 600;
      color: var(--navy);
      position: relative;
      border-bottom: 1px solid rgba(11,22,63,0.10);
      /* Fixed blue — matches the top of the page gradient, never turns white */
      background: #B8D4F0;
      line-height: 1.5;
    }
    .ann a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
    .ann-cta {
      background: var(--blue);
      color: #fff !important;
      padding: 5px 15px;
      border-radius: var(--pill);
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 600;
      white-space: nowrap;
      text-decoration: none !important;
      transition: background var(--dur);
      flex-shrink: 0;
    }
    .ann-cta:hover { background: #1a56c4; }
    .ann-x {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(11,22,63,0.4);
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
      padding: 4px 6px;
      transition: color var(--dur);
      font-family: var(--font-b);
    }
    .ann-x:hover { color: var(--navy); }

    /* ════════════════════════════════════════
       HEADER / NAV
    ════════════════════════════════════════ */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1400px;
      background: rgba(11,22,63,0.40);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: var(--nav-r);
      padding: 9px 22px;
      border: 1px solid rgba(255,255,255,0.13);
      /* Figma multi-layer shadow: #919191 at various opacities */
      box-shadow:
        -2px  4px 10px  0 rgba(145,145,145,0.05),
        -7px 17px 18px  0 rgba(145,145,145,0.04),
        -16px 38px 24px 0 rgba(145,145,145,0.03),
        -28px 67px 28px 0 rgba(145,145,145,0.01),
        -44px 105px 31px 0 rgba(145,145,145,0.00);
      gap: 8px;
      min-height: 52px;
    }

    /* Logo */
    .logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
    .logo img { height: 16px; width: auto; }

    /* Nav links */
    .nl {
      display: flex;
      align-items: center;
      list-style: none;
      flex: 1;
      justify-content: center;
      gap: 2px;
    }
    .nl > li {
      position: static; /* menus position relative to .hdr wrapper */
    }
    .nl > li > a {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--w80);
      text-decoration: none;
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 600;
      padding: 7px 12px;
      border-radius: 10px;
      transition: color var(--dur), background var(--dur);
      white-space: nowrap;
    }
    .nl > li > a:hover,
    .nl > li.mm-open > a { color: #fff; background: var(--w10); }
    .chev { width: 11px; height: 11px; transition: transform 0.22s; opacity: 0.6; flex-shrink: 0; }
    .nl > li.mm-open > a .chev { transform: rotate(180deg); opacity: 1; }

    /* ── MEGA MENU
       position: absolute inside .hdr which is the reference container
       This means no gap — menu is physically connected to the nav
    ── */
    .hdr { position: relative; } /* reference for absolute menus */

    .mm {
      display: none;
      position: absolute;
      top: 100%; /* flush below .hdr bottom */
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 20px 60px rgba(11,22,63,0.15), 0 4px 14px rgba(11,22,63,0.07);
      padding: 20px 18px 16px;
      z-index: 9999;
      /* Small top margin for visual breathing room */
      margin-top: 6px;
    }
    .mm.mm-visible {
      display: block;
      animation: mmFadeIn 0.15s ease forwards;
    }

    @keyframes mmFadeIn {
      from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    .mm-p { width: min(960px, 96vw); }
    .mm-s { width: min(620px, 96vw); }
    .g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
    .g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; }
    .mh {
      font-family: var(--font-h);
      font-size: 10px !important;
      font-weight: 700;
      color: #9AAABF;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0 10px 8px;
      border-bottom: 1px solid #EFF2FA;
      margin-bottom: 4px;
      grid-column: 1 / -1;
    }
    .mi {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      padding: 9px 10px;
      border-radius: 10px;
      text-decoration: none;
      transition: background 0.15s;
    }
    .mi:hover { background: #F1F5FF; }
    .mico {
      width: 32px;
      height: 32px;
      border-radius: var(--icon-r);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
    }
    .mt { flex: 1; min-width: 0; }
    .mm .mt-u, .mt-u {
      display: block;
      font-family: var(--font-h);
      font-size: 10px !important;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.3px;
      margin-bottom: 2px;
    }
    .mt-n {
      display: block;
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 2px;
    }
    .mm .mt-d, .mt-d {
      display: block;
      font-family: var(--font-b);
      font-size: 11px !important;
      font-weight: 500;
      color: var(--navy-88);
      line-height: 1.4;
    }

    /* Icon bg colours */
    .ia{background:#FFF0E6} .ib{background:#FFF8E1} .ic{background:#E8EEFF}
    .id{background:#F3EBFF} .ie{background:#E6F4FF} .ig{background:#E8FFE8}
    .ih{background:#FFE8E8} .ii{background:#FFE6F4} .ij{background:#E6FFF4}
    .ik{background:#E8EDFF} .il{background:#F4E6FF} .im{background:#E6F0FF}
    .in{background:#E0E8FF} .io{background:#F0EFE0} .ip{background:#FFE6E6}
    .iq{background:#E6FFEE} .ir{background:#F0F0F0} .is{background:#EAFFEA}
    .it{background:#FFE8F4} .iu{background:#F3EBFF} .iv{background:#FFE8E8}
    .iw{background:#FFF0E6}

    /* Nav right */
    .nr { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .lb {
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--w80);
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 600;
      padding: 6px 11px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.22);
      background: transparent;
      cursor: pointer;
      transition: background var(--dur), color var(--dur);
      white-space: nowrap;
    }
    .lb:hover { background: var(--w10); color: #fff; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      flex-shrink: 0;
      width: 36px;
      height: 36px;
    }
    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ════════════════════════════════════════
       MOBILE MENU
    ════════════════════════════════════════ */
    .mob-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--navy);
      z-index: 800;
      overflow-y: auto;
      transform: translateY(-100%);
      transition: transform 0.3s ease;
    }
    .mob-menu.open { transform: translateY(0); }
    .mob-inner { padding: 80px 24px 40px; min-height: 100%; }
    .mob-menu a,
    .mob-menu button.mob-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      color: #fff;
      text-decoration: none;
      font-family: var(--font-b);
      font-size: 15px;
      font-weight: 600;
      padding: 15px 0;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background: none;
      cursor: pointer;
      text-align: left;
    }
    .mob-chev { width: 14px; height: 14px; transition: transform 0.22s; opacity: 0.5; flex-shrink: 0; }
    .mob-link.open .mob-chev { transform: rotate(180deg); opacity: 1; }
    .mob-sub { display: none; padding: 4px 0 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .mob-sub.open { display: block; }
    .mob-sub a {
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      padding: 9px 0;
      border-bottom: none;
    }
    .mob-cta {
      display: flex !important;
      align-items: center;
      justify-content: center !important;
      margin-top: 24px;
      background: var(--blue) !important;
      color: #fff !important;
      padding: 14px 32px !important;
      border-radius: var(--pill) !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      text-decoration: none !important;
      border: none !important;
    }
    .mob-close {
      position: fixed;
      top: 16px;
      right: 16px;
      background: rgba(255,255,255,0.1);
      border: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      font-size: 18px;
      font-family: var(--font-b);
      z-index: 801;
    }

    /* ════════════════════════════════════════
       HERO SECTION
    ════════════════════════════════════════ */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: calc(100vh - 100px);
      padding: 24px 48px 72px;
      background: transparent;
      text-align: center;
    }
    .hc {
      width: 100%;
      max-width: 860px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* H1 — Figma: Space Grotesk 60px 700 */
    .hl {
      font-family: var(--font-h);
      font-size: 60px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
      letter-spacing: -1.8px;
      text-transform: capitalize;
      margin-bottom: 16px;
    }
    .hl .acc { color: var(--blue); font-size: inherit !important; font-weight: inherit !important; line-height: inherit !important; }

    /* Subtext — Manrope 11px 600 (global standard) */
    .hs {
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 600;
      color: var(--navy-88);
      line-height: 1.7;
      max-width: 640px;
      margin-bottom: 28px;
    }

    /* ── TAG STRIP + BUTTON ── */
    .tcb {
      position: relative;
      width: 100%;
      max-width: 920px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    /* Gradient pill strip */
    .tso {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      border-radius: var(--pill);
      background: linear-gradient(
        90deg,
        rgba(255,255,255,0)    0%,
        rgba(33,117,240,0.20) 12%,
        rgba(3,81,194,0.70)   32%,
        rgba(1,38,92,0.88)    50%,
        rgba(3,81,194,0.70)   68%,
        rgba(33,117,240,0.20) 88%,
        rgba(255,255,255,0)  100%
      );
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    /* Scrolling strip text */
    .ts {
      display: flex;
      align-items: center;
      width: max-content;
      height: 100%;
      animation: tagscroll 24s linear infinite;
    }
    @keyframes tagscroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ti {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 22px;
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 600;
      color: #fff;
      white-space: nowrap;
    }
    .td {
      width: 5px;
      height: 5px;
      background: var(--blue-bright);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* CTA button — larger than strip, overflows top & bottom */
    .btn {
      position: relative;
      z-index: 5;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(145deg, #0351C2 0%, #01265C 100%);
      color: #fff;
      padding: 28px 36px;
      border-radius: var(--pill);
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 700;
      text-decoration: none;
      white-space: nowrap;
      letter-spacing: 0.1px;
      flex-shrink: 0;
      box-shadow: 0 0 40px rgba(1,38,92,0.55), 0 4px 20px rgba(1,38,92,0.40);
      transition: opacity var(--dur), transform 0.18s, box-shadow var(--dur);
    }
    .btn:hover { opacity: 0.95; }
    .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* ════════════════════════════════════════
       BREAKPOINTS — explicit px, no clamp
    ════════════════════════════════════════ */

    /* ── Large desktop: 1440px+ ── */
    @media (min-width: 1440px) {
      .hdr { padding: 12px 48px; }
      nav  { padding: 10px 28px; }
      .hl  { font-size: 60px; }
      .hero{ padding: 24px 80px 72px; }
    }

    /* ── Standard desktop: 1280px ── */
    @media (max-width: 1280px) {
      .hdr { padding: 10px 32px; }
      .hl  { font-size: 54px; letter-spacing: -1.6px; }
      .hero{ padding: 24px 40px 64px; }
    }

    /* ── Small desktop / tablet landscape: 1024px ── */
    @media (max-width: 1024px) {
      /* Switch to hamburger */
      .nl, .lb { display: none; }
      .hamburger { display: flex; }
      .mob-menu { display: block; }

      .hdr { padding: 10px 24px; }
      nav  { padding: 9px 18px; min-height: 48px; }
      .logo img { height: 14px; }

      .hl  { font-size: 44px; letter-spacing: -1.2px; }
      .hero{ padding: 20px 32px 56px; }
      .tcb { max-width: 700px; }

      /* Products: 2-col on tablet */
      .g4  { grid-template-columns: repeat(2, 1fr); }
      .mm-p{ width: min(700px, 92vw); }
      .mm-s{ width: min(500px, 92vw); }
    }

    /* ── Tablet portrait: 768px ── */
    @media (max-width: 768px) {
      .ann { font-size: 10px; padding: 8px 40px 8px 14px; gap: 8px; }
      .ann-cta { padding: 4px 12px; font-size: 10px; }

      .hdr { padding: 8px 16px; }
      nav  { padding: 8px 14px; border-radius: 14px; min-height: 44px; }
      .logo img { height: 13px; }
      .db  { padding: 7px 14px; font-size: 10px; }

      .hl  { font-size: 34px; letter-spacing: -0.8px; margin-bottom: 12px; }
      .hs  { font-size: 11px; margin-bottom: 20px; }
      .hero{ padding: 20px 20px 48px; }
      .tcb { max-width: 560px; height: 44px; }
      .btn { padding: 16px 26px; }
      .ti  { padding: 0 16px; gap: 12px; }
    }

    /* ── Large mobile: 480px ── */
    @media (max-width: 480px) {
      .ann { padding: 7px 36px 7px 12px; }
      .ann span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

      .hdr { padding: 7px 12px; }
      nav  { padding: 7px 12px; border-radius: 12px; min-height: 42px; }
      .logo img { height: 12px; }
      .db  { padding: 7px 12px; }

      .hl  { font-size: 28px; letter-spacing: -0.5px; margin-bottom: 10px; }
      .hero{ padding: 16px 16px 40px; }
      .tcb { max-width: 100%; height: 42px; }
      .btn { padding: 14px 22px; gap: 8px; }
      .btn svg { width: 14px; height: 14px; }
      .ti  { padding: 0 12px; gap: 10px; }
      .td  { width: 4px; height: 4px; }
    }

    /* ── Small mobile: 360px ── */
    @media (max-width: 360px) {
      .ann { display: none; }
      .hl  { font-size: 24px; letter-spacing: -0.3px; }
      .tcb { height: 40px; }
      .btn { padding: 12px 18px; font-size: 10px; }
    }

    /* ════════════════════════════════════════
       PRODUCT SHOWCASE SECTION
    ════════════════════════════════════════ */
    .showcase {
      background: #ffffff;
      padding: 48px 48px 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .sc-wrap {
      position: relative;
      width: 100%;
      max-width: 1140px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Video card — gradient inside, thick white border, light blue shadow */
    .sc-card {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1038px;
      border-radius: 20px;
      padding: 12px;
      /* Thick white border */
      border: 6px solid #ffffff;
      /* Light blue box shadow */
      box-shadow: 0 0 100px 0 rgba(101,163,255,0.37);
      /* Richer gradient — matches reference: deeper blue top-left, lighter bottom-right */
      background: linear-gradient(
        135deg,
        #C8DFF5 0%,
        #D6E8F8 20%,
        #E2EFF9 45%,
        #EDF5FB 70%,
        #F4F9FF 100%
      );
      overflow: hidden;
    }

    /* Inner video area — fully transparent so card gradient is the video bg */
    .sc-video-wrap {
      width: 100%;
      border-radius: 10px;
      overflow: hidden;
      background: transparent;
      line-height: 0;
    }
    .sc-video {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      /* Keep transparent — webm alpha channel shows card gradient through */
      background: transparent;
    }

    /* Responsive */
    @media (max-width: 1280px) {
      .showcase  { padding: 40px 40px 72px; }
      .sc-card   { max-width: 900px; }
    }
    @media (max-width: 1024px) {
      .showcase  { padding: 36px 24px 64px; }
      .sc-card   { max-width: 100%; }
    }
    @media (max-width: 768px) {
      .showcase  { padding: 32px 20px 56px; }
      .sc-card   { border-radius: 16px; border-width: 4px; padding: 8px; }
      .sc-video-wrap { border-radius: 8px; }
    }
    @media (max-width: 480px) {
      .showcase  { padding: 24px 16px 48px; }
      .sc-card   { border-radius: 12px; border-width: 3px; padding: 6px;
                   box-shadow: 0 0 48px 0 rgba(101,163,255,0.28); }
      .sc-video-wrap { border-radius: 6px; }
    }

    /* ════════════════════════════════════════
       TRUSTED BY SECTION
    ════════════════════════════════════════ */
    .trusted {
      background: #ffffff;
      padding: 64px 0 80px;
      overflow: hidden;
      text-align: center;
    }

    .trusted-title {
      font-family: var(--font-b);
      font-size: 30px;
      font-weight: 600;
      color: var(--navy);
      line-height: 40px;
      letter-spacing: 0;
      text-align: center;
      max-width: 100%;
      margin: 0 auto 48px;
      padding: 0;
      white-space: normal;
    }
    .trusted-title .acc { color: var(--blue); font-size: inherit !important; font-weight: inherit !important; line-height: inherit !important; }

    /* Logo track wrapper — boxed with max width */
    .logo-track-wrap {
      display: flex;
      flex-direction: column;
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      overflow: hidden;
    }

    /* Each row — overflow hidden, fade edges */
    .logo-row {
      width: 100%;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    }

    /* Marquee track */
    .logo-marquee {
      display: flex;
      align-items: center;
      width: max-content;
      animation: marquee-ltr 120s linear infinite;
    }
    .logo-marquee-reverse {
      animation: marquee-rtl 120s linear infinite;
    }

    @keyframes marquee-ltr {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes marquee-rtl {
      0%   { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    /* Individual logo item */
    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 40px;
      flex-shrink: 0;
    }
    .logo-item img {
      height: 48px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
      display: block;
      /* Grayscale on hover reveals color */
      filter: grayscale(20%);
      opacity: 0.85;
      transition: filter 0.2s, opacity 0.2s;
    }
    .logo-item img:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .trusted        { padding: 56px 0 72px; }
      .trusted-title  { font-size: 26px; line-height: 36px; margin-bottom: 40px; }
      .logo-item img  { height: 40px; }
      .logo-item      { padding: 0 28px; }
    }
    @media (max-width: 768px) {
      .trusted        { padding: 48px 0 64px; }
      .trusted-title  { font-size: 22px; line-height: 32px; margin-bottom: 32px; }
      .logo-item img  { height: 32px; }
      .logo-item      { padding: 0 20px; }
      .logo-track-wrap{ gap: 40px; }
    }
    @media (max-width: 480px) {
      .trusted        { padding: 40px 0 56px; }
      .trusted-title  { font-size: 18px; line-height: 28px; margin-bottom: 28px; }
      .logo-item img  { height: 26px; }
      .logo-item      { padding: 0 14px; }
    }

    /* ════════════════════════════════════════
       YOUR NEEDS, OUR SOLUTIONS SECTION
    ════════════════════════════════════════ */
    /* ── Solutions Section ── */
    .solutions-section {
      background: #ffffff;
      padding: 96px 48px;
    }
    .solutions-section {
      background: #ffffff;
      padding: 96px 48px;
      position: relative;
      overflow: hidden;
    }
    .solutions-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 420px; height: 420px;
      background: radial-gradient(circle at 0% 0%, rgba(43,107,230,0.35) 0%, transparent 65%);
      pointer-events: none; z-index: 0;
    }
    .solutions-section::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 420px; height: 420px;
      background: radial-gradient(circle at 100% 100%, rgba(43,107,230,0.30) 0%, transparent 65%);
      pointer-events: none; z-index: 0;
    }
    .solutions-section .section-inner {
      position: relative;
      z-index: 1;
      background-color: #ffffff;
      padding: 50px;
      border-radius: 20px;
    }

    /* Header */
    .sol-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 40px;
      gap: 24px;
    }
    .sol-heading-block { flex: 1; }
    .sol-title {
      font-family: var(--font-h);
      font-size: 40px; font-weight: 700;
      color: var(--navy);
      line-height: 1.12; letter-spacing: -0.5px;
      margin-bottom: 4px;
    }
    .sol-title-blue {
      font-family: var(--font-h);
      font-size: 40px; font-weight: 700;
      color: var(--blue);
      line-height: 1.12; letter-spacing: -0.5px;
      margin-bottom: 16px;
    }
    .sol-sub {
      font-family: var(--font-b);
      font-size: 14px; font-weight: 500;
      color: var(--navy-88); line-height: 1.7;
      max-width: 580px;
    }
    .sol-arrows {
      display: flex; align-items: center; gap: 8px;
      flex-shrink: 0; padding-top: 8px;
    }
    .sol-arrow {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1.5px solid #E0E8F5;
      background: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    }
    .sol-arrow:hover { background: #EEF4FF; border-color: var(--blue); }
    .sol-arrow svg { width: 16px; height: 16px; color: var(--navy-88); }
    .sol-arrow:hover svg { color: var(--blue); }

    /* Track */
    .sol-track-wrap { overflow: hidden; width: 100%; }
    .sol-track {
      display: flex;
      flex-wrap: nowrap;
      gap: 16px;
      transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
      will-change: transform;
      align-items: stretch;
    }

    /* Card */
    .sol-card {
      flex: 0 0 calc((100% - 32px) / 3.15);
      min-width: 0;
      background: #F2F6FD;
      border-radius: 20px;
      border: 1.5px solid #E0EAFC;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      cursor: pointer;
    }
    .sol-card:hover {
      border-color: #E0EAFC;
    }

    /* Card header row */
    .sol-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 20px 20px 12px;
      gap: 8px;
    }
    .sol-cat {
      font-family: var(--font-b);
      font-size: 10px; font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }
    .sol-card-plus {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(43,107,230,0.10);
      border: none;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      cursor: pointer;
      transition: background 0.2s;
    }
    .sol-card-plus:hover { background: rgba(43,107,230,0.18); }
    .sol-card-plus svg { width: 14px; height: 14px; color: var(--blue); }

    /* Title */
    .sol-card-title {
      font-family: var(--font-b);
      font-size: 17px; font-weight: 400;
      color: var(--navy);
      line-height: 1.28; letter-spacing: -0.2px;
      padding: 0 20px 16px;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: calc(17px * 1.28 * 2);
    }

    /* Image area — fills remaining card space */
    .sol-card-img {
      margin: 0 12px 12px;
      border-radius: 14px;
      overflow: hidden;
      flex: 0 0 auto;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #E0EAFC;
    }
    .sol-card-img img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .sol-card-img.placeholder {
      background: #EEF4FF;
    }
    .sol-card-img.placeholder img {
      object-fit: contain;
      width: 100%;
      height: auto;
      display: block;
    }

    /* Dots */
    .sol-dots {
      display: flex; justify-content: center;
      gap: 6px; margin-top: 28px;
    }
    .sol-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #D0D9F0;
      cursor: pointer;
      transition: background 0.2s, width 0.2s;
      border: none; padding: 0;
    }
    .sol-dot.active { background: var(--blue); width: 20px; border-radius: 3px; }

    /* Responsive */
    @media (max-width: 1280px) {
      .solutions-section { padding: 80px 40px; }
      .sol-title,.sol-title-blue { font-size: 34px; }
      .sol-card { flex: 0 0 calc(33.33% - 11px); }
    }
    @media (max-width: 1024px) {
      .solutions-section { padding: 72px 24px; }
      .sol-title,.sol-title-blue { font-size: 28px; }
      .sol-card { flex: 0 0 calc(50% - 8px); }
    }
    @media (max-width: 768px) {
      .solutions-section { padding: 64px 20px; }
      .sol-title,.sol-title-blue { font-size: 24px; }
      .sol-header { flex-direction: column; gap: 16px; }
      .sol-card { flex: 0 0 calc(80% - 8px); }
    }
    @media (max-width: 480px) {
      .solutions-section { padding: 48px 16px; }
      .sol-title,.sol-title-blue { font-size: 20px; }
      .sol-card { flex: 0 0 calc(90% - 8px); }
    }

    /* ── Language Switcher ── */
    .lang-sw { position: relative; }
    .lang-btn {
      display: flex; align-items: center; gap: 6px;
      color: var(--w80); font-family: var(--font-b); font-size: 11px;
      font-weight: 600; padding: 6px 11px; border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.22); background: transparent;
      cursor: pointer; transition: background var(--dur), color var(--dur);
      white-space: nowrap;
    }

    .lang-btn img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
    .lang-btn .chev { width: 10px; height: 10px; margin-left: 2px; transition: transform var(--dur); }
    .lang-sw.open .lang-btn .chev { transform: rotate(180deg); }
    .lang-drop {
      display: none; position: absolute; top: calc(100% + 8px); left: 50%;
      transform: translateX(-50%); background: #fff; border-radius: 10px;
      box-shadow: 0 8px 32px rgba(11,22,63,0.18); overflow: hidden;
      min-width: 148px; z-index: 9999;
    }
    .lang-sw.open .lang-drop { display: block; }
    .lang-drop a {
      display: flex; align-items: center; gap: 9px;
      padding: 10px 14px; text-decoration: none;
      font-family: var(--font-b); font-size: 12px; font-weight: 500;
      color: var(--navy); transition: background var(--dur);
    }
    .lang-drop a:hover { background: #f0f4ff; }
    .lang-drop a.active { background: #e8eeff; font-weight: 700; }
    .lang-drop a img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }

    
    /* ── AI Banner Section ── */
    .ai-banner {
      padding: 96px 0;
      background: #fff;
      overflow: hidden;
    }
    .ai-banner-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      background-image: url("https://smartaudits.online/wp-content/uploads/2026/06/AI.svg");
      background-position: center right;
      background-size: auto 100%;
      background-repeat: no-repeat;
    }
    .ai-banner-inner {
      background-image: url("https://smartaudits.online/wp-content/uploads/2026/06/AI.svg");
      background-position: center center;
      background-repeat: no-repeat;
      background-color: #EEF4FF;
      border-radius: 24px;
      display: flex;
      align-items: center;
      overflow: hidden;
      min-height: 300px;
      position: relative;
    }
    .ai-banner-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg,
        rgba(238,244,255,1.00)  0%,
        rgba(238,244,255,0.95) 35%,
        rgba(238,244,255,0.60) 60%,
        rgba(238,244,255,0.00) 100%);
      z-index: 0;
      pointer-events: none;
    }
    .ai-banner-left  { position: relative; z-index: 1; }
    .ai-banner-right {
      position: relative;
      z-index: 1;
      margin-right: -16%;
    }
    /* decorative blobs */
    .ai-banner-inner::before {
      content: '';
      position: absolute;
      top: -60px; right: 100px;
      width: 240px; height: 240px;
      background: rgba(43,107,230,0.12);
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
    }
    .ai-banner-inner::after {
      content: '';
      position: absolute;
      bottom: -40px; right: 220px;
      width: 180px; height: 180px;
      background: rgba(43,107,230,0.08);
      border-radius: 50%;
      filter: blur(50px);
      pointer-events: none;
    }
    .ai-banner-left {
      flex: 1;
      padding: 56px 48px 56px 56px;
      position: relative;
      z-index: 1;
    }
    .ai-banner-heading {
      font-family: var(--font-h);
      font-size: 36px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }
    .ai-banner-heading .ai-accent {
      color: var(--blue);
     font-size: inherit !important; }
    .ai-banner-sub {
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      color: var(--navy-88);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 360px;
    }
    .ai-banner-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: #fff;
      padding: 13px 28px;
      border-radius: var(--pill);
      font-family: var(--font-b);
      font-size: 12px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s;
    }

    .ai-banner-right {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 48px 32px 0;
      position: relative;
      z-index: 1;
    }
    .ai-banner-img-frame {
      background: #fff;
      border-radius: 16px;
      border: 2.5px solid rgba(255,255,255,0.90);
      box-shadow: 0 8px 40px rgba(43,107,230,0.12), 0 0 0 1px rgba(43,107,230,0.08);
      overflow: hidden;
      width: 100%;
      max-width: 500px;
      aspect-ratio: 16/11;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ai-banner-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 1024px) {
      .ai-banner-wrap { padding: 0 24px; }
      .ai-banner-left { padding: 48px 32px 48px 40px; }
      .ai-banner-heading { font-size: 30px; }
      .ai-banner-right { padding: 32px 32px 32px 0; }
    }
    @media (max-width: 768px) {
      .ai-banner-wrap { padding: 0 20px; }
      .ai-banner-inner { flex-direction: column; }
      .ai-banner-left { flex: unset; padding: 40px 32px 24px; }
      .ai-banner-right { padding: 0 32px 40px; width: 100%; }
      .ai-banner-heading { font-size: 26px; }
    }
    @media (max-width: 480px) {
      .ai-banner { padding: 0 16px 56px; }
      .ai-banner-left { padding: 32px 24px 20px; }
      .ai-banner-right { padding: 0 24px 32px; }
      .ai-banner-heading { font-size: 22px; }
    }

    
    /* ── Stats Section ── */
    .stats-section {
      padding: 96px 48px;
      background: #fff;
      text-align: center;
    }
    .stats-heading {
      font-family: var(--font-h);
      font-size: 40px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }
    .stats-heading .stats-accent { color: var(--blue);  font-size: inherit !important; }
    .stats-sub {
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      color: var(--navy-88);
      line-height: 1.6;
      margin-bottom: 56px;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .stat-card {
      background: #EEF4FF;
      border-radius: 20px;
      padding: 28px 28px 24px;
      text-align: left;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(43,107,230,0.12);
    }
    .stat-card.stat-dark {
      background: linear-gradient(135deg, #2B6BE6 0%, #1a4fc4 100%);
    }
    .stat-label-top {
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .stat-card.stat-dark .stat-label-top { color: rgba(255,255,255,0.85); }
    .stat-number {
      font-family: var(--font-b);
      font-size: 64px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      letter-spacing: -2px;
      margin-bottom: 12px;
    }
    .stat-card.stat-dark .stat-number { color: #fff; }
    .stat-label-bot {
      font-family: var(--font-b);
      font-size: 12px;
      font-weight: 500;
      color: var(--navy-88);
    }
    .stat-card.stat-dark .stat-label-bot { color: rgba(255,255,255,0.92); }

    @media (max-width: 1024px) {
      .stats-section { padding: 72px 24px 80px; }
      .stats-heading { font-size: 32px; }
      .stat-number { font-size: 52px; }
    }
    @media (max-width: 768px) {
      .stats-section { padding: 64px 20px 72px; }
      .stats-heading { font-size: 26px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-number { font-size: 48px; }
    }
    @media (max-width: 480px) {
      .stats-section { padding: 48px 16px 56px; }
      .stats-heading { font-size: 22px; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .stat-number { font-size: 40px; }
    }

    
    /* ── Trust Section ── */
            .trust-section {
      padding: 96px 0;
      background: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .trust-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 500px; height: 500px;
      background: radial-gradient(circle at 0% 0%, rgba(43,107,230,0.35) 0%, transparent 65%);
      pointer-events: none; z-index: 0;
    }
    .trust-section::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 500px; height: 500px;
      background: radial-gradient(circle at 100% 100%, rgba(43,107,230,0.30) 0%, transparent 65%);
      pointer-events: none; z-index: 0;
    }
    .trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
      z-index: 1;
    }
    .trust-heading {
      font-family: var(--font-h);
      font-size: 40px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }
    .trust-heading .trust-accent { color: var(--blue); font-size: inherit !important; }
    .trust-sub {
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      color: var(--navy-88);
      line-height: 1.6;
      margin-bottom: 48px;
    }
    .trust-card {
      background: #F2F6FD;
      border-radius: 24px;
      padding: 48px 56px 0;
    }

    /* ── Panel container ── */
    .trust-panels { min-height: 180px; padding-top: 40px; }
    .trust-panel  { display: none; }
    .trust-panel.active {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      width: 100%;
      gap: 0;
    }

    /* ── Milestones: BRCGS | divider | 3 badges ── */
    .tm-brcgs {
      flex: 0 0 auto;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 14px;
      padding: 0 48px 0 0;
    }
    .tm-brcgs-word {
      font-family: var(--font-h);
      font-size: 44px;
      font-weight: 900;
      color: var(--navy);
      letter-spacing: -2px;
      line-height: 1;
      white-space: nowrap;
    }
    .tm-brcgs-divline {
      width: 1px;
      height: 44px;
      background: #ccc;
      flex-shrink: 0;
    }
    .tm-brcgs-sub {
      font-family: var(--font-b);
      font-size: 12px !important;
      font-weight: 500;
      color: var(--navy-88) !important;
      line-height: 1.4;
      text-align: left;
      white-space: nowrap;
    }
    .tm-vdivider {
      width: 1px;
      height: 110px;
      background: #E0EAFC;
      flex-shrink: 0;
    }
    .tm-badges {
      flex: 1;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 48px;
      padding: 0;
    }
    .tm-badge img {
      height: 70px;
      width: auto;
      object-fit: contain;
      display: block;
      transition: transform 0.2s;
    }


    /* ── Certifications: 3 circular logos ── */
    .tc-row {
      flex: 1;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 56px;
    }
    .tc-item img {
      height: 80px;
      width: auto;
      object-fit: contain;
      display: block;
      transition: transform 0.2s;
    }


    /* ── Tabs ── */
    .trust-tabs {
      display: flex;
      border-top: 1px solid #E0EAFC;
      margin-top: 8px;
    }
    .trust-tab {
      flex: 1;
      padding: 20px 24px;
      font-family: var(--font-b);
      font-size: 13px;
      font-weight: 600;
      color: #9AAABF;
      cursor: pointer;
      background: none;
      border: none;
      position: relative;
      transition: color 0.2s;
      text-align: center;
    }
    .trust-tab::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 0; height: 3px;
      background: var(--blue);
      border-radius: 0 0 3px 3px;
      transition: width 0.25s;
    }
    .trust-tab.active { color: var(--blue); }
    .trust-tab.active::before { width: 100px; }
    .trust-tab::after { display: none; }

    @media (max-width: 1024px) {
      .trust-inner { padding: 0 32px; }
      .trust-card { padding: 40px 32px 0; }
      .trust-heading { font-size: 32px; }
      .tm-brcgs-word { font-size: 36px; }
      .tm-badges { gap: 24px; }
    }
    @media (max-width: 768px) {
      .trust-section { padding: 72px 0; }
      .trust-inner { padding: 0 20px; }
      .trust-heading { font-size: 26px; }
      .trust-card { padding: 32px 24px 0; }
      .trust-panel.active { flex-wrap: wrap; gap: 24px; }
      .tm-brcgs { padding: 0; }
      .tm-vdivider { display: none; }
      .tm-badges { padding: 0; gap: 20px; }
      .tc-row { gap: 24px; }
      .tm-badge img { height: 80px; }
      .tc-item img { height: 90px; }
    }

    /* ── Footer ── */
    .site-footer {
      background: linear-gradient(180deg, #ffffff 0%, #EEF4FF 40%, #E2EDFF 100%);
      font-family: var(--font-b);
      position: relative;
    }
    .footer-top {
      padding: 72px 0 64px;
    }
    .footer-top-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      display: flex;
      align-items: flex-start;
      gap: 48px;
    }
    .footer-cta-col {
      flex: 0 0 320px;
    }
    .footer-cta-heading {
      font-family: var(--font-b);
      font-size: 30px !important;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      letter-spacing: -0.3px;
      margin-bottom: 28px;
    }
    .footer-book-btn {
      display: inline-flex;
      align-items: center;
      background: var(--blue);
      color: #fff;
      padding: 13px 28px;
      border-radius: var(--pill);
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s;
    }

    .footer-nav-cols {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .footer-col-title {
      font-family: var(--font-b);
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .footer-col-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-col-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--navy-88);
      text-decoration: none;
      transition: color 0.15s;
      line-height: 1.4;
    }
    .footer-col-links a:hover { color: var(--blue); }
    .footer-prod-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 24px;
    }

    /* Divider */
    .footer-divider {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      border: none;
      border-top: 1px solid rgba(43,107,230,0.12);
    }

    /* Bottom bar */
    .footer-bottom {
      padding: 20px 0;
    }
    .footer-bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-social {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .footer-social a {
      color: var(--navy-88);
      display: flex;
      align-items: center;
      transition: color 0.15s;
    }
    .footer-social a:hover { color: var(--blue); }
    .footer-social svg { width: 18px; height: 18px; }
    .footer-legal {
      display: flex;
      align-items: center;
      gap: 36px;
      flex-wrap: wrap;
    }
    .footer-legal a {
      font-size: 12px;
      font-weight: 500;
      color: var(--navy-88);
      text-decoration: none;
      transition: color 0.15s;
    }
    .footer-legal a:hover { color: var(--blue); }

    /* Copyright */
    .footer-copyright {
      padding: 4px 0 32px;
    }
    .footer-copyright-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      font-size: 12px;
      color: #9AA5BA;
    }

    @media (max-width: 1024px) {
      .footer-top-inner { padding: 0 32px; gap: 32px; }
      .footer-cta-col { flex: 0 0 240px; }
      .footer-cta-heading { font-size: 26px; }
      .footer-divider, .footer-bottom-inner, .footer-copyright-inner { padding: 0 32px; }
    }
    @media (max-width: 768px) {
      .footer-top-inner { flex-direction: column; padding: 0 24px; }
      .footer-cta-col { flex: unset; width: 100%; }
      .footer-nav-cols { grid-template-columns: repeat(2,1fr); }
      .footer-bottom-inner { padding: 0 24px; flex-direction: column; align-items: flex-start; }
      .footer-divider, .footer-copyright-inner { padding: 0 24px; }
    }
    @media (max-width: 480px) {
      .footer-nav-cols { grid-template-columns: 1fr; }
      .footer-top-inner, .footer-bottom-inner, .footer-divider, .footer-copyright-inner { padding: 0 20px; }
    }


    /* ── Contact / Testimonial Section ── */
    .contact-section {
      padding: 96px 0;
      background: #F4F8FF;
      text-align: center;
    }
    
    .contact-section::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 500px; height: 500px;
      background: radial-gradient(circle at 100% 100%, rgba(43,107,230,0.32) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
      z-index: 1;
    }
    .contact-heading {
      font-family: var(--font-h);
      font-size: 44px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 14px;
    }
    .contact-heading .contact-accent { color: var(--blue); font-size: inherit !important; font-weight: inherit; }
    .contact-sub {
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      color: var(--navy-88);
      line-height: 1.6;
      margin-bottom: 40px;
    }
    .contact-card {
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 4px 40px rgba(43,107,230,0.08);
      border: 1px solid #E8F0FB;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      min-height: 480px;
    }
    .contact-left {
      flex: 0 0 48%;
      padding: 40px 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      text-align: left;
      background: #fff;
    }
    .contact-quote-icon {
      font-family: Georgia, serif;
      font-size: 72px;
      font-weight: 900;
      color: var(--blue);
      opacity: 1;
      line-height: 0.7;
      margin-bottom: 24px;
      display: block;
    }
    .contact-quote-text {
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      color: #374151;
      line-height: 1.8;
      flex: 1;
      margin-bottom: 28px;
    }
    .contact-author {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 36px;
    }
    .contact-author-logo {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: #F0F6FE;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      padding: 6px;
    }
    .contact-author-logo img { width: 100%; height: 100%; object-fit: contain; }
    .contact-author-name {
      font-family: var(--font-h);
      font-size: 15px;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 4px;
    }
    .contact-author-role {
      font-family: var(--font-b);
      font-size: 12px;
      font-weight: 500;
      color: var(--navy-88);
    }
    .contact-clients-label {
      font-family: var(--font-b);
      font-size: 10px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .contact-client-logos {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .contact-client-logo {
      width: 76px; height: 76px;
      border-radius: 50%;
      border: 1.5px solid #E0EAFC;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 10px;
      flex-shrink: 0;
    }
    .contact-client-logo img { width: 100%; height: 100%; object-fit: contain; }
    .contact-right {
      flex: 1;
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
      background: #fff;
      border-left: 1px solid #E8F0FB;
    }
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .contact-form label {
      font-family: var(--font-b);
      font-size: 12px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
      display: block;
    }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #E0EAFC;
      border-radius: 8px;
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      background: #F8FAFF;
      outline: none;
      transition: border-color 0.2s;
      box-sizing: border-box;
    }
    .contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); background: #fff; }
    .contact-form textarea { resize: none; min-height: 80px; }
    .contact-form-privacy {
      font-family: var(--font-b);
      font-size: 10px !important;
      color: var(--navy-88);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.5;
    }
    .contact-form-privacy input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
    .contact-form-submit {
      background: var(--blue);
      color: #fff;
      border: none;
      border-radius: var(--pill);
      padding: 13px 40px;
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s;
      align-self: center;
      margin-top: 4px;
    }

    @media (max-width: 1024px) {
      .contact-inner { padding: 0 32px; }
      .contact-heading { font-size: 36px; }
      .contact-left { padding: 40px 36px; }
      .contact-right { padding: 40px 32px; }
    }
    @media (max-width: 768px) {
      .contact-section { padding: 72px 0; }
      .contact-inner { padding: 0 20px; }
      .contact-card { flex-direction: column; }
      .contact-left { flex: unset; padding: 36px 28px 40px; border-bottom: 1px solid #E8F0FB; }
      .contact-right { padding: 36px 24px 40px; border-left: none; }
      .contact-heading { font-size: 28px; }
      .tcarousel-dots { justify-content: center; }
      .contact-client-logos { justify-content: center; }
      .contact-clients-label { text-align: center; }
    }
    @media (max-width: 480px) {
      .contact-heading { font-size: 24px; }
      .contact-inner { padding: 0 16px; }
    }


    /* ── Contact card gradient overlay ── */
    .contact-card {
      position: relative;
    }
    .contact-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 320px; height: 320px;
      background: radial-gradient(circle at 0% 0%, rgba(43,107,230,0.14) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
    .contact-card::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 320px; height: 320px;
      background: radial-gradient(circle at 100% 100%, rgba(43,107,230,0.11) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
    .contact-left, .contact-right { position: relative; z-index: 1; }

    /* ── Testimonial carousel ── */
    .tcarousel { position: relative; margin-bottom: 24px; }
    .tcard {
      display: none;
      flex-direction: column;
      gap: 0;
      animation: tfade 0.5s ease;
    }
    .tcard.active { display: flex; }
    @keyframes tfade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
    .tcard-quote {
      font-family: Georgia, serif;
      font-size: 64px !important;
      font-weight: 900;
      color: var(--blue);
      line-height: 0.7;
      margin-bottom: 24px;
      display: block;
    }
    .tcard-text {
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      color: #374151;
      line-height: 1.8;
      margin-bottom: 24px;
    }
    .tcard-author {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 0;
    }
    .tcard-logo {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: #F0F6FE;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      padding: 6px;
      border: 1.5px solid #E0EAFC;
    }
    .tcard-logo img { width: 100%; height: 100%; object-fit: contain; }
    .tcard-name {
      font-family: var(--font-h);
      font-size: 14px;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 3px;
    }
    .tcard-role {
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 500;
      color: var(--navy-88);
    }

    /* Dots */
    .tcarousel-dots {
      display: flex;
      gap: 6px;
      margin-bottom: 24px;
    }
    .tdot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #D0D9F0;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s, width 0.2s;
    }
    .tdot.active { background: var(--blue); width: 20px; border-radius: 3px; }

    /* Client logos - bigger */
    .contact-clients-wrap { margin-top: 0; }
    .contact-client-logo {
      width: 64px; height: 64px;
      border-radius: 50%;
      border: 1.5px solid #E0EAFC;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 8px;
      flex-shrink: 0;
    }
    .contact-client-logo img { width: 100%; height: 100%; object-fit: contain; }
    .contact-client-logos { gap: 12px; }


    /* ── Sol card open state ── */

    /* Closed view shown by default, open view hidden */
    .sol-card-collapsed-view { display: flex; flex-direction: column; flex: 1; }
    .sol-card-open-view { display: none; flex-direction: column; flex: 1; }
    .sol-card.open .sol-card-collapsed-view { display: none; }
    .sol-card.open .sol-card-open-view { display: flex; }

    /* Open card sizing */
    .sol-card.open {
      flex: 0 0 calc(((100% - 32px) / 3.15) * 2 + 16px);
      background: #F0F5FD;
      border-color: #C8DCFF;
      box-shadow: 0 8px 40px rgba(43,107,230,0.13);
      transform: none;
      cursor: default;
    }
    .sol-card.open:hover { transform: none; border-color: #C8DCFF; }

    /* Open head */
    .sol-card.open .sol-card-head { padding: 20px 20px 16px; }

    /* Close button */
    .sol-card-close {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: #E4EDFB;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.2s;
    }
    .sol-card-close:hover { background: #C8DCFF; }
    .sol-card-close svg { width: 14px; height: 14px; color: var(--blue); }

    /* Body wrap: text-col LEFT | img-col RIGHT */
    .sol-card-body-wrap {
      flex: 1;
      display: flex;
      gap: 20px;
      padding: 0 16px 20px;
      align-items: center;
      min-height: 0;
    }

    /* Text col: title + desc + btn stacked */
    .sol-card-text-col {
      flex: 0 0 44%;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
    }
    /* Title inside text col — no clamp in open state */
    .sol-card-open-view .sol-card-title {
      -webkit-line-clamp: unset;
      overflow: visible;
      min-height: 0;
      padding: 0;
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      font-family: var(--font-h);
      line-height: 1.3;
    }

    /* Image col: 70% of remaining space */
    .sol-card-img-col {
      flex: 1;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #D8E8FF;
    }
    .sol-card-img-col img {
      width: 70%;
      height: auto;
      object-fit: contain;
      display: block;
    }


    .sol-card-desc {
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      color: var(--navy-88);
      line-height: 1.75;
      flex: 1;
      margin-bottom: 24px;
    }
    .sol-card-know {
      display: inline-flex;
      align-items: center;
      background: var(--blue);
      color: #fff;
      padding: 11px 24px;
      border-radius: var(--pill);
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      align-self: flex-start;
      transition: background 0.2s, box-shadow 0.2s;
    }
    .sol-card-know:hover { background: #1a56c4; box-shadow: 0 4px 16px rgba(43,107,230,0.3); }

    .sol-card-img-col {
      flex: 1;
      min-width: 0;
      border-radius: 14px;
      border: 1px solid #D8E8FF;
      overflow: hidden;
      display: flex;
      align-items: stretch;
    }
    .sol-card-img-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Hide image and title in open state (they move to body wrap) */
    .sol-card.open .sol-card-img { display: none; }
    .sol-card.open .sol-card-title { margin-bottom: 0; padding-bottom: 0; }


    /* ── Global 14px for all body/para/button text ── */
    p, span:not(.sol-cat):not(.ann-cta):not(.sol-card-title):not(.acc):not(.contact-accent):not(.stats-accent):not(.trust-accent):not(.ai-accent):not(.mt-u):not(.mt-d):not(.mh):not(.tcard-quote), li,
    a:not(.nav-link):not(.logo):not(.sol-card-know):not(.mi),
    button:not(.sol-card-plus):not(.sol-card-close):not(.sol-arrow):not(.trust-tab):not(.tdot):not(.sol-dot):not(.hamburger):not(.ann-x):not(.lang-btn):not(.trust-tab),
    input, textarea, select, label,
    .hs, .sol-sub, .sol-card-desc, .sol-card-know, .contact-sub,
    .ai-banner-sub, .stats-sub, .trust-sub, .footer-col-links a,
    .footer-cta-heading, .contact-quote-text, .tcard-text,
    .contact-form label, .contact-form-privacy,
    .footer-legal a, .footer-copyright-inner,
    .sol-cat, .tcard-role, .tcard-name, .contact-clients-label,
    .stat-label-top, .stat-label-bot, .footer-col-title,
    .trust-milestone-label, .sol-card-body, .sol-card-desc,
    .ann span, .mob-cta, .footer-book-btn, .contact-form-submit,
    .sol-know-more, .ai-banner-cta, .footer-book-btn {
      font-size: 14px !important;
    }

    /* Exceptions — keep smaller sizes for labels/badges/micro-text */
    .sol-cat,
    .trust-milestone-label,
    .contact-clients-label,
    .stat-label-top,
    .footer-legal a,
    
    .footer-copyright-inner,
    .tcard-role,
    .ann span { font-size: 12px !important; }

    /* Keep heading sizes untouched — headings are h1-h6 + named title classes */


    /* ── Heading spans always inherit heading size ── */
    h1 span, h2 span, h3 span, h4 span,
    .hl span, .hl .acc,
    .tcard-quote,
    .contact-heading span,
    .stats-heading span,
    .trust-heading span,
    .ai-banner-heading span,
    .sol-title span,
    .sol-title-blue span,
    .footer-cta-heading span {
      font-size: inherit !important;
      font-weight: inherit;
      line-height: inherit;
    }



    /* ── Final nav size locks — highest priority ── */
    html body .mm .mt-u, html body .mm-s .mt-u,
    html body .mm .mt-d, html body .mm-s .mt-d,
    html body .mh { font-size: revert !important; }
    html body .mm .mt-u, html body .mm-s .mt-u { font-size: 10px !important; }
    html body .mm .mt-d, html body .mm-s .mt-d { font-size: 11px !important; }
    html body .mh { font-size: 10px !important; }


    /* ── Testimonial quote symbol — force 64px ── */
    html body .tcarousel .tcard .tcard-quote,
    html body .tcard-quote {
      font-size: 64px !important;
      line-height: 0.7 !important;
    }


    /* ── Footer CTA heading size lock ── */
    html body .footer-cta-heading {
      font-size: 30px !important;
      line-height: 1.2 !important;
      letter-spacing: -0.3px !important;
    }


    .mm-c { min-width: 280px; }
    .g1 { display: flex; flex-direction: column; padding: 16px; gap: 2px; }


    /* ── Contact section gradients on section ── */
    .contact-section {
      padding: 96px 0;
      background: #F4F8FF;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .contact-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 500px; height: 500px;
      background: radial-gradient(circle at 0% 0%, rgba(43,107,230,0.38) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
    .contact-section::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 500px; height: 500px;
      background: radial-gradient(circle at 100% 100%, rgba(43,107,230,0.32) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
    /* Contact card — boxed on wide screens */
    .contact-card {
      max-width: 1200px !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }


    html body .contact-form .contact-form-privacy,
    html body .contact-form-privacy {
      font-size: 7px !important;
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      gap: 6px !important;
      flex-wrap: nowrap !important;
    }
    html body .contact-form-privacy input[type="checkbox"] {
      flex-shrink: 0;
      margin: 0 !important;
      width: 12px;
      height: 12px;
    }


    /* ── Remove all button hover effects ── */
    .btn:hover, .db:hover, .sol-card-know:hover,
    .ai-banner-cta:hover, .footer-book-btn:hover,
    .contact-form-submit:hover, .lang-btn:hover,
    .sol-know-more:hover, .ann-cta:hover,
    .mob-cta:hover, .footer-book-btn:hover {
      box-shadow: none !important;
      transform: none !important;
    }


    /* ── Manrope overrides ── */
    html body .footer-cta-heading { font-family: var(--font-b) !important; }
    html body .stat-number { font-family: var(--font-b) !important; }


    /* Remove nav box-shadow */
    html body .hdr, html body nav#nav, html body .nav-pill,
    html body .sticky-top { box-shadow: none !important; }

    