/* ══════════════════════════════════════
   RESET & TOKENS
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #03030A;
  --surface: #0C0C1E;
  --indigo: #6366F1;
  --indigo-l: #818CF8;
  --cyan: #22D3EE;
  --amber: #F59E0B;
  --green: #25D366;
  --white: #fff;
  --muted: #64748B;
  --border: rgba(255, 255, 255, 0.07);
  --px: clamp(20px, 5vw, 72px);

  /* ── Typography tokens ──
     Manrope = things the user should NOTICE (headings, numbers, emphasis)
     Inter   = things the user should READ (body, UI, nav, labels)      */
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fw-head: 700;  /* Manrope — the only weight used */
  --fw-body: 400;  /* Inter — body/paragraph text */
  --fw-ui:   600;  /* Inter — nav, buttons, labels, UI emphasis */
}

html { scroll-behavior: auto; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Reusable typography utility classes ──
   Available for new/refactored markup; existing component classes
   consume the tokens above directly via var(--font-head/--font-body). */
.font-head { font-family: var(--font-head); font-weight: var(--fw-head); }
.font-body { font-family: var(--font-body); font-weight: var(--fw-body); }
.font-ui   { font-family: var(--font-body); font-weight: var(--fw-ui); }

.eyebrow-label {
  font-family: var(--font-body);
  font-weight: var(--fw-ui);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* ══════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════ */
#sp {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan), var(--amber));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
}


/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 42px;
  background: rgba(6, 6, 18, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  z-index: 500;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
#topbar.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.tb-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tb-left,
.tb-right { display: flex; align-items: center; }

.tb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  padding: 0 14px;
  height: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.tb-item:hover { color: var(--cyan); background: rgba(34, 211, 238, 0.04); }
.tb-item:first-child { padding-left: 0; }
.tb-right .tb-item:last-child { padding-right: 0; border-right: none; }
.tb-item svg {
  width: 11px; height: 11px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.tb-si { width: 14px; height: 14px; fill: currentColor; }


/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
#header {
  position: fixed;
  top: 42px; left: 0; right: 0;
  z-index: 400;
  padding: 0 var(--px);
  transition: top 0.35s ease, background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
#header.sticky {
  top: 0;
  background: rgba(3, 3, 10, 0.95);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
}

.hd-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 46px; width: auto; display: block; }

/* Nav list */
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, 0.58);
  padding: 9px 13px; border-radius: 8px;
  cursor: pointer; white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.nav-chev {
  width: 11px; height: 11px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.25s; flex-shrink: 0;
}
.nav-item:hover .nav-chev { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  background: rgba(8, 8, 22, 0.98);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 10px; min-width: 220px; z-index: 50;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(99, 102, 241, 0.08);
}
/* Bridge the 8px gap so hover doesn't break when mouse moves from nav-link to dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -20px;
  right: -20px;
  height: 10px;
}
.nav-item:hover .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Active nav states (replaces inline style="") */
.dd-item--active                { background: rgba(124,58,237,.07); }
.dd-item--active .dd-icon       { color: #7C3AED; }
.nav-link--active               { color: #F59E0B !important; }

/* Mobile panel logo/CTA sizing (replaces inline style="") */
.mp-head .logo-img              { height: 34px; }
.mp-head .btn-cta               { display: inline-flex; margin-top: 8px; }

.dd-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  transition: background 0.2s;
}
.dd-item:hover { background: rgba(255, 255, 255, 0.05); }

.dd-icon {
  width: 32px; height: 32px;
  border-radius: 9px; flex-shrink: 0;
  background: rgba(99, 102, 241, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.dd-icon svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--indigo-l);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.dd-label strong {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(255, 255, 255, 0.85); white-space: nowrap;
}
.dd-label span {
  display: block; font-size: 11px;
  color: rgba(255, 255, 255, 0.58); margin-top: 1px;
}
.dd-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 6px 8px;
}

/* Wide 2-col dropdown */
.dropdown.wide {
  min-width: 420px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 12px;
}
.dropdown.wide .dd-sep { grid-column: 1 / -1; }

/* Header right */
.hd-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* CTA button */
.btn-cta {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600;
  color: #fff; overflow: hidden; isolation: isolate; cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}
.btn-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-l) 50%, #38bdf8);
  z-index: -1;
}
.btn-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 36px rgba(99, 102, 241, 0.4);
}
.btn-cta:hover::before { opacity: 1; }
.btn-arr { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.btn-cta:hover .btn-arr { transform: translateX(4px); }

/* Hamburger */
.btn-menu {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px; background: rgba(255, 255, 255, 0.04);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.btn-menu:hover {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.08);
}
.ml {
  width: 18px; height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px; transition: all 0.3s;
}
.btn-menu.open .ml:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.btn-menu.open .ml:nth-child(2) { opacity: 0; transform: scaleX(0); }
.btn-menu.open .ml:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ══════════════════════════════════════
   SLIDE PANEL
══════════════════════════════════════ */
#menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 590;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
#menu-overlay.show { opacity: 1; pointer-events: all; }

#menu-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 85vw);
  background: #070718;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  z-index: 600;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; overflow: hidden;
}
#menu-panel.show { transform: translateX(0); }

.mp-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mp-close {
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.mp-close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.mp-close svg {
  width: 15px; height: 15px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round;
}

.mp-body { padding: 26px; flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; display: flex; flex-direction: column; gap: 30px; }
.mp-sec-title {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: 10px;
}

.mp-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 16px; font-family: var(--font-head); font-weight: 600;
  color: rgba(255, 255, 255, 0.72); transition: color 0.2s;
}
.mp-nav-link:hover { color: #fff; }
.mp-nav-link svg {
  width: 15px; height: 15px;
  fill: none; stroke: currentColor; stroke-width: 2; opacity: 0.35;
}

/* ── Sidebar accordion groups (Products / Services / Insights) ── */
.mp-nav-group { border-bottom: 1px solid rgba(255,255,255,.05); }
.mp-nav-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 13px 0; background: none; border: none; cursor: pointer;
  font-size: 16px; font-family: var(--font-head); font-weight: 600;
  color: rgba(255,255,255,.72); text-align: left; transition: color .2s;
}
.mp-nav-toggle:hover { color: #fff; }
.mp-nav-toggle svg {
  width: 15px; height: 15px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2; opacity: .35;
  transition: transform .25s;
}
.mp-nav-toggle.open svg { transform: rotate(90deg); }
.mp-sub {
  display: none; flex-direction: column; gap: 2px;
  padding: 4px 0 12px 8px;
}
.mp-sub.open { display: flex; }
.mp-sub-link {
  display: block; font-size: 14px; font-family: var(--font-body); font-weight: 500;
  color: rgba(255,255,255,.45); text-decoration: none;
  padding: 8px 12px; border-radius: 8px; transition: color .15s, background .15s;
}
.mp-sub-link:hover { color: #fff; background: rgba(255,255,255,.06); }

.mp-contact-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; }
.mp-c-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(99, 102, 241, 0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mp-c-icon svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--indigo-l);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.mp-c-label { font-size: 10.5px; font-weight: 600; color: var(--muted); }
.mp-c-val { font-size: 13px; color: rgba(255, 255, 255, 0.8); margin-top: 1px; font-weight: 600; }

.mp-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.mp-soc {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px; border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px; font-size: 12px; color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s, border-color 0.2s, background 0.2s; cursor: pointer;
}
.mp-soc:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.mp-soc svg { width: 13px; height: 13px; fill: currentColor; }

.mp-foot {
  padding: 18px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px; color: var(--muted);
}

.mp-strip {
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  margin: 0 26px; border-radius: 2px; opacity: 0.35;
}


/* ══════════════════════════════════════
   HERO — STATIC SPLIT LAYOUT
══════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px var(--px) 100px;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-glow--a {
  width: 640px; height: 640px;
  top: -200px; left: -180px;
  background: rgba(124, 58, 237, 0.28);
}
.hero-bg-glow--b {
  width: 560px; height: 560px;
  bottom: -220px; right: -160px;
  background: rgba(245, 158, 11, 0.16);
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 75%);
  z-index: 0; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 5vw, 90px);
}

/* ── Left: content ── */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 22px;
}
.hero-tag::before {
  content: ''; display: inline-block;
  width: 18px; height: 1.5px; background: var(--amber);
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 700; line-height: 1.06;
  color: #fff; margin-bottom: 22px;
  text-wrap: balance;
}
.hero-h1 em { font-style: normal; color: var(--amber); }
.hero-hsub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7; margin-bottom: 34px;
  max-width: 460px;
}
.hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-ghost {
  font-size: 14px; font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.hero-ghost:hover { color: #fff; border-color: rgba(255, 255, 255, 0.6); }

.hero-trust-row {
  display: flex; align-items: center; gap: 14px;
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 460px;
}
.hero-trust-avatars { display: flex; flex-shrink: 0; }
.hta {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  margin-left: -10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; letter-spacing: 0;
  font-family: 'Inter', system-ui, sans-serif;
}
.hta:first-child { margin-left: 0; }
.hero-trust-row p { font-size: 12.5px; color: rgba(255, 255, 255, 0.42); line-height: 1.5; }

/* ── Right: infographic ── */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
  perspective: 1000px;
}

.hv-card {
  position: relative;
  width: 100%; max-width: 460px;
  background: rgba(14, 12, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 28px 28px 22px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.08);
  transform: rotate(-1.4deg);
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.hv-card-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
}
.hv-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
  flex-shrink: 0;
}
.hv-range {
  margin-left: auto;
  font-size: 10.5px; color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase; font-weight: 600; letter-spacing: .08em;
}

