:root {
  --navy: #0F1A2E;
  --navy-soft: #1B2C4A;
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --muted: #6B7280;
  --border: #E5E7EB;
  --blue: #2563EB;
  --amber: #F59E0B;
  --success: #059669;
  --max: 1200px;
  --gutter: 64px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
.mono { font-family: 'JetBrains Mono', monospace; }
.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.accent-bar { width: 56px; height: 3px; background: var(--amber); }
.dotgrid { background-image: radial-gradient(circle, rgba(15,26,46,0.08) 1.2px, transparent 1.2px); background-size: 24px 24px; }
.dotgrid-dark { background-image: radial-gradient(circle, rgba(250,250,247,0.08) 1.2px, transparent 1.2px); background-size: 24px 24px; }

/* Nav */
nav.top { position: sticky; top: 0; z-index: 50; background: rgba(250,250,247,0.85); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 18px var(--gutter); display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 32px; height: 32px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.wordmark { font-family: 'Plus Jakarta Sans'; font-weight: 800; letter-spacing: -0.045em; line-height: 1; color: var(--navy); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.15s; }
.nav-links a:not(.btn):hover { color: var(--blue); }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; font-size: 14px; font-weight: 600; border-radius: 6px; transition: all 0.15s ease; cursor: pointer; border: none; font-family: inherit; letter-spacing: -0.005em; }
.btn-primary { background: var(--navy); color: var(--bg); }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); }
.btn svg { width: 14px; height: 14px; }

/* Hero */
.hero { padding: 96px 0 120px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 6px 12px; background: rgba(245,158,11,0.1); color: #B45309; border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.hero h1 { margin: 24px 0 24px; font-size: clamp(48px, 6.5vw, 84px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.0; color: var(--navy); }
.hero h1 em { font-style: normal; color: var(--blue); position: relative; transition: opacity 0.25s ease; display: inline-block; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px; background: rgba(245,158,11,0.35); z-index: -1; }
.hero h1 em.fade-out { opacity: 0; }
.hero p.lede { font-size: 20px; line-height: 1.55; color: var(--text); max-width: 540px; margin: 0 0 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 48px; display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.hero-meta .item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .num { font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.hero-meta .label { font-size: 12px; color: var(--muted); }

.hero-visual { position: relative; aspect-ratio: 1 / 1; background: var(--navy); border-radius: 16px; overflow: hidden; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; color: var(--bg); }
.hero-visual::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(250,250,247,0.07) 1.2px, transparent 1.2px); background-size: 20px 20px; pointer-events: none; }
.hv-top { position: relative; display: flex; justify-content: space-between; align-items: flex-start; }
.hv-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(5,150,105,0.18); color: #6EE7B7; border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.hv-dot { width: 6px; height: 6px; background: #6EE7B7; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hv-content { position: relative; transition: opacity 0.3s ease; }
.hv-content.fade-out { opacity: 0; }
.hv-quote { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; }
.hv-quote em { font-style: normal; color: var(--amber); }
.hv-attr { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(250,250,247,0.15); }
.hv-attr .name { font-size: 13px; font-weight: 600; }
.hv-attr .role { font-size: 11px; color: rgba(250,250,247,0.55); margin-top: 2px; }

/* Trust */
.trust { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { display: grid; grid-template-columns: 1fr 3fr; gap: 48px; align-items: center; }
.trust .label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); line-height: 1.6; }
.trust .logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.trust .placeholder { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); padding: 14px 20px; background: rgba(15,26,46,0.04); border-radius: 4px; border: 1px dashed var(--border); display: flex; flex-direction: column; gap: 4px; min-width: 140px; }
.trust .placeholder .ph-tag { font-size: 9px; color: var(--amber); letter-spacing: 0.12em; }
.trust .placeholder .ph-name { color: var(--navy); font-weight: 500; }

