
    *, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid; }
    html { scroll-behavior: smooth; line-height: 1.5; -webkit-text-size-adjust: 100%; }
    body { font-family: 'Inter', sans-serif; background: #020617; color: #f1f5f9; }
    a { color: inherit; text-decoration: inherit; }
    button, input, select, textarea { font-family: inherit; font-size: 100%; color: inherit; }
    button { cursor: pointer; background: transparent; }
    img, svg { display: block; max-width: 100%; }
    h1,h2,h3,h4,h5,h6 { font-size: inherit; font-weight: inherit; }
    ol, ul { list-style: none; }
    textarea { resize: vertical; }
    [hidden] { display: none; }

    /* ── Utilities ─────────────────────────────────────── */
    .text-white   { color: #fff; }
    .text-blue-200 { color: #bfdbfe; }
    .text-blue-300 { color: #93c5fd; }
    .text-blue-400 { color: #60a5fa; }
    .text-slate-100 { color: #f1f5f9; }
    .text-slate-200 { color: #e2e8f0; }
    .text-slate-300 { color: #cbd5e1; }
    .text-slate-400 { color: #94a3b8; }
    .text-slate-500 { color: #64748b; }
    .text-emerald-300 { color: #6ee7b7; }

    /* ── Fixed Background ──────────────────────────────── */
    .bg-fixed {
      position: fixed; inset: 0; z-index: -10; overflow: hidden;
    }
    .glow {
      position: absolute; width: 420px; height: 420px;
      border-radius: 9999px; filter: blur(90px); opacity: 0.28;
      pointer-events: none;
      background: radial-gradient(circle, rgba(59,130,246,.9) 0%, rgba(59,130,246,.18) 35%, rgba(59,130,246,0) 72%);
    }
    .glow-tl { top: -120px; left: -80px; }
    .glow-br { bottom: -140px; right: -60px; }
    .grid-overlay {
      position: absolute; inset: 0; opacity: 0.4;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .radial-overlay {
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at top, rgba(59,130,246,0.10), transparent 30%),
        linear-gradient(to bottom, #020617, #020617 35%, #0b1220);
    }

    /* ── Layout Helpers ────────────────────────────────── */
    .container { max-width: 80rem; margin-left: auto; margin-right: auto; }
    .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .py-6  { padding-top: 1.5rem;  padding-bottom: 1.5rem; }
    .py-8  { padding-top: 2rem;    padding-bottom: 2rem; }
    .py-24 { padding-top: 6rem;    padding-bottom: 6rem; }
    .pt-20 { padding-top: 5rem; }
    .pb-20 { padding-bottom: 5rem; }
    .pt-4  { padding-top: 1rem; }
    .pb-4  { padding-bottom: 1rem; }
    .pb-24 { padding-bottom: 6rem; }
    .pt-16 { padding-top: 4rem; }
    .gap-4  { gap: 1rem; }
    .gap-6  { gap: 1.5rem; }
    .gap-8  { gap: 2rem; }
    .gap-10 { gap: 2.5rem; }
    .gap-12 { gap: 3rem; }
    .gap-16 { gap: 4rem; }

    /* ── Glass ─────────────────────────────────────────── */
    .glass {
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(14px);
    }

    /* ── Scroll Reveal ─────────────────────────────────── */
    .reveal {
      opacity: 1; transform: translateY(0);
      transition: opacity .7s ease, transform .7s ease;
    }
    .jsr .reveal { opacity: 0; transform: translateY(14px); }
    .jsr .reveal.visible { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .jsr .reveal { opacity: 1; transform: none; transition: none; }
    }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }
    .reveal-d4 { transition-delay: 0.4s; }

    /* ── NAV ───────────────────────────────────────────── */
    header {
      position: sticky; top: 0; z-index: 50;
      border-bottom: 1px solid rgba(255,255,255,0.10);
      background: rgba(2,6,23,0.75);
      backdrop-filter: blur(24px);
    }
    nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 1.5rem;
      max-width: 80rem; margin: auto;
    }
    .nav-brand {
      font-size: 0.875rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
    }
    .nav-links { display: none; align-items: center; gap: 2rem; }
    .nav-links a {
      font-size: 0.875rem; color: #cbd5e1;
      transition: color 150ms;
    }
    .nav-links a:hover { color: #fff; }
    .btn-outline-pill {
      border-radius: 9999px;
      border: 1px solid rgba(96,165,250,0.30);
      background: rgba(59,130,246,0.10);
      padding: 0.5rem 1rem;
      font-size: 0.875rem; font-weight: 500;
      color: #bfdbfe;
      transition: border-color 150ms, background 150ms;
    }
    .btn-outline-pill:hover {
      border-color: rgba(147,197,253,0.50);
      background: rgba(59,130,246,0.20);
    }
    #mobBtn {
      display: flex; flex-direction: column; gap: 0.375rem; padding: 0.5rem;
    }
    #mobBtn span { display: block; width: 1.25rem; height: 1px; background: #cbd5e1; }
    #mobMenu {
      border-top: 1px solid rgba(255,255,255,0.10);
      background: rgba(2,6,23,0.95);
      padding: 1rem 1.5rem 1.5rem;
      display: flex; flex-direction: column; gap: 1rem;
    }
    #mobMenu a { font-size: 0.875rem; color: #cbd5e1; }
    #mobMenu a.cta {
      border-radius: 9999px; border: 1px solid rgba(96,165,250,0.30);
      background: rgba(59,130,246,0.10); padding: 0.5rem 1rem;
      text-align: center; color: #bfdbfe;
    }

    /* ── HERO ──────────────────────────────────────────── */
    .hero { position: relative; overflow: hidden; padding: 5rem 1.5rem; }
    .hero-grid {
      display: grid; gap: 4rem; align-items: center;
      max-width: 80rem; margin: auto;
    }
    .eyebrow {
      display: inline-flex; align-items: center;
      border-radius: 9999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05);
      padding: 0.5rem 1rem;
      font-size: 0.75rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.18em;
      color: #bfdbfe; margin-bottom: 1.5rem;
    }
    h1 {
      font-size: 3rem; font-weight: 800; line-height: 0.95;
      letter-spacing: -0.025em; color: #fff;
      max-width: 56rem;
    }
    h1 .accent { color: #60a5fa; }
    .hero-sub {
      margin-top: 1.75rem; font-size: 1.125rem; line-height: 1.75rem;
      color: #cbd5e1; max-width: 42rem;
    }
    .cta-row {
      margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem;
    }
    .btn-primary {
      border-radius: 9999px; background: #3b82f6;
      padding: 1rem 1.75rem; text-align: center;
      font-size: 0.875rem; font-weight: 600; color: #fff;
      box-shadow: 0 10px 15px -3px rgba(59,130,246,0.25);
      transition: transform 150ms, background 150ms;
    }
    .btn-primary:hover { background: #60a5fa; transform: translateY(-2px); }
    .btn-secondary {
      border-radius: 9999px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.05);
      padding: 1rem 1.75rem; text-align: center;
      font-size: 0.875rem; font-weight: 600; color: #f1f5f9;
      transition: border-color 150ms, background 150ms;
    }
    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.30);
      background: rgba(255,255,255,0.10);
    }
    .stat-cards {
      margin-top: 2.5rem; display: grid; gap: 1rem; max-width: 42rem;
    }
    .stat-card {
      border-radius: 1rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(14px); padding: 1rem;
    }
    .stat-card .label { font-size: 1.5rem; font-weight: 700; color: #fff; }
    .stat-card .desc { margin-top: 0.25rem; font-size: 0.875rem; color: #94a3b8; }

    /* ── PREVIEW CARD ──────────────────────────────────── */
    .preview-wrap { position: relative; }
    .preview-outer {
      position: relative; overflow: hidden;
      border-radius: 2rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(14px); padding: 1.25rem;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.30);
    }
    .preview-top-line {
      position: absolute; inset-x: 0; top: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(96,165,250,0.60), transparent);
    }
    .preview-inner {
      border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(15,23,42,0.80); padding: 1.25rem;
    }
    .preview-header {
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid rgba(255,255,255,0.10); padding-bottom: 1rem;
    }
    .badge-emerald {
      border-radius: 9999px; border: 1px solid rgba(52,211,153,0.20);
      background: rgba(52,211,153,0.10);
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem; font-weight: 500; color: #6ee7b7; white-space: nowrap;
    }
    .preview-body { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
    .card-before {
      border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.05); padding: 0.85rem 1rem;
    }
    .card-after {
      border-radius: 1rem; border: 1px solid rgba(96,165,250,0.20);
      background: rgba(59,130,246,0.10); padding: 0.85rem 1rem;
    }
    .card-mini-grid { display: grid; gap: 1rem; }
    .card-mini {
      border-radius: 1rem; border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.05); padding: 0.85rem 1rem;
    }
    .tag-label {
      font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em;
    }
    .card-text { margin-top: 0.4rem; font-size: 0.875rem; line-height: 1.45; }

    /* ── Testimonial spotlight ────────────────── */
    .spot { margin-top: 2.5rem; text-align: center; }
    .spot-stage { position: relative; max-width: 46rem; margin: 0 auto; transition: opacity 250ms ease; }
    .spot-stage.demo-fading { opacity: 0; }
    .spot-slide { display: none; }
    .spot-slide.active { display: block; }
    .spot-slide .stars { font-size: 0.85rem; letter-spacing: 0.18em; color: #facc15; margin-bottom: 0; }
    .spot-quote {
      margin-top: 1.25rem; border: 0; background: transparent; padding: 0; border-radius: 0;
      font-size: 1.2rem; line-height: 1.85; color: #e2e8f0;
    }
    .spot-slide figcaption { margin-top: 1.5rem; }
    .spot-name { display: block; font-size: 0.9rem; font-weight: 600; color: #fff; }
    .spot-co { display: block; margin-top: 0.15rem; font-size: 0.85rem; color: #60a5fa; }
    .spot-nav { margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: 1.25rem; }
    .spot-arrow {
      width: 38px; height: 38px; border-radius: 9999px;
      border: 1px solid rgba(255,255,255,0.15); color: #94a3b8;
      font-size: 1rem; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      transition: color 150ms, border-color 150ms, background 150ms;
    }
    .spot-arrow:hover { color: #fff; border-color: rgba(96,165,250,0.5); background: rgba(59,130,246,0.10); }
    .spot-dots { display: flex; gap: 0.5rem; }
    .spot-dot {
      width: 8px; height: 8px; border-radius: 9999px; padding: 0;
      background: rgba(255,255,255,0.18);
      transition: background 150ms, transform 150ms;
    }
    .spot-dot:hover { background: rgba(255,255,255,0.35); }
    .spot-dot.active { background: #60a5fa; transform: scale(1.25); }
    @media (max-width: 640px) { .spot-quote { font-size: 1.05rem; line-height: 1.75; } }

    /* ── Process timeline ────────────────────── */
    .tl-grid { margin-top: 3rem; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
    .tl-step { position: relative; }
    .tl-node {
      position: relative; z-index: 1;
      width: 44px; height: 44px; border-radius: 9999px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 700;
      background: rgba(59,130,246,0.12);
      color: #dbeafe; border: 1px solid rgba(96,165,250,0.85);
      box-shadow: 0 0 18px rgba(96,165,250,0.28);
    }
    .tl-time {
      display: inline-block; margin-top: 1rem;
      border-radius: 9999px; border: 1px solid rgba(52,211,153,0.35);
      background: rgba(52,211,153,0.14);
      padding: 0.22rem 0.7rem;
      font-size: 0.72rem; font-weight: 600; color: #6ee7b7;
      letter-spacing: 0.05em; text-transform: uppercase;
    }
    .tl-step h3 { margin-top: 0.7rem; font-size: 1.05rem; font-weight: 600; color: #fff; }
    .tl-step p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: #94a3b8; }

    /* smooth sequential lighting — overlapping fades, no steps (JS-gated) */
    .jsr .tl-node {
      color: #64748b; border-color: rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.03); box-shadow: none;
      transition: color 1400ms ease, border-color 1400ms ease, background 1400ms ease, box-shadow 1400ms ease;
    }
    .jsr .tl-time { opacity: 0; transition: opacity 1400ms ease; }
    .jsr .tl-grid.drawn .tl-step .tl-node {
      color: #dbeafe; border-color: rgba(96,165,250,0.85);
      background: rgba(59,130,246,0.12); box-shadow: 0 0 18px rgba(96,165,250,0.28);
    }
    .jsr .tl-grid.drawn .tl-time { opacity: 1; }
    .jsr .tl-grid.drawn .tl-step:nth-child(1) .tl-node, .jsr .tl-grid.drawn .tl-step:nth-child(1) .tl-time { transition-delay: 0ms; }
    .jsr .tl-grid.drawn .tl-step:nth-child(2) .tl-node, .jsr .tl-grid.drawn .tl-step:nth-child(2) .tl-time { transition-delay: 350ms; }
    .jsr .tl-grid.drawn .tl-step:nth-child(3) .tl-node, .jsr .tl-grid.drawn .tl-step:nth-child(3) .tl-time { transition-delay: 700ms; }
    .jsr .tl-grid.drawn .tl-step:nth-child(4) .tl-node, .jsr .tl-grid.drawn .tl-step:nth-child(4) .tl-time { transition-delay: 1050ms; }

    @media (max-width: 900px) {
      .tl-grid { grid-template-columns: 1fr; gap: 2.25rem; }
      .tl-step { padding-left: 4rem; }
      .tl-node { position: absolute; left: 0; top: 0; }
      .tl-time { margin-top: 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      .jsr .tl-node, .jsr .tl-time { transition: none; }
      .jsr .tl-node { color: #dbeafe; border-color: rgba(96,165,250,0.85); background: rgba(59,130,246,0.12); box-shadow: 0 0 18px rgba(96,165,250,0.28); }
      .jsr .tl-time { opacity: 1; }
    }

    /* ── Interactive demo (homepage hero) ──────────── */
    .demo-tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; }
    .demo-tab {
      border-radius: 9999px; border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
      padding: 0.28rem 0.75rem;
      font-size: 0.75rem; font-weight: 500; color: #94a3b8;
      transition: color 150ms, border-color 150ms, background 150ms;
    }
    .demo-tab:hover { color: #e2e8f0; border-color: rgba(255,255,255,0.28); }
    .demo-tab.active {
      color: #bfdbfe; border-color: rgba(96,165,250,0.50);
      background: rgba(59,130,246,0.12);
    }
    .demo-fade { transition: opacity 220ms ease; }
    .demo-fading { opacity: 0; }
    .demo-progress {
      position: relative; height: 2px; margin-top: 1rem;
      border-radius: 9999px; overflow: hidden;
      background: rgba(255,255,255,0.08);
    }
    .demo-progress > span {
      position: absolute; left: 0; top: 0; bottom: 0; width: 0;
      background: linear-gradient(to right, rgba(96,165,250,0.25), rgba(96,165,250,0.9));
    }
    @media (prefers-reduced-motion: reduce) {
      .demo-fade { transition: none; }
      .demo-progress { display: none; }
    }

    /* ── TRUST STRIP ───────────────────────────────────── */
    .trust-strip { padding: 1.5rem; }
    .trust-grid {
      max-width: 80rem; margin: auto;
      display: grid; gap: 1rem;
      grid-template-columns: 1fr;
    }
    .trust-card {
      border-radius: 1rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05); padding: 1.25rem;
    }
    .trust-card .title { font-size: 0.875rem; font-weight: 600; color: #fff; }
    .trust-card .body { margin-top: 0.5rem; font-size: 0.875rem; color: #94a3b8; }

    /* ── SECTIONS ──────────────────────────────────────── */
    section { padding: 6rem 1.5rem; }
    .section-inner { max-width: 80rem; margin: auto; }
    .section-eyebrow {
      font-size: 0.875rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.2em; color: #93c5fd;
    }
    .section-heading {
      margin-top: 1rem; font-size: 2.25rem; font-weight: 700;
      letter-spacing: -0.025em; color: #fff;
    }
    .section-sub {
      margin-top: 1.25rem; font-size: 1.125rem; line-height: 2rem; color: #cbd5e1;
    }

    /* ── TRUSTED BY ────────────────────────────────────── */
    .trusted-strip {
      padding: 3rem 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .trusted-inner { max-width: 80rem; margin: auto; text-align: center; }
    .trusted-label {
      font-size: 0.7rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.2em; color: #475569;
      margin-bottom: 1.25rem;
    }
    .trusted-logos {
      display: flex; flex-wrap: wrap; justify-content: center;
      align-items: center;
      gap: 2rem 4rem;
    }
    .trusted-logos { align-items: center; }
    .brand-logo {
      height: 48px; width: auto; max-width: 160px;
      object-fit: contain;
      opacity: 0.70;
      transition: opacity 200ms;
    }
    .brand-logo:hover { opacity: 1; }
    /* black logo on transparent → white */
    .logo-invert { filter: invert(1); }
    /* Pinterest has black bg — brighten and show logo portion */
    .logo-pinterest { filter: invert(1) brightness(0.9); border-radius: 4px; }
    /* Meta: white text already fine, blue icon ok */
    .logo-meta { filter: brightness(1.4); }
    /* Novo Nordisk: white on black bg — remove black bg via multiply blend */
    .logo-novo { filter: invert(0) brightness(1.6); mix-blend-mode: screen; }
    .logo-unilever { filter: none; }

    /* ── WHY IT MATTERS ────────────────────────────────── */
    .why-matters { padding: 5rem 1.5rem; }
    .wm-inner {
      max-width: 80rem; margin: auto;
      display: grid; gap: 3.5rem; align-items: start;
    }
    .wm-heading {
      margin-top: 1rem;
      font-size: 2.25rem; font-weight: 800;
      letter-spacing: -0.025em; line-height: 1.1; color: #fff;
    }
    .wm-body {
      margin-top: 1.25rem; font-size: 1rem; line-height: 1.8; color: #94a3b8;
    }
    .wm-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
    .wm-item { display: flex; gap: 1rem; align-items: flex-start; }
    .wm-check {
      flex-shrink: 0; margin-top: 2px;
      width: 1.25rem; height: 1.25rem;
      color: #3b82f6;
    }
    .wm-check svg { width: 100%; height: 100%; }
    .wm-item-title { font-size: 0.9rem; font-weight: 600; color: #e2e8f0; }
    .wm-item-body { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.7; color: #64748b; }
    /* Quote card */
    .wm-quote-card {
      border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(15,23,42,0.80); padding: 1.75rem;
    }
    .wm-quote-mark { font-size: 2rem; font-weight: 800; color: #3b82f6; line-height: 1; margin-bottom: 0.75rem; }
    .wm-quote-text { font-size: 0.9375rem; line-height: 1.75; color: #cbd5e1; font-style: italic; }
    .wm-attribution { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
    .wm-avatar {
      flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 9999px;
      background: #1d4ed8; display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; color: #fff;
    }
    .wm-name { font-size: 0.875rem; font-weight: 600; color: #fff; }
    .wm-role { font-size: 0.75rem; color: #64748b; margin-top: 0.1rem; }
    /* Stat cards */
    .wm-stats { margin-top: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .wm-stat-card {
      border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(15,23,42,0.80); padding: 1.5rem; text-align: center;
    }
    .wm-stat-num { font-size: 2rem; font-weight: 800; color: #60a5fa; }
    .wm-stat-label { margin-top: 0.25rem; font-size: 0.8rem; color: #64748b; }

    /* ── SERVICES ──────────────────────────────────────── */
    .services-grid {
      margin-top: 3.5rem; display: grid; gap: 1.5rem;
    }
    .service-card {
      border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05); padding: 1.5rem;
      transition: transform 150ms, border-color 150ms, background 150ms;
    }
    .service-card:hover {
      transform: translateY(-4px);
      border-color: rgba(96,165,250,0.30);
      background: rgba(255,255,255,0.07);
    }
    .service-card h3 { font-size: 1.25rem; font-weight: 600; color: #fff; }
    .service-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.75rem; color: #94a3b8; }

    /* ── Hub card tells + featured card ────────────── */
    .tell-chip {
      display: inline-flex; align-items: center; gap: 0.45rem;
      margin-top: 0.9rem; border-radius: 9999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(2,6,23,0.55);
      padding: 0.28rem 0.75rem; font-size: 0.75rem; font-weight: 500;
      white-space: nowrap;
    }
    .tell-chip .t-eu {
      color: #64748b; text-decoration: line-through;
      text-decoration-color: rgba(248,113,113,0.55); text-decoration-thickness: 1px;
    }
    .tell-chip .t-arrow { color: #475569; }
    .tell-chip .t-br { color: #93c5fd; font-weight: 600; }
    .scope-tags {
      display: block; margin-top: 0.8rem;
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: #64748b;
    }
    .service-card:hover .scope-tags { color: #94a3b8; }
    .proof-line {
      display: block; margin-top: 0.6rem;
      font-size: 0.75rem; font-weight: 500; color: #6ee7b7;
      letter-spacing: 0.02em;
    }
    .explore-link { margin-top: 0.9rem; color: #60a5fa; font-size: .85rem; font-weight: 600; }
    .explore-link .arr { display: inline-block; transition: transform 150ms ease; }
    .service-card:hover .explore-link .arr { transform: translateX(4px); }
    .card-hot {
      border-color: rgba(96,165,250,0.35);
      background: rgba(59,130,246,0.08);
    }
    .card-hot:hover { border-color: rgba(96,165,250,0.55); }
    .hot-badge {
      display: inline-block; margin-bottom: 0.7rem;
      border-radius: 9999px; border: 1px solid rgba(52,211,153,0.25);
      background: rgba(52,211,153,0.10);
      padding: 0.22rem 0.65rem;
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: #6ee7b7;
    }
    .service-card-blue {
      border-radius: 1.5rem; border: 1px solid rgba(96,165,250,0.20);
      background: rgba(59,130,246,0.10); padding: 1.5rem;
      transition: transform 150ms, border-color 150ms, background 150ms;
      display: flex; flex-direction: column; gap: 1.5rem;
    }
    .service-card-blue:hover {
      transform: translateY(-4px);
      border-color: rgba(96,165,250,0.40);
      background: rgba(59,130,246,0.14);
    }
    .service-card-blue h3 { font-size: 1.25rem; font-weight: 600; color: #fff; }
    .service-card-blue p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.75rem; color: #cbd5e1; max-width: 36rem; }
    .btn-cta-sm {
      flex-shrink: 0; border-radius: 9999px; background: #3b82f6;
      padding: 0.75rem 1.5rem; text-align: center;
      font-size: 0.875rem; font-weight: 600; color: #fff;
      box-shadow: 0 10px 15px -3px rgba(59,130,246,0.25);
      transition: transform 150ms, background 150ms; display: inline-block;
    }
    .btn-cta-sm:hover { background: #60a5fa; transform: translateY(-2px); }


    /* ── SERVICE ICONS ─────────────────────────────────── */
    .service-icon {
      width: 36px; height: 36px;
      flex-shrink: 0;
    }
    .service-card-header {
      display: flex; align-items: center; gap: 0.875rem; margin-bottom: 0.75rem;
    }
    .service-card-header h3 { margin: 0; }

    /* ── WHY ───────────────────────────────────────────── */
    .why-grid {
      display: grid; gap: 2.5rem; max-width: 80rem; margin: auto;
    }
    .why-cards { display: grid; gap: 1.5rem; }
    .why-card {
      border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05); padding: 1.5rem;
    }
    .why-card h3 { font-size: 1.125rem; font-weight: 600; color: #fff; }
    .why-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.75rem; color: #94a3b8; }

    




    /* ── PROCESS TIMELINE ──────────────────────────────── */
    .timeline-outer {
      max-width: 72rem; margin: 4rem auto 0; padding: 0 1.5rem;
      position: relative;
    }
    .timeline-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
    }
    /* Each step column */
    .tl-step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: 0 0.75rem;
      position: relative; z-index: 2;
    }
    /* Node circle */
    .tl-node {
      width: 4.5rem; height: 4.5rem;
      border-radius: 9999px;
      border: 2px solid rgba(255,255,255,0.08);
      background: #0b1220;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
      position: relative;
      transition: border-color 0.9s ease, background 0.9s ease, box-shadow 0.9s ease;
    }
    /* Pulse ring — hidden by default */
    .tl-node::after {
      content: '';
      position: absolute; inset: -6px;
      border-radius: 9999px;
      border: 2px solid rgba(59,130,246,0);
      transition: border-color 0.9s ease, transform 0.9s ease;
      transform: scale(0.8);
    }
    /* Active node state */
    .tl-step.active .tl-node {
      border-color: #3b82f6;
      background: rgba(59,130,246,0.15);
      box-shadow: 0 0 24px rgba(59,130,246,0.35), 0 0 8px rgba(59,130,246,0.5);
    }
    .tl-step.active .tl-node::after {
      border-color: rgba(59,130,246,0.25);
      transform: scale(1);
    }
    /* Completed node */
    .tl-step.done .tl-node {
      border-color: #60a5fa;
      background: rgba(59,130,246,0.20);
      box-shadow: 0 0 12px rgba(59,130,246,0.25);
    }
    .tl-step.done .tl-node::after {
      border-color: transparent;
    }
    /* Number */
    .tl-num {
      font-size: 1rem; font-weight: 800;
      color: rgba(255,255,255,0.20);
      transition: color 0.9s ease;
      letter-spacing: -0.02em;
    }
    .tl-step.active .tl-num { color: #93c5fd; }
    .tl-step.done .tl-num { color: #60a5fa; }
    /* Checkmark for done steps */
    
    .tl-step.done 
    
    
    /* Text */
    .tl-title {
      font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.25);
      margin-bottom: 0.5rem;
      transition: color 0.9s ease;
    }
    .tl-step.active .tl-title { color: #fff; }
    .tl-step.done .tl-title { color: #f1f5f9; }
    .tl-body {
      font-size: 0.8rem; line-height: 1.75;
      color: rgba(100,116,139,0.5);
      max-width: 14rem;
      transition: color 0.9s ease;
    }
    .tl-step.active .tl-body { color: #cbd5e1; }
    .tl-step.done .tl-body { color: #94a3b8; }
    @media (max-width: 768px) {
      .timeline-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .tl-track-bg, .tl-track-fill { display: none; }
    }
    @media (max-width: 480px) {
      .timeline-steps { grid-template-columns: 1fr; }
    }

    /* ── ABOUT ─────────────────────────────────────────── */
    .about-grid { display: grid; gap: 3rem; max-width: 80rem; margin: auto; }
    .about-card {
      border-radius: 2rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05); padding: 2rem;
    }
    .about-tag {
      font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; color: #94a3b8;
    }
    .about-items { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
    .about-items p { font-size: 0.875rem; line-height: 1.75rem; color: #cbd5e1; }
    .about-items strong { font-weight: 600; color: #fff; }

    /* ── TESTIMONIALS ──────────────────────────────────── */
    .testi-grid { margin-top: 3rem; display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
    blockquote {
      border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05); padding: 1.5rem;
    }
    blockquote .stars { color: #facc15; font-size: 0.875rem; margin-bottom: 1rem; }
    blockquote p { font-size: 1rem; line-height: 2rem; color: #e2e8f0; }
    blockquote footer { margin-top: 1.5rem; }
    blockquote footer .name { font-size: 0.875rem; font-weight: 600; color: #fff; }
    blockquote footer .role { font-size: 0.875rem; color: #94a3b8; }

    @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }


    /* ── TEAM ──────────────────────────────────────────── */
    .team-grid {
      margin-top: 3rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }
    .team-grid .team-card { width: calc((100% - 4.5rem) / 4); }
    @media (max-width: 1024px) { .team-grid .team-card { width: calc((100% - 1.5rem) / 2); } }
    @media (max-width: 600px)  { .team-grid .team-card { width: 100%; } }
    .team-card {
      border-radius: 1.5rem;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      padding: 1.75rem 1.5rem;
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 1rem;
      transition: transform 150ms, border-color 150ms;
    }
    .team-card:hover {
      transform: translateY(-4px);
      border-color: rgba(96,165,250,0.25);
    }
    .team-avatar {
      width: 88px; height: 88px;
      border-radius: 9999px;
      object-fit: cover;
      border: 2px solid rgba(96,165,250,0.30);
    }
    .team-name { font-size: 1rem; font-weight: 700; color: #fff; }
    .team-role { font-size: 0.75rem; color: #60a5fa; margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
    .team-quote { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: #94a3b8; font-style: italic; }


    /* ── CONTACT ───────────────────────────────────────── */
    .contact-section { padding: 4rem 1.5rem 6rem; }
    .contact-grid { display: grid; gap: 4rem; max-width: 80rem; margin: auto; }
    .contact-info .section-heading { font-size: 2.25rem; }
    .contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-row { display: flex; align-items: center; gap: 1rem; }
    .icon-box {
      flex-shrink: 0; display: flex; align-items: center; justify-content: center;
      width: 2.5rem; height: 2.5rem;
      border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05);
    }
    .icon-box svg { width: 1rem; height: 1rem; color: #60a5fa; }
    .contact-row .lbl { font-size: 0.875rem; font-weight: 600; color: #fff; }
    .contact-row .val { font-size: 0.875rem; color: #94a3b8; }
    .form-wrap {
      position: relative; overflow: hidden;
      border-radius: 2rem; border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05); padding: 2rem;
    }
    .form-top-line {
      position: absolute; inset-x: 0; top: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(96,165,250,0.50), transparent);
    }
    .form-title { font-size: 1.125rem; font-weight: 600; color: #fff; }
    .form-sub { margin-top: 0.25rem; font-size: 0.875rem; color: #94a3b8; margin-bottom: 1.5rem; }
    .form-grid { display: grid; gap: 1rem; }
    .form-row2 { display: grid; gap: 1rem; }
    .form-label { display: block; margin-bottom: 0.375rem; font-size: 0.75rem; font-weight: 500; color: #94a3b8; }
    .form-input, .form-select, .form-textarea {
      width: 100%; border-radius: 1rem;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05);
      padding: 0.75rem 1rem; font-size: 0.875rem; color: #fff;
      outline: none;
      transition: border-color 150ms, background 150ms;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: #64748b; }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: rgba(96,165,250,0.40);
      background: rgba(255,255,255,0.07);
    }
    .form-select { background-color: #0f172a; -webkit-appearance: none; appearance: none; cursor: pointer; color-scheme: dark; }
    .form-select option { background-color: #0f172a; color: #f1f5f9; padding: 0.5rem; }
    .form-select option:checked, .form-select option:hover { background-color: #1e293b; color: #ffffff; }
    /* Custom dropdown wrapper */
    .select-wrap { position: relative; }
    .select-wrap::after {
      content: '';
      position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid #94a3b8;
      pointer-events: none;
    }
    .select-wrap .form-select { padding-right: 2.5rem; }
    .form-textarea { resize: none; }
    .btn-submit {
      width: 100%; border-radius: 9999px; background: #3b82f6;
      padding: 1rem 1.5rem; font-size: 0.875rem; font-weight: 600; color: #fff;
      box-shadow: 0 10px 15px -3px rgba(59,130,246,0.20);
      transition: background 150ms, transform 150ms;
    }
    .btn-submit:hover { background: #60a5fa; transform: translateY(-2px); }
    .form-note { text-align: center; font-size: 0.75rem; color: #64748b; margin-top: 0.5rem; }
    .input-error { border-color: rgba(239,68,68,0.50) !important; }
    #formSuccess { text-align: center; padding: 3rem 0; }
    #formSuccess .check-circle {
      width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem;
      border-radius: 9999px; border: 1px solid rgba(96,165,250,0.30);
      background: rgba(59,130,246,0.10);
      display: flex; align-items: center; justify-content: center;
    }
    #formSuccess .check-circle svg { width: 1.5rem; height: 1.5rem; color: #60a5fa; }
    #formSuccess .success-title { font-size: 1.125rem; font-weight: 600; color: #fff; }
    #formSuccess .success-body { margin-top: 0.5rem; font-size: 0.875rem; color: #94a3b8; }

    /* ── FOOTER ────────────────────────────────────────── */
    footer {
      border-top: 1px solid rgba(255,255,255,0.10);
      padding: 2rem 1.5rem;
    }
    .footer-inner {
      max-width: 80rem; margin: auto;
      display: flex; flex-direction: column; gap: 1rem;
      font-size: 0.875rem; color: #94a3b8;
    }
    .footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: center; }
    .footer-links a { transition: color 150ms; }
    .footer-links a:hover { color: #e2e8f0; }

    /* ── RESPONSIVE ────────────────────────────────────── */
    @media (min-width: 640px) {
      h1 { font-size: 3.75rem; }
      .hero-sub { font-size: 1.25rem; }
      .cta-row { flex-direction: row; }
      .stat-cards { grid-template-columns: repeat(3, 1fr); }
      .card-mini-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .process-box { padding: 2.5rem; }
      .form-row2 { grid-template-columns: repeat(2, 1fr); }
      .service-card-blue { flex-direction: row; align-items: center; justify-content: space-between; }
    }
    @media (min-width: 768px) {
      nav { padding: 1rem 2rem; }
      .nav-links { display: flex; }
      #mobBtn { display: none; }
      #mobMenu { display: none !important; }
      .trust-grid { grid-template-columns: repeat(4, 1fr); }
      .why-cards { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
    }
    @media (min-width: 1024px) {
      nav { padding: 1rem 2rem; }
      .hero { padding: 7rem 2rem; }
      .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
      h1 { font-size: 4.5rem; }
      .why-grid { grid-template-columns: 0.9fr 1.1fr; }
      .about-grid { grid-template-columns: 1fr 0.95fr; }
      .contact-grid { grid-template-columns: 5fr 6fr; align-items: start; }
      .process-grid { grid-template-columns: repeat(4, 1fr); }
      .process-box { padding: 3rem; }
      section { padding: 6rem 2rem; }
      .trust-strip { padding: 1.5rem 2rem; }
      .trusted-strip { padding: 2rem; }
      .why-matters { padding: 5rem 2rem; }
      .wm-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
      .wm-heading { font-size: 2.75rem; }
      .contact-section { padding: 4rem 2rem 6rem; }
      footer { padding: 2rem; }
    }
    @media (min-width: 1280px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
    }
  