.hv-metric { margin-bottom: 18px; }
.hv-metric-num {
  display: block;
  font-family: var(--font-head);
  font-size: 40px; font-weight: 700;
  color: #fff; line-height: 1;
  letter-spacing: -.02em;
}
.hv-metric-lbl {
  display: block; margin-top: 6px;
  font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, 0.4);
}

.hv-chart { width: 100%; height: 110px; display: block; overflow: visible; }
.hv-months {
  display: flex; justify-content: space-between;
  margin-top: 10px; padding: 0 2px;
  font-size: 10.5px; color: rgba(255, 255, 255, 0.28);
  letter-spacing: .02em;
}

/* Floating stat chips */
.hv-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(14, 12, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  font-size: 11.5px;
}
.hv-chip svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--amber); }
.hv-chip strong {
  display: block; font-family: var(--font-head);
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1.15;
}
.hv-chip span { display: block; color: rgba(255, 255, 255, 0.42); font-size: 10.5px; margin-top: 1px; }

.hv-chip--roas   { top: -18px; right: -8px; }
.hv-chip--retain { bottom: 8px; left: -34px; }

.hv-chip--ring {
  top: 40%; right: -46px;
  width: 84px; height: 84px;
  border-radius: 50%;
  flex-direction: column; justify-content: center; align-items: center;
  padding: 0;
}
.hv-chip--ring svg { width: 100%; height: 100%; position: absolute; inset: 0; transform: rotate(-90deg); }
.hv-ring-fill { transition: stroke-dashoffset 1.2s ease; }
.hv-ring-txt { position: relative; z-index: 1; text-align: center; }
.hv-ring-txt strong { display: block; font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff; }
.hv-ring-txt span { display: block; font-size: 9px; color: rgba(255, 255, 255, 0.42); text-transform: uppercase; font-weight: 600; letter-spacing: .06em; }

/* Scroll cue */
.hero-cue {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  pointer-events: none;
}
.cue-track {
  width: 1px; height: 46px;
  background: rgba(255, 255, 255, 0.1);
  position: relative; overflow: hidden; border-radius: 1px;
}
.cue-track::after {
  content: '';
  position: absolute; top: -60%; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--amber));
  animation: cuePulse 2s ease-in-out infinite;
}
@keyframes cuePulse {
  0%   { top: -60%; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 120%; opacity: 0; }
}
.cue-txt {
  font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600; color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 44px; min-height: 340px; }
  .hv-chip--ring { right: 6px; }
  .hv-chip--roas { right: 6px; }
  .hv-chip--retain { left: 6px; }
}

@media (max-width: 640px) {
  #hero { padding: 126px var(--px) 80px; min-height: auto; }
  .hero-h1 { font-size: clamp(30px, 9vw, 48px); }
  .hv-card { padding: 22px 20px 18px; transform: none; }
  .hv-chip--ring { display: none; }
  .hero-trust-row { flex-wrap: wrap; }
}


/* ══════════════════════════════════════
   FLOATING ACTION BAR
══════════════════════════════════════ */
#float-bar {
  position: fixed; bottom: 36px; right: 22px;
  z-index: 300;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.float-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
  margin-bottom: 2px;
}
.float-btn {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 18, 0.88); backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative;
  transition:
    border-color 0.25s, background 0.25s,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
  color: rgba(255, 255, 255, 0.45);
}
.float-btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(18, 18, 38, 0.95);
  transform: scale(1.12);
}
.float-btn svg {
  width: 17px; height: 17px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.float-btn.fb-wa svg { fill: currentColor; stroke: none; }
.float-btn.fb-wa:hover { border-color: rgba(37, 211, 102, 0.45); color: #25D366; box-shadow: 0 0 22px rgba(37, 211, 102, 0.2); }
.float-btn.fb-ph:hover { border-color: rgba(99, 102, 241, 0.45); color: var(--indigo-l); box-shadow: 0 0 22px rgba(99, 102, 241, 0.2); }
.float-btn.fb-em:hover { border-color: rgba(34, 211, 238, 0.45); color: var(--cyan); box-shadow: 0 0 22px rgba(34, 211, 238, 0.2); }
.float-btn.fb-li:hover { border-color: rgba(10, 102, 194, 0.45); color: #0A66C2; box-shadow: 0 0 22px rgba(10, 102, 194, 0.2); }
.float-btn.fb-help:hover { border-color: rgba(245, 158, 11, 0.45); color: var(--amber); box-shadow: 0 0 22px rgba(245, 158, 11, 0.2); }

.float-tip {
  position: absolute; right: calc(100% + 11px); top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: rgba(8, 8, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px; padding: 5px 11px; font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72); white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.float-btn:hover .float-tip { opacity: 1; transform: translateY(-50%) translateX(0); }


/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
#services {
  background: var(--bg);
  padding: 96px var(--px);
  position: relative; overflow: hidden;
}
#services::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}

.srv-wrap { max-width: 1440px; margin: 0 auto; position: relative; z-index: 1; }

.srv-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(99, 102, 241, 0.25);
  background: rgba(99, 102, 241, 0.08);
  font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--indigo-l);
  font-weight: 600; margin-bottom: 22px;
}
.srv-eyebrow svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.srv-head { margin-bottom: 64px; }
.srv-h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700; letter-spacing: -0.035em;
  line-height: 1.05; margin-bottom: 18px;
}
.srv-h2 em { font-style: normal; color: var(--cyan); }
.srv-lead { font-size: 16px; color: rgba(255, 255, 255, 0.45); line-height: 1.75; max-width: 560px; }

.srv-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px; overflow: hidden;
}

.srv-card {
  background: var(--bg);
  padding: 40px 36px 44px;
  position: relative; overflow: hidden;
  transition: background 0.3s; cursor: default;
}
.srv-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--card-glow, transparent);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.srv-card:hover { background: var(--surface); }
.srv-card:hover::before { opacity: 1; }

.srv-num {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.18); margin-bottom: 32px;
  text-transform: uppercase;
}

.srv-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; position: relative;
  background: var(--card-icon-bg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.srv-card:hover .srv-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.srv-icon-wrap svg {
  width: 26px; height: 26px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

.srv-card h3 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 14px; line-height: 1.2;
}
.srv-card p {
  font-size: 14px; color: rgba(255, 255, 255, 0.42);
  line-height: 1.8; margin-bottom: 32px;
}

.srv-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.25s, gap 0.25s;
}
.srv-card:hover .srv-link { color: var(--card-accent); gap: 11px; }
.srv-link svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.25s;
}
.srv-card:hover .srv-link svg { transform: translateX(3px); }

.srv-card-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--card-bar);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.srv-card:hover .srv-card-bar { transform: scaleX(1); }

/* Per-card colour tokens */
.srv-card:nth-child(1) {
  --card-glow: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(99, 102, 241, 0.12), transparent);
  --card-icon-bg: rgba(99, 102, 241, 0.12);
  --card-accent: var(--indigo-l);
  --card-bar: linear-gradient(90deg, var(--indigo), var(--indigo-l));
  color: var(--indigo-l);
}
.srv-card:nth-child(1) .srv-icon-wrap { color: var(--indigo-l); }
.srv-card:nth-child(1) h3,
.srv-card:nth-child(1) .srv-num { color: var(--white); }

