/* ===================================
   H.E.R. SOLUTIONS LLC — EXPLOSIVE 3D REDESIGN
   Vibrant · Kinetic · Premium
   =================================== */

/* ─── FONTS & TOKENS ─────────────────── */
:root {
  --ink:       #09090b;
  --surface:   #0f0f13;
  --surface2:  #16161e;
  --cream:     #fdf8f0;

  --neon-pink:   #f472b6;
  --neon-purple: #a78bfa;
  --neon-blue:   #60a5fa;
  --neon-green:  #34d399;
  --neon-orange: #fb923c;
  --neon-yellow: #facc15;

  --g1: linear-gradient(135deg, #f472b6, #a78bfa, #60a5fa);
  --g2: linear-gradient(135deg, #34d399, #60a5fa, #a78bfa);
  --g3: linear-gradient(135deg, #facc15, #fb923c, #f472b6);

  --font-sans:    'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --ease-spring:   cubic-bezier(0.32, 0.72, 0, 1);
  --ease-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:   cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1280px;
  --nav-h: 72px;
}

/* ─── RESET ──────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── CUSTOM CURSOR ──────────────────── */
#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-pink);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.3s;
  mix-blend-mode: difference;
}
#cursor-ring {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(244, 114, 182, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--ease-expo);
  mix-blend-mode: difference;
}
body:has(a:hover) #cursor-dot,
body:has(.btn-primary:hover) #cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--neon-yellow);
}

/* ─── CONTAINER ──────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SECTION LABEL ──────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-purple);
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--neon-purple);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ─── SECTION TITLE ──────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic;
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── GRADIENT TEXT ──────────────────── */
.gradient-text {
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SCROLL REVEALS ─────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(6px);
  transition:
    opacity 0.9s var(--ease-expo),
    transform 0.9s var(--ease-expo),
    filter 0.9s var(--ease-expo);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ─── NAV ────────────────────────────── */
#navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: all 0.5s var(--ease-spring);
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(15, 15, 19, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 100px;
  padding: 10px 10px 10px 28px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    0 0 0 1px rgba(167,139,250,0.08) inset,
    0 0 60px rgba(167,139,250,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-right: 32px;
  white-space: nowrap;
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 16px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(253,248,240,0.65);
  padding: 6px 16px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-expo);
}
.nav-links a:hover {
  color: var(--cream);
  background: rgba(167, 139, 250, 0.12);
}
.nav-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--g1);
  border-radius: 100px;
  padding: 10px 22px;
  transition: all 0.4s var(--ease-spring);
  border: none;
  cursor: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.nav-cta:hover::after { background: rgba(255,255,255,0.15); }
.nav-cta:active { transform: scale(0.97); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 8px;
  border-radius: 50%;
  background: transparent;
  border: none;
  transition: background 0.3s;
}
.hamburger:hover { background: rgba(167,139,250,0.12); }
.ham-line {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transform-origin: center;
  transition: all 0.35s var(--ease-spring);
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(9,9,11,0.96);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-expo);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  color: var(--cream);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu a:hover {
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── HERO ────────────────────────────── */
#hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  padding-top: calc(var(--nav-h) + 48px);
  max-width: 900px;
}
.hero-sup {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(-40px);
}
.hero-sup::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--neon-green);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 36px;
  overflow: hidden;
}
.word-wrap {
  display: block;
  overflow: hidden;
}
.word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.hero-h1 em {
  font-style: italic;
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero-body {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(253,248,240,0.6);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

/* Floating stats */
.hero-stat {
  position: absolute;
  z-index: 3;
  background: rgba(15,15,19,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
}
.stat-1 { top: 20%; right: 8%; }
.stat-2 { top: 50%; right: 14%; }
.stat-3 { bottom: 22%; right: 6%; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.5);
}

/* buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--g1);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  padding: 16px 28px;
  border: none;
  cursor: none;
  transition: all 0.4s var(--ease-spring);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
  border-radius: inherit;
}
.btn-primary:hover::before { background: rgba(255,255,255,0.18); }
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 0 40px rgba(244,114,182,0.4); }
.btn-primary:active { transform: scale(0.98); }
.btn-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.4s var(--ease-spring);
}
.btn-primary:hover .btn-icon { transform: translate(2px,-2px) scale(1.1); }
.btn-secondary {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  cursor: none;
  transition: all 0.35s var(--ease-spring);
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(167,139,250,0.4);
  transform: scale(1.02);
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.4);
  z-index: 3;
}
.scroll-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  left: 50%; top: 25%;
  transform: translateX(-50%);
  width: 2px; height: 6px;
  background: var(--neon-pink);
  border-radius: 2px;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%  { transform: translateX(-50%) translateY(6px); opacity: 0; }
  81%  { transform: translateX(-50%) translateY(-4px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ─── MARQUEE ─────────────────────────── */
#marquee-strip {
  background: var(--surface2);
  border-top: 1px solid rgba(167,139,250,0.15);
  border-bottom: 1px solid rgba(167,139,250,0.15);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.4);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  transition: color 0.3s;
}
.marquee-item:hover { color: var(--neon-purple); }
.marquee-item::after {
  content: '✦';
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 10px;
  opacity: 0.7;
}

