
    /* ─── BRAND TOKENS ───────────────────────────── */
    :root {
      --blackberry: #2E2155;
      --indigo:     #403C7E;
      --coral:      #E6594C;
      --grape:      #665998;
      --plum:       #7A3578;
      --gray-brand: #8F8A9C;
      --blueberry:  #6282C1;
      --midnight:   #1D173C;
      --gold:       #FAB554;
      --sky:        #C7E8F5;
      --lavender:   #8688C2;

      --white:      #FFFFFF;
      --off-white:  #F7F6FB;
      --light-gray: #EDEDF5;
      --text:       #2E2155;
      --text-mid:   #5A5480;
      --text-light: #8F8A9C;
      --border:     rgba(46,33,85,0.09);

      --font: 'Poppins', sans-serif;
      --expo: cubic-bezier(0.16, 1, 0.3, 1);
      --smooth: cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font);
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      touch-action: manipulation;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ─── SECONDARY NAV ──────────────────────────── */
    .sec-nav {
      background: var(--midnight);
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0 56px;
      height: 36px;
      z-index: 300;
      position: relative;
    }
    .sec-nav a, .sec-nav button {
      font-family: var(--font);
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      padding: 0 14px;
      height: 100%;
      display: flex;
      align-items: center;
      background: none;
      border: none;
      cursor: pointer;
      border-right: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s;
    }
    .sec-nav a:first-child { border-left: 1px solid rgba(255,255,255,0.06); }
    .sec-nav a:hover, .sec-nav button:hover { color: var(--gold); }
    .sec-nav .s-login {
      background: var(--coral) !important;
      color: var(--white) !important;
      font-weight: 600;
      border: none !important;
      transition: background 0.2s !important;
    }
    .sec-nav .s-login:hover { background: #cc4035 !important; }

    /* ─── PRIMARY NAV ────────────────────────────── */
    .pri-nav {
      position: sticky;
      top: 0;
      z-index: 202;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      display: flex;
      align-items: center;
      padding: 0 56px;
      height: 72px;
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .pri-nav.scrolled {
      box-shadow: 0 8px 32px rgba(46,33,85,0.1);
    }
    .nav-logo {
      margin-right: 48px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .nav-logo img { height: 34px; width: auto; display: block; }

    .nav-links { display: flex; align-items: center; flex: 1; }
    .ni { position: relative; }
    .ni > a, .ni > button {
      font-family: var(--font);
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-mid);
      padding: 0 16px;
      height: 72px;
      display: flex;
      align-items: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .ni > a:hover, .ni > button:hover { color: var(--blackberry); }
    .chev {
      display: inline-block;
      width: 7px; height: 7px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform 0.2s;
    }
    .ni:hover .chev, .ni:focus-within .chev { transform: rotate(225deg) translateY(-2px); }
    .ni > a::after, .ni > button::after {
      content: '';
      position: absolute;
      bottom: 0; left: 16px; right: 16px;
      height: 2px;
      background: var(--coral);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s var(--expo);
      border-radius: 2px 2px 0 0;
    }
    .ni:hover > a::after, .ni:hover > button::after { transform: scaleX(1); }

    /* Mega menu */
    .mm {
      position: absolute;
      top: 100%; left: 0;
      background: var(--white);
      border-top: 3px solid var(--coral);
      box-shadow: 0 20px 60px rgba(46,33,85,0.13), 0 1px 0 var(--border);
      padding: 32px 36px;
      display: grid;
      gap: 0 32px;
      min-width: 520px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity 0.2s var(--smooth), transform 0.2s var(--smooth);
    }
    .mm-2 { grid-template-columns: 1fr 1fr; }
    .mm-1 { grid-template-columns: 1fr; min-width: 260px; }
    .ni:hover .mm, .ni:focus-within .mm { opacity: 1; pointer-events: all; transform: translateY(0); }
    .mm-label {
      font-size: 9.5px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--coral); margin-bottom: 14px;
    }
    .mm-link {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 10px 12px; border-radius: 8px; margin: 0 -12px;
      transition: background 0.15s; cursor: pointer;
    }
    .mm-link:hover { background: var(--off-white); }
    .mm-ico {
      width: 36px; height: 36px;
      background: rgba(64,60,126,0.07);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .mm-ico svg { width: 17px; height: 17px; stroke: var(--indigo); fill: none; stroke-width: 1.8; }
    .mm-txt strong { display: block; font-size: 13px; font-weight: 600; color: var(--blackberry); margin-bottom: 2px; }
    .mm-txt span { font-size: 11.5px; color: var(--gray-brand); line-height: 1.4; }
    .mm-div { grid-column: 1/-1; border: none; border-top: 1px solid var(--border); margin: 12px 0; }
    .mm-cta {
      grid-column: 1/-1;
      background: linear-gradient(135deg, var(--blackberry), var(--indigo));
      border-radius: 10px; padding: 16px 20px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      margin-top: 4px;
    }
    .mm-cta strong { display: block; font-size: 14px; font-weight: 600; color: white; margin-bottom: 3px; }
    .mm-cta p { font-size: 12px; color: rgba(255,255,255,0.5); }
    .mm-cta a { font-size: 12px; font-weight: 600; color: var(--gold); border: 1px solid rgba(250,181,84,0.4); padding: 8px 18px; border-radius: 6px; white-space: nowrap; }

    /* ─── BUTTONS ────────────────────────────────── */
    .btn-gold {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: var(--blackberry);
      font-family: var(--font); font-size: 14px; font-weight: 700;
      padding: 14px 30px; border-radius: 8px;
      box-shadow: 0 4px 20px rgba(250,181,84,0.4);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-gold:hover { background: #ffc467; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(250,181,84,0.5); }
    .btn-outline-dark {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--blackberry);
      font-family: var(--font); font-size: 14px; font-weight: 500;
      padding: 13px 28px; border-radius: 8px;
      border: 1.5px solid rgba(46,33,85,0.25);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-outline-dark:hover { border-color: var(--blackberry); background: rgba(46,33,85,0.04); transform: translateY(-1px); }
    .btn-outline-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: white;
      font-family: var(--font); font-size: 14px; font-weight: 500;
      padding: 13px 28px; border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.35);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); transform: translateY(-1px); }
    .btn-coral {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--coral); color: white;
      font-family: var(--font); font-size: 14px; font-weight: 600;
      padding: 14px 30px; border-radius: 8px;
      box-shadow: 0 4px 18px rgba(230,89,76,0.3);
      transition: background 0.2s, transform 0.15s;
    }
    .btn-coral:hover { background: #cc4035; transform: translateY(-2px); }

    /* ─── HERO (VIDEO BG) ────────────────────────── */
    .hero {
      position: relative;
      height: 94vh;
      height: 94dvh;
      min-height: 680px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
    }

    /* Video */
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-video-wrap video {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
    }
    .hero-video-wrap img.video-fallback {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
    }

    /* Layered overlays */
    .hero-overlay-1 {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(180deg,
        rgba(29,23,60,0.55) 0%,
        rgba(46,33,85,0.72) 50%,
        rgba(29,23,60,0.65) 100%
      );
    }
    /* Vignette edges */
    .hero-overlay-2 {
      position: absolute; inset: 0; z-index: 2;
      background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(29,23,60,0.4) 100%);
    }

    /* Decorative accents */
    .hero-accent-left {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, transparent, var(--coral), transparent);
      z-index: 3;
    }
    .hero-accent-right {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, transparent, var(--gold), transparent);
      z-index: 3;
    }

    /* Scroll indicator */
    .hero-scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeIn 1s 1.6s forwards;
    }
    .scroll-label {
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }
    .scroll-line {
      width: 1px; height: 36px;
      background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    /* Hero content */
    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 860px;
      padding: 0 40px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.8s var(--expo) 0.2s forwards;
    }
    .eyebrow-pill {
      background: rgba(250,181,84,0.15);
      border: 1px solid rgba(250,181,84,0.3);
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--gold);
    }
    .hero-h1 {
      font-size: clamp(44px, 6vw, 80px);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -0.035em;
      color: white;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.9s var(--expo) 0.35s forwards;
    }
    .h1-coral { color: var(--coral); }
    .h1-gold { color: var(--gold); }
    .hero-sub {
      font-size: 18px; font-weight: 300; line-height: 1.7;
      color: rgba(255,255,255,0.68);
      max-width: 580px;
      margin: 0 auto 44px;
      opacity: 0;
      animation: fadeUp 0.9s var(--expo) 0.5s forwards;
    }
    .hero-actions {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.9s var(--expo) 0.65s forwards;
    }
    .hero-actions svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* Floating social proof chip */
    .hero-proof {
      position: absolute;
      bottom: 90px;
      right: 64px;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 40px;
      padding: 10px 18px 10px 10px;
      opacity: 0;
      animation: fadeUp 0.8s var(--expo) 1s forwards;
    }
    .proof-avatars { display: flex; }
    .proof-av {
      width: 30px; height: 30px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.2);
      margin-left: -8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; color: white;
    }
    .proof-av:first-child { margin-left: 0; background: var(--coral); }
    .proof-av:nth-child(2) { background: var(--grape); }
    .proof-av:nth-child(3) { background: var(--blueberry); }
    .proof-text { font-size: 12px; font-weight: 500; color: white; line-height: 1.4; }
    .proof-text span { display: block; font-size: 10.5px; font-weight: 300; color: rgba(255,255,255,0.55); }

    /* ─── AWARDS BAND ────────────────────────────── */
    .awards-band {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 28px 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      overflow: hidden;
    }
    .awards-label {
      font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-light);
      white-space: nowrap; flex-shrink: 0;
    }
    .awards-rule { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
    .awards-list { display: flex; gap: 36px; align-items: center; }
    .award-item {
      display: flex; align-items: center; gap: 10px;
      flex-shrink: 0;
    }
    .award-badge {
      width: 44px; height: 44px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .award-badge.klas { background: rgba(64,60,126,0.08); }
    .award-badge.bb { background: rgba(230,89,76,0.08); }
    .award-badge.gartner { background: rgba(250,181,84,0.1); }
    .award-badge.hbma { background: rgba(98,130,193,0.1); }
    .award-badge svg { width: 20px; height: 20px; }
    .award-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--blackberry); }
    .award-text span { font-size: 10.5px; color: var(--text-light); }
    .award-sep { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

    /* ─── TRUSTED BY ─────────────────────────────── */
    .trusted {
      background: var(--off-white);
      padding: 28px 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      border-bottom: 1px solid var(--border);
    }
    .t-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); white-space: nowrap; flex-shrink: 0; }
    .t-rule { width: 1px; height: 22px; background: var(--border); flex-shrink: 0; }
    .t-logos { display: flex; gap: 44px; align-items: center; overflow: hidden; }
    .t-logo { font-size: 13px; font-weight: 700; color: var(--blackberry); opacity: 0.3; transition: opacity 0.2s; white-space: nowrap; flex-shrink: 0; cursor: pointer; }
    .t-logo:hover { opacity: 0.6; }

    /* ─── SECTION SYSTEM ─────────────────────────── */
    .s { padding: 96px 56px; }
    .s-max { max-width: 1280px; margin: 0 auto; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--coral); margin-bottom: 14px;
    }
    .eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--coral); }
    .h2 {
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 800;
      letter-spacing: -0.025em;
      color: var(--blackberry);
      line-height: 1.1;
      margin-bottom: 14px;
    }
    .h2 em { font-style: normal; color: var(--coral); }
    .sub { font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.7; max-width: 540px; }
    .s-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; gap: 32px; }
    .see-all {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: var(--indigo);
      white-space: nowrap; flex-shrink: 0; transition: gap 0.2s;
    }
    .see-all:hover { gap: 10px; }
    .see-all svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ─── SOLUTIONS (HORIZONTAL SCROLL ON MOBILE) ── */
    .sol-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 0 var(--border);
    }
    .sol-tile {
      background: var(--white);
      padding: 36px 32px;
      cursor: pointer;
      transition: background 0.25s;
      position: relative;
      overflow: hidden;
    }
    .sol-tile::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--coral);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s var(--expo);
    }
    .sol-tile:hover { background: var(--off-white); }
    .sol-tile:hover::before { transform: scaleX(1); }

    .sol-num {
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--light-gray, #EDEDF5);
      color: rgba(64,60,126,0.2);
      font-family: var(--font);
      margin-bottom: 20px;
    }
    .sol-icon-wrap {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: rgba(64,60,126,0.07);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      transition: background 0.25s;
    }
    .sol-tile:hover .sol-icon-wrap { background: rgba(230,89,76,0.09); }
    .sol-icon-wrap svg { width: 22px; height: 22px; stroke: var(--indigo); fill: none; stroke-width: 1.7; }
    .sol-tile:hover .sol-icon-wrap svg { stroke: var(--coral); }
    .sol-name { font-size: 17px; font-weight: 700; color: var(--blackberry); margin-bottom: 10px; letter-spacing: -0.01em; }
    .sol-desc { font-size: 13.5px; font-weight: 300; line-height: 1.65; color: var(--text-mid); margin-bottom: 24px; }
    .sol-link {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 13px; font-weight: 600; color: var(--coral);
      transition: gap 0.2s;
    }
    .sol-link:hover { gap: 9px; }
    .sol-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ─── IMPACT BAND ────────────────────────────── */
    .impact-band {
      background: var(--off-white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 56px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .imp-item {
      padding: 0 40px;
      border-left: 1px solid var(--border);
      text-align: center;
    }
    .imp-item:first-child { border-left: none; }
    .imp-num {
      font-size: 44px; font-weight: 800;
      color: var(--blackberry);
      letter-spacing: -0.04em;
      line-height: 1; margin-bottom: 6px;
    }
    .imp-num span { color: var(--coral); }
    .imp-label { font-size: 13px; font-weight: 400; color: var(--text-mid); line-height: 1.5; }

    /* ─── SPLIT: PHOTO + FEATURES ────────────────── */
    .split-section {
      background: var(--white);
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 580px;
    }
    .split-content {
      padding: 80px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--white);
    }
    .split-photo {
      position: relative;
      overflow: hidden;
    }
    .split-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      transform: scale(1.12);
    }
    /* Decorative edge fade */
    .split-fade {
      position: absolute;
      top: 0; bottom: 0; left: 0;
      width: 80px;
      background: linear-gradient(90deg, var(--white), transparent);
      z-index: 2;
      pointer-events: none;
    }
    .feature-list { margin: 32px 0 36px; display: flex; flex-direction: column; gap: 18px; }
    .fi {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px; border-radius: 10px;
      transition: background 0.2s;
    }
    .fi:hover { background: var(--off-white); }
    .fi-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(64,60,126,0.08);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s;
    }
    .fi:hover .fi-icon { background: rgba(230,89,76,0.1); }
    .fi-icon svg { width: 18px; height: 18px; stroke: var(--indigo); fill: none; stroke-width: 1.8; }
    .fi:hover .fi-icon svg { stroke: var(--coral); }
    .fi-txt strong { display: block; font-size: 14px; font-weight: 600; color: var(--blackberry); margin-bottom: 3px; }
    .fi-txt span { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.5; }

    /* ─── TESTIMONIALS ───────────────────────────── */
    .testimonials { background: var(--off-white); padding: 96px 56px; }
    .testimonials .s-max {}

    /* Active tab indicator */
    .testi-tabs {
      display: flex;
      gap: 0;
      background: var(--white);
      border-radius: 10px;
      padding: 4px;
      margin-bottom: 48px;
      border: 1px solid var(--border);
      width: fit-content;
    }
    .testi-tab {
      font-family: var(--font);
      font-size: 12.5px;
      font-weight: 500;
      color: var(--text-mid);
      padding: 9px 20px;
      border-radius: 7px;
      cursor: pointer;
      border: none;
      background: none;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .testi-tab.active {
      background: var(--blackberry);
      color: white;
      font-weight: 600;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px;
      position: relative;
      transition: box-shadow 0.25s, transform 0.25s var(--expo);
    }
    .testi-card:hover {
      box-shadow: 0 16px 48px rgba(46,33,85,0.09);
      transform: translateY(-4px);
    }
    /* Quote mark */
    .testi-card::before {
      content: '\201C';
      position: absolute;
      top: 20px; right: 24px;
      font-family: Georgia, serif;
      font-size: 80px;
      line-height: 1;
      color: rgba(230,89,76,0.1);
      font-weight: 700;
    }
    /* Coral accent top bar */
    .testi-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--coral), var(--indigo));
      border-radius: 16px 16px 0 0;
    }
    .testi-stars {
      display: flex; gap: 3px; margin-bottom: 18px;
    }
    .star { width: 14px; height: 14px; fill: var(--gold); }
    .testi-quote {
      font-size: 15px; font-weight: 400; font-style: italic;
      color: var(--text-mid);
      line-height: 1.65;
      margin-bottom: 24px;
    }
    .testi-quote strong { font-weight: 600; font-style: normal; color: var(--blackberry); }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-av {
      width: 44px; height: 44px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: white;
      flex-shrink: 0;
    }
    .testi-name { font-size: 14px; font-weight: 600; color: var(--blackberry); }
    .testi-role { font-size: 11.5px; font-weight: 300; color: var(--text-light); margin-top: 2px; }
    .testi-org {
      display: flex; align-items: center; gap: 6px;
      margin-top: 6px;
    }
    .testi-org-dot {
      width: 5px; height: 5px;
      background: var(--coral); border-radius: 50%;
    }
    .testi-org-name { font-size: 11px; font-weight: 500; color: var(--coral); }

    /* Featured testimonial */
    .testi-featured {
      background: linear-gradient(135deg, var(--blackberry) 0%, var(--indigo) 100%);
      border-radius: 20px;
      padding: 48px;
      margin-bottom: 32px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
    }
    .tf-quote {
      font-size: 20px; font-weight: 300; font-style: italic;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .tf-quote strong { font-weight: 700; font-style: normal; color: white; }
    .tf-author { display: flex; align-items: center; gap: 14px; }
    .tf-av {
      width: 50px; height: 50px;
      border-radius: 50%;
      background: var(--coral);
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 700; color: white;
      flex-shrink: 0;
    }
    .tf-name { font-size: 15px; font-weight: 600; color: white; }
    .tf-role { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); margin-top: 3px; }
    .tf-stat {
      text-align: center;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 24px 32px;
      min-width: 160px;
    }
    .tf-stat-num { font-size: 48px; font-weight: 800; color: white; letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
    .tf-stat-num span { color: var(--gold); }
    .tf-stat-label { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.4; }

    /* ─── INSIGHTS ───────────────────────────────── */
    .insights-s { background: var(--white); padding: 96px 56px; }
    .ins-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 24px;
      margin-top: 52px;
    }
    .ins-card {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--white);
      cursor: pointer;
      transition: box-shadow 0.25s, transform 0.25s var(--expo);
    }
    .ins-card:hover {
      box-shadow: 0 16px 48px rgba(46,33,85,0.1);
      transform: translateY(-4px);
    }
    .ins-photo { height: 200px; position: relative; overflow: hidden; }
    .ins-card:first-child .ins-photo { height: 240px; }
    .ins-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--expo); }
    .ins-card:hover .ins-photo img { transform: scale(1.04); }
    .ins-photo-ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(46,33,85,0.6) 100%); }
    .ins-pill {
      position: absolute; top: 14px; left: 14px;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 20px;
      background: var(--coral); color: white;
    }
    .ins-body { padding: 22px; }
    .ins-title { font-size: 16px; font-weight: 700; color: var(--blackberry); line-height: 1.35; margin-bottom: 12px; letter-spacing: -0.01em; }
    .ins-card:first-child .ins-title { font-size: 18px; }
    .ins-meta { display: flex; align-items: center; gap: 10px; font-size: 11.5px; color: var(--text-light); }
    .ins-dot { width: 3px; height: 3px; background: var(--text-light); border-radius: 50%; }

    /* ─── CTA ────────────────────────────────────── */
    .cta-s {
      background: var(--blackberry);
      padding: 100px 56px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    /* Decorative circles */
    .cta-blob-1 {
      position: absolute; top: -100px; left: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(230,89,76,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-blob-2 {
      position: absolute; bottom: -80px; right: -80px;
      width: 350px; height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(250,181,84,0.14) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-grid-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
    }
    .cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
    .cta-content .eyebrow { justify-content: center; color: var(--gold); }
    .cta-content .eyebrow::before { background: var(--gold); }
    .cta-content .h2 { color: white; margin: 0 auto 16px; }
    .cta-content .sub { color: rgba(255,255,255,0.55); margin: 0 auto 40px; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ─── FOOTER ─────────────────────────────────── */
    footer {
      background: var(--midnight);
      padding: 72px 56px 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 260px repeat(4, 1fr);
      gap: 48px;
      margin-bottom: 56px;
    }
    .footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.7; margin: 18px 0 24px; }
    .f-socials { display: flex; gap: 8px; }
    .f-soc { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
    .f-soc:hover { background: rgba(255,255,255,0.1); }
    .f-soc svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 1.8; }
    .f-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 20px; }
    .f-links li { margin-bottom: 11px; }
    .f-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .f-links a:hover { color: white; }
    .f-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; }
    .f-legal { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,0.2); }
    .f-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
    .f-legal a:hover { color: rgba(255,255,255,0.6); }
    .f-legal span { margin: 0 8px; }

    /* ─── ANIMATIONS ─────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes scrollPulse {
      0%, 100% { transform: scaleY(1); opacity: 0.6; }
      50%       { transform: scaleY(0.5); opacity: 1; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s var(--expo), transform 0.7s var(--expo);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .rd1 { transition-delay: 0.1s; }
    .rd2 { transition-delay: 0.2s; }
    .rd3 { transition-delay: 0.3s; }
    .rd4 { transition-delay: 0.4s; }
  
    /* ─── PAGE HERO ──────────────────────────────── */
    .page-hero {
      background: linear-gradient(135deg, var(--blackberry) 0%, var(--indigo) 100%);
      padding: 100px 56px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 64px 64px; pointer-events: none;
    }
    .page-hero-blob1 { position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(250,181,84,0.15) 0%, transparent 70%); pointer-events: none; }
    .page-hero-blob2 { position: absolute; bottom: -60px; left: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(230,89,76,0.15) 0%, transparent 70%); pointer-events: none; }
    .page-hero-content { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
    .page-hero h1 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; letter-spacing: -0.035em; color: white; line-height: 1.1; margin-bottom: 20px; }
    .page-hero h1 em { font-style: normal; color: var(--gold); }
    .page-hero p { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 580px; margin: 0 auto 36px; }
    .page-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    /* ─── FEATURE GRID ───────────────────────────── */
    .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
    .feat-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
    .feat-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: box-shadow 0.25s, transform 0.25s var(--expo); }
    .feat-card:hover { box-shadow: 0 16px 48px rgba(46,33,85,0.09); transform: translateY(-4px); }
    .feat-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(64,60,126,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.2s; }
    .feat-card:hover .feat-icon { background: rgba(230,89,76,0.1); }
    .feat-icon svg { width: 22px; height: 22px; stroke: var(--indigo); fill: none; stroke-width: 1.7; }
    .feat-card:hover .feat-icon svg { stroke: var(--coral); }
    .feat-title { font-size: 17px; font-weight: 700; color: var(--blackberry); margin-bottom: 10px; letter-spacing: -0.01em; }
    .feat-desc { font-size: 13.5px; font-weight: 300; color: var(--text-mid); line-height: 1.65; }
    /* ─── STEPS ──────────────────────────────────── */
    .steps { display: flex; flex-direction: column; gap: 32px; }
    .step { display: flex; gap: 24px; align-items: flex-start; }
    .step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--blackberry); color: white; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .step-txt strong { display: block; font-size: 16px; font-weight: 700; color: var(--blackberry); margin-bottom: 6px; }
    .step-txt p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.6; }
    /* ─── STAT BAND ──────────────────────────────── */
    .stat-band { background: linear-gradient(135deg, var(--blackberry) 0%, var(--indigo) 100%); padding: 64px 56px; display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat-item { text-align: center; padding: 0 32px; border-left: 1px solid rgba(255,255,255,0.1); }
    .stat-item:first-child { border-left: none; }
    .stat-num { font-size: 40px; font-weight: 800; color: white; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
    .stat-num span { color: var(--gold); }
    .stat-label { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.5; }
    /* ─── CONTACT FORM ───────────────────────────── */
    .contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .form-group { margin-bottom: 20px; }
    .form-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 8px; }
    .form-input, .form-select, .form-textarea { width: 100%; font-family: var(--font); font-size: 14px; color: var(--text); background: var(--white); border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 16px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(64,60,126,0.1); }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: 0 4px 24px rgba(46,33,85,0.07); }
    .contact-info { padding-top: 20px; }
    .contact-info h3 { font-size: 22px; font-weight: 700; color: var(--blackberry); margin-bottom: 16px; }
    .contact-info p { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
    .contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
    .contact-detail-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(64,60,126,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-detail-ico svg { width: 18px; height: 18px; stroke: var(--indigo); fill: none; stroke-width: 1.8; }
    .contact-detail strong { display: block; font-size: 13px; font-weight: 600; color: var(--blackberry); margin-bottom: 3px; }
    .contact-detail span { font-size: 13px; font-weight: 300; color: var(--text-mid); }
    .trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
    .trust-badge { display: flex; align-items: center; gap: 8px; background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; }
    .trust-badge svg { width: 14px; height: 14px; stroke: var(--indigo); fill: none; stroke-width: 2; }
    .trust-badge span { font-size: 11.5px; font-weight: 600; color: var(--blackberry); }
    /* ─── ARTICLE/PRESS/JOB/TEAM ─────────────────── */
    .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
    .article-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--white); transition: box-shadow 0.25s, transform 0.25s var(--expo); }
    .article-card:hover { box-shadow: 0 16px 48px rgba(46,33,85,0.1); transform: translateY(-4px); }
    .article-img { height: 200px; overflow: hidden; position: relative; }
    .article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--expo); }
    .article-card:hover .article-img img { transform: scale(1.04); }
    .article-img-ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(46,33,85,0.5) 100%); }
    .article-tag { position: absolute; top: 14px; left: 14px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; background: var(--coral); color: white; }
    .article-body { padding: 24px; }
    .article-title { font-size: 16px; font-weight: 700; color: var(--blackberry); line-height: 1.35; margin-bottom: 12px; letter-spacing: -0.01em; }
    .article-meta { font-size: 11.5px; color: var(--text-light); display: flex; gap: 8px; align-items: center; }
    .article-meta-dot { width: 3px; height: 3px; background: var(--text-light); border-radius: 50%; }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; }
    .team-card { text-align: center; }
    .team-av { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; color: white; }
    .team-name { font-size: 15px; font-weight: 700; color: var(--blackberry); margin-bottom: 4px; }
    .team-title { font-size: 12px; font-weight: 300; color: var(--text-mid); }
    .press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
    .press-card { border: 1px solid var(--border); border-radius: 14px; padding: 28px; background: var(--white); transition: box-shadow 0.25s; }
    .press-card:hover { box-shadow: 0 8px 32px rgba(46,33,85,0.09); }
    .press-date { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }
    .press-title { font-size: 17px; font-weight: 700; color: var(--blackberry); line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.01em; }
    .press-excerpt { font-size: 13.5px; font-weight: 300; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
    .press-link { font-size: 13px; font-weight: 600; color: var(--indigo); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
    .press-link:hover { gap: 9px; }
    .press-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
    .job-list { display: flex; flex-direction: column; gap: 16px; margin-top: 52px; }
    .job-card { border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; background: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: box-shadow 0.2s, transform 0.2s var(--expo); }
    .job-card:hover { box-shadow: 0 8px 24px rgba(46,33,85,0.08); transform: translateX(4px); }
    .job-dept { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
    .job-title { font-size: 16px; font-weight: 700; color: var(--blackberry); margin-bottom: 6px; }
    .job-meta { font-size: 12px; font-weight: 300; color: var(--text-light); display: flex; gap: 16px; }
    .job-badge { font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 6px; background: rgba(64,60,126,0.07); color: var(--indigo); white-space: nowrap; flex-shrink: 0; }
    /* ─── FAQ ────────────────────────────────────── */
    .faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
    .faq-item { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
    .faq-q { font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--blackberry); padding: 20px 24px; width: 100%; text-align: left; background: var(--white); border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
    .faq-q:hover { background: var(--off-white); }
    .faq-a { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.7; padding: 0 24px 20px; }
    /* ─── LEGAL ──────────────────────────────────── */
    .legal-content { max-width: 800px; }
    .legal-content h2 { font-size: 20px; font-weight: 700; color: var(--blackberry); margin: 40px 0 14px; }
    .legal-content h3 { font-size: 16px; font-weight: 600; color: var(--blackberry); margin: 24px 0 10px; }
    .legal-content p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
    .legal-content ul { margin: 12px 0 16px 20px; }
    .legal-content li { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; list-style: disc; }
    .legal-last-updated { font-size: 12px; color: var(--text-light); margin-bottom: 32px; }

    /* ─── MOBILE HAMBURGER MENU ─────────────────── */
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      margin-left: auto;
      z-index: 301;
      position: relative;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--blackberry);
      border-radius: 2px;
      transition: transform 0.3s var(--expo), opacity 0.2s;
    }
    .hamburger span:nth-child(2) { margin: 5px 0; }
    .hamburger.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--white);
      z-index: 201;
      padding: 108px 24px 32px;
      padding-top: max(108px, calc(92px + env(safe-area-inset-top)));
      padding-bottom: max(32px, env(safe-area-inset-bottom));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);
      transition: opacity 0.3s var(--smooth), transform 0.3s var(--smooth);
    }
    .mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; z-index: 400; }
    .mobile-menu-close {
      position: absolute;
      top: 16px; right: 20px;
      top: max(16px, env(safe-area-inset-top));
      background: none;
      border: none;
      cursor: pointer;
      width: 40px; height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 202;
    }
    .mobile-menu-close svg {
      width: 22px; height: 22px;
      stroke: var(--blackberry);
      stroke-width: 2;
      transition: stroke 0.2s;
    }
    .mobile-menu-close:hover svg { stroke: var(--coral); }
    .mobile-menu-section { margin-bottom: 24px; }
    .mobile-menu-label {
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--coral); margin-bottom: 12px;
      padding: 0 4px;
    }
    .mobile-menu-link {
      display: block;
      font-size: 15px; font-weight: 500;
      color: var(--text);
      padding: 12px 4px;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .mobile-menu-link:last-child { border-bottom: none; }
    .mobile-menu-link:hover { color: var(--coral); }
    .mobile-menu-cta {
      display: flex; gap: 12px; flex-wrap: wrap;
      margin-top: 24px; padding: 0 4px;
    }
    .mobile-menu-cta .btn-gold,
    .mobile-menu-cta .btn-coral { flex: 1; justify-content: center; min-width: 140px; }

    /* ─── RESPONSIVE: TABLET (max-width: 1024px) ── */
    @media (max-width: 1024px) {
      .sec-nav { padding: 0 32px; }
      .pri-nav { padding: 0 32px; }
      .s { padding: 72px 32px; }
      .awards-band { padding: 24px 32px; gap: 32px; justify-content: center; }
      .trusted { padding: 24px 32px; gap: 24px; justify-content: center; }
      .testimonials { padding: 72px 32px; }
      .insights-s { padding: 72px 32px; }
      .cta-s { padding: 72px 32px; }
      footer { padding: 56px 32px 32px; }
      .page-hero { padding: 80px 32px 60px; }
      .stat-band { padding: 48px 32px; }

      .sol-grid { grid-template-columns: repeat(2, 1fr); }
      .feat-grid { grid-template-columns: repeat(2, 1fr); }
      .testi-grid { grid-template-columns: repeat(2, 1fr); }
      .ins-grid { grid-template-columns: 1fr 1fr; }
      .ins-card:first-child .ins-photo { height: 200px; }
      .ins-card:first-child .ins-title { font-size: 16px; }
      .article-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
      .footer-grid .footer-brand { grid-column: 1 / -1; }

      .split-content { padding: 56px 48px; }
      .testi-featured { padding: 36px; gap: 28px; }
      .tf-quote { font-size: 18px; }
    }

    /* ─── RESPONSIVE: MOBILE (max-width: 768px) ─── */
    @media (max-width: 768px) {
      .hamburger { display: flex; flex-direction: column; gap: 0; }
      .nav-links { display: none; }
      .mobile-menu { display: block; }
      body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        overscroll-behavior: none;
      }

      .sec-nav { padding: 0 20px; height: 32px; }
      .sec-nav a, .sec-nav button { padding: 0 10px; font-size: 9.5px; }
      .pri-nav { padding: 0 20px; height: 60px; }
      .nav-logo { margin-right: 0; }
      .nav-logo img { height: 28px; }

      .s { padding: 56px 20px; }
      .s-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }

      .hero {
        height: auto;
        min-height: auto;
        padding: 64px 20px 48px;
        background: linear-gradient(135deg, var(--blackberry) 0%, var(--indigo) 100%);
      }
      .hero-video-wrap { display: none; }
      .hero-overlay-1 { display: none; }
      .hero-overlay-2 { display: none; }
      .hero-accent-left { display: none; }
      .hero-accent-right { display: none; }
      .hero-content { padding: 0; max-width: 760px; }
      .hero-h1 { font-size: clamp(32px, 8vw, 52px); margin-bottom: 20px; }
      .hero-sub { font-size: 15px; margin-bottom: 32px; }
      .hero-proof { display: none; }
      .hero-scroll-hint { display: none; }

      .awards-band { padding: 20px; gap: 16px; flex-wrap: wrap; justify-content: center; }
      .awards-label { width: 100%; text-align: center; }
      .awards-rule { display: none; }
      .awards-list { flex-wrap: wrap; gap: 20px; justify-content: center; }
      .award-sep { display: none; }
      .award-text { display: none; }

      .trusted { padding: 20px; gap: 16px; flex-wrap: wrap; justify-content: center; }
      .t-label { width: 100%; text-align: center; }
      .t-rule { display: none; }
      .t-logos { flex-wrap: wrap; gap: 20px 28px; justify-content: center; }

      .sol-grid { grid-template-columns: 1fr; }
      .sol-tile { padding: 28px 24px; }

      .impact-band { grid-template-columns: repeat(2, 1fr); padding: 32px 20px; gap: 24px; }
      .imp-item { padding: 16px; border-left: none; }
      .imp-item:nth-child(odd) { border-right: 1px solid var(--border); }
      .imp-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
      .imp-num { font-size: 36px; }

      .split-section { grid-template-columns: 1fr; min-height: auto; }
      .split-content { padding: 48px 20px; order: 2; }
      .split-photo { height: 280px; order: 1; }
      .split-fade { display: none; }

      .testimonials { padding: 56px 20px; }
      .testi-tabs { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; }
      .testi-featured { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
      .tf-quote { font-size: 16px; }
      .tf-stat { min-width: auto; }
      .testi-grid { grid-template-columns: 1fr; }
      .testi-card { padding: 24px; }

      .insights-s { padding: 56px 20px; }
      .ins-grid { grid-template-columns: 1fr; margin-top: 36px; }
      .ins-card:first-child .ins-photo { height: 180px; }

      .cta-s { padding: 64px 20px; }
      .cta-content .sub { font-size: 14px; }

      footer { padding: 48px 20px 28px; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
      .footer-grid .footer-brand { grid-column: 1 / -1; }
      .f-bottom { flex-direction: column; gap: 12px; text-align: center; }

      .page-hero { padding: 64px 20px 48px; }
      .page-hero h1 { font-size: clamp(28px, 7vw, 40px); }
      .page-hero p { font-size: 15px; margin-bottom: 28px; }

      .feat-grid { grid-template-columns: 1fr; gap: 20px; }
      .feat-grid-2 { grid-template-columns: 1fr; gap: 20px; }

      .stat-band { grid-template-columns: repeat(2, 1fr); padding: 36px 20px; gap: 24px; }
      .stat-item { padding: 16px; border-left: none; }
      .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
      .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
      .stat-num { font-size: 32px; }

      .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
      .form-row { grid-template-columns: 1fr; }
      .form-card { padding: 28px 20px; }

      .article-grid { grid-template-columns: 1fr; gap: 20px; }
      .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .press-grid { grid-template-columns: 1fr; gap: 16px; }

      .job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
      .job-badge { align-self: flex-start; }

      .btn-gold, .btn-outline-dark, .btn-outline-white, .btn-coral { font-size: 13px; padding: 12px 24px; }

      /* ── Mobile scroll performance ── */
      html {
        scroll-behavior: auto;
      }
      .pri-nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255,255,255,0.99);
      }
      .split-photo img {
        transform: none;
      }

      /* ── Instant reveal on mobile (no scroll-blocking transitions) ── */
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
      .rd1, .rd2, .rd3, .rd4 { transition-delay: 0s; }

      /* ── Remove hero animation delays on mobile ── */
      .hero-eyebrow,
      .hero-h1,
      .hero-sub,
      .hero-actions,
      .hero-proof,
      .hero-scroll-hint {
        opacity: 1;
        animation: none;
      }

      /* ── Hero video hidden on mobile (gradient background used instead) ── */
    }

    /* ─── RESPONSIVE: SMALL MOBILE (max-width: 480px) */
    @media (max-width: 480px) {
      .sec-nav { height: 28px; }
      .sec-nav a:first-child { display: none; }
      .sec-nav button { display: none; }

      .hero { padding: 48px 20px 40px; }
      .hero-h1 { font-size: clamp(28px, 9vw, 40px); }
      .hero-sub { font-size: 14px; }
      .hero-eyebrow { font-size: 10px; gap: 8px; flex-wrap: wrap; justify-content: center; }

      .impact-band { grid-template-columns: 1fr; }
      .imp-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 20px 8px; }
      .imp-item:last-child { border-bottom: none; }

      .stat-band { grid-template-columns: 1fr; }
      .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 8px; }
      .stat-item:last-child { border-bottom: none; }

      .team-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }

      .testi-featured { padding: 24px; }
      .tf-quote { font-size: 15px; }

      .split-photo { height: 220px; }
      .split-content { padding: 36px 20px; }

      .hero-actions { flex-direction: column; align-items: center; }
      .hero-actions .btn-gold,
      .hero-actions .btn-outline-white { width: 100%; justify-content: center; }
      .page-hero-actions { flex-direction: column; align-items: center; }
      .page-hero-actions .btn-gold,
      .page-hero-actions .btn-coral,
      .page-hero-actions .btn-outline-white { width: 100%; justify-content: center; }
      .cta-actions { flex-direction: column; align-items: center; }
      .cta-actions .btn-gold,
      .cta-actions .btn-outline-white { width: 100%; justify-content: center; }
    }
