/* =========================================================
   DEVVAULT LLC — Design System
   Forge. Secure. Scale.
   ========================================================= */

:root {
  --bg: #070a14;
  --bg-2: #0b1020;
  --surface: #0f1628;
  --surface-2: #141d33;
  --border: rgba(140, 160, 220, 0.14);
  --border-strong: rgba(140, 160, 220, 0.28);
  --text: #e8ecf6;
  --text-soft: #aab3cc;
  --text-mute: #76819d;
  --brand: #6366f1;
  --brand-2: #8b5cf6;
  --cyan: #22d3ee;
  --gold: #f5b94d;
  --green: #34d399;
  --grad: linear-gradient(120deg, #6366f1 0%, #8b5cf6 45%, #22d3ee 100%);
  --grad-soft: linear-gradient(120deg, rgba(99,102,241,.16), rgba(34,211,238,.10));
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, .65);
  --shadow-glow: 0 0 0 1px rgba(99,102,241,.25), 0 30px 70px -25px rgba(99,102,241,.5);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background ambience */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60rem 60rem at 80% -10%, rgba(99,102,241,.16), transparent 60%),
    radial-gradient(50rem 50rem at 0% 10%, rgba(34,211,238,.10), transparent 55%),
    radial-gradient(40rem 40rem at 50% 110%, rgba(139,92,246,.12), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(140,160,220,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,160,220,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cyan);
  padding: 7px 14px; border: 1px solid var(--border-strong); border-radius: 999px;
  background: rgba(34,211,238,.06);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.gradient-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lead { font-size: 1.18rem; color: var(--text-soft); max-width: 60ch; }
.muted { color: var(--text-mute); }
.center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin: 18px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 650; font-size: .98rem; padding: 14px 26px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer; transition: .22s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 14px 30px -12px rgba(99,102,241,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(99,102,241,.85); }
.btn-ghost { background: rgba(255,255,255,.03); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,.07); border-color: var(--brand); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7,10,20,.72);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(7,10,20,.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.22rem; letter-spacing: -.02em; }
.brand .logo-mark { width: 38px; height: 38px; flex: none; }
.brand b { font-weight: 800; }
.brand .tld { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px; border-radius: 10px; font-size: .96rem; font-weight: 550;
  color: var(--text-soft); transition: .18s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border-strong); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 20px 0 22px; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats .num { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; }
.hero-stats .lbl { font-size: .86rem; color: var(--text-mute); }