/* Section */
section { padding: 120px 0; }
.section-head { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.section-head h2 { margin: 16px 0 0; font-size: clamp(36px, 4.5vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; color: var(--navy); }
.section-head h2 em { font-style: normal; color: var(--amber); }
.section-head p { margin: 0; font-size: 17px; line-height: 1.65; color: var(--text); max-width: 540px; }

/* Problem */
#problem { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.stat-card { padding: 32px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; }
.stat-card .num { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; color: var(--navy); line-height: 1; margin-bottom: 16px; }
.stat-card .num em { font-style: normal; color: var(--blue); }
.stat-card .copy { font-size: 15px; color: var(--text); line-height: 1.55; }
.stat-card .source { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); letter-spacing: 0.06em; text-transform: uppercase; }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc-card { padding: 40px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; cursor: pointer; display: flex; flex-direction: column; gap: 24px; min-height: 340px; position: relative; color: inherit; text-decoration: none; }
.svc-card::after { content: "→"; position: absolute; right: 32px; bottom: 32px; font-size: 22px; color: var(--blue); opacity: 0; transform: translateX(-8px); transition: opacity 0.25s ease, transform 0.25s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(37,99,235,0.10); border-color: var(--blue); }
.svc-card:hover h3 { color: var(--blue); }
.svc-card:hover .svc-icon { color: var(--blue); }
.svc-card:hover::after { opacity: 1; transform: translateX(0); }
.svc-card:hover ul li::before { color: var(--amber); }
.svc-card:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.svc-num { display: flex; justify-content: space-between; align-items: center; }
.svc-num .n { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }
.svc-icon { width: 32px; height: 32px; color: var(--navy); transition: color 0.2s ease; }
.svc-card h3 { margin: 0; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); line-height: 1.1; transition: color 0.2s ease; }
.svc-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.svc-card ul { margin: auto 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; padding-top: 20px; border-top: 1px solid var(--border); }
.svc-card ul li { font-size: 13px; color: var(--text); display: flex; align-items: baseline; gap: 8px; }
.svc-card ul li::before { content: "→"; color: var(--blue); font-weight: 700; transition: color 0.2s ease; }

/* Work */
#work { background: var(--navy); color: var(--bg); }
#work .section-head h2 { color: var(--bg); }
#work .section-head p { color: rgba(250,250,247,0.7); }
#work .eyebrow { color: var(--amber); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.work-card { padding: 32px; background: var(--navy-soft); border: 1px solid rgba(250,250,247,0.1); border-radius: 12px; display: flex; flex-direction: column; gap: 20px; }
.work-card .tag { display: inline-flex; align-items: center; gap: 8px; padding: 4px 10px; background: rgba(245,158,11,0.15); color: var(--amber); border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; align-self: flex-start; font-weight: 500; }
.work-card .stat { font-size: 48px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--bg); }
.work-card .stat em { font-style: normal; color: var(--amber); }
.work-card h3 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--bg); line-height: 1.3; }
.work-card p { margin: 0; font-size: 14px; color: rgba(250,250,247,0.65); line-height: 1.55; }
.work-card .meta { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(250,250,247,0.1); display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(250,250,247,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

/* Process */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; }
.process-step { padding: 40px 32px; background: var(--surface); border: 1px solid var(--border); position: relative; }
.process-step:first-child { border-radius: 12px 0 0 12px; }
.process-step:last-child { border-radius: 0 12px 12px 0; border-left: none; background: var(--navy); color: var(--bg); }
.process-step:nth-child(2) { border-left: none; border-right: none; }
.process-step .step-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--blue); letter-spacing: 0.14em; }
.process-step:last-child .step-num { color: var(--amber); }
.process-step h3 { margin: 12px 0 8px; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.process-step .duration { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.process-step:last-child .duration { color: rgba(250,250,247,0.5); }
.process-step p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.process-step:last-child p { color: rgba(250,250,247,0.7); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-quote { font-size: 28px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.35; color: var(--navy); margin: 0 0 32px; }
.about-quote em { font-style: normal; color: var(--amber); }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.founder { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.founder .avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); color: var(--bg); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 16px; }
.founder .name { font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.founder .role { font-size: 12px; color: var(--muted); margin-top: 2px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.06em; text-transform: uppercase; }
.founder p { margin: 12px 0 0; font-size: 13px; line-height: 1.55; color: var(--text); }
.about-vis { aspect-ratio: 4 / 5; background: var(--navy); border-radius: 16px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; color: var(--bg); position: relative; overflow: hidden; }
.about-vis::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(250,250,247,0.07) 1.2px, transparent 1.2px); background-size: 20px 20px; }
.about-vis-top { position: relative; }
.about-vis-bottom { position: relative; }
.about-stat { font-size: 88px; font-weight: 700; letter-spacing: -0.04em; line-height: 0.95; color: var(--amber); }
.about-stat-label { margin-top: 12px; font-size: 16px; color: var(--bg); max-width: 280px; line-height: 1.4; font-weight: 500; }

/* FAQ */
#faq { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 32px; }
.faq-q h3 { margin: 0; font-size: 19px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; line-height: 1.4; }
.faq-q .cat { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--amber); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; display: block; }
.faq-toggle { width: 24px; height: 24px; flex-shrink: 0; color: var(--blue); transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { display: none; padding-top: 16px; font-size: 15px; line-height: 1.7; color: var(--text); max-width: 720px; }
.faq-item.open .faq-a { display: block; }

/* CTA */
#cta { background: var(--navy); color: var(--bg); position: relative; overflow: hidden; padding: 120px 0; }
#cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(250,250,247,0.06) 1.2px, transparent 1.2px); background-size: 24px 24px; }
.cta-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.cta-inner h2 { margin: 24px 0 24px; font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.0; }
.cta-inner h2 em { font-style: normal; color: var(--amber); }
.cta-inner p { margin: 0 auto 36px; font-size: 19px; color: rgba(250,250,247,0.75); max-width: 560px; line-height: 1.55; }
.cta-inner .accent-bar { margin: 0 auto; }
#cta .btn-primary { background: var(--amber); color: var(--navy); }
#cta .btn-primary:hover { background: var(--bg); }
#cta .btn-ghost { color: var(--bg); border-color: rgba(250,250,247,0.25); }
#cta .btn-ghost:hover { border-color: var(--bg); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer { background: var(--navy); color: rgba(250,250,247,0.6); padding: 64px 0 32px; border-top: 1px solid rgba(250,250,247,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(250,250,247,0.08); }
.footer-col h4 { margin: 0 0 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,250,247,0.5); font-weight: 500; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(250,250,247,0.75); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--amber); }
.footer-brand .wordmark { color: var(--bg); font-size: 28px; }
.footer-brand p { margin: 16px 0 0; font-size: 14px; line-height: 1.6; max-width: 320px; color: rgba(250,250,247,0.6); }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; color: rgba(250,250,247,0.4); }

