/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #040d1a;
  --bg-2:        #071226;
  --bg-card:     #0a1830;
  --bg-card-2:   #0d1f3c;
  --ink:         #f0f4ff;
  --ink-soft:    rgba(240,244,255,0.75);
  --ink-mute:    rgba(240,244,255,0.42);
  --accent:      #0ea5e9;
  --accent-2:    #38bdf8;
  --accent-glow: rgba(14,165,233,0.35);
  --indigo:      #6366f1;
  --cyan:        #06b6d4;
  --emerald:     #10b981;
  --gold:        #f59e0b;
  --line:        rgba(14,165,233,0.15);
  --line-soft:   rgba(240,244,255,0.07);
  --sans:        'Inter', system-ui, sans-serif;
  --display:     'Manrope', 'Inter', system-ui, sans-serif;
  --mono:        'JetBrains Mono', monospace;
  --gutter:      clamp(1rem, 4vw, 2rem);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius:      16px;
  --radius-lg:   24px;
  --nav-h:       72px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.06; letter-spacing: -0.025em; font-family: var(--display); }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--accent); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   4. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px; margin: -2.5px;
  background: var(--ink); border-radius: 50%;
}
.cursor-ring {
  width: 32px; height: 32px; margin: -16px;
  border: 1px solid var(--ink); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   5. Scroll progress
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 200; background: rgba(14,165,233,0.12); pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--indigo));
  transform-origin: 0 0; transform: scaleX(0);
  transition: transform .08s linear;
}

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  transition: background .4s var(--ease-out), backdrop-filter .4s, box-shadow .4s;
}
.nav.is-scrolled {
  background: rgba(4, 13, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1200px; margin-inline: auto;
  padding-inline: var(--gutter);
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--display);
}
.nav-logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; font-size: .8rem; }
.nav-logo-text strong { font-size: 1rem; font-weight: 700; letter-spacing: -.02em; }
.nav-logo-text span { color: var(--ink-mute); font-size: .72rem; letter-spacing: .04em; }

.nav-links {
  display: none;
  align-items: center; gap: 2rem;
}
@media (min-width: 720px) { .nav-links { display: flex; } }

.nav-link {
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: .3rem 0;
  transition: color .3s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: .55rem 1.4rem !important;
  font-size: .88rem !important;
}

.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: .5rem; border-radius: 8px;
}
@media (min-width: 720px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .35s var(--ease-soft), opacity .35s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* Mobile menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(4,13,26,0.98);
  backdrop-filter: blur(20px);
  display: grid; place-items: center; text-align: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
  pointer-events: none;
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); pointer-events: auto; }
.nav-mobile nav { display: flex; flex-direction: column; gap: 2rem; }
.mobile-link {
  font-family: var(--display); font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700; color: var(--ink-soft);
  transition: color .3s;
}
.mobile-link:hover { color: var(--ink); }
.mobile-cta {
  color: var(--accent) !important;
  border: 1px solid var(--line);
  padding: .6rem 2rem;
  border-radius: 100px;
  font-size: 1.1rem !important;
}

/* =============================================================
   7. Buttons
   ============================================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.8rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  border-radius: 100px;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s;
  box-shadow: 0 4px 20px rgba(14,165,233,.3);
  position: relative; overflow: hidden; isolation: isolate;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  opacity: 0; transition: opacity .4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(14,165,233,.45), 0 4px 12px rgba(14,165,233,.3);
}
.btn-primary:active { transform: translateY(-1px); transition-duration: .1s; }

.btn-glow {
  box-shadow: 0 0 0 0 rgba(14,165,233,.5);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 4px 20px rgba(14,165,233,.3); }
  50%      { box-shadow: 0 4px 30px rgba(14,165,233,.55), 0 0 60px rgba(14,165,233,.2); }
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.6rem;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--display); font-weight: 500; font-size: .95rem;
  border-radius: 100px;
  transition: border-color .35s, color .35s, transform .35s var(--ease-soft);
}
.btn-ghost:hover {
  border-color: var(--accent); color: var(--ink);
  transform: translateY(-2px);
}

.btn-large { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Mouse gradient */
.hero-gradient {
  position: absolute; inset: -10%; z-index: 0;
  background:
    radial-gradient(circle 700px at var(--mx, 30%) var(--my, 40%),
      rgba(14,165,233,.18) 0%, transparent 55%),
    radial-gradient(circle 900px at calc(var(--mx, 30%) + 20%) calc(var(--my, 40%) - 15%),
      rgba(99,102,241,.12) 0%, transparent 55%),
    radial-gradient(circle 600px at 80% 70%,
      rgba(6,182,212,.1) 0%, transparent 50%);
  filter: blur(50px) saturate(140%);
  pointer-events: none;
  transition: background .15s ease-out;
}

