@font-face { font-family: 'Inter'; src: url('../fonts/Inter-latin.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }


/* ── VARIABLES ── */
:root {
  --bg:            #0a0a0f;
  --surface:       #13131a;
  --surface-2:     #1a1a26;
  --section-alt:   #0f1117;
  --border:        #1e1e2e;
  --border-light:  rgba(255,255,255,0.06);

  --accent:        #6366f1;
  --accent-2:      #8b5cf6;
  --accent-glow:   rgba(99,102,241,0.25);

  --text-heading:  #f8fafc;
  --text-body:     #cbd5e1;
  --text-muted:    #94a3b8;
  --text-faint:    rgba(248,250,252,0.35);

  --grad-accent:   linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --grad-hero:     linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --grad-card-hover: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(139,92,246,0.08) 100%);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;

  --glow-sm:         0 0 20px rgba(99,102,241,0.15);
  --glow-md:         0 0 40px rgba(99,102,241,0.25);
  --shadow-card:     0 4px 24px rgba(0,0,0,0.4);

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t-mid:  0.3s;
  --t-slow: 0.6s;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Dot grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3 { font-family: var(--font-head); color: var(--text-heading); line-height: 1.1; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

/* ── SECTION TITLE ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

.section-title .accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--glow-sm);
  border: none;
  cursor: pointer;
  transition: opacity var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}

.btn-primary:hover {
  opacity: 0.92;
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-heading);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(99,102,241,0.08);
  transform: translateY(-2px);
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.visible .service-card:nth-child(1),
.fade-in.visible .why-block:nth-child(1),
.fade-in.visible .process-step:nth-child(1),
.fade-in.visible .pricing-card:nth-child(1),
.fade-in.visible .care-card:nth-child(1)  { transition-delay: 0s; }

.fade-in.visible .service-card:nth-child(2),
.fade-in.visible .why-block:nth-child(2),
.fade-in.visible .process-step:nth-child(2),
.fade-in.visible .pricing-card:nth-child(2),
.fade-in.visible .care-card:nth-child(2)  { transition-delay: 0.08s; }

.fade-in.visible .service-card:nth-child(3),
.fade-in.visible .why-block:nth-child(3),
.fade-in.visible .process-step:nth-child(3),
.fade-in.visible .pricing-card:nth-child(3),
.fade-in.visible .care-card:nth-child(3)  { transition-delay: 0.16s; }

.fade-in.visible .service-card:nth-child(4),
.fade-in.visible .process-step:nth-child(4) { transition-delay: 0.24s; }

.fade-in.visible .service-card:nth-child(5) { transition-delay: 0.32s; }
.fade-in.visible .service-card:nth-child(6) { transition-delay: 0.40s; }

/* ── NAV ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid) var(--ease);
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 3rem;
  background: rgba(10,10,15,0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-mid) var(--ease);
}

nav.scrolled {
  background: rgba(10,10,15,0.92);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--text-heading);
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}

.logo-dot {
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 0.8;
  margin-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t-mid) var(--ease);
}

.nav-links a:hover { color: var(--text-heading); }
.nav-links a:hover::after { width: 100%; }

.nav-links .nav-cta {
  background: var(--grad-accent);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: var(--glow-sm);
  transition: opacity var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}

.nav-links .nav-cta::after { display: none; }

.nav-links .nav-cta:hover {
  opacity: 0.9;
  box-shadow: var(--glow-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform var(--t-mid) var(--ease), opacity var(--t-mid) var(--ease);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 2rem 3rem;
  background: var(--bg);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow--1 {
  width: 600px; height: 600px;
  background: rgba(99,102,241,0.18);
  top: -100px; left: -100px;
  animation: orb-drift-1 12s ease-in-out infinite alternate;
}

.hero-glow--2 {
  width: 500px; height: 500px;
  background: rgba(139,92,246,0.14);
  bottom: -80px; right: -80px;
  animation: orb-drift-2 14s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(60px, 40px); }
}

@keyframes orb-drift-2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-40px, -60px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
}

.hero-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

.hero-title__gradient {
  background: var(--grad-hero);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-pan 4s linear infinite;
}

@keyframes gradient-pan {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.8rem;
}

.hero-stack {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stack__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero-stack__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stack-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.7rem;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.stack-tag:hover {
  border-color: rgba(99,102,241,0.5);
  color: var(--text-heading);
}

/* ── MARQUEE ── */
.marquee-bar {
  overflow: hidden;
  white-space: nowrap;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  position: relative;
  z-index: 1;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 1.5rem;
}

.marquee-item span {
  color: var(--accent);
  margin-left: 1.5rem;
}

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

/* ── WHY ── */
#why { background: var(--section-alt); }

.why-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.why-lead {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.why-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
}

.why-block:hover {
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

.why-stat {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
}

.why-unit { color: var(--accent); font-size: 2.8rem; }

.why-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-heading);
  margin-bottom: 0.7rem;
}

.why-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.85; }

/* Callout with gradient border */
.why-callout {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  overflow: hidden;
}

.why-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.why-callout-eg {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.why-callout-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 60ch;
}

.why-callout-text strong { color: var(--text-heading); font-weight: 600; }

/* ── SERVICES ── */
#services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              transform var(--t-mid) var(--ease);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card-hover);
  opacity: 0;
  border-radius: var(--radius-md);
  transition: opacity var(--t-mid) var(--ease);
}

