:root {
  --ink: #17201c;
  --ink-soft: #34413b;
  --muted: #66736d;
  --line: #dce3de;
  --line-strong: #c9d4cd;
  --paper: #f5f7f4;
  --white: #ffffff;
  --green: #176747;
  --green-dark: #0d4d35;
  --green-soft: #e8f3ec;
  --red: #bd493a;
  --red-soft: #f8ebe8;
  --blue: #345f78;
  --gold: #b48232;
  --shadow-sm: 0 8px 24px rgba(23, 32, 28, 0.07);
  --shadow-lg: 0 28px 70px rgba(23, 32, 28, 0.16);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.55 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 14px; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 14px; }
.skip-link:focus { left: 8px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 222, 0.92);
  backdrop-filter: blur(16px);
}
.nav { min-height: 72px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; font-size: 18px; white-space: nowrap; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; color: var(--ink-soft); font-size: 14px; font-weight: 650; }
.nav-links a { padding: 9px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green); border-color: var(--green); }
.nav-cta { margin-left: 2px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  position: relative;
}
.nav-toggle::before, .nav-toggle::after, .nav-toggle span {
  content: "";
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.nav-toggle::before { top: 14px; }
.nav-toggle span { top: 20px; }
.nav-toggle::after { top: 26px; }

.button, button {
  border: 0;
  border-radius: 7px;
  padding: 12px 18px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover, button:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(13, 77, 53, 0.18); }
.button.secondary { background: #fff; color: var(--ink); border: 1px solid var(--line-strong); }
.button.secondary:hover { background: var(--paper); box-shadow: none; }
.button.red { background: var(--red); }
.button.red:hover { background: #9d382c; }
.button.small-button { min-height: 40px; padding: 9px 14px; font-size: 14px; }

.hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #edf0ed;
  border-bottom: 1px solid var(--line);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content { position: relative; z-index: 2; padding: 92px 0 80px; }
.hero-copy { width: min(660px, 58%); }
.hero-kicker { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hero-pill { background: rgba(255,255,255,0.9); border: 1px solid rgba(201,212,205,0.9); border-radius: 999px; padding: 6px 10px; font-size: 13px; font-weight: 750; color: var(--ink-soft); }
.hero h1 { font-size: clamp(46px, 5.2vw, 74px); line-height: 0.98; margin: 0 0 22px; max-width: 690px; }
.hero .lead { font-size: 20px; max-width: 650px; color: #34433c; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px; color: var(--ink-soft); font-size: 14px; font-weight: 650; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.price-rail { background: var(--ink); color: #fff; }
.price-rail-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.rail-item { min-height: 116px; padding: 24px 26px; border-right: 1px solid rgba(255,255,255,0.12); display: grid; align-content: center; gap: 3px; }
.rail-item:last-child { border-right: 0; }
.rail-item span { color: #bdc8c2; font-size: 13px; }
.rail-item strong { font-size: 25px; line-height: 1.15; }

.section { padding: 88px 0; }
.section.compact { padding: 56px 0; }
.section.white { background: #fff; }
.section.dark { background: var(--ink); color: #fff; }
.section.tint { background: #edf2ee; border-block: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 520px); gap: 44px; align-items: end; margin-bottom: 36px; }
.section-head.single { grid-template-columns: 1fr; max-width: 780px; }
.section-head p { color: var(--muted); margin: 0; }
.dark .section-head p { color: #bcc8c1; }
.eyebrow { color: var(--green); font-weight: 850; text-transform: uppercase; font-size: 12px; letter-spacing: 0; margin-bottom: 10px; }
.dark .eyebrow { color: #7bc49f; }
h1, h2, h3, h4 { letter-spacing: 0; }
h1 { font-size: clamp(42px, 6vw, 68px); line-height: 1; margin: 10px 0 22px; }
h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.04; margin: 0 0 16px; }
h3 { font-size: 21px; line-height: 1.2; margin: 0 0 10px; }
h4 { font-size: 16px; margin: 0 0 8px; }
.lead { font-size: 19px; color: var(--ink-soft); }
.display-number { font-size: 54px; line-height: 1; font-weight: 900; color: var(--green); }
.muted { color: var(--muted); }
.small { font-size: 13px; color: var(--muted); }
.center { text-align: center; }

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.dark .card { background: #202b26; border-color: #33413a; box-shadow: none; }
.dark .card p, .dark .card .muted, .dark .card .small { color: #bdc8c2; }
.feature-card { min-height: 250px; display: grid; align-content: start; }
.feature-index { width: 38px; height: 38px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); border-radius: 6px; font-weight: 900; margin-bottom: 46px; }
.tag { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 10px; color: var(--muted); font-size: 12px; font-weight: 750; background: #fff; width: fit-content; }
.tag.green { background: var(--green-soft); border-color: #bcd6c7; color: var(--green-dark); }
.tag.red { background: var(--red-soft); border-color: #e4bbb4; color: #8e3025; }
.price { font-size: 38px; line-height: 1; font-weight: 900; margin: 18px 0 8px; }
.price-sub { min-height: 46px; color: var(--muted); }
.price-card { display: flex; flex-direction: column; position: relative; min-height: 570px; }
.price-card.recommended { border: 2px solid var(--green); box-shadow: var(--shadow-lg); }
.price-card .button { margin-top: auto; width: 100%; }
.price-card .list { margin-bottom: 24px; }
.recommend-label { position: absolute; top: -14px; left: 20px; background: var(--green); color: #fff; border-radius: 999px; padding: 5px 11px; font-size: 12px; font-weight: 850; }
.list { padding: 0; margin: 18px 0 0; list-style: none; display: grid; gap: 11px; }
.list li { padding-left: 22px; position: relative; color: var(--ink-soft); }
.list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--green); border-radius: 2px; }
.list.cross li::before { background: var(--red); }

.term-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.term-table th, .term-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: right; white-space: nowrap; }
.term-table th:first-child, .term-table td:first-child { text-align: left; }
.term-table th { background: #edf2ee; color: var(--ink-soft); font-size: 13px; }
.term-table tr:last-child td { border-bottom: 0; }
.term-table td strong { color: var(--green-dark); }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

.calculator-shell { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: 24px; align-items: start; }
.calc-form { padding: 0; overflow: hidden; }
.calc-intro { padding: 25px 26px 20px; border-bottom: 1px solid var(--line); background: #fbfcfb; }
.calc-body { padding: 26px; }
.form-section { padding: 0 0 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.form-section:last-of-type { border-bottom: 0; margin-bottom: 0; }
.form-section-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.form-section-title span { color: var(--muted); font-size: 13px; }
.field-hint { color: var(--muted); font-weight: 500; font-size: 12px; }
.form-help { margin: 12px 0 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
label { display: grid; gap: 7px; color: #263b32; font-weight: 750; font-size: 14px; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(23, 103, 71, 0.12); }
textarea { min-height: 118px; resize: vertical; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-weight: 650; padding: 12px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.checkline input { width: 18px; min-height: 18px; margin: 2px 0 0; flex: 0 0 18px; }
.checkline small { display: block; color: var(--muted); font-weight: 500; margin-top: 3px; }
.tax-comfort-check { margin-top: 14px; }
.calc-controls { display: flex; justify-content: space-between; gap: 14px; align-items: center; flex-wrap: wrap; }
.calc-result { position: sticky; top: 94px; background: var(--ink); color: #fff; border: 0; box-shadow: var(--shadow-lg); }
.calc-result .tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #d7e2dc; }
.result-primary { margin: 18px 0 14px; padding: 20px; background: linear-gradient(145deg, rgba(23,103,71,.5), rgba(23,103,71,.2)); border: 1px solid rgba(150,213,179,.5); border-radius: 9px; }
.result-primary span, .result-primary small { display: block; color: #d7e7de; }
.result-primary > span { font-weight: 800; }
.result-primary strong { display: block; color: #a8ebc6; font-size: clamp(42px, 4.8vw, 62px); line-height: .98; margin: 9px 0 8px; overflow-wrap: anywhere; }
.result-primary strong.negative { color: #ef9f94; }
.result-proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 22px; }
.result-proof-grid > div { padding: 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; background: rgba(255,255,255,.04); }
.result-proof-grid span, .result-proof-grid small { display: block; color: #b9c9c0; font-size: 12px; }
.result-proof-grid strong { display: block; color: #fff; font-size: 20px; margin-top: 4px; overflow-wrap: anywhere; }
.result-proof-grid strong.negative { color: #ef9f94; }
.result-total { margin: 18px 0 20px; }
.result-total span { display: block; color: #bdc8c2; font-size: 13px; }
.result-total strong { font-size: clamp(44px, 5vw, 64px); line-height: 1; }
.result-group { margin-top: 21px; }
.result-group-title { color: #dce7e1; font-weight: 850; font-size: 13px; text-transform: uppercase; letter-spacing: .02em; }
.annual-comparison { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.breakdown { display: grid; gap: 9px; margin: 18px 0; }
.breakdown div { display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 9px; color: #c8d4cd; }
.breakdown strong { color: #fff; text-align: right; }
.breakdown strong small { display: block; color: #aebbb4; font-weight: 600; }
.breakdown .breakdown-total { padding: 12px 0; border-bottom-color: rgba(255,255,255,.28); }
.breakdown .breakdown-total span:first-child { color: #fff; font-weight: 800; }
.breakdown .saving-line strong { color: #96d5b3; }
.breakdown strong.negative, .breakdown .saving-line strong.negative { color: #ef9f94; }
.result-details { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); }
.result-details summary { cursor: pointer; color: #dce7e1; font-weight: 800; }
.result-details .breakdown { margin-bottom: 0; }
.calc-result .small { color: #aebbb4; }
.result-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 20px; }
.result-actions .button { width: 100%; }
.result-actions .button.secondary { background: transparent; color: #fff; border-color: #53625b; }

.steps { counter-reset: step; display: grid; gap: 12px; }
.step { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; align-items: start; }
.step::before { counter-increment: step; content: counter(step); width: 46px; height: 46px; border-radius: 7px; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 900; }
.step-time { color: var(--green); font-weight: 800; white-space: nowrap; }
.route-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.route-card { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.route-marker { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--red-soft); color: var(--red); font-weight: 900; }

.case-card { padding: 0; overflow: hidden; }
.case-visual { min-height: 160px; padding: 24px; background: #e9eeea; display: flex; align-items: end; border-bottom: 1px solid var(--line); }
.case-visual.red { background: var(--red-soft); }
.case-visual.blue { background: #e8f0f4; }
.case-model { font-size: 26px; font-weight: 900; max-width: 260px; line-height: 1.05; }
.case-body { padding: 24px; }
.case-kpi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.case-kpi div { background: #f1f4f2; border-radius: 6px; padding: 12px; min-width: 0; }
.case-kpi strong { display: block; font-size: 17px; overflow-wrap: anywhere; }

.faq-tools { display: flex; justify-content: flex-end; margin-bottom: 18px; }
.toggle { display: inline-flex; gap: 10px; align-items: center; color: var(--muted); font-size: 14px; }
.toggle input { width: 18px; min-height: 18px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 54px 20px 22px; font-weight: 800; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 15px; font-size: 26px; color: var(--green); }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 20px; color: var(--ink-soft); max-width: 920px; }
.legal-answer { display: none; }
[data-faq-mode="legal"] .simple-answer { display: none; }
[data-faq-mode="legal"] .legal-answer { display: block; }

.notice { border-left: 4px solid var(--gold); padding: 15px 17px; background: #fff8e9; border-radius: 7px; color: #594826; }
.notice.green { border-color: var(--green); background: var(--green-soft); color: var(--green-dark); }
.calculator-notes { display: grid; gap: 12px; }
.source-note { margin: 4px 0 0; }
.source-note a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.cta-band { display: grid; grid-template-columns: 1.2fr auto; gap: 30px; align-items: center; background: var(--red); color: #fff; border-radius: var(--radius); padding: 36px; }
.cta-band h2 { font-size: clamp(28px, 3.5vw, 42px); margin: 0 0 10px; }
.cta-band p { color: #f7d8d2; margin: 0; }
.cta-band .button { background: #fff; color: var(--ink); }
.contact-panel { background: var(--ink); color: #fff; }
.contact-panel p, .contact-panel .small { color: #bdc8c2; }
.contact-line { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-line:last-child { border-bottom: 0; }
.contact-line span { display: block; color: #9eadA5; font-size: 12px; text-transform: uppercase; }
.contact-line strong { font-size: 19px; }
.document { display: grid; gap: 18px; }
.document section { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.document h2 { font-size: 26px; }
.hidden { display: none !important; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.trust-strip div { padding: 20px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; margin-bottom: 4px; }
.trust-strip span { color: var(--muted); font-size: 13px; }
.decision-card { background: linear-gradient(135deg, #112019, #203b2e); color: #fff; overflow: hidden; }
.decision-card p { color: #c5d3cb; }
.decision-card .button.secondary { background: transparent; color: #fff; border-color: #5a7367; }
.scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.scope-item { border-top: 3px solid var(--green); padding: 18px; background: #fff; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-sm); }
.scope-item strong { display: block; margin-bottom: 6px; }
.scope-item span { color: var(--muted); font-size: 14px; }
.role-table { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.role-row { display: grid; grid-template-columns: 1fr 1fr; background: #fff; }
.role-row > div { padding: 18px 20px; }
.role-row > div:first-child { border-right: 1px solid var(--line); }
.role-row strong { display: block; margin-bottom: 4px; }
.role-row span { color: var(--muted); font-size: 14px; }
.price-note { margin-top: 18px; padding: 16px; border-radius: var(--radius); background: var(--green-soft); color: var(--green-dark); }
.sticky-mobile-cta { display: none; }

dialog { border: 0; padding: 0; border-radius: 12px; width: min(760px, calc(100% - 28px)); max-height: calc(100vh - 32px); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
dialog::backdrop { background: rgba(12, 20, 16, .64); backdrop-filter: blur(3px); }
.modal-card, .cookie-dialog-card { padding: 28px; overflow: auto; max-height: calc(100vh - 32px); }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.modal-head h2 { font-size: clamp(28px, 4vw, 40px); margin: 0; }
.icon-button { width: 42px; min-height: 42px; padding: 0; border-radius: 50%; font-size: 25px; background: var(--paper); color: var(--ink); flex: 0 0 42px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.basis-form { display: grid; gap: 18px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice-card { display: flex; gap: 10px; align-items: flex-start; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); }
.choice-card input { width: 18px; min-height: 18px; flex: 0 0 18px; }
.basis-result { background: var(--green-soft); color: var(--green-dark); padding: 18px; border-radius: var(--radius); }

.cookie-banner { position: fixed; z-index: 80; left: 18px; right: 18px; bottom: 18px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; max-width: 1180px; margin: auto; padding: 20px; border: 1px solid var(--line-strong); border-radius: 12px; background: #fff; box-shadow: 0 22px 70px rgba(18,31,24,.2); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-options { display: grid; gap: 10px; }
.cookie-option { display: flex; grid-template-columns: none; justify-content: space-between; align-items: center; gap: 20px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); }
.cookie-option span { display: grid; gap: 3px; }
.cookie-option small { color: var(--muted); font-weight: 400; }
.cookie-option input { width: 20px; min-height: 20px; flex: 0 0 20px; }
.footer-cookie-link { background: none; border: 0; padding: 0; min-height: 0; color: inherit; font-weight: inherit; text-decoration: underline; }

.real-cases-grid:empty + .cases-empty { display: block; }
.real-cases-grid:not(:empty) + .cases-empty { display: none; }
.cases-empty { border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 30px; background: #fbfcfb; }
.case-photo-button { display: block; padding: 0; border-radius: 0; width: 100%; height: 220px; overflow: hidden; background: #e7ece8; }
.case-photo-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.case-photo-button:hover img { transform: scale(1.025); }
.case-facts { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.case-facts span { padding: 5px 9px; border-radius: 999px; background: var(--paper); color: var(--muted); font-size: 12px; }
.case-dialog { width: min(1040px, calc(100% - 28px)); }
.case-dialog-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.case-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.case-gallery img { width: 100%; height: 190px; object-fit: cover; border-radius: 6px; }
.case-gallery img:first-child { grid-column: 1 / -1; height: 300px; }
.case-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 22px 0; }
.case-details div { padding: 12px; background: var(--paper); border-radius: 6px; }
.case-details dt { color: var(--muted); font-size: 12px; }
.case-details dd { margin: 3px 0 0; font-weight: 800; }
blockquote { margin: 20px 0; padding: 18px; border-left: 4px solid var(--green); background: var(--green-soft); color: var(--green-dark); }

.footer { background: #111916; color: #eef4f0; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
.footer a, .footer p { color: #b9c7c0; }
.footer a:hover { color: #fff; }
.footer-title { font-weight: 900; margin-bottom: 14px; }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid #2c3832; display: flex; justify-content: space-between; gap: 20px; color: #87968e; font-size: 12px; }

@media (max-width: 980px) {
  .nav { min-height: 66px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 66px 0 auto;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .menu-open .nav-links { display: flex; }
  .nav-links a { padding: 12px; border: 0; }
  .hero { min-height: 640px; }
  .hero-media img { object-position: 62% center; }
  .hero::after { content: ""; position: absolute; inset: 0; background: rgba(245,247,244,.68); }
  .hero-copy { width: min(720px, 86%); }
  .price-rail-grid { grid-template-columns: repeat(2, 1fr); }
  .rail-item:nth-child(2) { border-right: 0; }
  .rail-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .section-head, .calculator-shell, .route-grid { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip, .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .case-dialog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .wrap, .narrow { width: min(100% - 24px, 1200px); }
  .hero { min-height: 650px; align-items: end; }
  .hero-media img { object-position: 69% center; }
  .hero::after { background: rgba(245,247,244,.8); }
  .hero-content { padding: 80px 0 50px; }
  .hero-copy { width: 100%; }
  .hero h1, h1 { font-size: 42px; }
  .hero .lead, .lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 9px; }
  .price-rail-grid { grid-template-columns: 1fr; }
  .rail-item { min-height: 88px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 18px 20px; }
  .rail-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { padding: 66px 0; }
  .section-head { gap: 12px; margin-bottom: 28px; }
  .grid.two, .grid.three, .grid.four, .form-grid, .form-grid.three, .check-grid, .footer-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card .button { margin-top: 24px; }
  .calc-intro, .calc-body, .card { padding: 20px; }
  .result-actions { grid-template-columns: 1fr; }
  .result-proof-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .step-time { grid-column: 2; }
  .case-kpi { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 26px 22px; }
  .cta-band .button { width: 100%; }
  .footer-bottom { display: grid; }
  .trust-strip, .scope-grid, .choice-grid, .case-details { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .role-row { grid-template-columns: 1fr; }
  .role-row > div:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; grid-template-columns: 1fr; padding: 16px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .modal-actions { display: grid; }
  .case-gallery { grid-template-columns: 1fr; }
  .case-gallery img, .case-gallery img:first-child { grid-column: auto; height: 220px; }
  .sticky-mobile-cta { display: block; position: fixed; z-index: 25; left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner:not([hidden]) ~ .sticky-mobile-cta { display: none; }
  body { padding-bottom: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