/* Orbs */
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .18;
  animation: floatOrb linear infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -15%; left: -10%;
  animation-duration: 28s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--indigo), transparent 70%);
  top: 20%; right: -5%;
  animation-duration: 22s; animation-delay: -8s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  bottom: 10%; left: 30%;
  animation-duration: 18s; animation-delay: -14s;
}
@keyframes floatOrb {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%     { transform: translate(30px, -40px) scale(1.05); }
  66%     { transform: translate(-20px, 30px) scale(.97); }
}
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }

/* Grid lines bg */
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 80%);
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 6rem 4rem;
  width: 100%;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .78rem; font-weight: 500;
  color: var(--accent); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: kicKPulse 2s ease-in-out infinite;
}
@keyframes kicKPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -.04em;
  margin-bottom: 1.6rem;
  max-width: 14ch;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--indigo) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.split-word { display: inline-block; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft); line-height: 1.7;
  max-width: 50ch; margin-bottom: 2.4rem;
}
.hero-sub strong { color: var(--accent); font-weight: 600; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .9rem;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 100px;
  font-family: var(--mono); font-size: .75rem; color: var(--ink-soft);
  letter-spacing: .04em;
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.scroll-line {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
@media (prefers-reduced-motion: reduce) { .scroll-line { animation: none; opacity: .4; } }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee-section {
  background: rgba(14,165,233,.04);
  border-block: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
}
.marquee { position: relative; overflow: hidden; }
.marquee::before,.marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg,  var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track {
  display: inline-flex; gap: 2.5rem;
  white-space: nowrap; will-change: transform;
  font-family: var(--mono); font-size: .8rem;
  color: var(--ink-mute); letter-spacing: .08em; text-transform: uppercase;
  animation: marqueeCSS 40s linear infinite;
}
/* CSS fallback; GSAP overrides this when available */
@keyframes marqueeCSS {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track span { flex-shrink: 0; }
.dot-sep { color: var(--accent); opacity: .5; }

/* =============================================================
   10. Section headers
   ============================================================= */
.section-header {
  text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-kicker {
  display: inline-block;
  font-family: var(--mono); font-size: .75rem; font-weight: 500;
  color: var(--accent); letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800; letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem; color: var(--ink-soft);
  max-width: 56ch; margin-inline: auto;
}

/* =============================================================
   11. Services
   ============================================================= */
.services { padding: clamp(5rem, 10vw, 9rem) 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 540px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .35s;
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 50%),
    rgba(14,165,233,.06), transparent 70%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(14,165,233,.35);
  box-shadow: 0 30px 80px rgba(14,165,233,.12), 0 8px 24px rgba(0,0,0,.4);
}
.service-card--featured {
  border-color: rgba(14,165,233,.4);
  background: linear-gradient(145deg, #0a1830, #0d2040);
  box-shadow: 0 0 0 1px rgba(14,165,233,.2), 0 20px 60px rgba(14,165,233,.1);
}

.card-badge {
  display: inline-block;
  font-family: var(--mono); font-size: .65rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bg); background: var(--badge-color, var(--accent));
  padding: .25rem .7rem; border-radius: 100px;
  margin-bottom: 1.2rem; align-self: flex-start;
  position: relative; z-index: 1;
}

.card-icon {
  width: 48px; height: 48px;
  background: rgba(14,165,233,.06);
  border: 1px solid rgba(14,165,233,.12);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.card-icon svg { width: 28px; height: 28px; }

.card-title {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: .4rem;
  position: relative; z-index: 1;
}
.card-sub {
  font-size: .85rem; color: var(--ink-mute);
  margin-bottom: 1.4rem; line-height: 1.5;
  position: relative; z-index: 1;
}

.card-price {
  display: flex; align-items: baseline; gap: .4rem;
  margin-bottom: 1.6rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.price-from { font-size: .75rem; color: var(--ink-mute); }
.price-val {
  font-family: var(--display); font-size: 2.2rem; font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-note { font-size: .75rem; color: var(--ink-mute); }

.card-features {
  flex: 1; display: flex; flex-direction: column; gap: .55rem;
  margin-bottom: 1.8rem;
  position: relative; z-index: 1;
}
.card-features li {
  font-size: .85rem; color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: .55rem;
  padding-left: 1.2rem;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.card-cta {
  display: flex; align-items: center; justify-content: center;
  padding: .75rem 1.2rem;
  background: rgba(var(--btn-color, 14,165,233), .12);
  border: 1px solid rgba(var(--btn-color, 14,165,233), .25);
  color: var(--ink-soft);
  border-radius: var(--radius);
  font-family: var(--display); font-weight: 600; font-size: .88rem;
  margin-bottom: .75rem;
  transition: background .35s, color .35s, border-color .35s, transform .35s var(--ease-soft);
  position: relative; z-index: 1;
}
.card-cta:hover {
  background: rgba(14,165,233,.22); border-color: var(--accent);
  color: var(--ink); transform: translateY(-2px);
}
.service-card--featured .card-cta {
  background: var(--accent); color: var(--bg); border-color: transparent;
}
.service-card--featured .card-cta:hover {
  background: var(--accent-2); color: var(--bg);
}

.card-delivery {
  text-align: center; font-family: var(--mono); font-size: .7rem;
  color: var(--ink-mute); letter-spacing: .06em;
  position: relative; z-index: 1;
}

/* =============================================================
   12. Stats
   ============================================================= */
.stats-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative; overflow: hidden;
}
.stats-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,.05) 0%, rgba(99,102,241,.05) 100%);
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative; z-index: 1;
}
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }
.stat-val {
  display: block;
  font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .82rem; color: var(--ink-mute);
  font-family: var(--mono); letter-spacing: .06em;
}

/* =============================================================
   13. Why section
   ============================================================= */
.why-section { padding: clamp(5rem, 10vw, 9rem) 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  padding: 2.4rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: border-color .35s, transform .55s var(--ease-soft);
}
.why-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  color: var(--accent); letter-spacing: .14em;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: .75rem; letter-spacing: -.02em;
}
.why-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; }