.srv-card:nth-child(2) {
  --card-glow: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(34, 211, 238, 0.1), transparent);
  --card-icon-bg: rgba(34, 211, 238, 0.1);
  --card-accent: var(--cyan);
  --card-bar: linear-gradient(90deg, var(--cyan), #38bdf8);
  color: var(--cyan);
}
.srv-card:nth-child(2) .srv-icon-wrap { color: var(--cyan); }
.srv-card:nth-child(2) h3,
.srv-card:nth-child(2) .srv-num { color: var(--white); }

.srv-card:nth-child(3) {
  --card-glow: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(245, 158, 11, 0.1), transparent);
  --card-icon-bg: rgba(245, 158, 11, 0.1);
  --card-accent: var(--amber);
  --card-bar: linear-gradient(90deg, var(--amber), #fbbf24);
  color: var(--amber);
}
.srv-card:nth-child(3) .srv-icon-wrap { color: var(--amber); }
.srv-card:nth-child(3) h3,
.srv-card:nth-child(3) .srv-num { color: var(--white); }

.srv-card:nth-child(4) {
  --card-glow: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(129, 140, 248, 0.1), transparent);
  --card-icon-bg: rgba(129, 140, 248, 0.1);
  --card-accent: #a78bfa;
  --card-bar: linear-gradient(90deg, #a78bfa, #c4b5fd);
  color: #a78bfa;
}
.srv-card:nth-child(4) .srv-icon-wrap { color: #a78bfa; }
.srv-card:nth-child(4) h3,
.srv-card:nth-child(4) .srv-num { color: var(--white); }

/* Bottom CTA strip */
.srv-cta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 52px; padding: 28px 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px; background: rgba(255, 255, 255, 0.02);
}
.srv-cta p { font-size: 15px; color: rgba(255, 255, 255, 0.5); max-width: 480px; line-height: 1.6; }
.srv-cta p strong { color: var(--white); font-weight: 600; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 0.25s, color 0.25s, background 0.25s,
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap; flex-shrink: 0;
}
.btn-outline:hover {
  border-color: var(--indigo); color: #fff;
  background: rgba(99, 102, 241, 0.12);
  transform: translateY(-1px);
}


/* ══════════════════════════════════════
   PRODUCTS BANNER
══════════════════════════════════════ */
#products {
  background: #060614;
  padding: 108px var(--px);
  position: relative; overflow: hidden;
}

#products::before {
  content: ''; position: absolute;
  top: -40%; left: -20%; width: 140%; height: 180%;
  background: conic-gradient(
    from 210deg at 50% 50%,
    rgba(99, 102, 241, 0.055)  0deg,
    rgba(34, 211, 238, 0.035) 90deg,
    rgba(245, 158, 11, 0.025) 180deg,
    rgba(99, 102, 241, 0.055) 360deg
  );
  animation: prodBgSpin 25s linear infinite;
  pointer-events: none;
}
@keyframes prodBgSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

#products::after {
  content: ''; position: absolute;
  top: 20%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.15); }
}

.prod-wrap { max-width: 1440px; margin: 0 auto; position: relative; z-index: 1; }

.prod-head { text-align: center; margin-bottom: 72px; }
.prod-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 16px; border-radius: 100px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.08);
  font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber);
  font-weight: 600; margin-bottom: 20px;
}
.prod-eyebrow svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.prod-h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 16px;
}
.prod-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--indigo-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prod-lead { font-size: 16px; color: rgba(255, 255, 255, 0.4); max-width: 480px; margin: 0 auto; }

/* 3-col grid */
.prod-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; align-items: stretch;
}

/* Card base */
.prod-card {
  border-radius: 22px; overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative; display: flex; flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s, border-color 0.45s;
}
.prod-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Featured card */
.prod-featured {
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.1), inset 0 0 0 1px rgba(99, 102, 241, 0.15);
}
.prod-featured::before {
  content: ''; position: absolute; inset: -1px; border-radius: 23px;
  background: linear-gradient(135deg, var(--indigo), var(--cyan), var(--indigo));
  background-size: 300% 300%;
  animation: featuredBorder 5s ease infinite;
  z-index: -1; opacity: 0.35;
}
@keyframes featuredBorder {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Image area */
.prod-img-wrap {
  position: relative; height: 260px; overflow: hidden;
  background: #0a0a1a; flex-shrink: 0;
}
.prod-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform 0.7s ease; display: block;
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.13); }

/* Infographic overrides — SVGs need contain + themed bg, lighter overlay */
.card-stalls .prod-img-wrap {
  background: #F7F5FF;
}
.card-stalls .prod-img-wrap img {
  object-fit: contain; transform: scale(1); padding: 8px;
}
.card-stalls:hover .prod-img-wrap img { transform: scale(1.04); }
.card-stalls .prod-img-overlay {
  background: linear-gradient(to bottom, rgba(124,58,237,0.04) 0%, rgba(124,58,237,0.35) 100%);
}

.card-sphere .prod-img-wrap {
  background: #FFFBF0;
}
.card-sphere .prod-img-wrap img {
  object-fit: contain; transform: scale(1); padding: 8px;
}
.card-sphere:hover .prod-img-wrap img { transform: scale(1.04); }
.card-sphere .prod-img-overlay {
  background: linear-gradient(to bottom, rgba(180,83,9,0.04) 0%, rgba(180,83,9,0.35) 100%);
}

.prod-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6, 6, 20, 0.15) 0%, rgba(6, 6, 20, 0.8) 100%);
}

/* Badge */
.prod-badge {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; backdrop-filter: blur(12px);
}
.badge-soon {
  background: rgba(245, 158, 11, 0.85); color: #1a0e00;
  animation: soonPulse 2.5s ease-in-out infinite;
}
@keyframes soonPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  60%       { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}
.badge-soon svg { width: 10px; height: 10px; fill: currentColor; stroke: none; }
.badge-live {
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.4); color: var(--cyan);
}
.badge-featured { background: rgba(99, 102, 241, 0.88); color: #fff; }

/* Product icon */
.prod-img-icon {
  position: absolute; top: 234px; left: 24px;
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px); z-index: 10;
}
.prod-img-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* Card body */
.prod-body { padding: 40px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.prod-name {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 6px;
}
.prod-tagline { font-size: 12.5px; font-weight: 600; margin-bottom: 14px; }
.prod-desc { font-size: 13.5px; color: rgba(255, 255, 255, 0.45); line-height: 1.8; margin-bottom: 20px; }

/* Feature list */
.prod-features { margin-bottom: 26px; display: flex; flex-direction: column; gap: 8px; }
.prod-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(255, 255, 255, 0.55);
}
.prod-features li svg {
  width: 14px; height: 14px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* CTA */
.prod-cta-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: auto; padding-top: 16px;
}
.prod-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s, box-shadow 0.3s;
}
.prod-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.prod-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s; padding: 10px 0;
}
.prod-btn-ghost:hover { color: #fff; }
.prod-btn-ghost svg,
.prod-btn svg {
  width: 13px; height: 13px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Bottom accent bar */
.prod-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.prod-card:hover .prod-bar { transform: scaleX(1); }

/* Colour tokens per card */
.card-stalls { --cc: var(--amber); --cc2: #fbbf24; }
.card-stalls .prod-img-icon { background: rgba(245, 158, 11, 0.2); color: var(--amber); }
.card-stalls .prod-tagline  { color: var(--amber); }
.card-stalls .prod-features li svg { stroke: var(--amber); }
.card-stalls .prod-bar { background: linear-gradient(90deg, var(--amber), var(--cc2)); }
.card-stalls .prod-btn { background: var(--amber); color: #0d0900; }

.card-sphere { --cc: var(--indigo-l); --cc2: var(--cyan); }
.card-sphere .prod-img-icon { background: rgba(99, 102, 241, 0.2); color: var(--indigo-l); }
.card-sphere .prod-tagline  { color: var(--indigo-l); }
.card-sphere .prod-features li svg { stroke: var(--indigo-l); }
.card-sphere .prod-bar { background: linear-gradient(90deg, var(--indigo), var(--indigo-l)); }
.card-sphere .prod-btn { background: linear-gradient(135deg, var(--indigo), var(--indigo-l)); color: #fff; }

.card-mail { --cc: var(--cyan); --cc2: #38bdf8; }
.card-mail .prod-img-icon { background: rgba(34, 211, 238, 0.15); color: var(--cyan); }
.card-mail .prod-tagline  { color: var(--cyan); }
.card-mail .prod-features li svg { stroke: var(--cyan); }
.card-mail .prod-bar { background: linear-gradient(90deg, var(--cyan), var(--cc2)); }
.card-mail .prod-btn { background: linear-gradient(135deg, #0891B2, var(--cyan)); color: #fff; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════
   TRUSTED BY
══════════════════════════════════════ */
#trusted {
  background: #F5F4FF;
  padding: 76px 0 84px;
  overflow: hidden;
  position: relative;
}

/* Subtle top/bottom divider lines */
#trusted::before,
#trusted::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 1px;
}
#trusted::before { top: 0;    background: linear-gradient(90deg, transparent, rgba(99,102,241,.18), transparent); }
#trusted::after  { bottom: 0; background: linear-gradient(90deg, transparent, rgba(99,102,241,.18), transparent); }

.trust-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--px);
}

/* Section header */
.trust-head { text-align: center; margin-bottom: 52px; }

.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6366F1;
  margin-bottom: 14px;
}
.trust-eyebrow::before,
.trust-eyebrow::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: #6366F1; opacity: 0.35;
}

.trust-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: #1E1B4B;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.trust-title em {
  font-style: normal;
  background: linear-gradient(90deg, #6366F1, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-sub {
  font-size: 15px;
  color: #6B7280;
  margin-top: 10px;
}

/* Marquee wrapper — clip and fade edges */
.trust-track-wrap {
  position: relative;
  overflow: hidden;
}
.trust-track-wrap::before,
.trust-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px; z-index: 2; pointer-events: none;
}
.trust-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #F5F4FF 10%, transparent);
}
.trust-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #F5F4FF 10%, transparent);
}

