    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0a1628;
      --blue: #1a3a6e;
      --accent: #00c2ff;
      --accent2: #0072f5;
      --light: #f0f6ff;
      --white: #ffffff;
      --gray: #7a8fa6;
      --border: rgba(0,194,255,0.15);
      --glass: rgba(255,255,255,0.04);
      --font-display: 'Space Grotesk', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --brand: #0050e6;
      --bg: #ffffff;
      --surface: #ffffff;
      --text: #0d1117;
      --text-muted: #64748b;
      --muted: #3d4f63;
      --border-strong: #e2e8f0;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── COOKIE ── */
    #cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; top: auto; width: 100%;
      background: rgba(10,22,40,0.97);
      backdrop-filter: blur(12px); border-top: 1px solid var(--border);
      color: #bcd; padding: 12px 24px; text-align: center;
      z-index: 10000; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 16px;
    }
    #cookie-banner a { color: var(--accent); }
    #cookie-banner button {
      background: var(--accent2); color: white; border: none; padding: 6px 18px;
      border-radius: 20px; cursor: pointer; font-size: 13px; font-family: var(--font-body);
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid #e2e8f0;
      transition: box-shadow 0.3s ease;
      box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    }
    nav.cookie-hidden { top: 0; }

    .nav-inner {
      max-width: 1500px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-around;
      padding: 0 32px; height: 72px;
      gap: 20px;
    }
    img[src*="images/logo/New-logo-white.png"] { filter: invert(1) !important; }
    html[data-theme="dark"] img[src*="images/logo/New-logo-white.png"] { filter: invert(0) !important; }
    .nav-logo { flex-shrink: 0; }
    .nav-logo img { height: 48px; width: auto; }

    /* ── CENTERED NAV LINKS ── */
    .nav-links {
      display: flex; align-items: center; gap: 2px; list-style: none;
      flex: 1; justify-content: center;
      margin-left: 120px;
    }
    .nav-links > li { position: relative; }
    .nav-links > li > a {
      color: #2d3748; text-decoration: none;
      font-family: var(--font-body); font-size: 15px; font-weight: 500;
      padding: 9px 15px; border-radius: 8px;
      transition: color 0.2s, background 0.2s;
      display: flex; align-items: center; gap: 5px; white-space: nowrap;
    }
    .nav-links > li > a:hover,
    .nav-links > li > a.active { color: #0050e6; background: #e8f0fe; }

    /* Dropdown */
    .dropdown-menu {
      position: absolute; top: calc(100% + 8px); left: 0;
      background: #ffffff;
      border: 1px solid #e2e8f0; border-radius: 12px;
      min-width: 200px; padding: 8px; list-style: none;
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: all 0.2s ease; z-index: 100;
      box-shadow: 0 8px 32px rgba(0,80,230,0.10);
    }
    .nav-links > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown-menu li a {
      display: block; color: #3d4f63; text-decoration: none;
      padding: 8px 14px; border-radius: 8px; font-size: 14px;
      transition: background 0.2s, color 0.2s;
    }
    .dropdown-menu li a:hover { background: #e8f0fe; color: #0050e6; }

    .has-sub { position: relative; }
    .has-sub > a::after { content: '›'; margin-left: auto; padding-left: 8px; }
    .sub-menu {
      position: absolute; left: 100%; top: 0;
      background: #ffffff;
      border: 1px solid #e2e8f0; border-radius: 12px;
      min-width: 180px; padding: 8px; list-style: none;
      opacity: 0; visibility: hidden; transition: all 0.2s ease;
      box-shadow: 0 8px 32px rgba(0,80,230,0.10);
    }
    .has-sub:hover .sub-menu { opacity: 1; visibility: visible; }
    .sub-menu li a { display: block; color: #3d4f63; padding: 8px 14px; border-radius: 8px; font-size: 13px; transition: background 0.2s, color 0.2s; text-decoration: none; }
    .sub-menu li a:hover { background: #e8f0fe; color: #0050e6; }

    .nav-cta {
      background: #0050e6 !important;
      color: white !important; border-radius: 8px !important; font-weight: 600 !important;
    }
    .nav-cta:hover { background: #003db5 !important; color: white !important; }

    .nav-cert-logos {
      display: flex; align-items: center; gap: 6px;
      background: #f0f6ff; border: 1px solid #d1e3ff;
      border-radius: 12px; padding: 5px ; flex-shrink: 0;
    }
    .nav-cert-logos img {
      height: 46px; width: auto; object-fit: contain;
      filter: grayscale(0) opacity(0.95);
      transition: filter 0.2s, transform 0.2s; cursor: default;
    }
    .nav-cert-logos img:hover { filter: grayscale(0) opacity(1); transform: scale(1.1); }

    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
    .nav-hamburger span { width: 24px; height: 2px; background: #0d1117; border-radius: 2px; transition: all 0.3s; }
    .mobile-menu { display: none; }

    /* ── HERO ── */

    .qs-dashboard-hero {
  width: 100%;
  max-width: 550px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(0,80,230,0.04),
    0 32px 80px rgba(0,80,230,0.13),
    0 4px 16px rgba(0,0,0,0.05);
  overflow: visible;
  position: relative;
  font-family: 'DM Sans', sans-serif;
}

/* ── Floating sensitivity chip ── */
.qsh-chip-float {
  position: absolute;
  top: 22px;
  right: -2px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px 0 0 14px;
  padding: 8px 16px 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  box-shadow: 0 8px 28px rgba(0,80,230,0.14);
  z-index: 10;
}
.qsh-chip-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
}
.qsh-chip-lbl {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
}

/* ── Top gradient bar ── */
.qsh-top-bar {
  background: linear-gradient(135deg, #0050e6 0%, #0072f5 50%, #0099cc 100%);
  padding: 16px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 23px 23px 0 0;
  position: relative;
  overflow: hidden;
}
.qsh-top-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 120% at 80% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.qsh-top-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.qsh-top-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.2px;
}
.qsh-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px;
  padding: 5px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}
.qsh-live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
  animation: qshLivePulse 1.8s ease-in-out infinite;
}
@keyframes qshLivePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}

/* ── Stat strip ── */
.qsh-stat-strip {
  display: flex;
  align-items: stretch;
  background: #f8faff;
  border-bottom: 1px solid #e8f0fd;
}
.qsh-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 8px;
  border-right: 1px solid #e8f0fd;
}
.qsh-stat:last-child { border-right: none; }
.qsh-stat-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.qsh-stat-l {
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
  text-align: center;
}

/* ── Study rows ── */
.qsh-studies {
  padding: 12px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.qsh-studies-hd {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}
.qsh-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e8f0fd;
  border-radius: 11px;
  padding: 9px 12px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.qsh-row:hover { box-shadow: 0 4px 16px rgba(0,80,230,0.08); }
.qsh-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 11px 0 0 11px;
}
.qsh-row-live::before   { background: #0050e6; }
.qsh-row-proc::before   { background: #f59e0b; }
.qsh-row-crit::before   { background: #ef4444; animation: qshCritBlink 1s ease-in-out infinite; }
.qsh-row-queue::before  { background: #e2e8f0; }
@keyframes qshCritBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.qsh-row-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.qsh-row-body { flex: 1; min-width: 0; }
.qsh-row-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0d1117;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qsh-row-meta {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2px;
}
.qsh-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}
.qsh-dot-anim {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: qshLivePulse 1.8s ease-in-out infinite;
}
.qsh-spin { animation: qshSpin 1.2s linear infinite; }
@keyframes qshSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ── AI progress bar ── */
.qsh-ai-bar-wrap {
  margin: 10px 14px 0;
  background: linear-gradient(135deg, rgba(0,80,230,0.04), rgba(0,153,204,0.04));
  border: 1px solid rgba(0,80,230,0.14);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.qsh-ai-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qsh-ai-bar-lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #0050e6;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.qsh-ai-pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #0050e6;
}
.qsh-bar-track {
  height: 5px;
  background: rgba(0,80,230,0.10);
  border-radius: 20px;
  overflow: hidden;
}
.qsh-bar-fill {
  height: 100%;
  width: 73%;
  background: linear-gradient(90deg, #0050e6, #0099cc);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.qsh-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-100%);
  animation: qshShimmer 2s ease-in-out infinite;
}
@keyframes qshShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(220%); }
}
.qsh-bar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #64748b;
}
.qsh-bar-meta strong { color: #0d1117; font-weight: 600; }

/* ── Acceleration dark band ── */
.qsh-accel-band {
  margin: 10px 14px 0;
  background: linear-gradient(135deg, #0d1117 0%, #0a1628 100%);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.qsh-accel-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 90% 50%, rgba(0,153,204,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.qsh-accel-icon {
  width: 36px;
  height: 36px;
  background: rgba(250,204,21,0.12);
  border: 1px solid rgba(250,204,21,0.25);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #facc15;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.qsh-accel-body { flex: 1; position: relative; z-index: 1; }
.qsh-accel-tag {
  font-size: 9px;
  font-weight: 700;
  color: rgba(250,204,21,0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.qsh-accel-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1;
}
.qsh-accel-num span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-left: 3px;
}
.qsh-accel-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  margin-top: 3px;
}
.qsh-accel-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 9px;
  padding: 6px 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.qsh-accel-b-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #4ade80;
}
.qsh-accel-b-lbl {
  font-size: 9px;
  font-weight: 600;
  color: rgba(74,222,128,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}

/* ── Card footer ── */
.qsh-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 14px;
  margin-top: 8px;
}
.qsh-footer-txt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}
.qsh-footer-txt strong { color: #0050e6; }
.qsh-certs { display: flex; gap: 4px; }
.qsh-cert {
  height: 20px;
  padding: 0 8px;
      background: #f0f6ff;
      border: 1px solid #d1e3ff;
  border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #0050e6;
  display: flex;
  align-items: center;
}

/* ── Remove old rad-hero styles that are no longer needed ── */
.rad-hero-wrap,
.rad-hero-svg,
.rad-float-chip,
.chip-bl,
.rad-chip-icon,
.rad-chip-label,
.rad-chip-val { display: none !important; }

/* ── Mobile tweaks ── */
@media (max-width: 768px) {
  .qs-dashboard-hero { max-width: 100%; }
  .qsh-chip-float    { display: none; }
  .qsh-accel-sub     { display: none; }
}

    #home {
      min-height: 100vh; position: relative;
      display: flex; align-items: center;
      padding: 160px 32px 80px;
      overflow: hidden; background: #ffffff;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,80,230,0.07) 0%, transparent 70%),
                  radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0,184,169,0.06) 0%, transparent 60%);
    }
    .hero-grid {
      position: absolute; inset: 0; z-index: 0;
      background-image: linear-gradient(rgba(0,80,230,0.035) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(0,80,230,0.035) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    }
    .hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; }
    .hero-orb-1 { width: 500px; height: 500px; background: rgba(0,80,230,0.08); top: -100px; right: 5%; }
    .hero-orb-2 { width: 300px; height: 300px; background: rgba(0,184,169,0.07); bottom: 10%; left: 5%; }

    .hero-content { max-width: 1300px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 80px; position: relative; z-index: 1; }
    .hero-left { flex: 1; will-change: contents; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,80,230,0.08); border: 1px solid rgba(0,80,230,0.2);
      border-radius: 50px; padding: 6px 16px; font-size: 13px; color: #0050e6;
      font-weight: 600; margin-bottom: 24px;
    }
    .hero-badge::before { content: ''; width: 6px; height: 6px; background: #0050e6; border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

    h1.hero-title {
      font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 700; line-height: 1.08; letter-spacing: -0.5px;
      margin-bottom: 24px; color: #0d1117;
      min-height: 3lh; /* reserve space for both label + metric lines so layout never reflows */
    }
    .hero-title .accent { color: #0050e6; }
    .hero-sub { font-size: 18px; color: #3d4f63; max-width: 520px; line-height: 1.7; margin-bottom: 40px; }

    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: linear-gradient(135deg, #0050e6, #0099cc);
      color: white; border: none; padding: 14px 32px; border-radius: 10px;
      font-family: var(--font-body); font-size: 15px; font-weight: 600;
      cursor: pointer; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,80,230,0.3); }
    .btn-ghost {
      background: transparent; color: #0d1117; border: 1px solid #d1dbe8;
      padding: 14px 32px; border-radius: 10px; font-family: var(--font-body);
      font-size: 15px; font-weight: 500; cursor: pointer; text-decoration: none;
      transition: border-color 0.2s, background 0.2s; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-ghost:hover { border-color: #0050e6; background: rgba(0,80,230,0.05); color: #0050e6; }

    .hero-stats { display: flex; gap: 40px; margin-top: 30px; padding-top: 40px; border-top: 1px solid #e2e8f0; flex-wrap: wrap; }
    .hero-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: #0050e6; line-height: 1; }
    .hero-stat-label { font-size: 13px; color: #6b7f96; margin-top: 4px; }
    .hero-right { flex: 1; position: relative; }

    /* ── SECTION COMMONS ── */
    section { padding: 40px 32px; }
    .container { max-width: 1300px; margin: 0 auto; width: 100%; }

    .section-tag {
      display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase; color: #0050e6; margin-bottom: 10px;
    }

    /* ── PRODUCTS — each product 100vh ── */
    #products { background: #ffffff !important; overflow: hidden; }
    .products-intro { text-align: center; padding: 60px 32px 20px; background: #ffffff; }

    /* Each product row is its own full-height panel */
    .lp-product-panel {
  padding: 80px 32px;
  display: flex;
  align-items: center;
  background: #ffffff;
}
.lp-product-panel:nth-child(even) {
  background: #f8faff;
}

    .lp-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
      width: 100%;
    }
    .lp-reverse .lp-text { order: 2; }
    .lp-reverse .lp-visual { order: 1; }

    .lp-logo {
      height: 44px; width: auto; object-fit: contain;
      margin-bottom: 20px; display: block; filter: none;
    }

    .lp-desc { font-size: 16px; color: #3d4f63; line-height: 1.8; margin-bottom: 24px; }

    /* All highlight banners unified blue */
    .lp-highlight-banner {
      display: flex; align-items: center; gap: 14px;
      background: linear-gradient(135deg, rgba(0,80,230,0.06), rgba(0,153,204,0.06));
      border: 1px solid rgba(0,80,230,0.18);
      border-left: 4px solid #0050e6;
      border-radius: 12px; padding: 14px 18px; margin-bottom: 24px;
    }
    .lp-highlight-icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
      background: rgba(0,80,230,0.1); color: #0050e6;
    }
    .lp-highlight-text strong {
      display: block; font-family: 'Space Grotesk', sans-serif;
      font-size: 17px; font-weight: 800; color: #0d1117; line-height: 1.2; margin-bottom: 3px;
    }
    .lp-highlight-text span { font-size: 13px; color: #64748b; }

    .lp-features { list-style: none; display: flex; flex-direction: column; gap: 20px; }
    .lp-features li { display: flex; gap: 16px; align-items: flex-start; }
    .lp-feat-icon {
      width: 42px; height: 42px; border-radius: 10px;
      background: rgba(0,80,230,0.07); border: 1px solid rgba(0,80,230,0.15);
      display: flex; align-items: center; justify-content: center;
      color: #0050e6; font-size: 16px; flex-shrink: 0; margin-top: 2px;
    }
    .lp-feat-text h4 {
      font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
      color: #0d1117; margin-bottom: 4px;
    }
    .lp-feat-text h4.feat-highlight { color: #0050e6; display: flex; align-items: center; gap: 8px; }
    .lp-feat-text h4.feat-highlight::after {
      content: '★ Featured'; font-size: 10px; font-weight: 700;
      background: rgba(0,80,230,0.1); border: 1px solid rgba(0,80,230,0.25);
      color: #0050e6; padding: 2px 8px; border-radius: 20px; letter-spacing: 0.5px;
    }
    .lp-feat-text p { font-size: 14px; color: #64748b; line-height: 1.65; }

    .lp-visual { position: relative; }
    .lp-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 60px rgba(0,80,230,0.10), 0 2px 8px rgba(0,0,0,0.04);
  background: #f0f6ff;
  cursor: pointer;
  aspect-ratio: 4 / 3;   /* ADD THIS — reserves space before image loads */
}
    .lp-img { width: 100%; height: auto; display: block; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
    .lp-img-wrap:hover .lp-img { transform: scale(1.045); }

    .lp-modality-badge {
      display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
      padding: 7px 16px; border-radius: 30px;
      border: 1px solid rgba(0,80,230,0.2); font-size: 13px; font-weight: 700;
      font-family: 'Space Grotesk', sans-serif; background: rgba(0,80,230,0.08); color: #0050e6;
    }

    #products .btn-outline { border-color: #d1dbe8; color: #0050e6; }
    #products .btn-outline:hover { border-color: #0050e6; background: rgba(0,80,230,0.05); }

    .view-all-wrap { text-align: center; padding: 20px 0 40px; background: #ffffff; }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid var(--border); border-radius: 10px; padding: 12px 28px;
      color: var(--accent); text-decoration: none; font-size: 14px; font-weight: 500;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: var(--accent); background: rgba(0,194,255,0.06); }

    @media (max-width: 768px) {
      .lp-row { grid-template-columns: 1fr; gap: 28px; }
      .lp-reverse .lp-text, .lp-reverse .lp-visual { order: unset; }
      .lp-product-panel { padding: 40px 20px; min-height: auto; }
    }

    /* ── CERTIFICATIONS — 100vh compact ── */
    #certifications { background: #ffffff !important; padding: 80px 32px; overflow: hidden; }
    .cr-layout {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 14px;
      max-width: 1200px; margin: 0 auto;
    }
    .cr-card {
      background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px;
      padding: 18px 20px; display: flex; flex-direction: column; gap: 10px;
      position: relative; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,80,230,0.06);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .cr-card:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,80,230,0.12); border-color: #c8d9f5; }
    .cr-card-primary { border-color: #c8d9f5; box-shadow: 0 6px 28px rgba(0,80,230,0.12); grid-column: 2; }
    .cr-card-glow { position: absolute; inset: 0; pointer-events: none; }
    .cr-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; position: relative; z-index: 1; }
    .cr-logo-wrap {
      width: 100px; height: 90px; background: #f8faff;
      border: 1px solid #e8f0fd; border-radius: 12px; padding: 10px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .cr-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
    .cr-card-name { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800; color: #0d1117; position: relative; z-index: 1; margin: 0; }
    .cr-card-full { font-size: 10px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.6px; position: relative; z-index: 1; margin: 0; }
    .cr-card-desc { font-size: 12px; color: #475569; line-height: 1.6; position: relative; z-index: 1; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .cr-card-tags { display: flex; gap: 6px; flex-wrap: wrap; position: relative; z-index: 1; }
    .cr-card-tags span { background: #f0f6ff; border: 1px solid #d1e3ff; color: #0050e6; border-radius: 20px; padding: 2px 9px; font-size: 10px; font-weight: 600; }
    .cr-primary-badge { position: absolute; top: 0; right: 0; background: linear-gradient(90deg,#0050e6,#0099cc); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 0 16px 0 10px; font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.5px; }

    .cr-status { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 20px; border: 1px solid; font-size: 10px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; flex-shrink: 0; }
    .cr-status-green { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.25); color: #16a34a; }
    .cr-status-blue { background: rgba(0,80,230,0.08); border-color: rgba(0,80,230,0.22); color: #0050e6; }

    /* Secondary row: tabbed certs */
    .cr-secondary {
      grid-column: 1 / 4;
      background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px;
      overflow: hidden; box-shadow: 0 4px 20px rgba(0,80,230,0.06);
    }
    .cr-tabs { display: flex; align-items: stretch; border-bottom: 2px solid #e8f0fd; background: #f8faff; }
    .cr-tab {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
      padding: 10px; border: none; background: none; cursor: pointer;
      border-bottom: 2px solid transparent; margin-bottom: -2px;
      transition: background 0.2s, border-color 0.2s;
    }
    .cr-tab img { width: 36px; height: 36px; object-fit: contain; filter: grayscale(0) opacity(0.85); transition: filter 0.2s; }
    .cr-tab span { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; color: #64748b; transition: color 0.2s; }
    .cr-tab:hover { background: rgba(0,80,230,0.04); }
    .cr-tab:hover img { filter: grayscale(0) opacity(1); }
    .cr-tab:hover span { color: #0050e6; }
    .cr-tab-active { background: #ffffff !important; border-bottom-color: #0050e6 !important; }
    .cr-tab-active img { filter: grayscale(0) opacity(1) !important; }
    .cr-tab-active span { color: #0050e6 !important; }

    .cr-detail-panels { padding: 16px 20px; }
    .cr-detail { display: none; align-items: flex-start; gap: 16px; }
    .cr-detail-active { display: flex; }
    .cr-detail-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; border: 1px solid; display: flex; align-items: center; justify-content: center; font-size: 18px; }
    .cr-detail-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
    .cr-detail-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
    .cr-detail-top h4 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: #0d1117; margin: 0 0 2px; }
    .cr-detail-sub { font-size: 11px; color: #94a3b8; font-weight: 600; margin: 0; }
    .cr-detail-desc { font-size: 13px; color: #475569; line-height: 1.65; margin: 0; }
    .cr-detail-highlights { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
    .cr-highlight { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #3d4f63; font-family: 'Space Grotesk', sans-serif; }

    /* Trust strip compact */
    .cr-trust-strip {
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg,#f0f6ff,#e8f0fd); border: 1px solid #d1e3ff;
      border-radius: 14px; padding: 12px 24px; margin: 14px auto 0;
      max-width: 1200px; gap: 0;
    }
    .cr-trust-item { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; }
    .cr-trust-label { font-size: 10px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.8px; font-family: 'Space Grotesk', sans-serif; }
    .cr-trust-val { font-size: 13px; font-weight: 700; color: #0d1117; font-family: 'Space Grotesk', sans-serif; }
    .cr-trust-sep { width: 1px; height: 36px; background: rgba(0,80,230,0.15); flex-shrink: 0; margin: 0 8px; }

    @media (max-width: 900px) {
      .cr-layout { grid-template-columns: 1fr 1fr; }
      .cr-card-primary { grid-column: auto; }
      .cr-secondary { grid-column: 1 / 3; }
      .cr-detail-highlights { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 600px) {
      .cr-layout { grid-template-columns: 1fr; }
      .cr-secondary { grid-column: 1; }
      .cr-detail-highlights { grid-template-columns: 1fr 1fr; }
      .cr-tabs { overflow-x: auto; }
      .cr-tab { min-width: 80px; }
    }

    /* ── FLOW — 100vh compact ── */
    #flow { background: #f8faff !important; padding: 80px 32px; overflow: hidden; }

    .qs-flow-grid {
      display: grid;
      grid-template-columns: 1fr 90px 1fr;
      grid-template-rows: 1fr 1fr auto;
      gap: 10px 0;
      max-width: 1060px; margin: 0 auto; align-items: stretch;
    }
    .qc-flow  { grid-column: 1; grid-row: 1; }
    .qc-scan  { grid-column: 3; grid-row: 1; }
    .qc-rad   { grid-column: 1; grid-row: 2; }
    .qc-diag  { grid-column: 3; grid-row: 2; }
    .qs-center-col {
      grid-column: 2; grid-row: 1 / 3;
      display: flex; flex-direction: column;
      align-items: center; justify-content: space-between;
      padding: 20px 0; position: relative; z-index: 2;
    }
    .qs-recipients-row {
      grid-column: 1 / 4; grid-row: 3;
      display: flex; align-items: center; justify-content: center;
      gap: 12px; padding: 7px 10px; margin-top: 3px;
      border-top: 1px solid #e2e8f0; background: #fff;
      border-radius: 14px; box-shadow: 0 2px 12px rgba(0,80,230,0.05);
    }

    .qs-card {
      background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px;
      padding: 16px 18px 14px; position: relative; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,80,230,0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease; margin: 0 5px;
    }
    .qs-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,80,230,0.11); }
    .qs-card, .cr-card, .vid-card, .tm-card, .pc-block, .wa-card { will-change: transform, box-shadow; transform-style: preserve-3d; transition: transform 0.15s ease, box-shadow 0.15s ease; }
    .qs-card-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 14px 14px 0 0; }
    .qs-card-num {
      position: absolute; top: 12px; right: 12px; width: 24px; height: 24px;
      border-radius: 50%; border: 1.5px solid;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 800;
    }
    .qs-card-icon {
      width: 38px; height: 38px; border-radius: 9px; border: 1px solid;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 8px; flex-shrink: 0;
    }
    .qs-card-product { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }
    .qs-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: #0d1117; margin-bottom: 8px; line-height: 1.2; }
    .qs-card-list { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
    .qs-card-list li { font-size: 12px; color: #475569; line-height: 1.4; display: flex; align-items: flex-start; gap: 6px; }
    .qs-card-list li::before { content: '→'; flex-shrink: 0; font-size: 10px; color: #94a3b8; margin-top: 2px; }

    /* ── TIME PILL — fully visible ── */
    .qs-time-pill {
      display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px;
      border-radius: 20px; border: 1.5px solid; font-size: 11px; font-weight: 700;
      font-family: 'Space Grotesk', sans-serif; flex-wrap: wrap;
    }
    .qs-time-pill .tp-label {
      font-size: 10px; font-weight: 500; opacity: 0.75; letter-spacing: 0.3px;
    }
    .qs-time-pill .tp-before {
      font-size: 12px; font-weight: 700; text-decoration: line-through; opacity: 0.6;
    }
    .qs-time-pill .tp-arrow { font-size: 11px; opacity: 0.7; }
    .qs-time-pill .tp-after {
      font-size: 13px; font-weight: 800; color: #16a34a;
    }

    .qs-hub { display: flex; flex-direction: column; align-items: center; position: relative; flex-shrink: 0; }
    .qs-hub-inner {
      width: 68px; height: 68px; background: #ffffff;
      border: 1.5px solid rgba(0,80,230,0.22); border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 2px; box-shadow: 0 6px 24px rgba(0,80,230,0.10); position: relative; z-index: 2;
    }
    .qs-hub-ai { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 800; color: #0050e6; line-height: 1; }
    .qs-hub-label { font-family: 'Space Grotesk', sans-serif; font-size: 9px; font-weight: 700; color: #0050e6; margin-top: 6px; text-align: center; letter-spacing: 0.3px; }
    .qs-hub-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(0,80,230,0.1); top: 50%; left: 50%; }
    .qs-hub-ring-1 { width: 86px; height: 86px; margin-top: -43px; margin-left: -43px; animation: hubRing 3s ease-in-out infinite; }
    .qs-hub-ring-2 { width: 104px; height: 104px; margin-top: -52px; margin-left: -52px; animation: hubRing 3s ease-in-out infinite 1s; }
    @keyframes hubRing { 0%,100%{transform:scale(1);opacity:0.5} 50%{transform:scale(1.06);opacity:0.15} }

    .qs-h-arrow { width: 100%; display: flex; align-items: center; padding: 0 4px; flex-shrink: 0; }
    .qs-h-arrow svg { display: block; }

    .qs-recip { display: flex; flex-direction: column; align-items: center; gap: 5px; }
    .qs-recip-icon { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid; display: flex; align-items: center; justify-content: center; transition: transform 0.25s; }
    .qs-recip-icon:hover { transform: scale(1.08); }
    .qs-recip span { font-size: 11px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
    .qs-recip-sep { display: flex; align-items: center; padding-bottom: 14px; }

    @media (max-width: 860px) {
  .qs-flow-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .qc-flow, .qc-scan, .qc-rad, .qc-diag { grid-column: 1; grid-row: auto; margin: 0; }
  .qs-center-col { display: none; }
  .qs-recipients-row { grid-column: 1; flex-wrap: wrap; }
  .qc-flow  { order: 1; }
  .qc-scan  { order: 2; }
  .qc-diag  { order: 3; }
  .qc-rad   { order: 4; }
  .qs-recipients-row { order: 5; }
}

    /* ── WHY AIKENIST ── */
   #why-aikenist { background: #ffffff !important; padding: 80px 32px; overflow: hidden; }
    .wa-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #0050e6; margin-bottom: 10px; }
    .wa-heading { font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px,3.5vw,46px); font-weight: 700; line-height: 1.08; letter-spacing: -0.5px; margin-bottom: 12px; color: #0d1117; }
    .wa-accent { color: #0050e6; }
    .wa-subhead { font-size: 16px; color: #3d4f63; max-width: 580px; margin: 0 auto; line-height: 1.7; }
    .wa-pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 18px; }
    .wa-pillar { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 20px 18px; display: flex; flex-direction: column; gap: 10px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; box-shadow: 0 2px 12px rgba(0,80,230,0.05); }
    .wa-pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,80,230,0.10); border-color: #c8d9f5; }
    .wa-pillar-icon { width: 44px; height: 44px; border-radius: 11px; border: 1px solid; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
    .wa-pillar h4 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: #0d1117; }
    .wa-pillar p { font-size: 13px; color: #64748b; line-height: 1.6; }
    .wa-tabs { display: flex; gap: 4px; border-bottom: 2px solid #e8f0fd; margin-bottom: 18px; }
    .wa-tab { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border: none; background: none; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: #64748b; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; border-radius: 8px 8px 0 0; transition: color 0.2s, border-color 0.2s, background 0.2s; }
    .wa-tab:hover { color: #0050e6; background: rgba(0,80,230,0.04); }
    .wa-tab.active { color: #0050e6; border-bottom-color: #0050e6; background: rgba(0,80,230,0.04); }
    .wa-panel { display: block; }
    .wa-hidden { display: none; }
    .wa-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .wa-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 8px; padding: 18px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; box-shadow: 0 2px 12px rgba(0,80,230,0.05); }
    .wa-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,80,230,0.10); border-color: #c8d9f5; }
    .wa-blog-card { padding: 0; gap: 0; }
    .wa-blog-img { width: 100%; height: 90px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .wa-blog-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
    .wa-card-top { display: flex; align-items: center; justify-content: space-between; }
    .wa-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 20px; border: 1px solid; font-size: 11px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
    .wa-card-year { font-size: 12px; color: #94a3b8; font-weight: 600; font-family: monospace; }
    .wa-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: #0d1117; line-height: 1.35; flex: 1; }
    .wa-card-desc { font-size: 13px; color: #64748b; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .wa-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; padding-top: 8px; border-top: 1px solid #f0f4f8; margin-top: auto; }
    .wa-card-author { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #94a3b8; }
    .wa-card-cta { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #0050e6; transition: gap 0.2s; }
    .wa-card:hover .wa-card-cta { gap: 8px; }
    .wa-li-stats { display: flex; gap: 18px; padding-top: 8px; border-top: 1px solid #f0f4f8; font-size: 12px; color: #94a3b8; }
    .wa-li-stats span { display: flex; align-items: center; gap: 5px; }
    @media (max-width: 1024px) { .wa-pillars { grid-template-columns: repeat(2,1fr); } .wa-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 640px) { .wa-pillars { grid-template-columns: 1fr; } .wa-grid { grid-template-columns: 1fr; } .wa-tabs { overflow-x: auto; } }

    /* ── VIDEOS ── */
    #videos { background: #f8faff !important; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 40px 32px; }
    .vid-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 1060px; margin: 0 auto; }
    .vid-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,80,230,0.07); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
    .vid-card:hover { transform: translateY(-4px); box-shadow: 0 18px 52px rgba(0,80,230,0.12); border-color: #c8d9f5; }
    .vid-label { padding: 12px 16px 0; }
    .vid-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 13px; border-radius: 20px; border: 1px solid; font-size: 11px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
    .vid-frame-wrap { position: relative; width: 100%; padding-bottom: 56.25%; margin-top: 12px; background: #0d1117; }
    .vid-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
    .vid-footer { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid #f0f4f8; }
    .vid-info { display: flex; flex-direction: column; gap: 3px; }
    .vid-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: #0d1117; }
    .vid-sub { font-size: 11px; color: #94a3b8; font-weight: 500; }
    .vid-yt-btn { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: 20px; background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2); color: #ef4444; font-size: 12px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; text-decoration: none; flex-shrink: 0; transition: background 0.2s, transform 0.2s; }
    .vid-yt-btn:hover { background: rgba(239,68,68,0.12); transform: scale(1.04); }
    @keyframes vidPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
    @media (max-width: 768px) { .vid-grid { grid-template-columns: 1fr; } }

    /* ── TEAM ── */
    #team { background: #ffffff !important; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 40px 32px; }
    .tm-vision { display: flex; align-items: center; gap: 24px; background: linear-gradient(135deg,#f0f6ff,#e8f0fd); border: 1px solid #d1e3ff; border-radius: 18px; padding: 20px 28px; margin-bottom: 18px; box-shadow: 0 4px 24px rgba(0,80,230,0.07); }
    .tm-vision-icon { width: 50px; height: 50px; flex-shrink: 0; background: #0050e6; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; box-shadow: 0 8px 24px rgba(0,80,230,0.25); }
    .tm-vision-body { flex: 1; }
    .tm-vision-label { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #0050e6; margin-bottom: 6px; }
    .tm-vision-body p { font-size: 14px; color: #3d4f63; line-height: 1.7; margin: 0; }
    .tm-vision-stat-group { display: flex; align-items: center; gap: 20px; flex-shrink: 0; margin-left: 8px; }
    .tm-vision-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
    .tm-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800; color: #0050e6; line-height: 1; }
    .tm-stat-desc { font-size: 11px; color: #64748b; font-weight: 600; text-align: center; white-space: nowrap; }
    .tm-vision-divider { width: 1px; height: 36px; background: rgba(0,80,230,0.2); }
    .tm-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; max-width: 1060px; margin: 0 auto; }
    .tm-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,80,230,0.06); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
    .tm-card:hover { transform: translateY(-5px); box-shadow: 0 18px 52px rgba(0,80,230,0.12); border-color: #c8d9f5; }
    .tm-photo-wrap { position: relative; width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #f0f6ff; }
    .tm-photo-wrap img { width: 100%; height: 115%; object-fit: cover; transition: transform 0.5s ease; display: block; }
    .tm-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(0,80,230,0.08) 100%); pointer-events: none; }
    .tm-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; border-top: 1px solid #f0f4f8; }
    .tm-card-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: #0d1117; margin: 0; }
    .tm-role { font-size: 12px; color: #0050e6; font-weight: 600; margin: 0; }
    .tm-li-btn { display: inline-flex; align-items: center; gap: 5px; margin-top: 5px; padding: 5px 12px; border-radius: 20px; background: rgba(10,102,194,0.07); border: 1px solid rgba(10,102,194,0.2); color: #0a66c2; font-size: 11px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; text-decoration: none; width: fit-content; transition: background 0.2s, transform 0.2s; }
    .tm-li-btn:hover { background: rgba(10,102,194,0.14); transform: scale(1.04); }
    @media (max-width: 1024px) { .tm-grid { grid-template-columns: repeat(2,1fr); } .tm-vision { flex-wrap: wrap; } .tm-vision-stat-group { width: 100%; justify-content: center; } }
    @media (max-width: 600px) { .tm-grid { grid-template-columns: repeat(2,1fr); gap: 14px; } .tm-vision { padding: 18px 16px; } .tm-vision-icon { display: none; } }

    /* ── PARTNERS & INSTALLATIONS ── */
   #partners-clients { background: #ffffff !important; padding: 80px 32px; overflow: hidden; }
    .pc-stats { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#f0f6ff,#e8f0fd); border: 1px solid #d1e3ff; border-radius: 18px; padding: 16px 32px; margin-bottom: 18px; gap: 0; box-shadow: 0 4px 20px rgba(0,80,230,0.07); }
    .pc-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; }
    .pc-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 800; color: #0050e6; line-height: 1; }
    .pc-stat-label { font-size: 12px; font-weight: 600; color: #64748b; text-align: center; font-family: 'Space Grotesk', sans-serif; }
    .pc-stat-div { width: 1px; height: 44px; background: rgba(0,80,230,0.18); flex-shrink: 0; margin: 0 16px; }
    .pc-block { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,80,230,0.06); }
    .pc-block + .pc-block { margin-top: 16px; }
    .pc-block-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid #f0f4f8; background: #f8faff; }
    .pc-block-label { display: flex; align-items: center; gap: 14px; }
    .pc-block-icon { width: 40px; height: 40px; border-radius: 11px; border: 1px solid; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
    .pc-block-label h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: #0d1117; margin: 0 0 2px; }
    .pc-block-label p { font-size: 12px; color: #64748b; margin: 0; }
    .pc-count-pill { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 20px; border: 1px solid; font-size: 12px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; flex-shrink: 0; }
    .pc-logos-grid { display: grid; padding: 18px; gap: 14px; }
    .pc-partners-grid { grid-template-columns: repeat(7,1fr); }
    .pc-installs-grid { grid-template-columns: repeat(6,1fr); }
    .pc-logo-card { display: flex; flex-direction: column; align-items: center; gap: 10px; background: #ffffff; border: 1px solid #e8f0fd; border-radius: 12px; padding: 16px 10px 12px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; cursor: default; }
    .pc-logo-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,80,230,0.10); border-color: #c8d9f5; }
    .pc-logo-card img {
      width: auto;
      height: auto;
      max-width: 150px;
      max-height: 96px;
      object-fit: contain;
      filter: grayscale(0) opacity(1);
      transition: transform 0.25s;
      display: block;
    }
    .pc-logo-card:hover img { transform: scale(1.05); }
    .pc-logo-card span { font-size: 11px; font-weight: 600; color: #475569; text-align: center; font-family: 'Space Grotesk', sans-serif; line-height: 1.3; }
    @media (max-width: 1100px) { .pc-partners-grid { grid-template-columns: repeat(4,1fr); } .pc-installs-grid { grid-template-columns: repeat(4,1fr); } }
    @media (max-width: 768px) { .pc-partners-grid { grid-template-columns: repeat(3,1fr); } .pc-installs-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 480px) { .pc-partners-grid, .pc-installs-grid { grid-template-columns: repeat(2,1fr); } }

    #events, #news { display: none !important; }

    /* ── CONTACT ── */
    #contact {
      background: #0a1628 !important;
      padding: 0;
      overflow: hidden;
      position: relative;
    }
    #contact::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,80,230,0.18) 0%, transparent 70%),
                  radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,153,204,0.12) 0%, transparent 60%);
      pointer-events: none;
    }

    /* grid: left panel (dark) + right panel (white form) */
    .ct-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 700px;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* ── LEFT PANEL ── */
    .ct-left {
      padding: 72px 56px 72px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 32px;
    }
    .ct-left-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: #00c2ff;
      font-family: 'Space Grotesk', sans-serif;
    }
    .ct-left-tag::before {
      content: ''; width: 6px; height: 6px;
      background: #00c2ff; border-radius: 50%;
      animation: qshLivePulse 1.8s ease-in-out infinite;
    }
    .ct-left h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(28px, 3.2vw, 44px);
      font-weight: 700; line-height: 1.12;
      letter-spacing: -0.5px; color: #ffffff;
      margin: 0;
    }
    .ct-left h2 span { color: #00c2ff; }
    .ct-left-sub {
      font-size: 15px; color: rgba(255,255,255,0.62);
      line-height: 1.75; margin: 0;
    }

    /* What to expect list */
    .ct-expect { display: flex; flex-direction: column; gap: 14px; }
    .ct-expect-item {
      display: flex; align-items: flex-start; gap: 14px;
    }
    .ct-expect-icon {
      width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
      background: rgba(0,194,255,0.10); border: 1px solid rgba(0,194,255,0.22);
      display: flex; align-items: center; justify-content: center;
      color: #00c2ff; font-size: 14px;
    }
    .ct-expect-item p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0; }
    .ct-expect-item strong { color: #ffffff; font-family: 'Space Grotesk', sans-serif; font-size: 13px; display: block; margin-bottom: 2px; }

    /* Stats row */
    .ct-left-stats {
      display: flex; gap: 0;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
      border-radius: 14px; overflow: hidden;
    }
    .ct-left-stat {
      flex: 1; padding: 16px 14px; text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .ct-left-stat:last-child { border-right: none; }
    .ct-left-stat-n {
      font-family: 'Space Grotesk', sans-serif; font-size: 24px;
      font-weight: 800; color: #00c2ff; line-height: 1;
    }
    .ct-left-stat-l { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }

    /* Contact info items */
    .ct-contact-items { display: flex; flex-direction: column; gap: 0; }
    .ct-citem {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
      text-decoration: none; color: inherit;
      transition: padding-left 0.2s;
    }
    .ct-citem:last-child { border-bottom: none; }
    .ct-citem:hover { padding-left: 4px; }
    .ct-citem-icon {
      width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 13px;
    }
    .ct-citem-lbl { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.8px; font-family: 'Space Grotesk', sans-serif; }
    .ct-citem-val { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); font-family: 'Space Grotesk', sans-serif; margin-top: 1px; line-height: 1.4; }

    /* Customer login band */
    .ct-portal-band {
      display: flex; align-items: center; justify-content: space-between;
      gap: 14px; flex-wrap: wrap;
      background: rgba(0,194,255,0.08); border: 1px solid rgba(0,194,255,0.2);
      border-radius: 12px; padding: 14px 18px;
    }
    .ct-portal-band-left { display: flex; align-items: center; gap: 10px; }
    .ct-portal-icon {
      width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
      background: rgba(0,194,255,0.15); border: 1px solid rgba(0,194,255,0.3);
      display: flex; align-items: center; justify-content: center;
      color: #00c2ff; font-size: 14px;
    }
    .ct-portal-band-left p { margin: 0; font-size: 12px; color: #64748b; margin-top: 2px; }
    .ct-portal-band-left strong { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: #0d1117; display: block; }
    .ct-portal-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 8px 18px; border-radius: 8px;
      background: rgba(0,194,255,0.15); border: 1px solid rgba(0,194,255,0.35);
      color: #00c2ff; font-size: 13px; font-weight: 700;
      font-family: 'Space Grotesk', sans-serif; text-decoration: none;
      transition: background 0.2s, transform 0.2s; white-space: nowrap;
    }
    .ct-portal-btn:hover { background: rgba(0,194,255,0.25); transform: translateY(-1px); }

    /* ── RIGHT PANEL ── */
    .ct-right {
      background: #ffffff;
      padding: 56px 48px 56px 52px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .ct-form-title {
      font-family: 'Space Grotesk', sans-serif; font-size: 20px;
      font-weight: 700; color: #0d1117; margin-bottom: 4px;
    }
    .ct-form-subtitle { font-size: 13px; color: #64748b; margin-bottom: 28px; line-height: 1.6; }

    .ct-form { display: flex; flex-direction: column; gap: 14px; }
    .ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .ct-field { display: flex; flex-direction: column; gap: 6px; }
    .ct-field label {
      font-family: 'Space Grotesk', sans-serif; font-size: 12px;
      font-weight: 600; color: #475569; text-transform: uppercase; letter-spacing: 0.6px;
    }
    .ct-field input, .ct-field textarea {
      background: #f8faff !important; border: 1.5px solid #e2e8f0 !important;
      border-radius: 10px !important; padding: 11px 14px !important;
      font-size: 14px !important; color: #0d1117 !important;
      font-family: 'DM Sans', sans-serif !important;
      transition: border-color 0.2s, box-shadow 0.2s !important;
      outline: none !important; width: 100% !important; box-sizing: border-box !important;
    }
    .ct-field input::placeholder, .ct-field textarea::placeholder { color: #b0bec5 !important; }
    .ct-field input:focus, .ct-field textarea:focus {
      border-color: #0050e6 !important;
      box-shadow: 0 0 0 3px rgba(0,80,230,0.09) !important;
      background: #ffffff !important;
    }
    .ct-field textarea { min-height: 88px; resize: vertical !important; }

    .ct-submit {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 15px 32px; border-radius: 12px;
      background: linear-gradient(135deg, #0050e6, #0072f5);
      color: #ffffff; font-size: 15px; font-weight: 700;
      font-family: 'Space Grotesk', sans-serif; border: none;
      cursor: pointer; width: 100%;
      box-shadow: 0 6px 24px rgba(0,80,230,0.28);
      transition: transform 0.2s, box-shadow 0.2s;
      justify-content: center;
    }
    .ct-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,80,230,0.38); }

    /* trust row below button */
    .ct-trust-row {
      display: flex; align-items: center; justify-content: center;
      gap: 20px; margin-top: 14px; flex-wrap: wrap;
    }
    .ct-trust-item-sm {
      display: flex; align-items: center; gap: 6px;
      font-size: 12px; color: #94a3b8; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
    }
    .ct-trust-item-sm i { color: #16a34a; font-size: 11px; }

    /* responsive */
    @media (max-width: 900px) {
      .ct-split { grid-template-columns: 1fr; }
      .ct-left { padding: 48px 28px 36px; }
      .ct-right { padding: 36px 28px 48px; }
      .ct-left-stats { display: none; }
    }
    @media (max-width: 600px) {
      .ct-form-row { grid-template-columns: 1fr; }
    }

    /* keep old classes intact for map/country pills */
    .ct-map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); height: 140px; }
    .ct-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
    .ct-countries { display: flex; gap: 8px; flex-wrap: wrap; }
    .ct-country { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); font-family: 'Space Grotesk', sans-serif; }

    /* ── FOOTER ── */
    footer { background: #f8faff !important; border-top: 1px solid #e2e8f0 !important; }
    .ft-inner { max-width: 1200px; margin: 0 auto; }
    .ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
    .ft-brand-desc { font-size: 14px; color: #64748b; line-height: 1.75; margin: 18px 0 22px; max-width: 280px; }
    .ft-socials { display: flex; gap: 10px; }
    .ft-socials a { width: 38px; height: 38px; border-radius: 50%; background: #ffffff; border: 1px solid #e2e8f0; color: #64748b; display: flex; align-items: center; justify-content: center; font-size: 14px; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s; box-shadow: 0 2px 8px rgba(0,80,230,0.06); }
    .ft-socials a:hover { background: #0050e6; border-color: #0050e6; color: #ffffff; transform: translateY(-2px); }
    .ft-links-group { display: flex; flex-direction: column; gap: 12px; }
    .ft-links-group h5 { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 6px; }
    .ft-links-group a { font-size: 14px; color: #475569; text-decoration: none; font-family: 'DM Sans', sans-serif; transition: color 0.2s; }
    .ft-links-group a:hover { color: #0050e6; }
    .ft-cert-strip { display: flex; align-items: center; justify-content: center; gap: 4px; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 18px 28px; margin-bottom: 36px; box-shadow: 0 2px 12px rgba(0,80,230,0.05); flex-wrap: wrap; }
    .ft-cert-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 10px 20px; border-right: 1px solid #e8f0fd; flex: 1; min-width: 90px; }
    .ft-cert-item:last-child { border-right: none; }
    .ft-cert-item img { width: 48px; height: 32px; object-fit: contain; filter: grayscale(1) opacity(0.5); transition: filter 0.25s; }
    .ft-cert-item:hover img { filter: grayscale(0) opacity(1); }
    .ft-cert-item span { font-size: 11px; font-weight: 600; color: #94a3b8; font-family: 'Space Grotesk', sans-serif; text-align: center; white-space: nowrap; transition: color 0.25s; }
    .ft-cert-item:hover span { color: #0050e6; }
    .ft-divider { height: 1px; background: #e2e8f0; margin-bottom: 24px; }
    .ft-bottom { display: flex; align-items: center; justify-content: space-between; padding-bottom: 28px; gap: 16px; flex-wrap: wrap; }
    .ft-copy { font-size: 13px; color: #94a3b8; font-family: 'DM Sans', sans-serif; margin: 0; }
    .ft-countries { display: flex; gap: 16px; flex-wrap: wrap; }
    .ft-countries span { font-size: 13px; font-weight: 600; color: #64748b; font-family: 'Space Grotesk', sans-serif; }
    .ft-version-bar { background: #0d1117; padding: 10px 32px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; font-size: 11px; color: rgba(255,255,255,1); font-family: 'DM Sans', sans-serif; text-align: center; }
    .ft-version-bar a { color: rgba(255,255,255,1); text-decoration: none; transition: color 0.2s; }
    .ft-version-bar a:hover { color: rgba(255,255,255,0.8); }
    .ft-vb-sep { color: rgba(255,255,255,0.15); }
    @media (max-width: 1024px) { .ft-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } .ft-brand { grid-column: 1/4; } }
    @media (max-width: 768px) { .ft-top { grid-template-columns: 1fr 1fr; gap: 28px; } .ft-brand { grid-column: 1/3; } .ft-cert-item { padding: 8px 12px; } .ft-bottom { flex-direction: column; align-items: flex-start; } }
    @media (max-width: 480px) { .ft-top { grid-template-columns: 1fr; } .ft-brand { grid-column: auto; } .ft-cert-strip { flex-wrap: wrap; } .ft-cert-item { border-right: none; border-bottom: 1px solid #e8f0fd; width: 45%; } }

    /* ── MISC ── */
    .fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    @keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }
    #hero-cursor { height: 0.85em; }

    /* ── FLOATING CTA ── */
    #float-cta {
      position: fixed; bottom: 80px; right: 28px; z-index: 9000;
      display: flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, #0050e6, #0099cc);
      color: #fff; padding: 13px 22px; border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
      text-decoration: none; box-shadow: 0 8px 32px rgba(0,80,230,0.4);
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s;
      pointer-events: none;
    }
    #float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    #float-cta:hover { box-shadow: 0 14px 40px rgba(0,80,230,0.55); transform: translateY(-2px); }
    #float-cta .float-cta-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 3px rgba(74,222,128,0.3); animation: qshLivePulse 1.8s ease-in-out infinite; flex-shrink: 0; }
    @media (max-width: 600px) { #float-cta { bottom: 72px; right: 16px; padding: 11px 18px; font-size: 13px; } }

    .rad-hero-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
    .rad-hero-svg { width: 100%; max-width: 540px; filter: drop-shadow(0 24px 64px rgba(0,80,230,0.10)); }
    .rad-float-chip { position: absolute; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 28px rgba(0,80,230,0.10); z-index: 10; }
    .chip-bl { bottom: 80px; left: -8px; }
    .rad-chip-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(0,80,230,0.09); border: 1px solid rgba(0,80,230,0.18); display: flex; align-items: center; justify-content: center; color: #0050e6; font-size: 15px; flex-shrink: 0; }
    .rad-chip-icon.green { background: rgba(34,197,94,0.09); border-color: rgba(34,197,94,0.2); color: #16a34a; }
    .rad-chip-label { font-size: 10px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
    .rad-chip-val { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800; color: #0050e6; line-height: 1.2; margin-top: 1px; }
    .rad-chip-icon.green + div .rad-chip-val { color: #16a34a; }

    @media (max-width: 768px) {
      nav { top: 0; }
      .nav-links, .nav-cert-logos { display: none; }
      .nav-hamburger { display: flex; }
      .mobile-menu { display: block; position: fixed; inset: 0; top: 72px; background: #ffffff; z-index: 999; padding: 32px; overflow-y: auto; border-top: 1px solid #e2e8f0; }
      .mobile-menu.hidden { display: none; }
      .mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
      .mobile-nav-links a { display: block; padding: 12px 16px; color: #0d1117; text-decoration: none; border-radius: 8px; font-size: 16px; }
      .mobile-nav-links a:hover { background: #e8f0fe; color: #0050e6; }
      .hero-content { flex-direction: column; gap: 40px; }
      .hero-right { width: 100%; min-height: unset; }
      section { padding: 40px 20px; min-height: unset !important; }
      .ct-split { grid-template-columns: 1fr; }
      .ct-form-row { grid-template-columns: 1fr; }
    }

    /* ── PARTNERS TAB BAR ── */
.pc-tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e8f0fd;
  margin-bottom: 0;
  background: #ffffff;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-bottom: none;
}
.pc-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border: none;
  background: #f8faff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  position: relative;
}
.pc-tab:first-child {
  border-right: 1px solid #e2e8f0;
}
.pc-tab:hover {
  color: #0050e6;
  background: rgba(0,80,230,0.04);
}
.pc-tab-active {
  background: #ffffff !important;
  color: #0050e6 !important;
  border-bottom-color: #0050e6 !important;
}
.pc-tab-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(0,80,230,0.09);
  border: 1px solid rgba(0,80,230,0.18);
  color: #0050e6;
  font-family: 'Space Grotesk', sans-serif;
  transition: background 0.2s;
}
.pc-panel {
  animation: pcFadeIn 0.25s ease;
}
.pc-panel-hidden {
  display: none;
}
.pc-panel .pc-block {
  border-top: none;
  border-radius: 0 0 18px 18px;
}
@keyframes pcFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
    [data-theme="dark"] {
      --bg: #0d1117;
      --surface: #0f172a;
      --text: #e5e7eb;
      --text-muted: #b6c2d1;
      --muted: #cbd5e1;
      --border-strong: #1f2937;
    }
    [data-theme="dark"] body { background: var(--bg); color: var(--text); }
    [data-theme="dark"] h1,
    [data-theme="dark"] h2,
    [data-theme="dark"] h3,
    [data-theme="dark"] h4,
    [data-theme="dark"] h5,
    [data-theme="dark"] h6 { color: var(--text) !important; }
    [data-theme="dark"] p,
    [data-theme="dark"] li { color: var(--muted) !important; }
    [data-theme="dark"] small,
    [data-theme="dark"] label,
    [data-theme="dark"] .text-muted { color: var(--text-muted) !important; }
    [data-theme="dark"] a[rel="noopener"][href^="https://qr4.aikenist.com"] { color: #cbd5e1 !important; border-color: var(--border-strong) !important; }
    [data-theme="dark"] a[rel="noopener"][href^="https://qr4.aikenist.com"] .fa-lock { color: var(--text-muted) !important; }
    [data-theme="dark"] .mobile-nav-links a[href^="https://qr4.aikenist.com"] { color: #cbd5e1 !important; }
    [data-theme="dark"] nav { background: rgba(13,17,23,0.95); border-bottom-color: var(--border-strong); box-shadow: 0 1px 0 rgba(0,0,0,0.3); }
    [data-theme="dark"] .nav-links > li > a { color: #cbd5e1; }
    [data-theme="dark"] .nav-links > li > a:hover,
    [data-theme="dark"] .nav-links > li > a.active { color: #60a5fa; background: #1e293b; }
    [data-theme="dark"] .dropdown-menu { background: var(--surface); border-color: var(--border-strong); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
    [data-theme="dark"] .dropdown-menu li a { color: #cbd5e1; }
    [data-theme="dark"] .dropdown-menu li a:hover { background: #1e293b; color: #60a5fa; }
    [data-theme="dark"] .sub-menu { background: var(--surface); border-color: var(--border-strong); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
    [data-theme="dark"] .sub-menu li a { color: #cbd5e1; }
    [data-theme="dark"] .sub-menu li a:hover { background: #1e293b; color: #60a5fa; }
    [data-theme="dark"] .nav-cert-logos { background: #0b1220; border-color: var(--border-strong); }
    [data-theme="dark"] .nav-cert-logos img { filter: grayscale(0) opacity(0.9); }
    [data-theme="dark"] .mobile-menu { background: var(--surface); border-top-color: var(--border-strong); }
    [data-theme="dark"] .mobile-nav-links a { color: var(--text); }
    [data-theme="dark"] .mobile-nav-links a:hover { background: #1e293b; color: #60a5fa; }
    [data-theme="dark"] #home { background: var(--bg); }
    [data-theme="dark"] .hero-grid { background-image: linear-gradient(rgba(96,165,250,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(96,165,250,0.08) 1px, transparent 1px); }
    [data-theme="dark"] .hero-badge { background: rgba(96,165,250,0.12); border-color: rgba(96,165,250,0.28); color: #93c5fd; }
    [data-theme="dark"] .hero-title { color: var(--text); }
    [data-theme="dark"] #hero-tw-label { color: var(--text) !important; }
    [data-theme="dark"] .hero-sub { color: var(--muted); }
    [data-theme="dark"] .qs-dashboard-hero { background: var(--surface); border-color: var(--border-strong); box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 24px 64px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.45); }
    [data-theme="dark"] .qsh-row { background: var(--surface); border-color: var(--border-strong); }
    [data-theme="dark"] .qsh-row-name { color: var(--text); }
    [data-theme="dark"] .qsh-row-meta { color: var(--text-muted); }
    [data-theme="dark"] .qsh-ai-bar-wrap { background: linear-gradient(135deg, rgba(96,165,250,0.06), rgba(14,165,233,0.06)); border-color: rgba(96,165,250,0.18); }
    [data-theme="dark"] .qsh-accel-band { background: linear-gradient(135deg, #0b1220 0%, #060b14 100%); }
    [data-theme="dark"] .qsh-footer-txt { color: var(--text-muted); }
    [data-theme="dark"] .qsh-cert { background: #0b1220; border-color: var(--border-strong); color: #93c5fd; }
    [data-theme="dark"] #products { background: var(--bg) !important; }
    [data-theme="dark"] .lp-product-panel { background: var(--bg); }
    [data-theme="dark"] .lp-product-panel:nth-child(even) { background: #0b1220; }
    [data-theme="dark"] .lp-logo { filter: brightness(0.95); }
    [data-theme="dark"] .lp-desc { color: var(--muted); }
    [data-theme="dark"] .lp-highlight-banner { background: linear-gradient(135deg, rgba(96,165,250,0.08), rgba(14,165,233,0.08)); border-color: rgba(96,165,250,0.25); }
    [data-theme="dark"] .lp-feat-text h4 { color: var(--text); }
    [data-theme="dark"] .lp-feat-text p { color: var(--text-muted); }
    [data-theme="dark"] .lp-highlight-text strong { color: var(--text); }
    [data-theme="dark"] .lp-highlight-text span { color: var(--text-muted); }
    [data-theme="dark"] .lp-img-wrap { background: #0b1220; border-color: var(--border-strong); box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.25); }
    [data-theme="dark"] #certifications { background: var(--bg) !important; }
    [data-theme="dark"] .cr-card { background: var(--surface); border-color: var(--border-strong); box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
    [data-theme="dark"] .cr-card-name { color: var(--text); }
    [data-theme="dark"] .cr-card-full { color: var(--text-muted); }
    [data-theme="dark"] .cr-card-desc { color: var(--text-muted); }
    [data-theme="dark"] .cr-secondary { background: var(--surface); border-color: var(--border-strong); }
    [data-theme="dark"] .cr-tabs { border-bottom-color: var(--border-strong); background: #0b1220; }
    [data-theme="dark"] .cr-trust-strip { background: linear-gradient(135deg,#0f172a,#0b1220); border-color: #334155; box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
    [data-theme="dark"] .cr-trust-label { color: var(--text-muted); }
    [data-theme="dark"] .cr-trust-val { color: var(--text); }
    [data-theme="dark"] .cr-trust-sep { background: rgba(148,163,184,0.25); }
    [data-theme="dark"] #flow { background: #0b1220 !important; }
    [data-theme="dark"] .qs-card { background: #0f172a; border-color: #334155; box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 12px 28px rgba(0,0,0,0.55); }
    [data-theme="dark"] .qs-card-title { color: var(--text); }
    [data-theme="dark"] .qs-card-list li { color: var(--text-muted); }
    [data-theme="dark"] .qs-card-list li::before { color: #94a3b8; }
    [data-theme="dark"] .qs-card-icon { background: rgba(148,163,184,0.10) !important; border-color: rgba(148,163,184,0.35) !important; }
    [data-theme="dark"] .qs-card-num { background: rgba(148,163,184,0.10) !important; border-color: rgba(148,163,184,0.35) !important; color: #e5e7eb !important; }
    [data-theme="dark"] .qs-recipients-row { background: #0f172a; border-color: #334155; box-shadow: 0 2px 12px rgba(0,0,0,0.35); }
    [data-theme="dark"] .qs-hub-inner { background: #0f172a; border-color: rgba(148,163,184,0.30); }
    [data-theme="dark"] #why-aikenist { background: var(--bg) !important; }
    [data-theme="dark"] .wa-heading { color: var(--text); }
    [data-theme="dark"] .wa-subhead { color: var(--muted); }
    [data-theme="dark"] .wa-pillar { background: var(--surface); border-color: var(--border-strong); box-shadow: 0 2px 16px rgba(0,0,0,0.3); }
    [data-theme="dark"] .wa-card { background: #0f172a; border-color: #334155; box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 12px 28px rgba(0,0,0,0.55); }
    [data-theme="dark"] .wa-card:hover { border-color: #475569; box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 18px 44px rgba(0,0,0,0.6); }
    [data-theme="dark"] .wa-card-title { color: var(--text); }
    [data-theme="dark"] .wa-card-desc { color: var(--text-muted); }
    [data-theme="dark"] .wa-card-year { color: var(--text-muted); }
    [data-theme="dark"] .wa-card-footer { border-top-color: #1f2937; }
    [data-theme="dark"] .wa-card-author { color: var(--text-muted); }
    [data-theme="dark"] .wa-card-cta { color: #93c5fd; }
    [data-theme="dark"] #videos { background: #0b1220 !important; }
    [data-theme="dark"] .vid-card { background: var(--surface); border-color: var(--border-strong); box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
    [data-theme="dark"] .vid-title { color: var(--text); }
    [data-theme="dark"] #partners-clients { background: var(--bg) !important; }
    [data-theme="dark"] .pc-stats { background: linear-gradient(135deg,#0b1220,#0b1628); border-color: var(--border-strong); box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
    [data-theme="dark"] .pc-tab-bar { background: var(--surface); border-color: var(--border-strong); border-bottom-color: transparent; }
    [data-theme="dark"] .pc-tab { background: rgba(2,6,23,0.55); color: var(--text-muted); }
    [data-theme="dark"] .pc-tab:first-child { border-right-color: var(--border-strong); }
    [data-theme="dark"] .pc-tab:hover { background: rgba(96,165,250,0.10); color: #93c5fd; }
    [data-theme="dark"] .pc-tab-active { background: var(--surface) !important; color: #93c5fd !important; border-bottom-color: #60a5fa !important; }
    [data-theme="dark"] .pc-tab-pill { background: rgba(96,165,250,0.14); border-color: rgba(96,165,250,0.28); color: #93c5fd; }
    [data-theme="dark"] .pc-block { background: var(--surface); border-color: var(--border-strong); box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
    [data-theme="dark"] .pc-block-header { background: rgba(15,23,42,0.9) !important; border-bottom-color: var(--border-strong) !important; }
    [data-theme="dark"] .pc-block-label h3 { color: var(--text) !important; }
    [data-theme="dark"] .pc-block-label p { color: var(--text-muted) !important; }
    [data-theme="dark"] .pc-logo-card { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
    [data-theme="dark"] .pc-logo-card:hover { border-color: #c8d9f5; box-shadow: 0 10px 34px rgba(0,80,230,0.18); }
    [data-theme="dark"] .pc-logo-card span { color: #475569; }
    [data-theme="dark"] #team { background: var(--bg) !important; }
    [data-theme="dark"] .tm-vision { background: linear-gradient(135deg,#0b1220,#0b1628); border-color: var(--border-strong); box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
    [data-theme="dark"] .tm-card { background: var(--surface); border-color: var(--border-strong); box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
    [data-theme="dark"] .tm-card-body h3 { color: var(--text); }
    [data-theme="dark"] #contact { background: #0a1628 !important; }
    [data-theme="dark"] .ct-right { background: var(--surface); }
    [data-theme="dark"] .ct-form-title { color: var(--text); }
    [data-theme="dark"] .ct-form-subtitle { color: var(--text-muted); }
    [data-theme="dark"] .ct-portal-band-left strong { color: #ffffff; }
    [data-theme="dark"] .ct-portal-band-left p { color: rgba(255,255,255,0.55); }
    [data-theme="dark"] .ct-field label { color: var(--text-muted); }
    [data-theme="dark"] .ct-field input, [data-theme="dark"] .ct-field textarea { background: #0b1220 !important; border-color: var(--border-strong) !important; color: var(--text) !important; }
    [data-theme="dark"] #testimonials { background: var(--bg) !important; }
    [data-theme="dark"] #testimonials h2 { color: var(--text) !important; }
    [data-theme="dark"] #testimonials p { color: var(--text-muted) !important; }
    [data-theme="dark"] #testimonials .testi-grid > div { background: var(--surface) !important; border-color: var(--border-strong) !important; box-shadow: 0 4px 24px rgba(0,0,0,0.35) !important; }
    [data-theme="dark"] #testimonials .testi-grid > div > div:nth-child(4) { border-top-color: var(--border-strong) !important; }
    [data-theme="dark"] #testimonials .testi-grid > div > div:nth-child(4) > div:nth-child(2) > div:first-child { color: var(--text) !important; }
    [data-theme="dark"] #testimonials .testi-grid > div > div:nth-child(4) > div:nth-child(2) > div:last-child { color: var(--text-muted) !important; }
    [data-theme="dark"] .view-all-wrap { background: #0b1220 !important; }
    [data-theme="dark"] .view-all-wrap .btn-outline { border-color: var(--border-strong) !important; color: #93c5fd !important; background: transparent !important; }
    [data-theme="dark"] footer { background: #0b1220 !important; border-top-color: var(--border-strong) !important; }
    [data-theme="dark"] .ft-links-group a { color: #cbd5e1; }
    [data-theme="dark"] .ft-links-group a:hover { color: #60a5fa; }
    [data-theme="dark"] .ft-cert-strip { background: var(--surface); border-color: var(--border-strong); box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
    [data-theme="dark"] .ft-divider { background: var(--border-strong); }
    [data-theme="dark"] .ft-copy { color: var(--text-muted); }
    .theme-toggle-btn { background: none; border: 1px solid #d1dbe8; border-radius: 8px; padding: 8px; color: #3d4f63; cursor: pointer; }
    [data-theme="dark"] .theme-toggle-btn { border-color: var(--border-strong); color: #cbd5e1; }