/* =============================================================
   14. Process
   ============================================================= */
.process-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14,165,233,.03) 50%, transparent 100%);
}
.process-steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 720px; margin-inline: auto;
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.8rem;
  position: relative;
}
.step-line {
  position: absolute; left: 1.7rem; top: 3.2rem; bottom: -1.5rem;
  width: 1px; background: var(--line);
}
.step-num {
  width: 3.4rem; height: 3.4rem;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--mono); font-size: .78rem; font-weight: 500;
  color: var(--accent); letter-spacing: .06em;
  background: var(--bg-card);
  position: relative; z-index: 1;
  flex-shrink: 0;
  transition: border-color .35s, background .35s;
}
.process-step:hover .step-num {
  border-color: var(--accent);
  background: rgba(14,165,233,.08);
}
.step-content { padding-block: .4rem 3rem; }
.step-content h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: .6rem; letter-spacing: -.02em;
}
.step-content p { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; }
.process-step:last-child .step-line { display: none; }
.process-step:last-child .step-content { padding-bottom: 0; }

/* =============================================================
   15. Testimonials
   ============================================================= */
.testimonials-section { padding: clamp(5rem, 10vw, 9rem) 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: border-color .35s, transform .55s var(--ease-soft);
}
.testimonial-card:hover { border-color: var(--line); transform: translateY(-4px); }
.testimonial-stars {
  color: var(--gold); font-size: 1rem; letter-spacing: .08em;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-size: .95rem; color: var(--ink-soft); line-height: 1.7;
  margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-card footer { display: flex; flex-direction: column; gap: .2rem; }
.testimonial-card footer strong { font-size: .9rem; font-weight: 600; }
.testimonial-card footer span { font-size: .78rem; color: var(--ink-mute); font-family: var(--mono); }

/* =============================================================
   16. Final CTA
   ============================================================= */
.cta-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  position: relative; text-align: center; overflow: hidden;
}
.cta-gradient {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14,165,233,.12), transparent 65%),
    radial-gradient(ellipse 60% 40% at 30% 100%, rgba(99,102,241,.1), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800; letter-spacing: -.035em;
  margin-bottom: 1.2rem;
}
.cta-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 1.05rem; color: var(--ink-soft);
  max-width: 46ch; margin-inline: auto; margin-bottom: 2.5rem;
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-note {
  font-family: var(--mono); font-size: .72rem;
  color: var(--ink-mute); letter-spacing: .06em;
}