/* Scrolling track */
.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoMarquee 28s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }

@keyframes logoMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Logo pill */
.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  flex-shrink: 0;
  border-right: 1px solid rgba(100,100,160,.1);
  filter: grayscale(1) opacity(.5);
  transition: filter .45s cubic-bezier(.25,.46,.45,.94);
  cursor: default;
}
.trust-logo:hover { filter: grayscale(0) opacity(1); }

/* Client logo image */
.tl-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* Intrax's wordmark is white — needs a dark backdrop to stay legible on this light section */
.trust-logo--dark {
  background: #14121F;
  border-radius: 10px;
  padding: 16px 28px;
}

/* Clients count strip */
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(99,102,241,.1);
}
.trust-stat-item { text-align: center; }
.trust-stat-num {
  font-family: var(--font-head);
  font-size: 32px; font-weight: 700;
  color: #1E1B4B; letter-spacing: -0.04em;
  line-height: 1;
}
.trust-stat-num span { color: #6366F1; }
.trust-stat-label { font-size: 12px; font-weight: 600; color: #9CA3AF; margin-top: 4px; letter-spacing: .04em; }
.trust-stat-sep { width: 1px; height: 40px; background: rgba(99,102,241,.15); }

@media (max-width: 640px) {
  .trust-logo { padding: 16px 32px; }
  .trust-stats { gap: 24px; }
  .trust-stat-num { font-size: 26px; }
}


/* ══════════════════════════════════════
   WHY CHOOSE SSAI
══════════════════════════════════════ */
#why-choose {
  background: #07070F;
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
}

/* Ambient radial glow */
#why-choose::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 640px;
  background: radial-gradient(ellipse, rgba(99,102,241,.07) 0%, transparent 65%);
  pointer-events: none;
}

.why-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--px);
}

/* Section header */
.why-head { text-align: center; margin-bottom: 64px; }

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase;
  color: #6366F1; margin-bottom: 16px;
}
.why-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }

.why-h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700; color: #fff;
  letter-spacing: -.035em; line-height: 1.08;
}
.why-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #818CF8, #22D3EE);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-lead {
  font-size: 16px; color: rgba(255,255,255,.42);
  margin: 14px auto 0; max-width: 500px; line-height: 1.65;
}

/* Cards grid — 3×2 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card base */
.why-card {
  position: relative;
  padding: 38px 32px 40px;
  border-radius: 20px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  transition:
    transform .38s cubic-bezier(.25,.46,.45,.94),
    background .38s, border-color .38s;
}

/* Top-edge glow sweep on hover */
.why-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, var(--card-glow) 0%, transparent 65%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.why-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.13);
}
.why-card:hover::after { opacity: 1; }

/* Icon box */
.why-icon {
  width: 56px; height: 56px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  color: var(--icon-color);
  transition: box-shadow .38s, background .38s;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card:hover .why-icon {
  box-shadow: 0 0 30px var(--icon-shadow);
  background: var(--icon-bg-h);
}

/* Card text */
.why-card h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: #fff; letter-spacing: -.018em;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px; line-height: 1.72;
  color: rgba(255,255,255,.4);
}

/* Per-card accent tokens */
.wc-ai {
  --icon-bg:     rgba(99,102,241,.12);
  --icon-bg-h:   rgba(99,102,241,.22);
  --icon-border: rgba(99,102,241,.28);
  --icon-color:  #818CF8;
  --icon-shadow: rgba(99,102,241,.4);
  --card-glow:   rgba(99,102,241,.1);
}
.wc-experts {
  --icon-bg:     rgba(34,211,238,.1);
  --icon-bg-h:   rgba(34,211,238,.2);
  --icon-border: rgba(34,211,238,.25);
  --icon-color:  #22D3EE;
  --icon-shadow: rgba(34,211,238,.35);
  --card-glow:   rgba(34,211,238,.08);
}
.wc-data {
  --icon-bg:     rgba(245,158,11,.1);
  --icon-bg-h:   rgba(245,158,11,.2);
  --icon-border: rgba(245,158,11,.25);
  --icon-color:  #FBBF24;
  --icon-shadow: rgba(245,158,11,.35);
  --card-glow:   rgba(245,158,11,.08);
}
.wc-e2e {
  --icon-bg:     rgba(16,185,129,.1);
  --icon-bg-h:   rgba(16,185,129,.2);
  --icon-border: rgba(16,185,129,.25);
  --icon-color:  #34D399;
  --icon-shadow: rgba(16,185,129,.35);
  --card-glow:   rgba(16,185,129,.08);
}
.wc-scale {
  --icon-bg:     rgba(139,92,246,.1);
  --icon-bg-h:   rgba(139,92,246,.2);
  --icon-border: rgba(139,92,246,.25);
  --icon-color:  #A78BFA;
  --icon-shadow: rgba(139,92,246,.35);
  --card-glow:   rgba(139,92,246,.08);
}
.wc-support {
  --icon-bg:     rgba(244,63,94,.1);
  --icon-bg-h:   rgba(244,63,94,.2);
  --icon-border: rgba(244,63,94,.25);
  --icon-color:  #FB7185;
  --icon-shadow: rgba(244,63,94,.35);
  --card-glow:   rgba(244,63,94,.08);
}

@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 30px 24px; }
}


/* ══════════════════════════════════════
   HOW WE HELP BUSINESSES GROW — PROCESS
══════════════════════════════════════ */
#process {
  background: #F8F7FF;
  padding: 96px 0 116px;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid texture */
#process::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(99,102,241,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.proc-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--px);
  position: relative;
}

/* ── Section Header ── */
.proc-head { text-align: center; margin-bottom: 72px; }

.proc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase;
  color: #6366F1; margin-bottom: 16px;
}
.proc-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }

.proc-h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700; color: #08081A;
  letter-spacing: -.038em; line-height: 1.08;
}
.proc-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #6366F1, #22D3EE);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proc-lead {
  font-size: 16px; color: rgba(8,8,26,.44);
  margin: 14px auto 0; max-width: 500px; line-height: 1.65;
}

/* ── Track row: numbered dots + animated connecting line ── */
.proc-track-row {
  position: relative;
  margin-bottom: 28px;
  height: 84px;
}

/* Dashed background rail that gets overwritten by animated fill */
.proc-rail {
  position: absolute;
  top: 22px;                        /* centre of 44-px dot */
  left: calc(12.5% - 7.5px);       /* aligns with centre of first grid cell */
  right: calc(12.5% - 7.5px);
  height: 3px; border-radius: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(99,102,241,.18) 0px, rgba(99,102,241,.18) 10px,
    transparent 10px, transparent 22px
  );
  overflow: hidden;
}

/* Solid gradient fill that animates left → right on scroll reveal */
.proc-rail-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #22D3EE 0%, #6366F1 33%, #8B5CF6 66%, #10B981 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.6s cubic-bezier(.25,.46,.45,.94) .5s;
}
.proc-flow.visible .proc-rail-fill { transform: scaleX(1); }

/* Dots grid */
.proc-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 1;
}

.proc-node { display: flex; flex-direction: column; align-items: center; gap: 7px; }

