:root {
  --navy-950: #0B1C14;
  --navy-900: #163828;
  --navy-800: #214A37;
  --teal-700: #14854B;
  --teal-600: #16A650;
  --teal-100: #E4F5E9;
  --gold-500: #BEE63C;
  --gold-100: #F1F8D2;
  --slate-950: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #fff;
  --surface: #f8fafc;
  --success: #047857;
  --error: #b91c1c;
  --shadow-sm: 0 2px 12px rgba(15, 23, 42, .06);
  --shadow-md: 0 12px 34px rgba(22, 56, 40, .09);
  --shadow-lg: 0 28px 64px rgba(22, 56, 40, .14);
  --radius-sm: .65rem;
  --radius-md: 1.05rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --max-width: 1180px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--slate-700);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--teal-700); }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  color: var(--navy-900);
  margin: 0 0 1rem;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.55rem, 5.3vw, 4.65rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.16rem, 2vw, 1.32rem); letter-spacing: -.025em; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 2.5rem), var(--max-width)); margin: 0 auto; }
.section { padding: clamp(4.5rem, 8vw, 6.6rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.bg-soft { background: var(--surface); }
.bg-navy { background: var(--navy-950); color: rgba(255,255,255,.78); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .9rem;
  color: var(--teal-700);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2.25rem; height: 2px; background: var(--gold-500); }
.bg-navy .eyebrow { color: #B7E889; }
.lead { color: var(--slate-600); font-size: clamp(1.03rem, 2vw, 1.18rem); max-width: 690px; }
.bg-navy .lead { color: rgba(255,255,255,.72); }
.section-heading { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.center .lead { margin: 0 auto; }
.divider { width: 100%; height: 1px; background: var(--slate-200); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .22s, border-color .22s;
}
.site-header.scrolled { border-color: var(--slate-200); box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand img { width: min(300px, 56vw); height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav a:not(.btn) {
  color: var(--slate-600);
  font-weight: 600;
  font-size: .97rem;
  padding: .3rem 0;
  position: relative;
}
.desktop-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.45rem;
  height: 2px; background: var(--teal-700);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.desktop-nav a.active { color: var(--navy-900); }
.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-actions .btn { display: none; }
.menu-toggle {
  display: none;
  border: 1px solid var(--slate-200);
  border-radius: .75rem;
  width: 47px; height: 47px;
  background: var(--white);
  align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; display: block; width: 21px; height: 2px; background: var(--navy-900); position: relative; transition: .2s;
}
.menu-toggle span::before { position: absolute; top: -7px; }
.menu-toggle span::after { position: absolute; top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  z-index: 99;
  top: var(--header-h); left: 0; right: 0;
  background: var(--white);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--slate-200);
  transform: translateY(-120%);
  visibility: hidden;
  opacity: 0;
  transition: .22s ease;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; opacity: 1; box-shadow: var(--shadow-md); }
.mobile-nav a { display: block; padding: .9rem .45rem; border-bottom: 1px solid var(--slate-100); font-weight: 600; color: var(--navy-900); }
.mobile-nav .btn { margin-top: 1rem; border-bottom: 0; display: flex; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .78rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 9px 22px rgba(190,230,60,.22); }
.btn-primary:hover { color: var(--navy-900); background: #CDEA49; }
.btn-secondary { border-color: rgba(20,133,75,.24); color: var(--teal-700); background: var(--white); }
.btn-secondary:hover { color: var(--teal-700); background: var(--teal-100); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); color: var(--white); box-shadow: var(--shadow-md); }
.text-link { font-weight: 700; color: var(--teal-700); display: inline-flex; align-items: center; gap: .4rem; }
.text-link svg { transition: transform .18s; }
.text-link:hover svg { transform: translateX(4px); }
.btn-group { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.3rem, 6vw, 5.4rem) 0 clamp(4rem, 8vw, 6.5rem);
  background: linear-gradient(112deg, #fff 0%, #fff 47%, #F1FAF3 100%);
}
.hero::before {
  content: ""; position: absolute; width: 560px; height: 560px; right: -260px; top: -210px;
  border-radius: 50%; background: rgba(20,133,75,.07);
}
.hero::after {
  content: ""; position: absolute; width: 480px; height: 480px; right: -30px; bottom: -340px;
  border-radius: 50%; background: rgba(190,230,60,.10);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(2.3rem, 6vw, 5.5rem); }
.hero h1 { margin-bottom: 1.35rem; }
.hero .lead { margin-bottom: 0; }
.hero-panel {
  position: relative;
  min-height: 510px;
  background: linear-gradient(146deg, var(--navy-900), #17623E);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-panel::before { content: ""; position: absolute; width: 350px; height: 350px; top: -170px; right: -150px; border-radius: 50%; background: rgba(255,255,255,.08); }
.hero-panel::after { content: ""; position: absolute; width: 260px; height: 260px; left: -130px; bottom: -90px; border-radius: 50%; background: rgba(190,230,60,.16); }
.insight-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.2rem;
  max-width: 335px;
  box-shadow: 0 22px 42px rgba(4,18,33,.2);
}
.insight-card h3 { margin-bottom: .4rem; }
.insight-card p { color: var(--slate-600); font-size: .93rem; margin-bottom: .9rem; }
.mini-label { display: inline-flex; padding: .25rem .55rem; border-radius: 999px; background: var(--teal-100); color: var(--teal-700); font-size: .72rem; letter-spacing: .1em; font-weight: 700; text-transform: uppercase; margin-bottom: .7rem; }
.chart-card {
  position: absolute; z-index: 3; bottom: 2.25rem; right: 1.75rem;
  width: min(275px, calc(100% - 3.5rem));
  background: var(--white); border-radius: var(--radius-md); padding: 1rem 1.1rem;
  box-shadow: 0 22px 45px rgba(4,18,33,.25);
}
.chart-title { font-size: .82rem; color: var(--slate-500); font-weight: 600; }
.chart-row { display: flex; align-items: end; height: 87px; gap: .6rem; margin: .65rem 0 .75rem; }
.chart-bar { flex: 1; border-radius: 6px 6px 2px 2px; background: var(--teal-100); }
.chart-bar:nth-child(2) { height: 64%; }
.chart-bar:nth-child(3) { height: 50%; }
.chart-bar:nth-child(4) { height: 85%; background: var(--teal-700); }
.chart-bar:first-child { height: 38%; }
.chart-note { display: flex; align-items: center; gap: .42rem; font-size: .76rem; color: var(--success); font-weight: 700; }
.floating-pill {
  position: absolute; z-index: 4; top: 44%; left: 1.25rem;
  padding: .58rem .86rem; border-radius: 999px; color: white; font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px);
}

/* Trust strip */
.trust-strip { border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-200); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: .85rem; padding: 1.55rem 0; color: var(--navy-900); font-weight: 700; }
.trust-item:not(:first-child) { padding-left: clamp(1rem, 4vw, 3rem); border-left: 1px solid var(--slate-200); }
.icon-round { display: inline-grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; background: var(--teal-100); color: var(--teal-700); border-radius: 50%; }
.icon-round svg { width: 21px; height: 21px; }

/* Cards */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.05rem; }
.card {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 2.3vw, 1.65rem); transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(20,133,75,.24); box-shadow: var(--shadow-md); }
.service-card { display: flex; flex-direction: column; min-height: 306px; }
.service-card .icon-square { margin-bottom: 1.25rem; }
.service-card p { color: var(--slate-600); font-size: .95rem; flex: 1; }
.icon-square { display: inline-grid; place-items: center; width: 53px; height: 53px; border-radius: .9rem; background: var(--teal-100); color: var(--teal-700); }
.icon-square svg { width: 27px; height: 27px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.capability { padding: 1.6rem 1.25rem; border-radius: var(--radius-md); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); }
.capability .icon-square { background: rgba(130,213,230,.12); color: #B7E889; margin-bottom: 1.2rem; }
.capability h3 { font-size: 1.16rem; }
.capability p { color: rgba(255,255,255,.68); font-size: .94rem; margin: 0; }

/* Process */
.process-wrap { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.process-card { padding: 1.5rem 1.35rem; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--slate-200); }
.process-number { font-size: .78rem; letter-spacing: .14em; font-weight: 800; color: var(--teal-700); margin-bottom: .8rem; }
.process-card p { color: var(--slate-600); font-size: .94rem; margin: 0; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.tag { padding: .47rem .8rem; border-radius: 999px; border: 1px solid var(--slate-200); background: var(--white); color: var(--slate-600); font-weight: 600; font-size: .88rem; }

/* CTA */
.cta-panel {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem;
  padding: clamp(2.1rem, 5vw, 3.5rem); border-radius: var(--radius-xl);
  background: linear-gradient(112deg, var(--navy-900), #0b4b60); color: rgba(255,255,255,.76);
  position: relative; overflow: hidden;
}
.cta-panel::after { content: ""; position:absolute; right:-80px; bottom:-130px; width:300px; height:300px; border-radius:50%; background:rgba(190,230,60,.16); }
.cta-panel h2 { color: var(--white); margin-bottom: .7rem; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-panel p { max-width: 610px; margin-bottom: 0; }
.cta-panel .btn { position: relative; z-index: 1; white-space: nowrap; }

/* Interior page header */
.page-hero { padding: clamp(3.1rem, 7vw, 5.1rem) 0; background: linear-gradient(120deg, #f8fafc, #EFF8F1); border-bottom: 1px solid var(--slate-200); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .42fr; align-items: center; gap: 3rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; font-size: .88rem; color: var(--slate-500); margin-bottom: 1.2rem; }
.breadcrumbs a { color: var(--teal-700); font-weight: 600; }
.page-badge { justify-self: end; width: 220px; height: 220px; border-radius: 50%; background: var(--white); border: 1px solid var(--slate-200); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.page-badge .icon-square { width: 90px; height: 90px; border-radius: 1.5rem; }
.page-badge .icon-square svg { width: 42px; height: 42px; }

/* About */
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.value-card { border-radius: var(--radius-md); border: 1px solid var(--slate-200); padding: 1.35rem; }
.value-card h3 { margin-bottom: .45rem; font-size: 1.1rem; }
.value-card p { margin: 0; font-size: .92rem; color: var(--slate-600); }
.assurance-box { background: var(--navy-900); color: rgba(255,255,255,.75); border-radius: var(--radius-xl); padding: clamp(1.7rem, 4vw, 2.8rem); }
.assurance-box h2, .assurance-box h3 { color: var(--white); }
.tick-list { display: grid; gap: .85rem; margin-top: 1.45rem; }
.tick-list li { display: flex; gap: .7rem; align-items: flex-start; }
.tick-list svg { flex: 0 0 auto; margin-top: .22rem; color: var(--gold-500); }

/* Services detail */
.service-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.service-wide-card { padding: clamp(1.45rem, 3vw, 2rem); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; background: var(--white); }
.service-wide-card p { color: var(--slate-600); margin-bottom: .8rem; }
.detail-grid { display: grid; grid-template-columns: 1fr 350px; gap: clamp(2rem, 6vw, 4.5rem); align-items: start; }
.detail-block { margin-bottom: 3rem; }
.detail-block h2 { font-size: clamp(1.65rem, 3vw, 2rem); }
.bullet-panel { display: grid; gap: .7rem; }
.bullet-panel li { display: flex; gap: .7rem; padding: .8rem .95rem; background: var(--surface); border-radius: .7rem; }
.bullet-panel svg { color: var(--teal-700); flex: 0 0 auto; margin-top: .2rem; }
.sidebar-box { position: sticky; top: calc(var(--header-h) + 1.4rem); background: var(--navy-900); border-radius: var(--radius-lg); color: rgba(255,255,255,.74); padding: 1.7rem; }
.sidebar-box h3 { color: var(--white); }
.sidebar-box .btn { width: 100%; margin-top: .7rem; }
.sidebar-links { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.1rem; margin-top: 1.25rem; display: grid; gap: .5rem; font-size: .94rem; }
.sidebar-links a { color: #b7e5ef; }
.faq-list { display: grid; gap: .7rem; }
details { border: 1px solid var(--slate-200); border-radius: .85rem; background: var(--white); padding: 0 1rem; }
summary { color: var(--navy-900); cursor: pointer; font-weight: 700; padding: 1rem .2rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.35rem; color: var(--teal-700); }
details[open] summary::after { content: "−"; }
details p { padding: 0 .2rem 1rem; margin: 0; color: var(--slate-600); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2rem, 6vw, 4rem); align-items: start; }
.contact-info { display: grid; gap: .9rem; }
.contact-tile { display: flex; gap: .95rem; padding: 1.1rem; border: 1px solid var(--slate-200); border-radius: var(--radius-md); background: var(--white); }
.contact-tile .icon-round { flex-shrink: 0; }
.contact-tile strong { color: var(--navy-900); display: block; font-size: .92rem; }
.contact-tile a, .contact-tile span { color: var(--slate-600); }
.form-card { background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--slate-200); padding: clamp(1.35rem, 4vw, 2.25rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; color: var(--navy-900); font-weight: 650; margin-bottom: .42rem; font-size: .94rem; }
.required { color: var(--error); }
.field input, .field select, .field textarea {
  display: block; width: 100%; border: 1px solid var(--slate-300); border-radius: .68rem; padding: .74rem .85rem;
  color: var(--slate-700); background: var(--white); transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-700); box-shadow: 0 0 0 4px rgba(20,133,75,.12); }
.field-hint { display: block; margin-top: .32rem; color: var(--slate-500); font-size: .78rem; }
.checkbox { display: flex; align-items: flex-start; gap: .65rem; margin: .35rem 0 1.35rem; color: var(--slate-600); font-size: .9rem; }
.checkbox input { width: 18px; height: 18px; margin-top: .18rem; accent-color: var(--teal-700); }
.form-status { display: none; padding: .85rem 1rem; border-radius: .65rem; margin-bottom: 1rem; font-weight: 600; font-size: .92rem; }
.form-status.error { display: block; background: #fef2f2; color: var(--error); }
.location-panel { margin-top: 1rem; min-height: 180px; background: linear-gradient(140deg, var(--teal-100), #fff); border-radius: var(--radius-md); border: 1px solid var(--slate-200); display: grid; place-items: center; text-align: center; padding: 1.2rem; }
.location-panel strong { display: block; color: var(--navy-900); margin-bottom: .2rem; }

/* Legal */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.65rem; margin-top: 2.4rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { list-style: disc; padding-left: 1.2rem; margin-bottom: 1rem; }
.prose p, .prose li { color: var(--slate-600); }
.notice { border-left: 4px solid var(--gold-500); background: var(--gold-100); padding: 1rem 1.1rem; border-radius: 0 .65rem .65rem 0; color: var(--slate-700); margin-bottom: 1.8rem; }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.68); padding: 4.2rem 0 1.45rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .85fr 1fr; gap: clamp(2rem, 7vw, 5rem); padding-bottom: 3rem; }
.footer-brand img { width: min(292px, 100%); margin-bottom: 1.25rem; }
.footer-brand p { max-width: 380px; font-size: .94rem; }
.footer-title { color: var(--white); font-weight: 700; margin-bottom: 1.1rem; }
.footer-links { display: grid; gap: .62rem; }
.footer-links a { color: rgba(255,255,255,.72); }
.footer-contact li { display: flex; gap: .55rem; margin-bottom: .7rem; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; color: #B7E889; margin-top: .18rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; padding-top: 1.35rem; font-size: .86rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-legal a { color: rgba(255,255,255,.68); }

/* Utilities and animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.skip-link { position: absolute; left: .8rem; top: -4rem; z-index: 200; background: var(--navy-900); color: #fff; padding: .7rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: .75rem; color: #fff; }
.not-found { text-align: center; max-width: 690px; margin: auto; }
.not-found .code { font-size: clamp(4rem, 12vw, 8rem); color: var(--teal-100); font-weight: 800; line-height: 1; }

@media (max-width: 1060px) {
  .service-grid, .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 880px) {
  :root { --header-h: 76px; }
  .desktop-nav, .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .page-hero-grid, .two-column, .process-wrap, .contact-grid, .detail-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 430px; max-width: 570px; width: 100%; margin: 1rem auto 0; }
  .page-badge { display: none; }
  .sidebar-box { position: static; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 1.5rem), var(--max-width)); }
  .section { padding: 3.7rem 0; }
  .hero { padding-top: 2.25rem; }
  .hero-panel { min-height: 385px; padding: 1rem; }
  .floating-pill { display: none; }
  .insight-card { max-width: 100%; }
  .chart-card { right: 1rem; bottom: 1rem; }
  .trust-grid { grid-template-columns: 1fr; padding: .5rem 0; }
  .trust-item, .trust-item:not(:first-child) { border: 0; padding: .65rem 0; }
  .service-grid, .capability-grid, .process-grid, .value-grid, .service-list-grid, .form-row { grid-template-columns: 1fr; }
  .service-wide-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group, .btn-group .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