/* =============================================================
   17. Footer
   ============================================================= */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.4rem; text-align: center;
}
.footer-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 500;
}
.footer-logo .nav-logo-svg { width: 28px; height: 28px; }
.footer-logo strong { font-weight: 700; }
.footer-tagline { font-size: .82rem; color: var(--ink-mute); font-family: var(--mono); letter-spacing: .06em; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
}
.footer-links a {
  font-size: .85rem; color: var(--ink-mute);
  transition: color .3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: .75rem; color: var(--ink-mute); }

/* =============================================================
   19. Scroll reveals
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

/* =============================================================
   20. Magnetic wrapper
   ============================================================= */
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform .8s var(--ease-soft);
}

/* =============================================================
   20. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .cta-actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 960px) {
  .hero-inner { padding-top: 5rem; }
}
@media (max-width: 539px) {
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .service-card { padding: 1.5rem 1.25rem; }
  .step-content { padding-bottom: 2.5rem; }
}

/* =============================================================
   21. Reduced-motion (intrusive only)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; opacity: .1; }
  .btn-glow { animation: none; }
  .kicker-dot { animation: none; }
  .scroll-line { animation: none; }
  .hero-particles span { animation: none; opacity: 0; }
  .service-card--featured { animation: none; }
}

/* =============================================================
   22. Showreel
   ============================================================= */
.showreel-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}
.showreel-wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: center;
}
.showreel-frame {
  flex-shrink: 0;
  width: 300px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(14,165,233,.25);
  box-shadow:
    0 0 0 1px rgba(14,165,233,.1),
    0 0 50px rgba(14,165,233,.18),
    0 24px 64px rgba(0,0,0,.45);
  position: relative;
}
.showreel-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  pointer-events: none;
}
.showreel-video {
  width: 100%;
  display: block;
}
.showreel-copy { max-width: 400px; }
.showreel-hint {
  font-family: var(--mono); font-size: .75rem;
  color: var(--ink-mute); letter-spacing: .04em;
  margin-top: 1.5rem;
}
@media (max-width: 860px) {
  .showreel-wrap { flex-direction: column; gap: 2.5rem; }
  .showreel-frame { width: 260px; }
  .showreel-copy { text-align: center; }
}

/* =============================================================
   23. Premium visual enhancements
   ============================================================= */

