/* ============================================================
   Limitless Technology Solutions — styles
   Dark / OLED, blue-gradient brand, premium tech-advisory
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --bg: #05070d;
  --bg-2: #080b14;
  --surface: #0d1320;
  --surface-2: #111a2b;
  --surface-3: #16223a;
  --border: rgba(140, 170, 210, 0.12);
  --border-strong: rgba(140, 170, 210, 0.22);

  /* brand */
  --brand: #5bb8f0;
  --brand-2: #9bd0f2;
  --brand-3: #d7e5ee;
  --brand-grad: linear-gradient(135deg, #5bb8f0 0%, #9bd0f2 55%, #d7e5ee 100%);
  --brand-glow: rgba(91, 184, 240, 0.45);

  /* text */
  --text: #eaf1f9;
  --text-muted: #9fb0c6;
  --text-dim: #6c7b92;

  /* type */
  --font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* layout */
  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brand);
  opacity: 0.6;
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-top: 18px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.075rem;
  margin-top: 18px;
}

.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--brand-grad);
  color: #04101c;
  box-shadow: 0 8px 30px -8px var(--brand-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--brand-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--brand);
  background: rgba(91, 184, 240, 0.08);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 34px; font-size: 1.02rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
}
.brand img { width: 38px; height: 38px; }
.brand .brand-name { font-size: 1.05rem; letter-spacing: -0.01em; }
.brand .brand-name span { color: var(--text-dim); font-weight: 400; display: block; font-size: 0.68rem; letter-spacing: 0.05em; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.94rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--brand-grad);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-aurora {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  z-index: 0;
  background:
    radial-gradient(40% 60% at 25% 20%, rgba(91, 184, 240, 0.22), transparent 70%),
    radial-gradient(45% 55% at 78% 30%, rgba(120, 90, 230, 0.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora {
  0% { transform: translate3d(-2%, 0, 0) scale(1); }
  100% { transform: translate3d(4%, 3%, 0) scale(1.12); }
}
.hero-grid-fade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(140,170,210,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,170,210,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.hero-badge b { color: var(--brand); font-weight: 600; }
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  letter-spacing: -0.035em;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero p.lead {
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-muted);
  max-width: 620px;
}
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-trust {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 44px;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.86rem;
}
.hero-trust .ht-item { display: flex; align-items: center; gap: 9px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--brand); }

/* ---------- Stats strip ---------- */
.stats {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat {
  background: var(--bg);
  padding: 34px 26px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat .lbl { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }

/* ---------- Service Finder ---------- */
.finder {
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(91,184,240,0.06), transparent 70%),
    var(--bg);
}
.finder-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}
.finder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(91,184,240,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.finder h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.finder-sub { color: var(--text-muted); margin-top: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.chip {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
  font-size: 0.93rem;
  font-weight: 500;
  transition: all 0.22s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--text); transform: translateY(-2px); }
.chip.active {
  background: var(--brand-grad);
  color: #04101c;
  border-color: transparent;
  font-weight: 600;
}
.finder-result {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(91,184,240,0.05);
  display: none;
  gap: 18px;
  align-items: flex-start;
}
.finder-result.show { display: flex; animation: fadeUp 0.5s var(--ease); }
.finder-result .icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(91,184,240,0.14);
  color: var(--brand);
}
.finder-result .icon svg { width: 24px; height: 24px; }
.finder-result h4 { font-size: 1.1rem; }
.finder-result p { color: var(--text-muted); margin-top: 6px; font-size: 0.95rem; }
.finder-result .btn { margin-top: 16px; }

/* ---------- Bento services ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(91,184,240,0.16), transparent 65%);
  top: var(--my, 50%); left: var(--mx, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.card:hover::after { opacity: 1; }

.svc { grid-column: span 2; }
.svc.wide { grid-column: span 3; }
.card-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(91,184,240,0.1);
  border: 1px solid rgba(91,184,240,0.2);
  color: var(--brand);
  margin-bottom: 20px;
}
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; }
.card .card-body { color: var(--text-muted); margin-top: 10px; font-size: 0.95rem; position: relative; z-index: 1; }
.card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.card .tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* ---------- Why / differentiators ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-list { display: grid; gap: 20px; }
.why-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.why-item:hover { border-color: var(--border-strong); transform: translateX(4px); }
.why-item .wi-ico {
  flex: none; width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-grad);
  color: #04101c;
}
.why-item .wi-ico svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 1.08rem; }
.why-item p { color: var(--text-muted); margin-top: 5px; font-size: 0.93rem; }

.why-visual {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(91,184,240,0.1), transparent),
    linear-gradient(180deg, var(--surface-2), var(--bg-2));
  padding: 34px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row .cr-name { font-weight: 500; font-size: 0.95rem; }
.compare-row .pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
}
.pill.lts { background: rgba(74,222,128,0.12); color: #6ee7a0; border: 1px solid rgba(74,222,128,0.25); }
.pill.them { background: rgba(255,120,120,0.08); color: #ff9a9a; border: 1px solid rgba(255,120,120,0.2); }
.compare-head { color: var(--text-dim); font-size: 0.72rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Roles tabs ---------- */
.roles-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.role-tab {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.94rem;
  transition: all 0.22s var(--ease);
}
.role-tab.active { background: var(--surface-3); color: var(--text); border-color: var(--brand); }
.role-panel { display: none; }
.role-panel.active { display: block; animation: fadeUp 0.45s var(--ease); }
.role-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: clamp(28px, 4vw, 48px);
}
.role-content h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.role-content > div > p { color: var(--text-muted); margin-top: 14px; }
.role-points { margin-top: 22px; display: grid; gap: 12px; }
.role-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); font-size: 0.96rem; }
.role-points svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 2px; }
.role-figure {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  background: radial-gradient(60% 80% at 50% 0%, rgba(91,184,240,0.08), transparent), var(--bg-2);
}
.role-metric { text-align: center; padding: 18px 0; }
.role-metric .big {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.role-metric .cap { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Industries marquee ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollx 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.ind-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.95rem;
  white-space: nowrap;
}
.ind-pill svg { width: 18px; height: 18px; color: var(--brand); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--surface);
  position: relative;
}
.step .step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--brand);
  border: 1px solid rgba(91,184,240,0.3);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h4 { font-size: 1.1rem; }