.proc-dot {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: #fff; border: 3px solid #F8F7FF;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.proc-node:hover .proc-dot { transform: scale(1.12); }

.proc-node-lbl {
  font-size: 10px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(8,8,26,.35);
}

.pn-1 .proc-dot { background: linear-gradient(135deg,#22D3EE,#0891B2); box-shadow: 0 0 0 4px rgba(34,211,238,.18), 0 4px 14px rgba(6,182,212,.3); }
.pn-2 .proc-dot { background: linear-gradient(135deg,#818CF8,#6366F1); box-shadow: 0 0 0 4px rgba(129,140,248,.18), 0 4px 14px rgba(99,102,241,.3); }
.pn-3 .proc-dot { background: linear-gradient(135deg,#C084FC,#8B5CF6); box-shadow: 0 0 0 4px rgba(192,132,252,.18), 0 4px 14px rgba(139,92,246,.3); }
.pn-4 .proc-dot { background: linear-gradient(135deg,#34D399,#10B981); box-shadow: 0 0 0 4px rgba(52,211,153,.18), 0 4px 14px rgba(16,185,129,.3); }

/* ── Process Cards ── */
.proc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proc-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 38px 28px 36px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(99,102,241,.08),
    0 4px 24px rgba(8,8,26,.06);
  transition: transform .38s cubic-bezier(.25,.46,.45,.94), box-shadow .38s;
}
.proc-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 0 0 1px rgba(99,102,241,.1),
    0 20px 50px rgba(8,8,26,.1),
    0 6px 12px rgba(8,8,26,.05);
}

/* Coloured top accent stripe */
.proc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.pc-discover::before   { background: linear-gradient(90deg,#22D3EE,#0891B2); }
.pc-strategize::before { background: linear-gradient(90deg,#818CF8,#6366F1); }
.pc-execute::before    { background: linear-gradient(90deg,#C084FC,#8B5CF6); }
.pc-optimize::before   { background: linear-gradient(90deg,#34D399,#10B981); }

/* Subtle spotlight that tracks hover (pure CSS — static at 50% without JS) */
.proc-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, var(--card-glow,rgba(99,102,241,.06)) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.proc-card:hover::after { opacity: 1; }
.pc-discover   { --card-glow: rgba(6,182,212,.07); }
.pc-strategize { --card-glow: rgba(99,102,241,.08); }
.pc-execute    { --card-glow: rgba(139,92,246,.07); }
.pc-optimize   { --card-glow: rgba(16,185,129,.07); }

/* Giant watermark step number */
.proc-wmark {
  position: absolute; bottom: -32px; right: -4px;
  font-family: var(--font-head);
  font-size: 168px; font-weight: 700; line-height: 1; letter-spacing: -.04em;
  user-select: none; pointer-events: none;
}
.pc-discover   .proc-wmark { color: rgba(6,182,212,.055); }
.pc-strategize .proc-wmark { color: rgba(99,102,241,.055); }
.pc-execute    .proc-wmark { color: rgba(139,92,246,.055); }
.pc-optimize   .proc-wmark { color: rgba(16,185,129,.055); }

/* Card icon */
.proc-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #fff;
  transition: box-shadow .38s;
}
.proc-card:hover .proc-icon { box-shadow: 0 6px 20px var(--icon-shadow,rgba(99,102,241,.35)); }
.pc-discover   .proc-icon { background: linear-gradient(135deg,#22D3EE,#0891B2); --icon-shadow: rgba(6,182,212,.4); }
.pc-strategize .proc-icon { background: linear-gradient(135deg,#818CF8,#6366F1); --icon-shadow: rgba(99,102,241,.4); }
.pc-execute    .proc-icon { background: linear-gradient(135deg,#C084FC,#8B5CF6); --icon-shadow: rgba(139,92,246,.4); }
.pc-optimize   .proc-icon { background: linear-gradient(135deg,#34D399,#10B981); --icon-shadow: rgba(16,185,129,.4); }
.proc-icon svg { width: 23px; height: 23px; }

/* Text */
.proc-card h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: #08081A; letter-spacing: -.02em; margin-bottom: 10px;
}
.proc-card > p {
  font-size: 14px; line-height: 1.74;
  color: rgba(8,8,26,.46); margin-bottom: 24px;
}

/* Deliverable bullet list */
.proc-delivers { display: flex; flex-direction: column; gap: 8px; }

.proc-deliv {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(8,8,26,.58);
}
.proc-deliv::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.pc-discover   .proc-deliv::before { background: #22D3EE; }
.pc-strategize .proc-deliv::before { background: #6366F1; }
.pc-execute    .proc-deliv::before { background: #8B5CF6; }
.pc-optimize   .proc-deliv::before { background: #10B981; }

/* ── Bottom USP strip ── */
.proc-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  margin-top: 44px; padding: 28px 38px;
  background: linear-gradient(135deg,rgba(99,102,241,.07) 0%,rgba(34,211,238,.05) 100%);
  border: 1px solid rgba(99,102,241,.13); border-radius: 20px;
}

.proc-strip-left { display: flex; flex-direction: column; gap: 5px; }

.proc-strip-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: #6366F1; background: rgba(99,102,241,.1);
  padding: 3px 10px; border-radius: 20px; width: max-content;
}
.proc-strip-badge svg { width: 10px; height: 10px; }

.proc-strip-left p {
  font-size: 15px; color: rgba(8,8,26,.56); margin: 0; line-height: 1.5;
}
.proc-strip-left strong { color: #08081A; font-weight: 600; }

.proc-strip-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 40px;
  background: linear-gradient(135deg,#6366F1,#4F46E5);
  color: #fff; font-size: 14px; font-weight: 600; text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(99,102,241,.32);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.proc-strip-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(99,102,241,.42);
}
.proc-strip-btn svg { width: 16px; height: 16px; transition: transform .3s; }
.proc-strip-btn:hover svg { transform: translateX(3px); }

/* ── Responsive ── */
@media (max-width: 1060px) {
  .proc-cards { grid-template-columns: repeat(2, 1fr); }
  .proc-nodes, .proc-rail { display: none; }
  .proc-track-row { display: none; }
}
@media (max-width: 640px) {
  .proc-cards { grid-template-columns: 1fr; }
  .proc-strip { flex-direction: column; align-items: flex-start; }
  .proc-card { padding: 30px 22px; }
  .proc-wmark { font-size: 120px; }
}


/* ══════════════════════════════════════
   INDUSTRIES WE SERVE
══════════════════════════════════════ */
#industries {
  background: #06060E;
  padding: 96px 0 112px;
  position: relative; overflow: hidden;
}

.ind-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 var(--px); position: relative;
}

/* ── Editorial split header: text left, big number right ── */
.ind-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 40px; margin-bottom: 52px;
}

.ind-head-text { max-width: 560px; }

.ind-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase;
  color: #818CF8; margin-bottom: 16px;
}
.ind-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }

.ind-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700; color: #fff;
  letter-spacing: -.036em; line-height: 1.1;
}
.ind-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #818CF8, #22D3EE);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ind-lead {
  font-size: 15px; color: rgba(255,255,255,.4);
  margin-top: 14px; line-height: 1.66;
}

/* Decorative count: "08" */
.ind-counter { text-align: right; flex-shrink: 0; padding-bottom: 4px; }

.ind-counter-num {
  display: block;
  font-family: var(--font-head);
  font-size: 108px; font-weight: 700;
  letter-spacing: -.05em; line-height: 1;
  background: linear-gradient(170deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,.02) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ind-counter-label {
  display: block; margin-top: 4px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.18);
}

/* ── Bento grid — 4 cols, named areas ── */
.ind-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "mfg   mfg    itsaas health"
    "mfg   mfg    edu    retail"
    "reale trade  trade  start";
  gap: 16px;
}

/* Area assignments */
.ic-mfg    { grid-area: mfg; }
.ic-itsaas { grid-area: itsaas; }
.ic-health { grid-area: health; }
.ic-edu    { grid-area: edu; }
.ic-retail { grid-area: retail; }
.ic-reales { grid-area: reale; }
.ic-trade  { grid-area: trade; }
.ic-start  { grid-area: start; }

/* Per-industry accent colour tokens */
.ic-mfg    { --acc: #F97316; --ar: 249,115,22; }
.ic-itsaas { --acc: #6366F1; --ar: 99,102,241; }
.ic-health { --acc: #10B981; --ar: 16,185,129; }
.ic-edu    { --acc: #06B6D4; --ar: 6,182,212; }
.ic-retail { --acc: #EC4899; --ar: 236,72,153; }
.ic-reales { --acc: #8B5CF6; --ar: 139,92,246; }
.ic-trade  { --acc: #3B82F6; --ar: 59,130,246; }
.ic-start  { --acc: #F59E0B; --ar: 245,158,11; }

/* Card base */
.ind-card {
  position: relative; border-radius: 20px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden; padding: 30px 28px;
  display: flex; flex-direction: column;
  transition: transform .36s cubic-bezier(.25,.46,.45,.94),
              border-color .36s, background .36s;
}
.ind-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--ar), .3);
  background: rgba(var(--ar), .04);
}

/* Top-edge radial glow on hover */
.ind-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% -5%, rgba(var(--ar), .14) 0%, transparent 62%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.ind-card:hover::before { opacity: 1; }

/* Diagonal hatch texture on featured card */
.ic-mfg::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(45deg, rgba(249,115,22,.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(249,115,22,.04) 25%, transparent 25%);
  background-size: 28px 28px; pointer-events: none;
}

/* Icon box */
.ind-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 18px;
  background: rgba(var(--ar), .13);
  border: 1px solid rgba(var(--ar), .24);
  color: var(--acc);
  position: relative; z-index: 1;
  transition: box-shadow .36s, background .36s;
}
.ind-card:hover .ind-icon {
  box-shadow: 0 0 28px rgba(var(--ar), .36);
  background: rgba(var(--ar), .22);
}
.ind-icon svg { width: 22px; height: 22px; }

/* Card text */
.ind-name {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: #fff; letter-spacing: -.015em;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.ind-desc {
  font-size: 13px; line-height: 1.68;
  color: rgba(255,255,255,.38);
  position: relative; z-index: 1;
}

/* ── Featured card: Manufacturing 2 × 2 ── */
.ic-mfg { padding: 38px 36px; }

.ic-mfg .ind-icon {
  width: 62px; height: 62px; border-radius: 17px; margin-bottom: 0;
}
.ic-mfg .ind-icon svg { width: 28px; height: 28px; }

.ic-mfg .ind-name {
  font-size: 25px; letter-spacing: -.03em; margin: 22px 0 11px;
}
.ic-mfg .ind-desc {
  font-size: 14px; line-height: 1.74;
  color: rgba(255,255,255,.42); max-width: 270px;
}

/* Mini stats bar inside featured card */
.ind-mfg-stats {
  display: flex; gap: 0;
  margin-top: auto; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative; z-index: 1;
}
.ind-mfg-stat { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.ind-mfg-stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.07);
  padding-right: 18px; margin-right: 18px;
}
.ind-mfg-stat-num {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700; color: #F97316;
}
.ind-mfg-stat-lbl {
  font-size: 10.5px; color: rgba(255,255,255,.3);
  text-transform: uppercase; font-weight: 600; letter-spacing: .08em;
}

/* ── Wide card: Trade Shows 2 × 1 horizontal ── */
.ic-trade { flex-direction: row; align-items: center; gap: 24px; padding: 28px 36px; }
.ic-trade .ind-icon { margin-bottom: 0; }
.ic-trade .ind-body { flex: 1; }
.ic-trade .ind-name { margin-bottom: 6px; }

/* Responsive */
@media (max-width: 900px) {
  .ind-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "mfg    mfg"
      "itsaas health"
      "edu    retail"
      "reale  start"
      "trade  trade";
  }
  .ic-trade { flex-direction: column; align-items: flex-start; }
  .ind-head { flex-direction: column; gap: 16px; }
  .ind-counter { text-align: left; }
  .ind-counter-num { font-size: 72px; }
}
@media (max-width: 520px) {
  .ind-bento {
    grid-template-columns: 1fr;
    grid-template-areas: "mfg" "itsaas" "health" "edu" "retail" "reale" "trade" "start";
  }
  .ic-trade { flex-direction: column; }
}


/* ══════════════════════════════════════
   INDUSTRIES VISUAL GALLERY
══════════════════════════════════════ */
#ind-gallery {
  background: #08081A;
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}

/* Subtle top separator */
#ind-gallery::before {
  content: '';
  position: absolute; top: 0; left: var(--px); right: var(--px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1) 30%, rgba(255,255,255,.1) 70%, transparent);
}

.ig-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 var(--px);
}

/* Section header */
.ig-head { text-align: center; margin-bottom: 52px; }

.ig-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase;
  color: #818CF8; margin-bottom: 16px;
}
.ig-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }

.ig-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700; color: #fff;
  letter-spacing: -.036em; line-height: 1.1;
}
.ig-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #818CF8, #22D3EE);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ig-lead {
  font-size: 15px; color: rgba(255,255,255,.4);
  margin: 14px auto 0; max-width: 560px; line-height: 1.66;
}

/* 4 × 2 image grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 260px;
  gap: 12px;
}

/* Card */
.ig-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/* Image */
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.ig-card:hover img { transform: scale(1.08); }

/* Dark gradient overlay — bottom-heavy */
.ig-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(4,4,14,.92) 0%,
    rgba(4,4,14,.45) 40%,
    rgba(4,4,14,.08) 70%,
    transparent 100%
  );
  transition: background .5s;
}
.ig-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(4,4,14,.95) 0%,
    rgba(4,4,14,.6)  50%,
    rgba(4,4,14,.15) 80%,
    transparent 100%
  );
}

/* Coloured sliding bottom accent line on hover */
.ig-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--acc, #6366F1); z-index: 3;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.ig-card:hover::after { transform: scaleX(1); }

/* Industry accent tokens (same palette as bento) */
.ig-mfg    { --acc: #F97316; --ar: 249,115,22; }
.ig-itsaas { --acc: #6366F1; --ar: 99,102,241; }
.ig-health { --acc: #10B981; --ar: 16,185,129; }
.ig-edu    { --acc: #06B6D4; --ar: 6,182,212; }
.ig-retail { --acc: #EC4899; --ar: 236,72,153; }
.ig-reales { --acc: #8B5CF6; --ar: 139,92,246; }
.ig-trade  { --acc: #3B82F6; --ar: 59,130,246; }
.ig-start  { --acc: #F59E0B; --ar: 245,158,11; }

/* Fallback bg per card (shown if image 404s) */
.ig-mfg    { background: #1A0E06; }
.ig-itsaas { background: #0D0D1F; }
.ig-health { background: #051A12; }
.ig-edu    { background: #041517; }
.ig-retail { background: #1A0710; }
.ig-reales { background: #100A1A; }
.ig-trade  { background: #061017; }
.ig-start  { background: #1A1005; }

/* Accent badge — top-left */
.ig-badge {
  position: absolute; top: 16px; left: 16px;
  z-index: 2; display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(var(--ar), .22);
  border: 1px solid rgba(var(--ar), .35);
  backdrop-filter: blur(8px);
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--acc);
  transition: background .3s;
}
.ig-card:hover .ig-badge { background: rgba(var(--ar), .36); }
.ig-badge svg { width: 9px; height: 9px; }

/* Content area — bottom */
.ig-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 22px 20px;
  z-index: 2;
}

.ig-num {
  display: block;
  font-size: 9px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  margin-bottom: 5px;
}

.ig-name {
  font-family: var(--font-head);
  font-size: 19px; font-weight: 700; color: #fff;
  letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: 0;
  transition: margin-bottom .38s cubic-bezier(.25,.46,.45,.94);
}
.ig-card:hover .ig-name { margin-bottom: 8px; }

.ig-desc {
  font-size: 12.5px; line-height: 1.6;
  color: rgba(255,255,255,.6);
  opacity: 0; transform: translateY(6px);
  transition: opacity .38s .06s, transform .38s .06s;
}
.ig-card:hover .ig-desc { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 960px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 240px);
  }
}
@media (max-width: 520px) {
  .ig-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 220px);
  }
}


/* ══════════════════════════════════════
   BUSINESS STATISTICS
══════════════════════════════════════ */
#stats {
  background: #F5F4FF;
  padding: 64px 0 76px;
  position: relative;
  border-top: 1px solid rgba(10,10,20,.07);
}

#stats::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 360px;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,.06) 0%, transparent 68%);
  pointer-events: none;
}

.stats-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 var(--px);
  position: relative;
}

/* ── Ruled banner header ── */
.stats-banner {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px;
}
.stats-banner-rule {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(10,10,20,.12), transparent);
}
.stats-banner-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(10,10,20,.32);
  white-space: nowrap;
}

/* ── Heading block ── */
.stats-heading-block { margin-bottom: 40px; }

.stats-h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 36px); font-weight: 700;
  color: #08081A; letter-spacing: -.038em; line-height: 1.08;
  max-width: 480px;
}
.stats-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #6366F1 0%, #06B6D4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-sub {
  font-size: 14px; color: rgba(8,8,26,.4);
  margin-top: 10px; max-width: 380px; line-height: 1.62;
}

/* ── Grid: 3 cols × 2 rows, dark 1px separators on light bg ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10,10,20,.1);
  border-left: 1px solid rgba(10,10,20,.1);
}

.stat-item {
  position: relative;
  padding: 40px 44px 36px;
  border-right: 1px solid rgba(10,10,20,.1);
  border-bottom: 1px solid rgba(10,10,20,.1);
  overflow: hidden;
}

/* Per-card hover glow */
.stat-item::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 20%, rgba(var(--ar,99,102,241),.07) 0%, transparent 60%);
  opacity: 0; transition: opacity .45s;
  pointer-events: none;
}
.stat-item:hover::before { opacity: 1; }

/* ── Number — slide-up reveal ── */
.stat-num-clip { overflow: hidden; margin-bottom: 16px; }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(34px, 3.4vw, 52px); font-weight: 700;
  letter-spacing: -.046em; line-height: 1;
  color: var(--acc, #6366F1);
  transform: translateY(110%);
  transition: transform 1.05s cubic-bezier(.77,0,.18,1) var(--nd, 0s);
}
.stats-grid.visible .stat-num { transform: translateY(0); }

/* ── Growing accent rule ── */
.stat-rule {
  width: 0; height: 2px; border-radius: 1px;
  background: var(--acc, #6366F1); opacity: .5;
  margin-bottom: 16px;
  transition: width 2.2s cubic-bezier(.25,.46,.45,.94) var(--ld, .5s);
}
.stats-grid.visible .stat-rule { width: 44px; }

/* ── Labels ── */
.stat-name {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  color: rgba(8,8,26,.78);
  letter-spacing: -.01em; margin-bottom: 4px;
}
.stat-note {
  font-size: 11px; color: rgba(8,8,26,.35); letter-spacing: .03em;
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 32px 32px 28px; }
}
@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 28px 24px 24px; }
  .stat-num { font-size: clamp(34px, 10vw, 48px); }
}


/* ══════════════════════════════════════
   LATEST INSIGHTS
══════════════════════════════════════ */
#insights {
  background: #06060E;
  padding: 88px 0 104px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.ins-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 var(--px);
}

/* Header row — title left, filter pills right */
.ins-top {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px;
  margin-bottom: 52px; flex-wrap: wrap;
}

.ins-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #6366F1; margin-bottom: 12px;
}
.ins-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }

.ins-h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 40px); font-weight: 700;
  color: #fff; letter-spacing: -.038em; line-height: 1.1;
}
.ins-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #818CF8, #67E8F9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Filter pill buttons */
.ins-filters { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.ins-tab {
  padding: 9px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px; font-weight: 600; font-family: inherit;
  color: rgba(255,255,255,.4); background: transparent; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.ins-tab:hover { color: #fff; border-color: rgba(255,255,255,.28); }
.ins-tab.active { background: #6366F1; border-color: #6366F1; color: #fff; }

/* 3-col card grid */
.ins-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.ins-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 32px 32px 28px 40px;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: background .3s, transform .35s cubic-bezier(.25,.46,.45,.94), border-color .3s;
}
.ins-card:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-5px);
}

/* Left accent stripe — uses per-card --bc color */
.ins-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--bc, #6366F1);
}