/* — Floating particles in hero — */
.hero-particles {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hero-particles span {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: particleDrift linear infinite;
}
.hero-particles span:nth-child(1) {
  width: 4px; height: 4px; background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  left: 12%; top: 72%; animation-duration: 14s;
}
.hero-particles span:nth-child(2) {
  width: 3px; height: 3px; background: var(--indigo);
  box-shadow: 0 0 6px var(--indigo);
  left: 79%; top: 58%; animation-duration: 19s; animation-delay: -4s;
}
.hero-particles span:nth-child(3) {
  width: 5px; height: 5px; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  left: 46%; top: 82%; animation-duration: 12s; animation-delay: -8s;
}
.hero-particles span:nth-child(4) {
  width: 2px; height: 2px; background: var(--accent);
  box-shadow: 0 0 5px var(--accent);
  left: 88%; top: 28%; animation-duration: 21s; animation-delay: -2s;
}
.hero-particles span:nth-child(5) {
  width: 4px; height: 4px; background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  left: 28%; top: 88%; animation-duration: 16s; animation-delay: -6s;
}
.hero-particles span:nth-child(6) {
  width: 3px; height: 3px; background: var(--indigo);
  box-shadow: 0 0 6px var(--indigo);
  left: 63%; top: 68%; animation-duration: 24s; animation-delay: -11s;
}
@keyframes particleDrift {
  0%   { transform: translateY(0) scale(0);   opacity: 0; }
  8%   { transform: scale(1);                 opacity: 1; }
  88%  {                                       opacity: .8; }
  100% { transform: translateY(-130px) scale(.4); opacity: 0; }
}

/* — Featured card: soft pulsing border glow — */
.service-card--featured {
  animation: featuredGlow 3.5s ease-in-out infinite;
}
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(14,165,233,.3), 0 20px 60px rgba(14,165,233,.1); }
  50%       { box-shadow: 0 0 0 1px rgba(14,165,233,.6), 0 24px 72px rgba(14,165,233,.2); }
}

/* — Card shimmer sweep on hover — */
.service-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.045) 50%, transparent 62%);
  transform: translateX(-110%);
  transition: transform .7s ease;
  pointer-events: none;
}
.service-card:hover::after { transform: translateX(110%); }

/* — Why cards: top accent glow on hover — */
.why-card { position: relative; }
.why-card::after {
  content: '';
  position: absolute; top: 0; left: 1.5rem; right: 1.5rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.45), transparent);
  opacity: 0; transition: opacity .4s;
  border-radius: 1px;
}
.why-card:hover::after { opacity: 1; }

/* — Testimonial cards: gradient top line — */
.testimonial-card { position: relative; }
.testimonial-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.35), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* — Stats: ambient glows — */
.stats-bg { position: relative; }
.stats-bg::before {
  content: '';
  position: absolute; border-radius: 50%;
  width: 420px; height: 420px;
  left: 18%; top: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(14,165,233,.08) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.stats-bg::after {
  content: '';
  position: absolute; border-radius: 50%;
  width: 320px; height: 320px;
  right: 12%; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}

/* — Stat values: glow — */
.stat-val { filter: drop-shadow(0 0 18px rgba(14,165,233,.28)); }

/* — Process step numbers: glow on hover — */
.process-step:hover .step-num {
  box-shadow: 0 0 0 4px rgba(14,165,233,.1), 0 0 20px rgba(14,165,233,.22);
}

/* — Services section: ambient center glow — */
.services-section { position: relative; }
.services-section::before {
  content: '';
  position: absolute; pointer-events: none;
  width: 800px; height: 500px;
  left: 50%; top: 45%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(99,102,241,.05) 0%, transparent 65%);
  filter: blur(70px);
}

/* — Badge subtle hover — */
.badge {
  transition: background .25s, border-color .25s, transform .25s var(--ease-soft),
              box-shadow .25s;
}
.badge:hover {
  background: rgba(14,165,233,.14);
  border-color: rgba(14,165,233,.45);
  box-shadow: 0 0 14px rgba(14,165,233,.18);
  transform: translateY(-1px);
}