.step p { color: var(--text-muted); margin-top: 8px; font-size: 0.92rem; }
.step::after {
  content: "";
  position: absolute;
  top: 46px; right: -12px;
  width: 24px; height: 1px;
  background: var(--border-strong);
}
.step:last-child::after { display: none; }

/* ---------- CTA / form ---------- */
.cta {
  position: relative;
  overflow: hidden;
}
.cta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(91,184,240,0.12), transparent 60%),
    radial-gradient(80% 120% at 100% 100%, rgba(120,90,230,0.12), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-card h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-card p { color: var(--text-muted); margin-top: 16px; font-size: 1.05rem; }
.cta-points { margin-top: 24px; display: grid; gap: 12px; }
.cta-points li { display: flex; gap: 12px; align-items: center; color: var(--text-muted); }
.cta-points svg { width: 20px; height: 20px; color: var(--brand); flex: none; }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(91,184,240,0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.8rem; color: var(--text-dim); text-align: center; }
.form-success {
  display: none;
  padding: 28px;
  border: 1px solid rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.08);
  border-radius: var(--radius);
  text-align: center;
}
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.form-success svg { width: 44px; height: 44px; color: #6ee7a0; margin: 0 auto 12px; }
.form-success h4 { font-size: 1.2rem; }
.form-success p { color: var(--text-muted); margin-top: 8px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding-block: 64px 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.footer .brand { margin-bottom: 18px; }
.footer-about { color: var(--text-muted); font-size: 0.93rem; max-width: 320px; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin: 0 0 16px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer-contact { display: grid; gap: 10px; margin-top: 4px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.93rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--brand); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(5,7,13,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .why-grid, .role-content, .cta-card { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .svc, .svc.wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .bento, .steps, .stats-grid, .footer-grid, .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .role-tab, .chip { font-size: 0.88rem; }
}
