/* =========================================================================
   Relay Digital — Design tokens
   Palette:  ink #10182B · paper #EDEFF3 · card #FFFFFF
             blue #3B82F6 (signal / CTA) · teal #2FA89C (secondary)
             muted #5B6478 · line #D6DAE3
   Type:     Space Grotesk (display) · IBM Plex Sans (body) · IBM Plex Mono (data)
   Signature: the "relay line" — a horizontal pulse with numbered nodes,
              one per service, echoing the idea of relaying signal/work.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #10182B;
  --ink-soft: #1B2440;
  --paper: #EDEFF3;
  --card: #FFFFFF;
  --blue: #3B82F6;
  --blue-dark: #2563EB;
  --teal: #2FA89C;
  --muted: #5B6478;
  --line: #D6DAE3;
  --line-dark: #2B3554;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 10px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--muted); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn svg { width: 15px; height: 15px; }
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--blue); color: var(--ink); }
.btn-primary:hover { background: var(--blue-dark); }

.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(237,239,243,0.35); }
.btn-ghost:hover { border-color: var(--paper); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }

/* ---------------------------------------------------------------------
   Header / nav
   --------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,24,43,0.92);
  backdrop-filter: blur(8px);
  color: var(--paper);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--paper);
  display: flex; align-items: center; gap: 11px;
}
.logo .dot { color: var(--blue); }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--blue);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 21px; height: 21px; }
.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.nav-links a {
  color: rgba(237,239,243,0.75);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--paper);
  border-bottom-color: var(--blue);
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  background: none; border: none; color: var(--paper);
  width: 34px; height: 34px; cursor: pointer;
  padding: 0;
}
.hamburger {
  position: relative;
  width: 20px; height: 14px;
  display: block;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--paper);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 6px; }
.hamburger span:nth-child(3) { top: 12px; }
body.nav-open .hamburger span:nth-child(1) { top: 6px; transform: rotate(45deg); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.mobile-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid transparent;
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.3s ease, padding 0.35s ease, border-color 0.3s ease;
}
.mobile-panel a {
  padding: 12px 4px;
  color: var(--paper);
  font-family: var(--font-mono);
  border-bottom: 1px solid rgba(237,239,243,0.08);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
body.nav-open .mobile-panel {
  max-height: 480px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 8px;
  padding-bottom: 20px;
  border-top-color: rgba(237,239,243,0.15);
}
body.nav-open .mobile-panel a { opacity: 1; transform: translateX(0); }
body.nav-open .mobile-panel a:nth-child(1) { transition-delay: 0.06s; }
body.nav-open .mobile-panel a:nth-child(2) { transition-delay: 0.1s; }
body.nav-open .mobile-panel a:nth-child(3) { transition-delay: 0.14s; }
body.nav-open .mobile-panel a:nth-child(4) { transition-delay: 0.18s; }
body.nav-open .mobile-panel a:nth-child(5) { transition-delay: 0.22s; }

/* ---------------------------------------------------------------------
   Hero + relay line signature
   --------------------------------------------------------------------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 0 60px;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative illustration + legibility scrim, shared by every hero/photo section. */
.hero-bg-wrap {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg-wrap svg { width: 100%; height: 100%; display: block; }
.hero-scrim {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(100deg, rgba(15,23,41,0.97) 22%, rgba(15,23,41,0.72) 50%, rgba(15,23,41,0.4) 100%);
}
.hero-scrim.hero-scrim-flat {
  background: linear-gradient(180deg, rgba(15,23,41,0.85), rgba(15,23,41,0.94) 55%, rgba(15,23,41,0.85));
}
.hero > .wrap, .photo-section > .wrap { position: relative; z-index: 2; width: 100%; }

.hero-content { max-width: 640px; }
.hero-grid {
  display: block;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  color: var(--paper);
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero p.lede {
  color: rgba(237,239,243,0.72);
  font-size: 1.08rem;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 28px;
  margin-top: 42px;
  font-family: var(--font-mono);
}
.hero-stats div { border-left: 1px solid rgba(237,239,243,0.2); padding-left: 14px; }
.hero-stats .num { font-size: 1.5rem; color: var(--blue); display: block; font-weight: 500; }
.hero-stats .lbl { font-size: 0.72rem; color: rgba(237,239,243,0.55); text-transform: uppercase; letter-spacing: 0.08em; }

/* (legacy side-panel styles removed — hero is now a single full-bleed block) */

/* ---------------------------------------------------------------------
   Section shells
   --------------------------------------------------------------------- */
.section { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.section-head-center {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head-center .eyebrow { justify-content: center; }
.section-alt { background: var(--card); }

/* ---------------------------------------------------------------------
   Service cards
   --------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.service-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.service-card .node-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--blue-dark);
  letter-spacing: 0.08em;
}
.service-icon {
  width: 42px; height: 42px;
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 12px 0 16px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { font-size: 0.93rem; margin-bottom: 0; }
.service-card .more {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .more svg { width: 13px; height: 13px; }

/* services page: detail rows */
.service-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  padding: 40px 24px;
  margin: 0 -24px;
  border-top: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease;
}
.service-detail:first-of-type { border-top: none; }
.service-detail:hover {
  background: var(--accent-tint, var(--paper));
  transform: translateX(4px);
}
.service-detail:hover .service-icon { transform: scale(1.08); }
.service-detail:hover h3 { color: var(--accent, var(--ink)); }
.service-detail-meta { font-family: var(--font-mono); }
.service-detail-meta .node-tag { color: var(--blue-dark); font-size: 0.78rem; letter-spacing: 0.08em; }
.service-detail-meta .service-icon { margin-top: 10px; }
.service-detail h3 { font-size: 1.35rem; margin-bottom: 10px; transition: color 0.2s ease; }
.includes-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.includes-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--ink); }
.check-chip {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.14);
  color: #22C55E;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-chip svg { width: 13px; height: 13px; stroke-width: 2.4; }

/* ---------------------------------------------------------------------
   Process strip
   --------------------------------------------------------------------- */
/* Full-bleed photo-backed section (used for "How we work") */
.photo-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: var(--paper);
}
.photo-section .section-head h2 { color: var(--paper); }
.photo-section .section-head p { color: rgba(237,239,243,0.68); }
.photo-section .eyebrow { color: var(--blue); }

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border: none;
}
.process-step {
  padding: 26px 22px;
  border: 1px solid rgba(237,239,243,0.16);
  border-radius: var(--radius);
  background: rgba(15,23,41,0.55);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  background: rgba(15,23,41,0.78);
}
.process-step-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(59,130,246,0.18);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}
.process-step-icon svg { width: 19px; height: 19px; }
.process-step:hover .process-step-icon { transform: scale(1.1); }
.process-step .n { font-family: var(--font-mono); color: var(--blue); font-size: 0.8rem; }
.process-step h4 { font-size: 1rem; margin: 10px 0 6px; color: var(--paper); }
.process-step p { font-size: 0.88rem; margin: 0; color: rgba(237,239,243,0.7); }