/* Hero visual: code panel */
.code-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-strong); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); position: relative;
}
.code-card::before {
  content: ""; position: absolute; inset: -2px; border-radius: 22px; padding: 2px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; pointer-events: none;
}
.code-top { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); }
.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-top .t { margin-left: 10px; font-family: var(--mono); font-size: .8rem; color: var(--text-mute); }
.code-body { padding: 22px; font-family: var(--mono); font-size: .86rem; line-height: 1.85; color: #c7d0e8; overflow-x: auto; }
.code-body .ln { display: block; white-space: pre; }
.c-key { color: #c792ea; } .c-fn { color: #82aaff; } .c-str { color: #c3e88d; } .c-num { color: #f78c6c; } .c-com { color: #5c6685; } .c-tag { color: #f07178; }

/* ---------- Marquee / trust bar ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; background: rgba(255,255,255,.012); }
.trust p { text-align: center; font-family: var(--mono); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 18px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 36px; }
.trust-row .tech-chip { display: flex; align-items: center; gap: 9px; color: var(--text-soft); font-weight: 600; font-size: .98rem; }
.trust-row .tech-chip svg { width: 22px; height: 22px; opacity: .9; }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 96px 0; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--surface), rgba(15,22,40,.5));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 30px;
  transition: .25s ease; position: relative; overflow: hidden;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--border-strong); margin-bottom: 18px;
}
.card .ico svg { width: 26px; height: 26px; stroke: var(--cyan); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: .98rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--cyan); font-weight: 600; font-size: .92rem; }
.card .more svg { width: 16px; height: 16px; transition: .2s; }
.card:hover .more svg { transform: translateX(4px); }
.card-feature::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: .3s;
}
.card-feature:hover::after { transform: scaleX(1); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-strong); box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split ul.checks { margin-top: 22px; display: grid; gap: 13px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); }
.checks li svg { width: 22px; height: 22px; flex: none; stroke: var(--green); margin-top: 1px; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--grad-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-band .grid-4 { gap: 0; }
.stat-cell { text-align: center; padding: 44px 18px; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-cell .num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.03em; }
.stat-cell .lbl { color: var(--text-soft); margin-top: 6px; font-size: .95rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); position: relative; }
.step .n { font-family: var(--mono); font-size: .85rem; color: var(--cyan); font-weight: 700; }
.step h3 { font-size: 1.15rem; margin: 12px 0 8px; }
.step p { color: var(--text-soft); font-size: .94rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price {
  display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px; transition: .25s;
}
.price:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.price.popular { border-color: var(--brand); box-shadow: var(--shadow-glow); background: linear-gradient(180deg, rgba(99,102,241,.08), var(--surface)); }
.price .tag { font-family: var(--mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }
.badge-pop { position: absolute; top: 18px; right: 18px; font-size: .72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: var(--grad); color: #fff; }
.price .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; margin: 14px 0 4px; }
.price .amount span { font-size: 1rem; font-weight: 500; color: var(--text-mute); }
.price .desc { color: var(--text-soft); font-size: .95rem; min-height: 44px; }
.price ul { margin: 22px 0 26px; display: grid; gap: 12px; }
.price ul li { display: flex; gap: 10px; color: var(--text-soft); font-size: .95rem; }
.price ul li svg { width: 19px; height: 19px; stroke: var(--green); flex: none; }
.price .btn { margin-top: auto; width: 100%; }
.price-pos { position: relative; }

/* ---------- Portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.work {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface);
  transition: .25s; position: relative;
}
.work:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.work-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.work-img img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.work:hover .work-img img { transform: scale(1.06); }
.work-img .tags { position: absolute; left: 14px; bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.work-img .tags span { font-size: .74rem; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: rgba(7,10,20,.78); border: 1px solid var(--border-strong); backdrop-filter: blur(6px); }
.work-body { padding: 24px 26px 28px; }
.work-body .sector { font-family: var(--mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }
.work-body h3 { margin: 8px 0 10px; }
.work-body p { color: var(--text-soft); font-size: .96rem; }
.work-metrics { display: flex; gap: 26px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.work-metrics .m .v { font-weight: 800; font-size: 1.25rem; }
.work-metrics .m .k { font-size: .78rem; color: var(--text-mute); }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.quote p { color: var(--text); font-size: 1rem; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.quote .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-strong); }
.quote .who .nm { font-weight: 700; font-size: .95rem; }
.quote .who .rl { font-size: .82rem; color: var(--text-mute); }

/* ---------- CTA ---------- */
.cta-wrap {
  position: relative; border-radius: 26px; padding: 64px 48px; overflow: hidden;
  background: linear-gradient(120deg, rgba(99,102,241,.16), rgba(34,211,238,.10));
  border: 1px solid var(--border-strong); text-align: center;
}
.cta-wrap::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40rem 20rem at 50% -20%, rgba(99,102,241,.3), transparent 70%); }
.cta-wrap > * { position: relative; }
.cta-wrap h2 { max-width: 18ch; margin: 0 auto 16px; }
.cta-wrap .lead { margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); margin-top: 0; padding: 70px 0 34px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid .about p { color: var(--text-soft); margin: 16px 0 18px; font-size: .95rem; max-width: 34ch; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-mute); margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; color: var(--text-soft); padding: 6px 0; font-size: .95rem; transition: .18s; }
.footer-col a:hover { color: var(--cyan); }
.foot-contact a { display: flex; align-items: center; gap: 9px; }
.foot-contact svg { width: 16px; height: 16px; stroke: var(--cyan); }
.social { display: flex; gap: 10px; }
.social a { width: 40px; height: 40px; border: 1px solid var(--border-strong); border-radius: 10px; display: grid; place-items: center; }
.social a:hover { border-color: var(--brand); background: rgba(99,102,241,.1); }
.social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--text-mute); font-size: .88rem; }
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- Page hero (inner) ---------- */
.page-hero { padding: 72px 0 56px; text-align: center; }
.page-hero h1 { margin: 18px 0 16px; }
.breadcrumb { font-family: var(--mono); font-size: .82rem; color: var(--text-mute); margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--cyan); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 18px; display: flex; gap: 16px; align-items: flex-start; }
.info-card .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border-strong); display: grid; place-items: center; flex: none; }
.info-card .ico svg { width: 22px; height: 22px; stroke: var(--cyan); }
.info-card h4 { font-size: 1.02rem; margin-bottom: 3px; }
.info-card a, .info-card p { color: var(--text-soft); font-size: .96rem; }
.info-card a:hover { color: var(--cyan); }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 8px; color: var(--text-soft); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border-strong); border-radius: 11px;
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: .98rem; transition: .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(99,102,241,.18); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--text-mute); margin-top: 6px; }
.form-success { display: none; padding: 16px 18px; border-radius: 12px; background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.4); color: var(--green); margin-bottom: 18px; font-weight: 600; }
.form-success.show { display: block; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--text-soft); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--cyan); }
.prose strong { color: var(--text); }
.legal-meta { font-family: var(--mono); font-size: .85rem; color: var(--text-mute); margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }

/* ---------- Values / about ---------- */
.value { display: flex; gap: 16px; align-items: flex-start; }
.value .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border-strong); display: grid; place-items: center; flex: none; }
.value .ico svg { width: 22px; height: 22px; stroke: var(--cyan); }
.value h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value p { color: var(--text-soft); font-size: .95rem; }

.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border-strong); margin-bottom: 16px; }
.team-card h3 { font-size: 1.1rem; }
.team-card .role { color: var(--cyan); font-size: .88rem; font-family: var(--mono); }
.team-card p { color: var(--text-soft); font-size: .92rem; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--surface); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: inherit; font-size: 1.05rem; font-weight: 650; padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q svg { width: 22px; height: 22px; flex: none; transition: .25s; stroke: var(--cyan); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--text-soft); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4, .steps, .quote-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; background: rgba(7,10,20,.98); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; transform: translateY(-150%); transition: .3s; align-items: stretch; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px; }
  .nav-toggle { display: flex; }
  .nav .nav-cta .btn:not(.nav-toggle) { display: none; }
  .grid-3, .grid-4, .steps, .quote-grid, .price-grid, .work-grid, .grid-2, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 26px; }
  .cta-wrap { padding: 44px 24px; }
  .section-pad { padding: 68px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
