:root {
  --navy-1000: #04101f;
  --navy-950: #07172b;
  --navy-900: #0a2340;
  --navy-800: #103b63;
  --blue: #2687c8;
  --cyan: #1cb5c9;
  --gold: #d2ad62;
  --gold-light: #ecd799;
  --green: #168a55;
  --background: #f2f6fb;
  --panel: #ffffff;
  --text: #132238;
  --muted: #68778a;
  --line: #dce5ef;
  --shadow: 0 18px 50px rgba(4, 16, 31, 0.1);
  --content: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 2000;
  background: #fff;
  color: var(--navy-950);
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 14px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 450;
  height: 84px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(4, 16, 31, 0.97);
  box-shadow: 0 12px 30px rgba(4, 16, 31, 0.22);
}

.header-inner {
  width: min(var(--content), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 232px;
  height: 64px;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: 47px;
  height: auto;
  aspect-ratio: 356 / 378;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.brand span, .mobile-brand span { min-width: 0; }
.brand b, .mobile-brand b { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 700; white-space: nowrap; }
.brand small, .mobile-brand small { display: block; margin-top: 3px; color: var(--gold-light); font-size: 9px; white-space: nowrap; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.site-footer nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a { color: rgba(255, 255, 255, 0.85); }
.desktop-nav a:hover { color: #fff; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-client { background: var(--gold); color: var(--navy-1000); }
.button-client:hover, .button-gold:hover { background: var(--gold-light); }
.button-primary { background: #fff; color: var(--navy-950); }
.button-quiet { color: #fff; border-color: rgba(255, 255, 255, 0.65); background: transparent; }
.button-quiet:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.button-gold { background: var(--gold); color: var(--navy-1000); border: 0; }

.menu-toggle,
.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(4, 16, 31, 0.68);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -310px;
  z-index: 500;
  width: min(310px, 88vw);
  height: 100dvh;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--navy-950);
  color: #fff;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.3);
  transition: right 0.25s ease;
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-brand { display: flex; align-items: center; gap: 8px; }
.mobile-brand img { width: 43px; height: auto; aspect-ratio: 356 / 378; flex: 0 0 auto; object-fit: contain; }
.icon-button { font-size: 30px; line-height: 1; }
.mobile-nav > a:not(.button) { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); text-decoration: none; font-weight: 800; }
.mobile-nav .button { margin-top: 18px; }

.hero {
  position: relative;
  height: min(860px, 88svh);
  min-height: 650px;
  background: var(--navy-950) url("../img/hero.webp") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 31, 0.66);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-copy { width: min(680px, 64%); }
.eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.eyebrow.dark { color: var(--navy-700, #175a8d); }

.hero-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-brand img {
  width: 73px;
  height: auto;
  aspect-ratio: 356 / 378;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  line-height: 0.98;
  font-weight: 700;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.55;
}

.hero-benefits {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
}

.hero-benefits li { position: relative; padding-left: 24px; }
.hero-benefits li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-next {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transform: translateX(-50%);
}

.foundation-band { background: #fff; border-bottom: 1px solid var(--line); }
.foundation-inner {
  width: min(var(--content), calc(100% - 40px));
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.foundation-inner > div { padding: 10px 34px; border-left: 1px solid var(--line); }
.foundation-inner > div:last-child { border-right: 1px solid var(--line); }
.foundation-inner b, .foundation-inner span { display: block; }
.foundation-inner b { margin-bottom: 5px; color: var(--navy-900); font-size: 16px; }
.foundation-inner span { color: var(--muted); font-size: 13px; line-height: 1.5; }

.section { padding: 112px 0; }
.section-light { background: var(--background); }
.section-white { background: #fff; }
.section-inner { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.compact { max-width: 440px; margin-bottom: 0; }
.section-heading.light { color: #fff; }

.section-heading h2,
.difference-copy h2,
.client-copy h2,
.contact-copy h2,
.legal-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.12;
  color: var(--navy-950);
}

.section-heading.light h2,
.client-copy h2,
.contact-copy h2 { color: #fff; }

.section-heading > p:last-child,
.difference-copy > p,
.client-copy > p,
.contact-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading.light > p:last-child,
.client-copy > p,
.contact-copy > p { color: rgba(255,255,255,.75); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  min-height: 294px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(4, 16, 31, 0.06);
}
.service-card:nth-child(2) { border-top-color: var(--cyan); }
.service-card:nth-child(3) { border-top-color: var(--gold); }
.service-card:nth-child(4) { border-top-color: var(--green); }
.service-card:nth-child(5) { border-top-color: var(--gold); }
.service-card:nth-child(6) { border-top-color: var(--blue); }
.service-card:nth-child(7) { border-top-color: var(--cyan); }
.service-card:nth-child(8) { border-top-color: var(--green); }
.service-number { color: var(--blue); font-size: 13px; font-weight: 900; }
.service-card h3 { margin: 46px 0 14px; font-size: 20px; color: var(--navy-900); }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.diagnostic-band { padding: 96px 0; background: #e8f1f6; border-block: 1px solid #cfdee9; }
.diagnostic-first { padding: 76px 0; }
.diagnostic-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 88px; align-items: center; }
.diagnostic-copy h2 {
  margin: 0;
  max-width: 650px;
  color: var(--navy-950);
  font: 700 46px/1.12 Georgia, "Times New Roman", serif;
}
.diagnostic-copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.diagnostic-copy .button { margin-top: 28px; }
.diagnostic-points { margin: 0; padding: 0; list-style: none; border-top: 1px solid #b9ccd9; }
.diagnostic-points li { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 23px 0; border-bottom: 1px solid #b9ccd9; }
.diagnostic-points b { color: var(--navy-900); font-size: 15px; }
.diagnostic-points span { color: var(--muted); font-size: 14px; line-height: 1.6; }

.about-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 82px; align-items: center; }
.about-media { min-height: 430px; margin: 0; border-radius: 6px; overflow: hidden; background: var(--navy-950); box-shadow: var(--shadow); }
.about-media img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: center; }
.about-copy h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 44px; line-height: 1.14; color: var(--navy-950); }
.about-copy > p { margin: 20px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.method-band { background: var(--navy-950); }
.method-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; }
.method-list li { min-height: 245px; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-right: 0; color: #fff; }
.method-list li:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.method-list > li > span { display: block; color: var(--gold-light); font-size: 13px; font-weight: 900; }
.method-list h3 { margin: 64px 0 12px; font-size: 22px; }
.method-list p { margin: 0; color: rgba(255,255,255,.67); font-size: 14px; line-height: 1.65; }

.difference-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 88px; align-items: start; }
.difference-column { display: grid; gap: 36px; }
.difference-copy { position: static; }
.difference-media { margin: 0; aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden; background: var(--navy-950); box-shadow: var(--shadow); }
.difference-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.text-link { display: inline-flex; gap: 8px; margin-top: 28px; color: var(--navy-800); font-weight: 900; text-decoration: none; }
.difference-points { border-top: 1px solid var(--line); }
.difference-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.difference-item > b { color: var(--gold); font-size: 13px; }
.difference-item h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 19px; }
.difference-item p { margin: 0; color: var(--muted); line-height: 1.65; }

.client-band { padding: 104px 0; background: var(--navy-800); color: #fff; }
.client-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 68px; align-items: center; }
.client-copy .button { margin-top: 28px; }
.client-copy small { display: block; margin-top: 16px; color: rgba(255,255,255,.58); line-height: 1.5; }

.dashboard-preview { background: #eaf1f7; border: 8px solid rgba(255,255,255,.14); border-radius: 8px; box-shadow: 0 28px 60px rgba(0,0,0,.22); overflow: hidden; }
.preview-top { height: 48px; display: flex; align-items: center; gap: 7px; padding: 0 14px; background: #fff; color: var(--navy-900); }
.preview-top span { width: 8px; height: 8px; border-radius: 50%; background: #d1dae4; }
.preview-top b { margin-left: 8px; font-size: 11px; }
.preview-body { min-height: 344px; display: grid; grid-template-columns: 74px 1fr; }
.preview-body aside { display: grid; align-content: start; gap: 14px; padding: 28px 17px; background: var(--navy-950); }
.preview-body aside i { display: block; height: 8px; border-radius: 2px; background: rgba(255,255,255,.26); }
.preview-content { padding: 22px; }
.preview-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.preview-kpis span { height: 64px; border-top: 3px solid var(--blue); background: #fff; border-radius: 4px; }
.preview-kpis span:nth-child(2) { border-color: var(--cyan); }
.preview-kpis span:nth-child(3) { border-color: var(--green); }
.preview-kpis span:nth-child(4) { border-color: var(--gold); }
.preview-charts { display: grid; grid-template-columns: 1.4fr .6fr; gap: 10px; margin-top: 12px; }
.preview-bars { height: 118px; padding: 20px 16px 0; display: flex; align-items: end; gap: 10px; background: #fff; border-radius: 4px; }
.preview-bars i { flex: 1; background: var(--blue); border-radius: 2px 2px 0 0; }
.preview-bars i:nth-child(1) { height: 45%; }.preview-bars i:nth-child(2) { height: 72%; }.preview-bars i:nth-child(3) { height: 58%; }.preview-bars i:nth-child(4) { height: 88%; }.preview-bars i:nth-child(5) { height: 66%; }
.preview-donut { height: 118px; background: #fff; border-radius: 4px; position: relative; }
.preview-donut::before { content: ""; position: absolute; width: 58px; height: 58px; border: 14px solid var(--cyan); border-right-color: var(--gold); border-bottom-color: var(--blue); border-radius: 50%; inset: 16px; margin: auto; }
.preview-table { margin-top: 12px; padding: 14px; background: #fff; border-radius: 4px; }
.preview-table i { display: block; height: 10px; margin: 8px 0; background: #e2eaf1; border-radius: 2px; }

.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; border: 0; background: transparent; color: var(--navy-900); text-align: left; font-weight: 800; cursor: pointer; }
.faq-item button span { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 20px; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 24px; }

.contact-section { background: var(--navy-1000); color: #fff; }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 78px; align-items: start; }
.contact-notes { margin-top: 38px; display: grid; gap: 16px; }
.contact-notes div { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-notes b, .contact-notes span { display: block; }
.contact-notes b { margin-bottom: 5px; color: var(--gold-light); }
.contact-notes span { color: rgba(255,255,255,.62); font-size: 14px; }
.contact-form { padding: 34px; background: #fff; color: var(--text); border-radius: 6px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label:not(.consent):not(.honeypot) { display: grid; gap: 7px; margin-bottom: 14px; color: #465a70; font-size: 12px; font-weight: 800; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; background: #f8fafc; color: var(--text); padding: 12px 13px; outline: 0; }
.contact-form input:not([type="checkbox"]) { height: 48px; }
.contact-form textarea { resize: vertical; min-height: 128px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(38,135,200,.12); }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 4px 0 20px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.consent input { width: 18px; height: 18px; margin: 0; }
.consent a { color: var(--navy-800); font-weight: 800; }
.submit-button { width: 100%; }
.submit-button[disabled] { opacity: .62; cursor: wait; transform: none; }
.form-status { min-height: 20px; margin: 12px 0 0; color: #b72f3b; font-size: 13px; font-weight: 800; }
.form-status.success { color: var(--green); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 52px 0 28px; background: #020a13; color: #fff; }
.footer-inner { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: start; }
.footer-signature { display: flex; align-items: center; gap: 14px; }
.footer-signature img { width: 52px; height: auto; aspect-ratio: 356 / 378; object-fit: contain; }
.footer-signature strong { font: 700 25px/1.1 Georgia, "Times New Roman", serif; }
.footer-brand p { max-width: 380px; margin: 18px 0 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.site-footer nav a { color: rgba(255,255,255,.72); }
.copyright { grid-column: 1/-1; margin: 12px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 12px; }

.legal-header { position: static; background: var(--navy-950); }
.legal-page { min-height: calc(100vh - 240px); padding: 80px 0; background: #fff; }
.legal-page .section-inner { max-width: 860px; }
.legal-page h1 { margin-bottom: 24px; }
.legal-page h2 { margin: 34px 0 12px; color: var(--navy-900); font-size: 21px; }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.75; }
.back-link { display: inline-flex; margin-bottom: 30px; color: var(--navy-800); font-weight: 800; text-decoration: none; }

.not-found { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: var(--navy-950); color: #fff; text-align: center; }
.not-found-brand { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 0 auto 34px; }
.not-found-brand img { width: 74px; height: auto; aspect-ratio: 356 / 378; object-fit: contain; }
.not-found-brand strong { font: 700 31px/1.1 Georgia, "Times New Roman", serif; }
.not-found h1 { margin: 0; font: 700 64px/1 Georgia, serif; }
.not-found p { color: rgba(255,255,255,.7); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .method-list { grid-template-columns: repeat(2, 1fr); }
  .method-list li:nth-child(2) { border-right: 1px solid rgba(255,255,255,.14); }
  .client-layout { grid-template-columns: 1fr; }
  .client-copy { max-width: 680px; }
  .diagnostic-layout { gap: 54px; }
}

@media (max-width: 860px) {
  .site-header { height: 72px; background: rgba(4,16,31,.96); }
  .header-inner { width: min(100% - 28px, var(--content)); }
  .brand { width: 222px; height: 62px; }
  .brand img { width: 43px; height: auto; }
  .desktop-nav, .desktop-client { display: none; }
  .menu-toggle { display: block; }
  .hero { height: min(820px, 88svh); min-height: 640px; background-position: 62% center; }
  .hero-inner { width: min(100% - 32px, var(--content)); padding-top: 64px; }
  .hero-copy { width: min(620px, 88%); }
  .hero h1 { font-size: 60px; }
  .hero-lead { font-size: 18px; }
  .foundation-inner { grid-template-columns: 1fr; padding: 18px 0; }
  .foundation-inner > div, .foundation-inner > div:last-child { padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); }
  .foundation-inner > div:last-child { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-heading h2, .difference-copy h2, .client-copy h2, .contact-copy h2, .legal-page h1 { font-size: 40px; }
  .difference-layout, .faq-layout, .contact-layout, .diagnostic-layout { grid-template-columns: 1fr; gap: 52px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-media, .about-media img { min-height: 330px; }
  .section-heading.compact { max-width: 680px; }
  .diagnostic-copy h2 { font-size: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-footer nav { gap: 18px; }
}

@media (max-width: 580px) {
  .hero { min-height: 650px; background-position: 68% center; }
  .hero-overlay { background: rgba(4,16,31,.74); }
  .hero-copy { width: 100%; }
  .hero-brand { gap: 13px; }
  .hero-brand img { width: 55px; }
  .hero h1 { font-size: 49px; }
  .hero-lead { margin-top: 22px; font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-next { display: none; }
  .section-inner, .foundation-inner, .footer-inner { width: min(100% - 28px, var(--content)); }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .difference-copy h2, .client-copy h2, .contact-copy h2, .legal-page h1 { font-size: 34px; }
  .diagnostic-band { padding: 68px 0; }
  .diagnostic-copy h2 { font-size: 34px; }
  .diagnostic-points li { grid-template-columns: 1fr; gap: 8px; }
  .about-copy h2 { font-size: 34px; }
  .service-grid, .method-list { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 32px; }
  .method-list li, .method-list li:nth-child(2), .method-list li:last-child { min-height: 200px; border: 1px solid rgba(255,255,255,.14); border-bottom: 0; }
  .method-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
  .method-list h3 { margin-top: 42px; }
  .client-band { padding: 72px 0; }
  .dashboard-preview { border-width: 5px; }
  .preview-body { grid-template-columns: 44px 1fr; min-height: 286px; }
  .preview-body aside { padding: 20px 10px; }
  .preview-content { padding: 12px; }
  .preview-kpis { grid-template-columns: repeat(2,1fr); }
  .preview-kpis span { height: 44px; }
  .preview-charts { grid-template-columns: 1fr; }
  .preview-donut { display: none; }
  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer nav { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
