  :root {
    --black: #04080F;
    --deep: #080E1A;
    --panel: #0D1526;
    --border: rgba(20,40,255,0.18);
    --blue: #1428FF;
    --blue-dim: rgba(20,40,255,0.10);
    --orange: #FF8A00;
    --orange-dim: rgba(255,138,0,0.12);
    --white: #EEF4FF;
    --muted: #EEF4FF;
  }

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black); color: var(--white);
    font-family: 'Poppins', sans-serif; overflow-x: hidden; line-height: 1.6;
  }

  /* CANVAS */
  #hexCanvas { position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }
  nav, section, footer, .page-header, .proof-bar { position: relative; z-index: 1; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5vw;
    background: rgba(4,8,15,0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
  }
  .nav-logo {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.25rem;
    display: flex; align-items: center; gap: .5rem;
    text-decoration: none; color: var(--white);
  }
  .logo-word-node { color: var(--blue); }
  .logo-img {
    height: 2rem; width: auto; object-fit: contain; flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255,138,0,0.25));
  }
  body.light .logo-img {
    filter: none;
  }
  /* Keep pulse dot animation for mobile menu — not needed but safe fallback */
  @keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 6px var(--orange); }
    50% { box-shadow: 0 0 20px var(--orange); }
  }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
  .nav-links a {
    font-family: 'Poppins', sans-serif; font-size: .76rem; font-weight: 500;
    letter-spacing: .04em; color: var(--muted); text-decoration: none;
    text-transform: uppercase; transition: color .25s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a.spy-active {
    color: var(--white);
    position: relative;
  }
  .nav-links a.spy-active::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; border-radius: 2px;
    background: var(--orange);
  }
  /* Mobile spy-active */
  .mob-links a.spy-active { color: var(--white); }
  body.light .nav-links a.spy-active { color: var(--white); }
  body.light .mob-links a.spy-active { color: rgba(10,15,36,.9); }

  /* Services dropdown */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a { display: flex; align-items: center; gap: .35rem; cursor: pointer; }
  .nav-dropdown > a::after {
    content: ''; display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--muted);
    transition: transform .2s, border-color .2s;
  }
  .nav-dropdown:hover > a::after { transform: rotate(180deg); border-top-color: var(--white); }
  .nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    padding-top: 0.8rem; /* invisible bridge — keeps hover alive over the gap */
    z-index: 300;
  }
  /* Inner panel — visually separated from the link */
  .nav-dropdown-panel {
    background: rgba(8,14,26,0.97); backdrop-filter: blur(24px);
    border: 1px solid rgba(20,40,255,0.22); border-radius: 8px;
    padding: .5rem; min-width: 180px;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    position: relative;
  }
  .nav-dropdown-panel::before {
    content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 10px;
    background: rgba(8,14,26,0.97);
    border-left: 1px solid rgba(20,40,255,0.22);
    border-top: 1px solid rgba(20,40,255,0.22);
    transform: translateX(-50%) rotate(45deg);
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: block; animation: dropIn .18s ease; }
  @keyframes dropIn { from { opacity:0; transform: translateX(-50%) translateY(-4px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
  .nav-dropdown-menu a {
    display: flex; align-items: center; gap: .7rem;
    font-family: 'Poppins', sans-serif; font-size: .74rem; font-weight: 500;
    color: rgba(200,215,240,0.75); text-decoration: none; padding: .6rem .9rem;
    border-radius: 5px; transition: background .18s, color .18s;
    text-transform: none; letter-spacing: .02em; white-space: nowrap;
  }
  .nav-dropdown-menu a:hover { background: var(--blue-dim); color: #fff; }
  .nav-dropdown-menu a .dd-icon {
    width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: .85rem;
  }
  .nav-dropdown-menu a:first-child .dd-icon { background: rgba(20,40,255,0.15); }
  .nav-dropdown-menu a:last-child .dd-icon { background: rgba(255,138,0,0.15); }
  .dd-sep { height: 1px; background: rgba(20,40,255,0.18); margin: .3rem .5rem; }

  /* nav right side */
  .nav-right { display: flex; align-items: center; gap: .8rem; }
  .nav-cta {
    font-family: 'Poppins', sans-serif; font-size: .74rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; padding: .5rem 1.4rem;
    border: 1px solid var(--blue); color: var(--blue);
    background: transparent; border-radius: 4px; cursor: pointer;
    transition: background .25s, color .25s; text-decoration: none;
  }
  .nav-cta:hover { background: var(--blue); color: #fff; }

  /* Light mode toggle */
  .theme-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: transparent;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: border-color .2s, background .2s;
    color: var(--muted); flex-shrink: 0;
  }
  .theme-toggle:hover { border-color: var(--orange); background: var(--orange-dim); color: var(--orange); }

  /* Notification bell */
  .notif-btn {
    position: relative; width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: transparent;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: .95rem; transition: border-color .2s, background .2s;
    color: var(--muted); flex-shrink: 0; text-decoration: none;
  }
  .notif-btn:hover { border-color: var(--blue); background: var(--blue-dim); color: var(--white); }
  .notif-badge {
    position: absolute; top: -3px; right: -3px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--orange); border: 2px solid var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: .5rem; font-weight: 800; color: #fff;
    font-family: 'Poppins', sans-serif; line-height: 1;
  }
  /* Notification dropdown */
  .notif-dropdown {
    display: none; position: absolute; top: calc(100% + .6rem); right: 0;
    width: 320px; background: rgba(8,14,26,0.98);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border); border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,.6); z-index: 300; overflow: hidden;
  }
  .notif-wrap { position: relative; }
  .notif-wrap:hover .notif-dropdown,
  .notif-dropdown.open { display: block; animation: dropIn .18s ease; }
  .notif-head {
    padding: .85rem 1rem; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }
  .notif-head-title { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--white); }
  .notif-head-clear { font-size: .64rem; color: var(--blue); cursor: pointer; background: none; border: none; font-family: 'Poppins',sans-serif; font-weight: 600; }
  .notif-head-clear:hover { opacity: .75; }
  .notif-item {
    display: flex; gap: .8rem; padding: .85rem 1rem;
    border-bottom: 1px solid var(--border); transition: background .15s; cursor: pointer;
  }
  .notif-item:last-child { border-bottom: none; }
  .notif-item:hover { background: rgba(20,40,255,.06); }
  .notif-item.unread { background: rgba(20,40,255,.05); }
  .notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: .35rem; }
  .notif-dot.orange { background: var(--orange); }
  .notif-dot.green { background: #00c864; }
  .notif-dot.read { background: transparent; border: 1px solid var(--border); }
  .notif-text { flex: 1; font-size: .76rem; color: var(--muted); line-height: 1.55; }
  .notif-text strong { color: var(--white); font-weight: 600; }
  .notif-time { font-size: .6rem; color: rgba(200,215,240,.35); margin-top: .2rem; }
  .notif-empty { padding: 2rem 1rem; text-align: center; font-size: .78rem; color: rgba(200,215,240,.35); }

  /* ── LIGHT MODE ── */
  body.light {
    --black: #F0F4FF;
    --deep: #E4EAFF;
    --panel: #FFFFFF;
    --border: rgba(20,40,255,0.14);
    --white: #0A0F24;
    --muted: #04080F;
    --blue-dim: rgba(20,40,255,0.08);
    --orange-dim: rgba(255,138,0,0.10);
  }
  body.light nav { background: rgba(230,236,255,0.95) !important; }
  body.light footer { background: #E4EAFF; }
  body.light #trust { background: rgba(210,220,255,0.85); border-color: rgba(20,40,255,0.15); }
  body.light .trust-label { color: rgba(10,15,36,0.6); }
  body.light .trust-item span { color: rgba(10,15,36,0.5); }
  body.light .trust-item:hover span { color: rgba(10,15,36,0.9); }
  body.light .stats-wrap { background: rgba(220,228,255,0.6); }
  body.light #value { background: rgba(224,232,255,0.5); }
  body.light #dashboard { background: rgba(224,232,255,0.6); }
  body.light .about-visual::before { background: radial-gradient(circle, rgba(20,40,255,.06), transparent 70%); }
  body.light #hexCanvas { opacity: 1; } /* Controlled per-frame in draw() */
  /* Dropdown stays dark on light mode — high contrast against the light nav */
  body.light .nav-dropdown-panel {
    background: #0D1526;
    border-color: rgba(20,40,255,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
  }
  body.light .nav-dropdown-panel::before { background: #0D1526; border-color: rgba(20,40,255,0.3); }

  /* HAMBURGER */
  .hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px; background: transparent;
    border: 1px solid var(--border); border-radius: 6px;
    cursor: pointer; padding: 7px; transition: border-color .2s;
  }
  .hamburger:hover { border-color: var(--blue); }
  .hamburger span {
    display: block; height: 2px; border-radius: 2px;
    background: var(--white); transition: transform .3s, opacity .3s, width .3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  #mobileMenu {
    display: none; position: fixed; top: 62px; left: 0; right: 0;
    z-index: 190; background: rgba(4,8,15,0.98); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border); padding: 1.2rem 5vw 1.6rem;
  }
  #mobileMenu.open { display: block; animation: mobileIn .25s ease forwards; }
  @keyframes mobileIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
  .mob-links { list-style: none; margin-bottom: 1.2rem; }
  .mob-links li { border-bottom: 1px solid var(--border); }
  .mob-links a {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 500;
    color: var(--muted); text-decoration: none; padding: .9rem 0;
    transition: color .2s; text-transform: uppercase; letter-spacing: .04em;
  }
  .mob-links a:hover, .mob-links a.active-page { color: var(--white); }
  .mob-sub { list-style: none; padding: 0 0 .5rem 1rem; display: none; }
  .mob-sub a {
    font-size: .8rem; text-transform: none; letter-spacing: .02em;
    color: rgba(200,215,240,.5); padding: .5rem 0;
    display: flex; align-items: center; gap: .6rem;
  }
  .mob-sub a:hover { color: var(--white); }
  .mob-sub .dd-icon { width: 24px; height: 24px; border-radius: 5px; font-size: .75rem; display:flex;align-items:center;justify-content:center; }
  .mob-sub a:first-child .dd-icon { background: var(--blue-dim); }
  .mob-sub a:last-child .dd-icon { background: var(--orange-dim); }
  .mob-services-toggle { cursor: pointer; }
  .mob-chevron { font-size: .6rem; transition: transform .25s; }
  .mob-services-toggle.open .mob-chevron { transform: rotate(180deg); }
  .mob-services-toggle.open + .mob-sub { display: block; }
  .mob-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .8rem; border-top: 1px solid var(--border); }

  /* PAGE HEADER */
  .page-header {
    padding: 9rem 5vw 5rem;
    background: linear-gradient(180deg, rgba(8,14,26,0) 0%, rgba(8,14,26,0.5) 100%);
  }
  .breadcrumb {
    display: flex; align-items: center; gap: .5rem;
    font-family: 'Poppins', sans-serif; font-size: .65rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 1.5rem;
  }
  .breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb span { color: var(--orange); }
  .breadcrumb-sep { color: var(--border); font-size: .8rem; }
  .page-tag {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: 'Poppins', sans-serif; font-size: .7rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
    border: 1px solid rgba(255,138,0,.25); border-radius: 3px;
    padding: .35rem .85rem; margin-bottom: 1.5rem; background: var(--orange-dim);
  }
  .page-tag::before {
    content: ''; width: 6px; height: 6px; background: var(--orange);
    border-radius: 50%; box-shadow: 0 0 8px var(--orange);
  }
  .page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    font-weight: 800; line-height: 1.06; letter-spacing: -.02em;
    margin-bottom: 1.2rem; max-width: 780px;
  }
  .page-header h1 em { font-style: normal; color: var(--blue); }
  .page-header .sub {
    font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 300;
    color: var(--muted); max-width: 580px; line-height: 1.78; margin-bottom: 2.2rem;
  }
  .header-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  /* BUTTONS */
  .btn-primary {
    font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; padding: .85rem 2rem;
    background: var(--blue); color: #fff; border: none; border-radius: 4px;
    cursor: pointer; transition: transform .2s, box-shadow .2s; text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(20,40,255,.4); }
  .btn-primary.orange { background: var(--orange); }
  .btn-primary.orange:hover { box-shadow: 0 8px 36px rgba(255,138,0,.45); }
  .btn-outline {
    font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase; padding: .85rem 2rem;
    background: transparent; color: var(--white);
    border: 1px solid rgba(200,215,240,.25); border-radius: 4px;
    cursor: pointer; transition: border-color .2s; text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--white); }

  /* PROOF BAR */

  /* SECTIONS */
  section { padding: 6rem 5vw; }
  .section-tag {
    font-family: 'Poppins', sans-serif; font-size: .63rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
    margin-bottom: 1rem; display: flex; align-items: center; gap: .7rem;
  }
  .section-tag::before { content: ''; flex: 0 0 20px; height: 1px; background: var(--blue); }
  .section-tag.orange { color: var(--orange); }
  .section-tag.orange::before { background: var(--orange); }
  h2 {
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 2.9rem); line-height: 1.1;
    letter-spacing: -.02em; margin-bottom: 1.1rem;
  }
  h2 em { font-style: normal; color: var(--blue); }
  h2 em.orange { color: var(--orange); }
  .body-text {
    font-family: 'Poppins', sans-serif; font-weight: 300;
    color: var(--muted); max-width: 580px; font-size: 1rem; line-height: 1.8;
  }

  /* WHY SOFE NODE */
  #why { background: rgba(8,14,26,0.5); }
  .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; margin-top: 3rem; }
  .why-card {
    background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
    padding: 2rem; position: relative; overflow: hidden;
    transition: border-color .25s, transform .25s;
  }
  .why-card:hover { border-color: var(--blue); transform: translateY(-4px); }
  .why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
  }
  .why-icon {
    width: 48px; height: 48px; border-radius: 10px; background: var(--blue-dim);
    border: 1px solid var(--border); display: flex; align-items: center;
    justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem;
  }
  .why-card h3 {
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
    margin-bottom: .6rem; color: var(--white);
  }
  .why-card p {
    font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 300;
    color: var(--muted); line-height: 1.7;
  }

  /* SERVICES */
  #services { background: var(--black); }
  .services-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
  .svc-card {
    background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
    overflow: hidden; transition: border-color .3s;
    display: grid; grid-template-columns: 1fr 2fr auto;
    gap: 0; align-items: stretch;
  }
  .svc-card:hover { border-color: var(--blue); }
  .svc-number {
    background: var(--blue-dim); border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 2rem 1.8rem; min-width: 100px;
  }
  .svc-num-text {
    font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 800;
    color: var(--blue); line-height: 1; opacity: .4;
  }
  .svc-num-label {
    font-family: 'Poppins', sans-serif; font-size: .48rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .3rem;
  }
  .svc-body { padding: 2rem 2.5rem; }
  .svc-badge {
    display: inline-block; font-family: 'Poppins', sans-serif; font-size: .56rem;
    font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--orange); background: var(--orange-dim);
    border: 1px solid rgba(255,138,0,.2); border-radius: 100px;
    padding: .25rem .7rem; margin-bottom: .8rem;
  }
  .svc-body h3 {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem;
    margin-bottom: .6rem; color: var(--white);
  }
  .svc-body p {
    font-family: 'Poppins', sans-serif; font-size: .92rem; font-weight: 300;
    color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; max-width: 520px;
  }
  .svc-features { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
  .svc-feat {
    font-family: 'Poppins', sans-serif; font-size: .6rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--blue); background: var(--blue-dim);
    border: 1px solid var(--border); border-radius: 3px; padding: .28rem .65rem;
  }
  .svc-cta {
    background: var(--deep); border-left: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem 1.5rem; min-width: 160px;
  }
  .svc-cta a {
    font-family: 'Poppins', sans-serif; font-size: .7rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
    color: var(--blue); border: 1px solid var(--blue); border-radius: 4px;
    padding: .65rem 1.2rem; text-align: center; transition: background .2s, color .2s;
    white-space: nowrap;
  }
  .svc-cta a:hover { background: var(--blue); color: #fff; }
  .svc-cta a.orange { color: var(--orange); border-color: var(--orange); }
  .svc-cta a.orange:hover { background: var(--orange); color: #fff; }

  /* CASE STUDY */
  #case-study { background: rgba(8,14,26,0.5); }
  .cs-wrap {
    background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; margin-top: 3rem; position: relative;
  }
  .cs-wrap::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
  }
  .cs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .cs-left { padding: 3rem; border-right: 1px solid var(--border); }
  .cs-right { padding: 3rem; background: rgba(20,40,255,0.03); }
  .cs-logo {
    font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800;
    color: var(--orange); margin-bottom: .3rem;
  }
  .cs-subtitle {
    font-family: 'Poppins', sans-serif; font-size: .6rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem;
  }
  .cs-block { margin-bottom: 1.6rem; }
  .cs-block-label {
    font-family: 'Poppins', sans-serif; font-size: .58rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem;
  }
  .cs-block p {
    font-family: 'Poppins', sans-serif; font-size: .92rem; font-weight: 300;
    color: var(--muted); line-height: 1.75;
  }
  .cs-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
  .cs-result {
    background: var(--blue-dim); border: 1px solid var(--border); border-radius: 6px;
    padding: 1.2rem; text-align: center;
  }
  .cs-result .r-num {
    font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800;
    color: var(--blue); line-height: 1; display: block;
  }
  .cs-result .r-lbl {
    font-family: 'Poppins', sans-serif; font-size: .54rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .3rem;
  }
  .cs-retention {
    background: var(--orange-dim); border: 1px solid rgba(255,138,0,.2); border-radius: 6px;
    padding: 1rem 1.2rem; display: flex; align-items: center; gap: .8rem; margin-top: .8rem;
  }
  .cs-retention-icon { font-size: 1.2rem; flex-shrink: 0; }
  .cs-retention p {
    font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 500;
    color: var(--orange); line-height: 1.5;
  }

  /* HOW IT WORKS */
  #how { background: var(--deep); }
  .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3rem; position: relative; }
  .steps-grid::before {
    content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
    height: 1px; background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
    opacity: .3; z-index: 0;
  }
  .step {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 0 1.2rem; position: relative; z-index: 1;
  }
  .step-dot {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--panel); border: 2px solid var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.2rem;
    box-shadow: 0 0 24px rgba(20,40,255,.2);
  }
  .step:nth-child(2) .step-dot, .step:nth-child(4) .step-dot {
    border-color: var(--orange); box-shadow: 0 0 24px rgba(255,138,0,.2);
  }
  .step h4 {
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .92rem;
    color: var(--white); margin-bottom: .5rem;
  }
  .step p {
    font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 300;
    color: var(--muted); line-height: 1.65;
  }
  .step-number {
    position: absolute; top: -8px; right: calc(50% - 36px);
    font-family: 'Poppins', sans-serif; font-size: .52rem; font-weight: 800;
    letter-spacing: .1em; color: var(--blue);
    background: var(--panel); border: 1px solid var(--border);
    border-radius: 100px; padding: .18rem .5rem;
  }
  .step:nth-child(2) .step-number, .step:nth-child(4) .step-number { color: var(--orange); }

  /* PARTNER CTA STRIP */
  #cta-strip {
    background: linear-gradient(135deg, rgba(20,40,255,0.08) 0%, rgba(255,138,0,0.08) 100%);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    text-align: center; padding: 5rem 5vw;
  }
  #cta-strip h2 { margin-bottom: .8rem; }
  #cta-strip p {
    font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 300;
    color: var(--muted); margin-bottom: 2.2rem; line-height: 1.7;
  }
  #cta-strip .cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

  /* CONTACT + FAQ */
  #contact-faq { background: var(--deep); }
  .cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
  .cf-card { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 2.5rem; }
  .cf-card h3 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: .5rem; }
  .cf-card .cf-sub { font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 300; color: var(--muted); margin-bottom: 1.8rem; line-height: 1.7; }
  /* Contact form */
  .cf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .cf-input {
    width: 100%; background: var(--deep); border: 1px solid var(--border);
    border-radius: 5px; padding: .7rem 1rem;
    color: var(--white); font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 300;
    outline: none; transition: border-color .2s;
  }
  .cf-input::placeholder { color: var(--muted); }
  .cf-input:focus { border-color: var(--blue); }
  textarea.cf-input { resize: vertical; min-height: 100px; margin-bottom: 1rem; }
  /* FAQ accordion */
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600;
    color: var(--white); gap: 1rem; transition: color .2s; user-select: none;
  }
  .faq-q:hover { color: var(--blue); }
  .faq-chevron {
    width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-size: .6rem; transition: transform .3s, background .2s, border-color .2s;
  }
  .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--blue-dim); border-color: var(--blue); color: var(--blue); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 300;
    color: var(--muted); line-height: 1.75;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 1rem; }

  /* FOOTER */
  footer { background: var(--deep); border-top: 1px solid var(--border); padding: 4rem 5vw 2rem; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand p { font-family: 'Poppins', sans-serif; color: var(--muted); font-size: .86rem; font-weight: 300; margin-top: .8rem; max-width: 220px; line-height: 1.65; }
  .footer-col h4 { font-family: 'Poppins', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: .6rem; }
  .footer-col a { font-family: 'Poppins', sans-serif; color: var(--muted); text-decoration: none; font-size: .86rem; font-weight: 300; transition: color .2s; }
  .footer-col a:hover { color: var(--white); }
  .newsletter-row { display: flex; gap: .5rem; margin-top: .8rem; }
  .newsletter-input { flex: 1; background: var(--panel); border: 1px solid var(--border); border-radius: 4px; padding: .6rem .8rem; color: var(--white); font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 300; outline: none; }
  .newsletter-input::placeholder { color: var(--muted); }
  .newsletter-input:focus { border-color: var(--blue); }
  .newsletter-btn { background: var(--blue); color: #fff; border: none; border-radius: 4px; padding: .6rem 1rem; font-family: 'Poppins', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: opacity .2s; }
  .newsletter-btn:hover { opacity: .85; }
  .social-row { display: flex; gap: .7rem; margin-top: 1.2rem; }
  .social-btn { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 5px; display: flex; align-items: center; justify-content: center; background: var(--panel); color: var(--muted); font-size: .8rem; text-decoration: none; transition: border-color .2s, color .2s; }
  .social-btn img {
    width: 24px; height: 24px;
  }
  .social-btn:hover { border-color: var(--blue); color: var(--blue); }
  .footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-family: 'Poppins', sans-serif; font-size: .6rem; font-weight: 500; letter-spacing: .08em; color: var(--muted); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s, transform .7s; }
  .reveal.visible { opacity: 1; transform: none; }

  /* RESPONSIVE */
  @media(max-width:900px){
    .why-grid, .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .svc-card { grid-template-columns: 1fr; }
    .svc-number { flex-direction: row; justify-content: flex-start; gap: 1rem; padding: 1.2rem 2rem; border-right: none; border-bottom: 1px solid var(--border); }
    .svc-cta { border-left: none; border-top: 1px solid var(--border); padding: 1.5rem 2rem; justify-content: flex-start; }
    .cs-inner { grid-template-columns: 1fr; }
    .cs-left { border-right: none; border-bottom: 1px solid var(--border); }
    .footer-grid { grid-template-columns: 1fr; }
    .proof-bar { grid-template-columns: repeat(2,1fr); }
    .proof-stat { border-right: none; border-bottom: 1px solid var(--border); }
    .proof-stat:last-child { border-bottom: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-right .nav-cta { display: none; }
  }
  @media(max-width:500px){
    .cs-results-grid { grid-template-columns: 1fr; }
    .proof-bar { grid-template-columns: 1fr; }
    .header-btns { flex-direction: column; }
  }
