*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --bg-subtle: #F0F0EC;
  --text: #111110;
  --text-mid: #444440;
  --text-muted: #888882;
  --accent: #3B3BE8;
  --accent-light: #6B6BFF;
  --border: rgba(17,17,16,0.09);
  --border-strong: rgba(17,17,16,0.16);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
#cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1.5px solid rgba(59,59,232,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s, width 0.2s, height 0.2s, border-color 0.2s;
}
body:has(a:hover) #cursor { background: var(--accent); width: 10px; height: 10px; }
body:has(a:hover) #cursor-ring { width: 44px; height: 44px; border-color: rgba(59,59,232,0.6); }
body:has(button:hover) #cursor-ring { width: 44px; height: 44px; border-color: rgba(59,59,232,0.6); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 3rem;
  background: transparent;
  transition: background 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 1.0625rem; letter-spacing: -0.01em;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 0.625rem;
  flex-shrink: 0;
  transition: color 0.4s;
  cursor: none;
}
nav.scrolled .nav-logo { color: var(--text); }
.nav-logo-icon { flex-shrink: 0; transition: opacity 0.4s; }
.nav-logo-icon .ring { transition: stroke 0.4s; }
nav.scrolled .nav-logo-icon .ring { stroke: #3B3BE8; }
.nav-logo-icon .dot1, .nav-logo-icon .dot2, .nav-logo-icon .dot3 { transition: fill 0.4s; }

/* Nav links */
.nav-links {
  display: flex; gap: 0; list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.75); text-decoration: none;
  padding: 0.5rem 1.125rem;
  display: block; position: relative;
  cursor: none; transition: color 0.2s;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 1.125rem; right: 1.125rem;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-cta {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--white); text-decoration: none; cursor: none;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.5rem 1.25rem; border-radius: 3px;
  transition: all 0.25s;
  white-space: nowrap;
}
nav.scrolled .nav-cta { color: var(--text); border-color: var(--border-strong); }
.nav-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }
nav.scrolled .nav-cta:hover { background: var(--text); color: var(--white); border-color: var(--text); }

.hamburger { display: none; cursor: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
nav.scrolled .hamburger span { background: var(--text-mid); }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: linear-gradient(165deg, #0A091F 0%, #130F3F 45%, #1C1050 75%, #0D0B2E 100%);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 2.25rem; opacity: 0;
}
.eyebrow-dash { width: 28px; height: 1px; background: var(--accent-light); flex-shrink: 0; }

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: 1.75rem; opacity: 0;
}
.hero-title em {
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.45);
}
.hero-title .accent-word { color: var(--accent-light); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem); font-weight: 300;
  color: rgba(210,215,255,0.65); line-height: 1.8;
  max-width: 580px; margin: 0 auto 3rem; opacity: 0;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; }
.btn-primary {
  font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.01em;
  color: var(--white); background: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.875rem 2rem; border-radius: 3px;
  text-decoration: none; cursor: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,59,232,0.3); }
.btn-ghost {
  font-size: 0.9375rem; font-weight: 400; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.75);
  background: transparent; border: 1.5px solid rgba(255,255,255,0.2);
  padding: 0.875rem 2rem; border-radius: 3px;
  text-decoration: none; cursor: none; transition: all 0.25s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.625rem;
  color: rgba(255,255,255,0.3); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 2.2s forwards;
}
.scroll-bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(107,107,255,0.8), transparent);
  animation: scrollPulse 2.5s 2.2s infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}
@keyframes fadeUp { to { opacity: 1; } }

/* ── STATS BAR ── */
#stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2.25rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.375rem; font-weight: 700; letter-spacing: -0.04em;
  color: var(--text); margin-bottom: 0.375rem; line-height: 1;
}
.stat-val span { font-size: 1.375rem; }
.stat-desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* ── INTRO ── */
#intro {
  padding: 9rem 3rem;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start;
}
.intro-label {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.75rem;
}
.intro-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); line-height: 1.1;
}
.intro-title em { font-style: italic; font-weight: 400; color: var(--text-mid); }
.intro-body {
  font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.85;
}
.intro-body p + p { margin-top: 1.25rem; }
.intro-rule { width: 36px; height: 1.5px; background: var(--accent); margin: 2rem 0; }
.intro-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 500; color: var(--text); line-height: 1.6;
}

/* ── SERVICES ── */
#services {
  background: var(--off-white);
  padding: 7rem 3rem;
  border-top: 1px solid var(--border);
}
.section-header {
  max-width: 1280px; margin: 0 auto 4rem;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem;
}
.section-label {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.03em; color: var(--text); line-height: 1.1;
}
.section-link {
  font-size: 0.875rem; font-weight: 500; color: var(--accent); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  cursor: none; white-space: nowrap; transition: gap 0.2s;
}
.section-link:hover { gap: 0.75rem; }

.services-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-strong); border-radius: 6px; overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.service-card {
  background: var(--white); padding: 2.75rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(59,59,232,0.02); }
