/* ==========================================================================
   OODTC — Design System
   ========================================================================== */

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

:root{
  /* Color */
  --bg:            #0B0F14;
  --bg-alt:        #0E1319;
  --surface:       #131A22;
  --surface-2:     #182029;
  --border:        #232D38;
  --border-soft:   #1A222B;

  --text:          #EDF2F6;
  --text-muted:    #93A1AF;
  --text-dim:      #5B6A79;

  --accent:        #00D9C0;
  --accent-dim:    #0AA893;
  --accent-soft:   rgba(0, 217, 192, 0.10);
  --accent-soft-2: rgba(0, 217, 192, 0.22);
  --amber:         #FFB454;
  --amber-soft:    rgba(255, 180, 84, 0.12);
  --danger:        #FF6B6B;

  /* Type */
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --max-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --nav-h: 76px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
h1,h2,h3,h4,p,figure{ margin:0; }
button{ font: inherit; }

::selection{ background: var(--accent-soft-2); color: var(--text); }

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Background: faint grid + vignette, present on every page */
body::before{
  content:"";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 40%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ---------- Typography helpers ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before{
  content:"";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

h1, h2, h3, .font-display{ font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

.section-head{ max-width: 620px; margin-bottom: 52px; }
.section-head h2{ font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; margin-top: 14px; }
.section-head p{ color: var(--text-muted); font-size: 16.5px; margin-top: 14px; }

.text-mono{ font-family: var(--font-mono); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--accent);
  color: #06110F;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(0,217,192,0.55);
}
.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm{ padding: 10px 18px; font-size: 13.5px; }
.btn svg{ width: 15px; height: 15px; }

/* ---------- Nav ---------- */
.nav{
  position: fixed; top:0; left:0; right:0;
  height: var(--nav-h);
  z-index: 100;
  display:flex; align-items:center;
  background: rgba(11,15,20,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.logo{ display:flex; align-items:center; gap: 10px; font-family: var(--font-display); font-weight:700; font-size: 19px; letter-spacing:-0.01em; }
.logo .mark{
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-dim) 100%);
  display:flex; align-items:center; justify-content:center;
  color:#06110F; font-family: var(--font-mono); font-weight:700; font-size: 14px;
  box-shadow: 0 6px 18px -6px rgba(0,217,192,0.65);
}
.logo .dot{ color: var(--accent); }

.nav-links{ display:flex; align-items:center; gap: 36px; }
.nav-links a{
  font-size: 14px; color: var(--text-muted); font-weight: 500;
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-links a:hover{ color: var(--text); }
.nav-links a.active{ color: var(--text); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background: var(--accent); border-radius: 2px;
}
.nav-cta{ display:flex; align-items:center; gap: 18px; }

.nav-toggle{
  display:none; width: 40px; height:40px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface);
  align-items:center; justify-content:center; cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width: 16px; height:2px; background: var(--text); position:relative;
  transition: all .25s var(--ease);
}
.nav-toggle span::before{ position:absolute; top:-5px; }
.nav-toggle span::after{ position:absolute; top:5px; }

.mobile-panel{
  position: fixed; top: var(--nav-h); left:0; right:0; bottom:0;
  background: var(--bg); z-index: 99;
  padding: 28px;
  display:none;
  flex-direction:column; gap: 4px;
  border-top: 1px solid var(--border-soft);
}
.mobile-panel.open{ display:flex; }
.mobile-panel a{
  padding: 16px 4px; font-size: 20px; font-family: var(--font-display); font-weight:600;
  border-bottom: 1px solid var(--border-soft); color: var(--text);
}
.mobile-panel .btn{ margin-top: 20px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding: calc(var(--nav-h) + 76px) 0 64px;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero h1{ font-size: clamp(32px, 5vw, 52px); margin-top: 16px; max-width: 780px; }
.page-hero .lede{ color: var(--text-muted); font-size: 17px; max-width: 640px; margin-top: 18px; }
.page-hero .meta{ margin-top: 26px; display:flex; gap: 18px; flex-wrap:wrap; }
.meta-chip{
  font-family: var(--font-mono); font-size: 12.5px; color: var(--text-dim);
  border: 1px solid var(--border); padding: 7px 13px; border-radius: 999px;
  display:flex; align-items:center; gap:8px;
}

/* ---------- Footer ---------- */
footer{ border-top: 1px solid var(--border-soft); padding: 64px 0 32px; position:relative; z-index:1; }
.footer-top{ display:grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; }
.footer-brand p{ color: var(--text-muted); font-size: 14.5px; margin-top: 16px; max-width: 300px; }
.footer-col h4{ font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-col a{ display:block; color: var(--text-muted); font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover{ color: var(--accent); }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap: 14px;
  padding-top: 28px; border-top: 1px solid var(--border-soft);
  font-size: 13px; color: var(--text-dim);
}
.footer-social{ display:flex; gap: 14px; }
.footer-social a{
  width: 34px; height:34px; border:1px solid var(--border); border-radius: 8px;
  display:flex; align-items:center; justify-content:center; color: var(--text-muted);
  transition: all .2s;
}
.footer-social a:hover{ border-color: var(--accent); color: var(--accent); }
.footer-social svg{ width:15px; height:15px; }

/* ---------- Utility reveal ---------- */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
  .wrap{ padding: 0 20px; }
}

/* ==========================================================================
   Homepage — Hero
   ========================================================================== */
.hero{
  padding: calc(var(--nav-h) + 64px) 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1{
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.07;
  margin-top: 20px;
}
.hero-copy h1 em{
  font-style: normal;
  color: var(--accent);
}
.hero-copy .lede{
  color: var(--text-muted);
  font-size: 18px;
  max-width: 480px;
  margin-top: 22px;
}
.hero-actions{ display:flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-proof{
  margin-top: 44px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-proof div{ display:flex; flex-direction:column; gap:4px; }
.hero-proof strong{ font-family: var(--font-display); font-size: 24px; }
.hero-proof span{ font-size: 12.5px; color: var(--text-dim); font-family: var(--font-mono); }

/* Pipeline visual */
.pipeline-card{
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  position: relative;
}
.pipeline-card .pc-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 18px;
}
.pc-dots{ display:flex; gap:6px; }
.pc-dots span{ width:9px; height:9px; border-radius:50%; background: var(--border); }
.pc-label{ font-family: var(--font-mono); font-size: 11.5px; color: var(--text-dim); }
.pipeline-svg{ width: 100%; height: auto; }

.pnode{ transition: filter .3s; }
.pnode rect{ fill: var(--surface-2); stroke: var(--border); stroke-width: 1; }
.pnode.active rect{ stroke: var(--accent); }
.pnode text{ font-family: var(--font-mono); fill: var(--text-muted); font-size: 10.5px; }
.pnode .plabel-main{ fill: var(--text); font-size: 11.5px; font-weight: 600; font-family: var(--font-body); }
.pnode.ai rect{ fill: var(--accent-soft); stroke: var(--accent); }
.pnode.ai .plabel-main{ fill: var(--accent); }

.pline{ fill:none; stroke: var(--border); stroke-width: 1.5; }
.pdot{
  offset-rotate: 0deg;
  fill: var(--accent);
  filter: drop-shadow(0 0 6px rgba(0,217,192,0.9));
}
.pulse-ring{
  fill: none; stroke: var(--accent); stroke-width: 1;
  transform-origin: center;
}

@keyframes flow1{ from{ offset-distance: 0%; } to{ offset-distance: 100%; } }

/* Marquee */
.marquee-section{ padding: 34px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.marquee-label{
  font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 20px; text-align:center;
}
.marquee{ overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-track{ display:flex; gap: 14px; width: max-content; animation: scroll-left 34s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state: paused; }
@keyframes scroll-left{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.platform-chip{
  font-family: var(--font-mono); font-size: 13px; color: var(--text-muted);
  border: 1px solid var(--border); background: var(--surface);
  padding: 10px 18px; border-radius: 999px; white-space: nowrap;
  display:flex; align-items:center; gap:9px;
}
.platform-chip::before{ content:""; width:5px; height:5px; border-radius:50%; background: var(--accent); }

/* ==========================================================================
   Sections shared
   ========================================================================== */
section{ padding: 100px 0; position: relative; z-index:1; }
.section-alt{ background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

/* Services grid */
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.service-card:hover{ transform: translateY(-4px); border-color: var(--accent-soft-2); background: var(--surface-2); }
.service-num{ font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.service-icon{
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid var(--accent-soft-2);
  display:flex; align-items:center; justify-content:center; margin: 16px 0 20px;
}
.service-icon svg{ width: 20px; height:20px; stroke: var(--accent); }
.service-card h3{ font-size: 18.5px; margin-bottom: 10px; }
.service-card p{ color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }
.service-card .tags{ display:flex; flex-wrap:wrap; gap:7px; margin-top: 18px; }
.service-card .tags span{
  font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim);
  border: 1px solid var(--border-soft); padding: 4px 9px; border-radius: 999px;
}

/* Process (real sequence — justified numbering) */
.process-list{ display:flex; flex-direction:column; }
.process-item{
  display:grid; grid-template-columns: 90px 1fr; gap: 28px;
  padding: 30px 0; border-top: 1px solid var(--border-soft);
}
.process-item:last-child{ border-bottom: 1px solid var(--border-soft); }
.process-num{ font-family: var(--font-mono); font-size: 15px; color: var(--accent); }
.process-body h3{ font-size: 20px; margin-bottom: 8px; }
.process-body p{ color: var(--text-muted); font-size: 15px; max-width: 620px; }
.process-body .p-meta{ font-family: var(--font-mono); font-size: 11.5px; color: var(--text-dim); margin-top: 10px; }

/* Trust / compliance band */
.trust-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.trust-list{ display:flex; flex-direction:column; gap: 22px; margin-top: 28px; }
.trust-row{ display:flex; gap: 16px; align-items:flex-start; }
.trust-check{
  width: 22px; height: 22px; border-radius: 6px; flex-shrink:0; margin-top:2px;
  background: var(--accent-soft); border: 1px solid var(--accent-soft-2);
  display:flex; align-items:center; justify-content:center;
}
.trust-check svg{ width: 12px; height:12px; stroke: var(--accent); }
.trust-row strong{ display:block; font-size: 15px; margin-bottom: 3px; }
.trust-row span{ font-size: 14px; color: var(--text-muted); }
.trust-panel{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; font-family: var(--font-mono); font-size: 13px; color: var(--text-muted);
}
.trust-panel .tp-line{ display:flex; justify-content:space-between; padding: 11px 0; border-bottom: 1px dashed var(--border); }
.trust-panel .tp-line:last-child{ border-bottom:none; }
.trust-panel .tp-line b{ color: var(--text); font-weight:500; }
.trust-panel .ok{ color: var(--accent); }

/* Stats band */
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card{ border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 26px; }
.stat-card strong{ font-family: var(--font-display); font-size: 34px; color: var(--accent); display:block; }
.stat-card span{ font-size: 13.5px; color: var(--text-muted); margin-top: 6px; display:block; }

/* CTA band */
.cta-band{
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  padding: 60px 50px;
  display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::after{
  content:""; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border-radius:50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
}
.cta-band h2{ font-size: clamp(24px,3vw,32px); max-width: 480px; }
.cta-band p{ color: var(--text-muted); margin-top: 10px; max-width: 460px; }
.cta-actions{ display:flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Legal pages (privacy / terms)
   ========================================================================== */
.legal-layout{ display:grid; grid-template-columns: 260px 1fr; gap: 56px; align-items:start; }
.legal-toc{
  position: sticky; top: calc(var(--nav-h) + 28px);
  border: 1px solid var(--border-soft); border-radius: var(--radius-md);
  padding: 22px 20px;
  background: var(--surface);
}
.legal-toc h4{ font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-dim); margin-bottom: 14px; }
.legal-toc a{
  display:block; font-size: 13.5px; color: var(--text-muted); padding: 7px 0;
  border-left: 2px solid transparent; padding-left: 12px; margin-left: -13px;
  transition: color .2s, border-color .2s;
}
.legal-toc a:hover, .legal-toc a.active{ color: var(--accent); border-left-color: var(--accent); }

.legal-body{ max-width: 720px; }
.legal-body section{ padding: 0 0 44px; border:none; }
.legal-body h2{
  font-size: 21px; margin-bottom: 14px; scroll-margin-top: calc(var(--nav-h) + 24px);
  display:flex; align-items:center; gap: 12px;
}
.legal-body h2 .lnum{ font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 400; }
.legal-body h3{ font-size: 16px; margin: 22px 0 10px; }
.legal-body p{ color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }
.legal-body p b, .legal-body li b{ color: var(--text); font-weight: 600; }
.legal-body ul{ margin: 14px 0; }
.legal-body li{ color: var(--text-muted); font-size: 15px; padding-left: 22px; position: relative; margin-bottom: 10px; }
.legal-body li::before{ content:"—"; position:absolute; left:0; color: var(--accent); }
.legal-callout{
  background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 20px; margin: 18px 0;
  font-size: 14px; color: var(--text-muted);
}
.legal-callout b{ color: var(--text); }
.legal-table{ width:100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.legal-table th, .legal-table td{ text-align:left; padding: 11px 14px; border: 1px solid var(--border-soft); color: var(--text-muted); }
.legal-table th{ font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing:.05em; color: var(--text-dim); background: var(--surface); }
.legal-table td b{ color: var(--text); }
.back-top{
  display:inline-flex; align-items:center; gap:8px; margin-top: 40px;
  font-family: var(--font-mono); font-size: 13px; color: var(--text-muted);
}
.back-top:hover{ color: var(--accent); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout{ display:grid; grid-template-columns: 1fr 0.85fr; gap: 50px; align-items:start; }
.contact-form{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ margin-bottom: 20px; }
.field label{ display:block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.field .req{ color: var(--accent); }
.field input, .field select, .field textarea{
  width: 100%; background: var(--bg-alt); border: 1px solid var(--border); color: var(--text);
  padding: 13px 14px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14.5px;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--accent); outline:none; background: var(--surface-2); }
.field textarea{ resize: vertical; min-height: 120px; }
.field-error{ font-size: 12.5px; color: var(--danger); margin-top: 6px; display:none; font-family: var(--font-mono); }
.field.invalid input, .field.invalid select, .field.invalid textarea{ border-color: var(--danger); }
.field.invalid .field-error{ display:block; }
.consent{ display:flex; gap: 10px; align-items:flex-start; font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.consent input{ margin-top: 3px; accent-color: var(--accent); }
.consent a{ color: var(--accent); }
.form-status{
  margin-top: 16px; padding: 13px 16px; border-radius: var(--radius-sm); font-size: 13.5px;
  display:none; font-family: var(--font-mono);
}
.form-status.success{ display:block; background: var(--accent-soft); border: 1px solid var(--accent-soft-2); color: var(--accent); }
.form-status.error{ display:block; background: rgba(255,107,107,.1); border: 1px solid rgba(255,107,107,.35); color: var(--danger); }

.contact-side{ display:flex; flex-direction:column; gap: 16px; }
.contact-card{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; }
.contact-card .cc-label{ font-family: var(--font-mono); font-size: 11.5px; color: var(--text-dim); text-transform:uppercase; letter-spacing:.06em; }
.contact-card .cc-value{ font-size: 17px; font-family: var(--font-display); margin-top: 10px; }
.contact-card .cc-sub{ font-size: 13.5px; color: var(--text-muted); margin-top: 6px; }
.contact-card a.cc-value{ color: var(--accent); }

/* ---------- Responsive: sections ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-copy .lede{ max-width: none; }
  .services-grid{ grid-template-columns: 1fr 1fr; }
  .trust-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr 1fr; }
  .legal-layout{ grid-template-columns: 1fr; }
  .legal-toc{ position: relative; top:0; }
  .contact-layout{ grid-template-columns: 1fr; }
}
@media (max-width: 620px){
  .services-grid{ grid-template-columns: 1fr; }
  .process-item{ grid-template-columns: 1fr; gap: 8px; }
  .stats-grid{ grid-template-columns: 1fr 1fr; }
  .cta-band{ padding: 40px 26px; flex-direction: column; align-items:flex-start; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items:flex-start; }
}