/* Badge + read time */
.ins-card-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 18px;
}
.ins-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bc, #818CF8);
}
.ins-read { font-size: 11px; color: rgba(255,255,255,.22); }

/* Title */
.ins-title {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,.86); letter-spacing: -.012em; line-height: 1.42;
  margin-bottom: 12px; flex: 1;
  transition: color .2s;
}
.ins-card:hover .ins-title { color: #fff; }

/* Excerpt */
.ins-desc {
  font-size: 13px; color: rgba(255,255,255,.32);
  line-height: 1.65; margin-bottom: 24px;
}

/* Footer */
.ins-foot {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ins-date { font-size: 12px; color: rgba(255,255,255,.24); }
.ins-arrow {
  font-size: 13px; font-weight: 600; color: var(--bc, #6366F1);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .25s, transform .28s cubic-bezier(.25,.46,.45,.94);
}
.ins-card:hover .ins-arrow { opacity: 1; transform: translateX(0); }

/* Responsive */
@media (max-width: 900px) {
  .ins-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .ins-grid { grid-template-columns: 1fr; }
  .ins-top { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════
   CALL TO ACTION
══════════════════════════════════════ */
#cta {
  background-color: #020209;
  /* Subtle dot grid — adds texture without noise */
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 32px 32px;
  padding: 80px 0 88px;
}

.cta-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 var(--px);
}

/* Full-width horizontal rule — top and bottom */
.cta-rule {
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255,255,255,.1) 15%,
    rgba(255,255,255,.1) 85%,
    transparent 100%
  );
}

/* Main row: headline left / buttons right */
.cta-body {
  display: flex; align-items: center;
  justify-content: space-between; gap: 80px;
  padding: 72px 0;
}

.cta-text { flex: 1; min-width: 0; }

.cta-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: #6366F1;
  display: block; margin-bottom: 18px;
}