.service-card:hover {
  border-color: rgba(99,102,241,0.4);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--glow-sm);
}

.service-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ── PORTFOLIO ── */
#portfolio { background: var(--section-alt); }

.portfolio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.portfolio-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 46ch;
  align-self: end;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              transform var(--t-mid) var(--ease);
}

.project-card:hover {
  border-color: rgba(99,102,241,0.4);
  box-shadow: var(--glow-md);
  transform: translateY(-6px);
}

.project-thumb {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
}

/* LayerMath thumb */
.project-card.layermath .project-thumb { background: #070d1a; }

.lm-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.lm-logo span { color: var(--accent); }

.lm-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-align: center;
}

.lm-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.lm-bar {
  width: 14px;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
}

/* AmberG thumb */
.project-card.amberg .project-thumb { background: #0e0a0f; }

.ag-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: #c9a96e;
  margin-bottom: 0.6rem;
}

.ag-line {
  width: 40px; height: 1px;
  background: #c9a96e;
  margin: 0 auto 0.6rem;
}

.ag-sub {
  font-size: 0.72rem;
  color: #8a7a9a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.ag-dots { display: flex; gap: 6px; justify-content: center; }

.ag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3a2e4a;
}

.ag-dot.active { background: #c9a96e; }

/* AJ Beauty thumb */
.project-card.ajbeauty .project-thumb { background: #0d0a10; }

.ajb-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.ajb-logo span {
  color: #e8a0b4;
  margin-left: 0.2em;
}

.ajb-line {
  width: 36px; height: 1px;
  background: #e8a0b4;
  margin: 0 auto 0.6rem;
}

.ajb-sub {
  font-size: 0.72rem;
  color: #9a8a9e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.ajb-petals { display: flex; gap: 7px; justify-content: center; }

.ajb-petal {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2e1e2e;
  border: 1px solid #4a2e4a;
}

.ajb-petal.active { background: #e8a0b4; border-color: #e8a0b4; }

.project-info {
  padding: 2rem;
  border-top: 1px solid var(--border);
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.project-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.project-year { font-size: 0.7rem; color: var(--text-muted); }

.project-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 0.6rem;
}

.project-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.project-tag {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.6rem;
}

.project-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.project-link::after {
  content: '→';
  transition: transform var(--t-fast) var(--ease);
}

.project-card:hover .project-link::after { transform: translateX(5px); }

/* ── ABOUT ── */
#about {
  background: var(--bg);
  padding: 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 560px;
}

.about-panel {
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.about-panel::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.about-panel__inner { position: relative; z-index: 1; }

.about-panel .section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }

.about-panel__geo {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.geo-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.about-content { padding: 5rem 4rem; }

.about-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 3rem;
}

.about-text p { margin-bottom: 1.2rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text-heading); font-weight: 600; }

.about-values { display: flex; flex-direction: column; gap: 1rem; }

.value-item {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  transition: box-shadow var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
}

.value-item:hover {
  box-shadow: var(--glow-sm);
  transform: translateX(4px);
}

.value-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.value-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }

/* ── PROCESS ── */
#process { background: var(--section-alt); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  opacity: 0.35;
}

.process-step { padding: 2rem 2rem 2.5rem; position: relative; }

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--glow-sm);
}

.step-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
}

.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.85; }

/* ── PRICING ── */
#pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Featured card with gradient border */
.pricing-card.featured {
  background: var(--surface-2);
  transform: translateY(-8px);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
  box-shadow: var(--glow-md);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-accent);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.pricing-price sup {
  font-size: 1.6rem;
  vertical-align: super;
  font-weight: 600;
}

.pricing-price.poa { font-size: 2.4rem; }

.pricing-price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
  font-weight: 700;
}

.pricing-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--text-heading);
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}

.pricing-cta:hover {
  border-color: var(--accent);
  background: rgba(99,102,241,0.08);
}

.pricing-card.featured .pricing-cta,
.care-card.care-featured .pricing-cta {
  background: var(--grad-accent);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-sm);
}

.pricing-card.featured .pricing-cta:hover,
.care-card.care-featured .pricing-cta:hover {
  box-shadow: var(--glow-md);
  opacity: 0.9;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2rem;
  letter-spacing: 0.02em;
}

/* Care plans */
.care-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0 1.5rem;
}

.care-divider::before,
.care-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.care-divider-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.care-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 70ch;
  margin: 0 auto 3rem;
  text-align: center;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.care-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.care-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.care-card.care-featured {
  background: var(--surface-2);
  transform: translateY(-8px);
}