/* ─── ABOUT ───────────────────────────── */
#about {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -300px; left: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(253,248,240,0.55);
  margin-bottom: 20px;
}
.about-body strong { color: var(--cream); font-weight: 600; }
.cred-card {
  margin-top: 40px;
  border-radius: 24px;
  padding: 3px;
  background: var(--g1);
}
.cred-inner {
  background: var(--surface2);
  border-radius: 22px;
  padding: 32px;
}
.cred-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.cred-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-purple);
  margin-bottom: 20px;
}
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cred-list li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,248,240,0.6);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cred-list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--neon-pink);
  flex-shrink: 0;
  margin-top: 5px;
}
.about-orb-scene {
  width: 100%;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--surface2);
  border: 1px solid rgba(167,139,250,0.15);
}
.principles-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.principle {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.principle:hover { padding-left: 12px; }
.p-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-purple);
  width: 28px;
  flex-shrink: 0;
  opacity: 0.6;
}
.p-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--cream);
}

/* ─── SERVICES ────────────────────────── */
#services {
  padding: 140px 0;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}
.services-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#services-canvas {
  width: 100%;
  height: 100%;
}
#services .container {
  position: relative;
  z-index: 2;
}
.services-intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253,248,240,0.5);
  max-width: 560px;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-expo);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), var(--glow,rgba(244,114,182,0.12)) 0%, transparent 65%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(167,139,250,0.2); }
.service-card:hover::before { opacity: 1; }
.service-featured {
  grid-column: span 2;
  background: rgba(244,114,182,0.05);
  border-color: rgba(244,114,182,0.15);
}
.card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c, rgba(244,114,182,0.2)) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.service-featured .card-glow {
  --c: rgba(244, 114, 182, 0.25);
}
.card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.35);
  margin-bottom: 16px;
}
.card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}
.card-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253,248,240,0.5);
  margin-bottom: 28px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card-tags span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(253,248,240,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 5px 12px;
  transition: all 0.3s;
}
.card-tags span:hover {
  color: var(--cream);
  border-color: rgba(167,139,250,0.3);
  background: rgba(167,139,250,0.1);
}
.card-number {
  position: absolute;
  bottom: 28px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.service-featured .card-number { font-size: 120px; }

/* ─── ENGAGEMENT ─────────────────────── */
#engagement {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
}
#engagement::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}
.steps-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.steps-left::before {
  content: '';
  position: absolute;
  left: 20px; top: 20px; bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, var(--neon-pink), var(--neon-purple), var(--neon-blue), var(--neon-green), transparent);
}
.step {
  display: flex;
  gap: 28px;
  padding: 28px 0 28px 0;
  transition: all 0.4s var(--ease-expo);
  cursor: default;
  opacity: 0.35;
}
.step.active {
  opacity: 1;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(167,139,250,0.25);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--neon-purple);
  z-index: 1;
  transition: all 0.4s var(--ease-spring);
}
.step.active .step-num {
  border-color: var(--neon-pink);
  background: rgba(244,114,182,0.15);
  color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(244,114,182,0.3);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(253,248,240,0.5);
  line-height: 1.75;
}
.steps-right {
  position: sticky;
  top: 120px;
}
.step-visual {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface2);
  border: 1px solid rgba(167,139,250,0.1);
  position: relative;
}
#step-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── CLIENTS ─────────────────────────── */
#clients {
  padding: 140px 0;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}
#clients::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.06) 0%, transparent 70%);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 64px;
}
.client-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.5s var(--ease-expo);
  position: relative;
  overflow: hidden;
}
.client-card::before {
  content: attr(style);
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.client-card:hover {
  transform: translateY(-6px);
  border-color: var(--c);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px var(--c);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.client-card:hover::before { opacity: 1; }
.cc-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  filter: saturate(1.4);
}
.client-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.client-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(253,248,240,0.5);
}
.clients-cta {
  text-align: center;
  padding: 64px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(167,139,250,0.12);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}
.clients-cta::before {
  content: '';
  position: absolute;
  inset: 0; 
  background: radial-gradient(ellipse at 50% 100%, rgba(244,114,182,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.clients-cta p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  color: rgba(253,248,240,0.7);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* ─── CONTACT ─────────────────────────── */
#contact {
  padding: 160px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#contact-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#contact .container {
  position: relative;
  z-index: 2;
}
.cta-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}
.cta-h2 em {
  font-style: italic;
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(253,248,240,0.55);
  margin-bottom: 36px;
}
.cta-email {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  transition: opacity 0.3s;
}
.cta-email:hover { opacity: 0.75; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.cta-location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253,248,240,0.3);
}

/* ─── FOOTER ──────────────────────────── */
footer {
  background: var(--surface2);
  border-top: 1px solid rgba(167,139,250,0.12);
  padding: 80px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(253,248,240,0.4);
}
.footer-links h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-purple);
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,248,240,0.45);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy, .footer-note {
  font-size: 12px;
  font-weight: 300;
  color: rgba(253,248,240,0.3);
}
.footer-copy span {
  background: var(--g1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-featured { grid-column: span 1; }
  .steps-container { grid-template-columns: 1fr; }
  .steps-right { display: none; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; padding-top: calc(var(--nav-h) + 48px); }
  .hero-scroll-hint { left: 24px; }
  .hero-stat { display: none; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .clients-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .clients-cta { padding: 40px 24px; }
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
}