.cta-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 46px); font-weight: 700;
  color: #fff; letter-spacing: -.04em; line-height: 1.1;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 14px; color: rgba(255,255,255,.3); line-height: 1.65;
  max-width: 380px;
}

/* Buttons — stacked column, right-aligned */
.cta-actions {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px; flex-shrink: 0;
}

.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  background: #6366F1; color: #fff;
  font-size: 14px; font-weight: 600; font-family: inherit;
  text-decoration: none; border: none; cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .25s cubic-bezier(.25,.46,.45,.94);
}
.cta-btn-primary:hover { background: #4F46E5; transform: translateY(-2px); }
.cta-btn-primary svg { flex-shrink: 0; transition: transform .2s; }
.cta-btn-primary:hover svg { transform: translateX(3px); }

/* Ghost: text-only, no border — intentionally minimal */
.cta-btn-ghost {
  font-size: 13px; font-weight: 600; font-family: inherit;
  color: rgba(255,255,255,.32); text-decoration: none;
  background: none; border: none; cursor: pointer;
  padding: 4px 0;
  transition: color .2s;
  white-space: nowrap;
}
.cta-btn-ghost:hover { color: rgba(255,255,255,.7); }

/* Responsive */
@media (max-width: 760px) {
  .cta-body { flex-direction: column; align-items: flex-start; gap: 36px; padding: 52px 0; }
  .cta-actions { align-items: flex-start; }
}
@media (max-width: 480px) {
  .cta-btn-primary { width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact {
  background: #FAFAFE;
  padding: 96px 0 112px;
  border-top: 1px solid rgba(10,10,20,.07);
}
.con-inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--px); }

/* ── Header ── */
.con-head { margin-bottom: 64px; }
.con-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #6366F1; margin-bottom: 12px;
}
.con-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }
.con-h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 42px); font-weight: 700;
  color: #08081A; letter-spacing: -.038em; line-height: 1.1;
  margin-bottom: 10px;
}
.con-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #6366F1, #06B6D4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.con-lead { font-size: 14px; color: rgba(8,8,26,.38); max-width: 400px; line-height: 1.65; }

/* ── Two-column layout ── */
.con-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 64px; align-items: start;
}

/* ── Left: info items ── */
.con-info-items { margin-bottom: 28px; }
.con-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10,10,20,.07);
}
.con-info-item:first-child { border-top: 1px solid rgba(10,10,20,.07); }

.con-ii-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(99,102,241,.08);
  display: flex; align-items: center; justify-content: center;
  color: #6366F1;
}
.con-ii-icon svg { width: 15px; height: 15px; }

.con-ii-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(8,8,26,.32); margin-bottom: 3px;
}
.con-ii-val {
  font-size: 14px; font-weight: 600; color: #08081A;
  text-decoration: none; transition: color .2s; display: block;
}
a.con-ii-val:hover { color: #6366F1; }
.con-ii-val.addr {
  font-weight: 400; color: rgba(8,8,26,.62);
  line-height: 1.6; font-size: 13px;
}

/* Map */
.con-map {
  border-radius: 14px; overflow: hidden;
  height: 210px; border: 1px solid rgba(10,10,20,.08);
}
.con-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(1) contrast(1.04) brightness(.94);
}

/* ── Right: form card ── */
.con-form-card {
  background: #fff;
  border: 1px solid rgba(10,10,20,.08);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 4px 32px rgba(10,10,20,.05);
}

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.cf-field { display: flex; flex-direction: column; margin-bottom: 18px; }
.cf-row .cf-field { margin-bottom: 0; }