/* ---------------------------------------------------------------------
   CTA band
   --------------------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--paper); font-size: 1.5rem; margin-bottom: 6px; }
.cta-band p { color: rgba(237,239,243,0.65); margin: 0; }

/* ---------------------------------------------------------------------
   Contact page
   --------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 { color: var(--paper); font-size: 1.15rem; }
.contact-line {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 0.9rem;
  padding: 12px 0;
  border-top: 1px solid rgba(237,239,243,0.12);
}
.contact-line:first-of-type { border-top: none; }
.contact-line svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  background: var(--card);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-msg {
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}
.form-msg.success { background: #E4F5F1; color: #1B7A6E; border: 1px solid #B7E4DC; }
.form-msg.error { background: #FBEAEA; color: #A3352E; border: 1px solid #F3C6C3; }

.field-error { color: #C0392B; font-size: 0.78rem; margin-top: 5px; font-family: var(--font-mono); }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #C0392B; }

/* ---------------------------------------------------------------------
   About page
   --------------------------------------------------------------------- */
.about-hero { padding: 60px 0 20px; }
.dotted-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  padding: 46px 40px;
  margin-bottom: 48px;
}
.dotted-panel .dot-grid {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(rgba(237,239,243,0.22) 1.3px, transparent 1.3px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 78% 50%, black 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 100% at 78% 50%, black 0%, transparent 75%);
}
.dotted-panel .content { position: relative; z-index: 2; max-width: 56ch; }
.dotted-panel h2 { color: var(--paper); }
.dotted-panel p { color: rgba(237,239,243,0.68); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-dark);
  box-shadow: 0 12px 28px rgba(16,24,43,0.1);
}
.value-icon {
  width: 42px; height: 42px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card:hover .value-icon { transform: scale(1.08); }
.value-card .n { font-family: var(--font-mono); color: var(--blue-dark); font-size: 0.78rem; }
.value-card h3 { font-size: 1.05rem; margin: 8px 0; }
.value-card p { font-size: 0.92rem; margin: 0; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(237,239,243,0.65);
  padding: 52px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(237,239,243,0.12);
}
.footer-grid h4 {
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-grid a { display: block; padding: 5px 0; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--blue); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(237,239,243,0.2);
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  color: rgba(237,239,243,0.75);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.social-row a svg { width: 16px; height: 16px; }
.social-row a:hover { border-color: var(--blue); color: var(--blue); background: rgba(232,163,61,0.08); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  flex-wrap: wrap; gap: 10px;
}
.footer-legal-links { display: inline-flex; align-items: center; gap: 8px; }
.footer-legal-links a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-legal-links a:hover { color: var(--blue); }

/* ---------------------------------------------------------------------
   FAQ accordion
   --------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-toggle-icon svg { width: 14px; height: 14px; transform: rotate(90deg); transition: transform 0.25s ease; }
.faq-item[open] .faq-toggle-icon { background: var(--blue); color: var(--paper); }
.faq-item[open] .faq-toggle-icon svg { transform: rotate(-90deg); }
.faq-item:hover summary { color: var(--blue-dark); }
.faq-answer { padding: 0 22px 22px; }
.faq-answer p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   Legal / static content pages
   --------------------------------------------------------------------- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.2rem; margin-top: 2em; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.97rem; }
.legal-content ul { padding-left: 1.2em; display: grid; gap: 8px; margin: 0 0 1em; }
.legal-content a { color: var(--blue-dark); text-decoration: underline; }
.legal-notice {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 32px;
}

/* ---------------------------------------------------------------------
   Back-to-top button
   --------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16,24,43,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
  z-index: 60;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-dark); }
@media (max-width: 640px) { .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; } }

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 14px; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