/* Subpage hero */
.subpage-hero { padding: 80px 0 64px; background: var(--surface); border-bottom: 1px solid var(--border); }
.subpage-hero .container { display: grid; grid-template-columns: 1.6fr 1fr; gap: 80px; align-items: end; }
.subpage-hero h1 { margin: 16px 0 24px; font-size: clamp(40px, 5.5vw, 64px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; color: var(--navy); }
.subpage-hero h1 em { font-style: normal; color: var(--amber); }
.subpage-hero .lede { font-size: 19px; line-height: 1.55; color: var(--text); max-width: 560px; margin: 0; }
.subpage-hero .meta { display: flex; flex-direction: column; gap: 16px; }
.subpage-hero .meta .item { padding: 20px 24px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); }
.subpage-hero .meta .item .num { font-size: 32px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
.subpage-hero .meta .item .num em { font-style: normal; color: var(--blue); }
.subpage-hero .meta .item .label { margin-top: 6px; font-size: 13px; color: var(--muted); }
.breadcrumb { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { margin: 0 10px; color: var(--border); }
.breadcrumb .current { color: var(--navy); }

/* Generic content sections (for subpages) */
.content { padding: 96px 0; }
.content + .content { padding-top: 0; }
.content-grid-2 { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.content h2 { margin: 0 0 24px; font-size: clamp(32px, 4vw, 44px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; color: var(--navy); }
.content h2 em { font-style: normal; color: var(--amber); }
.content p { font-size: 17px; line-height: 1.65; color: var(--text); margin: 0 0 16px; }
.content p.lede { font-size: 19px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.checklist li { padding: 20px 24px; border: 1px solid var(--border); background: var(--surface); border-radius: 8px; font-size: 15px; line-height: 1.5; display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: "✓"; color: var(--amber); font-weight: 700; font-size: 18px; flex-shrink: 0; }
.deliverables { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.deliv-card { padding: 28px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.deliv-card .icon { width: 36px; height: 36px; color: var(--blue); margin-bottom: 16px; }
.deliv-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.deliv-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); }

.list-large { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.list-large li { padding: 24px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 60px 1fr; gap: 32px; align-items: baseline; }
.list-large li:first-child { border-top: 1px solid var(--border); }
.list-large li .n { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--blue); letter-spacing: 0.14em; }
.list-large li h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.list-large li p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Service nav (other services on detail pages) */
.svc-nav { padding: 64px 0; background: var(--surface); border-top: 1px solid var(--border); }
.svc-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-nav h4 { margin: 0 0 32px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.svc-nav-card { padding: 24px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; transition: all 0.2s ease; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.svc-nav-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.svc-nav-card span.t { font-size: 16px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.svc-nav-card span.n { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }

/* Responsive */
@media (max-width: 960px) {
  :root { --gutter: 28px; }
  section { padding: 80px 0; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 64px 0 80px; }
  .hero-grid, .about-grid, .section-head, .trust-inner, .subpage-hero .container, .content-grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .stat-grid, .work-grid, .deliverables, .svc-nav-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-radius: 8px !important; border: 1px solid var(--border) !important; margin-bottom: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .checklist { grid-template-columns: 1fr; }
}

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