.cf-field label {
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  color: rgba(8,8,26,.48); margin-bottom: 7px;
  text-transform: uppercase;
}
.cf-field input,
.cf-field textarea {
  border: 1px solid rgba(10,10,20,.1); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; font-family: inherit;
  color: #08081A; background: #FAFAFE; outline: none; resize: vertical;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(8,8,26,.22); }
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: #6366F1; background: #fff;
  box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}
.cf-field textarea { min-height: 116px; }

.cf-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 10px; margin-top: 6px;
  background: #6366F1; color: #fff;
  font-size: 14px; font-weight: 600; font-family: inherit;
  border: none; cursor: pointer;
  transition: background .2s, transform .25s cubic-bezier(.25,.46,.45,.94);
}
.cf-submit:hover { background: #4F46E5; transform: translateY(-2px); }
.cf-submit svg { flex-shrink: 0; transition: transform .2s; }
.cf-submit:hover svg { transform: translateX(3px); }

/* Responsive */
@media (max-width: 960px) {
  .con-grid { grid-template-columns: 1fr; gap: 44px; }
  .con-form-card { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; margin-bottom: 0; }
  .cf-row .cf-field { margin-bottom: 18px; }
  .con-form-card { padding: 28px 20px; }
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#site-footer {
  background: #03030A;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ftr-inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--px); }

/* ── Brand row ── */
.ftr-brand-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 48px;
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.ftr-logo {
  display: block; margin-bottom: 12px;
}
.ftr-logo img {
  height: 38px; width: auto; display: block;
}
.ftr-tagline {
  font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.6;
  max-width: 220px;
}
.ftr-brand-note {
  font-size: 12px; color: rgba(255,255,255,.38); max-width: 300px;
  line-height: 1.65; text-align: right;
}

/* ── 6-column link grid ── */
.ftr-cols {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 24px; padding: 52px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ftr-col-head {
  font-family: var(--font-head);
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: 18px; display: block;
}
.ftr-links { list-style: none; margin: 0; padding: 0; }
.ftr-links li + li { margin-top: 11px; }
.ftr-links a {
  font-size: 13px; color: rgba(255,255,255,.3);
  text-decoration: none; transition: color .18s;
  display: inline-flex; align-items: center; gap: 7px;
}
.ftr-links a:hover { color: rgba(255,255,255,.78); }
.ftr-links a svg { width: 12px; height: 12px; flex-shrink: 0; opacity: .5; }
.ftr-links a:hover svg { opacity: 1; }

/* ── Bottom bar ── */
.ftr-bottom {
  padding: 22px 0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.ftr-copy { font-size: 12px; color: rgba(255,255,255,.18); }
.ftr-soc-row { display: flex; gap: 2px; }
.ftr-soc {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.28); text-decoration: none;
  transition: color .18s, background .18s;
}
.ftr-soc:hover { color: #fff; background: rgba(255,255,255,.07); }
.ftr-soc svg { width: 15px; height: 15px; }

/* Responsive */
@media (max-width: 1040px) {
  .ftr-cols { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
}
@media (max-width: 640px) {
  .ftr-cols { grid-template-columns: repeat(2, 1fr); }
  .ftr-brand-note { text-align: left; }
  .ftr-brand-row { padding: 48px 0 40px; }
}
@media (max-width: 480px) {
  .ftr-cols { grid-template-columns: 1fr; }
  .ftr-brand-row { flex-direction: column; align-items: flex-start; gap: 28px; }
  .ftr-brand-note { max-width: 100%; }
}
@media (max-width: 400px) {
  .ftr-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-item.hide-md { display: none; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  .prod-grid .card-mail { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-list { display: none; }
  .tb-left .tb-item:not(:first-child) { display: none; }
}

@media (max-width: 640px) {
  .srv-grid { grid-template-columns: 1fr; }
  .srv-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
  #services { padding: 72px var(--px); }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-grid .card-mail { grid-column: auto; }
  #products { padding: 72px var(--px); }
}

@media (max-width: 560px) {
  .tb-right .tb-item.tb-txt { display: none; }
  #float-bar { right: 14px; bottom: 22px; }
}

@media (max-width: 768px) {
  #float-bar { display: none; }
}

/* Fix header CTA overflow on narrow mobile screens */
@media (max-width: 430px) {
  .hd-inner { gap: 8px; }
  .hd-right  { gap: 4px; }
  .btn-cta   { padding: 9px 11px; font-size: 13px; }
}


/* ══════════════════════════════════════
   LIGHT / DARK SECTION THEME OVERRIDES
   Light: #services, #ind-gallery, #insights
   Dark:  #stats (flipped from light)
══════════════════════════════════════ */

/* ── SERVICES → WHITE ── */
#services {
  background: #FFFFFF;
}
#services::before {
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
}
#services .srv-h2 { color: #08081A; }
#services .srv-lead { color: rgba(8,8,26,0.48); }
#services .srv-grid {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.07);
}
#services .srv-card { background: #FFFFFF; }
#services .srv-card:hover { background: #F5F3FF; }
#services .srv-num { color: rgba(8,8,26,0.18); }
#services .srv-card h3 { color: #0A0A1E; }
#services .srv-card p { color: rgba(8,8,26,0.5); }
#services .srv-link { color: rgba(8,8,26,0.38); }
#services .srv-card:hover .srv-link { color: var(--card-accent, #6366F1); }

/* ── INDUSTRIES GALLERY → LIGHT LAVENDER ── */
#ind-gallery {
  background: #F0EEFF;
}
#ind-gallery::before {
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.15) 30%, rgba(99,102,241,0.15) 70%, transparent);
}
#ind-gallery .ig-h2 { color: #08081A; }
#ind-gallery .ig-lead { color: rgba(8,8,26,0.48); }

/* ── STATS → DARK ── */
#stats {
  background: #07070F;
  border-top: 1px solid rgba(255,255,255,0.06);
}
#stats::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.14) 0%, transparent 68%);
}
#stats .stats-banner-rule {
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.13), transparent);
}
#stats .stats-banner-lbl { color: rgba(255,255,255,0.28); }
#stats .stats-h2 { color: #FFFFFF; }
#stats .stats-h2 em {
  background: linear-gradient(90deg, #818CF8 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#stats .stats-sub { color: rgba(255,255,255,0.38); }
#stats .stats-grid {
  border-top-color: rgba(255,255,255,0.08);
  border-left-color: rgba(255,255,255,0.08);
}
#stats .stat-item {
  border-right-color: rgba(255,255,255,0.08);
  border-bottom-color: rgba(255,255,255,0.08);
}
#stats .stat-name { color: rgba(255,255,255,0.82); }
#stats .stat-note { color: rgba(255,255,255,0.32); }

/* ── INSIGHTS → LIGHT LAVENDER ── */
#insights {
  background: #F8F7FF;
  border-top: 1px solid rgba(8,8,26,0.07);
}
#insights .ins-h2 { color: #08081A; }
#insights .ins-tab {
  border-color: rgba(8,8,26,0.13);
  color: rgba(8,8,26,0.44);
  background: transparent;
}
#insights .ins-tab:hover {
  color: #08081A;
  border-color: rgba(8,8,26,0.28);
  background: rgba(8,8,26,0.04);
}
#insights .ins-tab.active {
  background: #6366F1;
  border-color: #6366F1;
  color: #fff;
}
#insights .ins-card {
  background: rgba(255,255,255,0.85);
  border-color: rgba(8,8,26,0.1);
}
#insights .ins-card:hover {
  background: #FFFFFF;
  border-color: rgba(8,8,26,0.16);
  transform: translateY(-5px);
}
#insights .ins-read { color: rgba(8,8,26,0.28); }
#insights .ins-title { color: rgba(8,8,26,0.84); }
#insights .ins-card:hover .ins-title { color: #08081A; }
#insights .ins-desc { color: rgba(8,8,26,0.46); }
#insights .ins-foot { border-top-color: rgba(8,8,26,0.08); }
#insights .ins-date { color: rgba(8,8,26,0.28); }

/* ══════════════════════════════════════
   FORM VALIDATION STATES
══════════════════════════════════════ */
.fv-invalid {
  border-color: #EF4444 !important;
  outline-color: #EF4444;
}
.fv-error {
  display: none;
  margin-top: 4px;
  font-size: 12px;
  color: #EF4444;
  font-family: var(--font-body);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   Content protection — block text selection / drag
   outside form fields. Deterrent only.
══════════════════════════════════════════════ */
body {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, [contenteditable="true"] {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
img {
  -webkit-user-drag: none;
  pointer-events: auto;
}