.care-card.care-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.care-card.care-featured:hover {
  transform: translateY(-12px);
  box-shadow: var(--glow-md);
}

.care-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.care-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.care-price sup {
  font-size: 1.4rem;
  vertical-align: super;
  font-weight: 600;
}

.care-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.care-divider-line {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.care-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.care-features li {
  font-size: 0.85rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}

.care-features li::before {
  content: '✓';
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
  font-weight: 700;
}

/* ── CONTACT ── */
#contact {
  background: var(--section-alt);
  padding: 0;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info-panel {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-panel .section-label,
.contact-info-panel .section-title { position: relative; z-index: 1; }

.contact-tagline {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 1rem 0 2.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.contact-details {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:first-child { border-top: 1px solid var(--border); }

.contact-row-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 6rem;
  padding-top: 0.1rem;
}

.contact-row-value { color: var(--text-body); }

.contact-row-value a {
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.contact-row-value a:hover { color: var(--accent); }

.contact-form-panel { padding: 5rem 4rem; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-heading);
  outline: none;
  transition: border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  resize: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-faint); }

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.form-input.error,
.form-textarea.error { border-color: #f87171; }

.form-textarea { height: 130px; }

.form-error { font-size: 0.72rem; color: #f87171; display: none; }
.form-error.visible { display: block; }

.form-submit {
  background: var(--grad-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  box-shadow: var(--glow-sm);
  transition: opacity var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  letter-spacing: 0.02em;
}

.form-submit:hover {
  opacity: 0.9;
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}

.form-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--accent);
}

.form-success.visible { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 4rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text-heading);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-logo .logo-dot {
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 0.85;
}

.footer-nav { display: flex; gap: 2rem; }

.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.footer-nav a:hover { color: var(--text-heading); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy,
.footer-loc {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ── RESPONSIVE: 900px ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80vw; max-width: 340px;
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    padding: 5.5rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transition: right var(--t-mid) var(--ease);
    z-index: 99;
  }

  .nav-links.open { right: 0; }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 0.9rem;
  }

  .nav-links .nav-cta {
    margin-top: 1rem;
    display: block;
    text-align: center;
    padding: 0.85rem 1.5rem;
  }

  section { padding: 4rem 1.5rem; }
  .section-container { padding: 0; }

  .hero { padding: 5.5rem 1.5rem 3rem; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }

  .why-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-callout { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 2rem; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .portfolio-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .projects-grid { grid-template-columns: 1fr; }

  .about-split { grid-template-columns: 1fr; min-height: unset; }
  .about-panel { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 2rem; min-height: 300px; }
  .about-content { padding: 3rem 2rem; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .care-grid { grid-template-columns: 1fr; }
  .care-card.care-featured { transform: none; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-info-panel { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 2rem; }
  .contact-form-panel { padding: 3rem 2rem; }

  .footer-inner { padding: 2.5rem 1.5rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

/* ── RESPONSIVE: 560px ── */
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { justify-content: center; text-align: center; }

  .form-submit { width: 100%; text-align: center; align-self: stretch; }

  nav { padding: 0.9rem 1.2rem; }

  .hero-glow--1 { width: 300px; height: 300px; }
  .hero-glow--2 { width: 250px; height: 250px; }

  .stats-row { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-divider:nth-child(2) { display: none; }

  .home-section-head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  .page-hero { padding: 6rem 1.5rem 3rem; }
  .page-hero--sm { padding: 6rem 1.5rem 2rem; }

  .why-section .why-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-section .why-grid { grid-template-columns: 1fr; }
}

/* ── MULTI-PAGE: NAV ACTIVE STATE ── */
.nav-links .nav-active {
  color: var(--accent) !important;
}

.nav-links .nav-active::after {
  width: 100% !important;
}

/* ── PAGE HERO ── */
.page-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
  background: var(--bg);
  z-index: 1;
}

.page-hero--sm {
  padding: 8rem 2rem 3rem;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 1.2rem;
}

.page-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── HOME STATS ── */
.home-stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem 2rem;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-unit {
  color: var(--accent);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 16ch;
  margin: 0 auto;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── HOME WORK / SERVICES SECTIONS ── */
.home-work {
  background: var(--section-alt);
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.home-services {
  background: var(--bg);
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ── WORK PAGE SECTION ── */
.work-section {
  background: var(--section-alt);
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

/* ── SERVICES / PROCESS / WHY ON INNER PAGES ── */
.why-section {
  background: var(--bg);
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.process-section {
  background: var(--section-alt);
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

/* ── HOME CTA SECTION ── */
.home-cta-section {
  background: var(--bg);
  padding: 5rem 2rem 6rem;
  position: relative;
  z-index: 1;
}

.home-cta-block {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: 5rem 3rem;
}

.home-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.home-cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.home-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 1.2rem;
}

.home-cta-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 48ch;
  margin: 0 auto 2rem;
}

@media (max-width: 560px) {
  .home-cta-block { padding: 3rem 1.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .page-hero { padding: 6rem 1.2rem 3rem; }
}