.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 2rem;
}
.service-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 0.875rem; line-height: 1.3;
}
.service-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.tag {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); background: var(--off-white); border: 1px solid var(--border-strong);
  padding: 0.25rem 0.625rem; border-radius: 2px;
}
.service-arrow {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  font-size: 1.125rem; color: var(--border-strong);
  transition: color 0.2s, transform 0.2s; cursor: none;
}
.service-card:hover .service-arrow { color: var(--accent); transform: translate(3px, -3px); }

/* ── PROCESS ── */
#process { padding: 8rem 3rem; }
#process .section-header { margin-bottom: 5rem; }
.process-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
  background: var(--border); gap: 1px;
}
.process-step {
  background: var(--white); padding: 2.75rem 2.25rem;
  position: relative; transition: background 0.3s;
}
.process-step:hover { background: var(--off-white); }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.75rem;
}
.step-rule { width: 20px; height: 1.5px; background: var(--accent); margin-bottom: 1.5rem; }
.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 0.75rem; line-height: 1.3;
}
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ── WHY ── */
#why {
  background: var(--text);
  padding: 9rem 3rem;
  position: relative; overflow: hidden;
}
#why-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6; }
.why-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 5fr 6fr; gap: 7rem;
  align-items: center; position: relative; z-index: 1;
}
.why-label {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.75rem;
}
.why-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700; letter-spacing: -0.04em;
  color: var(--white); line-height: 1.07; margin-bottom: 2rem;
}
.why-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.4); }
.why-sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.85;
}
.why-list { list-style: none; }
.why-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.375rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.why-check {
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; margin-top: 3px;
  background: rgba(59,59,232,0.2); border: 1px solid rgba(107,107,255,0.4);
  display: flex; align-items: center; justify-content: center;
}
.why-check svg { width: 9px; height: 9px; color: var(--accent-light); }
.why-text { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.why-text strong { color: var(--white); font-weight: 500; }

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
}
.testimonials-inner { max-width: 1280px; margin: 0 auto; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.testimonial {
  padding: 2.5rem; border: 1px solid var(--border); border-radius: 6px;
  position: relative; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.testimonial:hover {
  border-color: rgba(59,59,232,0.25);
  box-shadow: 0 8px 40px rgba(59,59,232,0.07);
  transform: translateY(-4px);
}
.quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; line-height: 1; color: var(--accent); opacity: 0.25;
  margin-bottom: 1rem; display: block;
}
.testimonial-text {
  font-size: 0.9375rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--off-white); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem; font-weight: 600; color: var(--text-muted);
}
.author-name { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.author-role { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.125rem; }

/* ── CTA ── */
#cta {
  background: var(--off-white); border-top: 1px solid var(--border);
  padding: 9rem 3rem; text-align: center; position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(59,59,232,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.cta-label {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem;
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700; letter-spacing: -0.04em;
  color: var(--text); line-height: 1.05; margin-bottom: 1.25rem;
}
.cta-sub {
  font-size: 1rem; font-weight: 300; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 2.75rem;
}
.cta-form { display: flex; gap: 0.75rem; max-width: 420px; margin: 0 auto; }
.cta-input {
  flex: 1; font-family: 'Inter', sans-serif; font-size: 0.9375rem; color: var(--text);
  background: var(--white); border: 1.5px solid var(--border-strong);
  border-radius: 3px; padding: 0.875rem 1.125rem;
  outline: none; transition: border-color 0.2s; min-width: 0;
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--accent); }
.cta-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1.25rem; }
.cta-note a { color: var(--accent); text-decoration: none; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.25rem 3rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem; font-weight: 600; color: var(--text-muted);
  text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
  cursor: none; transition: color 0.2s;
}
.footer-logo:hover { color: var(--text); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.8125rem; color: var(--text-muted);
  text-decoration: none; cursor: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8125rem; color: var(--text-muted); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.875rem; font-weight: 600;
  color: var(--text-mid); text-decoration: none; cursor: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; color: var(--text-muted); font-size: 1.25rem; cursor: pointer; padding: 0.5rem;
}

/* ── MOBILE MENU ACCENT LINK ── */
.mobile-menu-cta { color: var(--accent) !important; }

/* ── PROCESS SECTION SUBTITLE ── */
.process-subtitle {
  font-size: 0.9375rem; color: var(--text-muted); max-width: 320px; line-height: 1.75;
}
.process-section-header {
  max-width: 1280px; margin: 0 auto 5rem;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(2.5rem, 6vw, 4rem); }
  #intro { grid-template-columns: 1fr; gap: 2.5rem; padding: 6rem 2rem; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid var(--border); }
  .process-step:nth-child(4) { border-top: 1px solid var(--border); }
}
@media (max-width: 900px) {
  nav { padding: 0 1.25rem; }
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  nav.scrolled .hamburger span { background: var(--text-mid); }
  #hero { min-height: 100svh; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid var(--border); }
  .process-step:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  #services, #why, #cta { padding: 5rem 1.25rem; }
  #process, #testimonials { padding: 5rem 1.25rem; }
  #process .section-header, .section-header { flex-direction: column; align-items: flex-start; }
  .cta-form { flex-direction: column; }
  footer { padding: 2rem 1.25rem; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-top: 1px solid var(--border); }
  .stat-item:first-child { border-top: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
