:root {
  --green-950: #092417;
  --green-900: #0f3f25;
  --green-800: #15522f;
  --green-700: #1f6a3e;
  --sage-100: #edf4ef;
  --sage-200: #dcebe2;
  --ink: #151918;
  --muted: #5e6863;
  --line: #dfe6e2;
  --white: #ffffff;
  --paper: #f8faf8;
  --gold: #c28a31;
  --blue: #2f6f86;
  --shadow: 0 24px 70px rgba(9, 36, 23, 0.18);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--green-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(21, 25, 24, 0.08);
}

.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar__inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__inner span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69c58a;
}

.navbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  color: var(--green-900);
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand__text strong {
  display: block;
  font-size: 1.32rem;
  letter-spacing: 0;
  line-height: 1;
  color: #0b0d0c;
  white-space: nowrap;
}

.brand__text strong span {
  color: var(--green-800);
}

.brand__text small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #28312d;
  font-size: 0.95rem;
}

.nav-menu a:not(.button) {
  position: relative;
}

.nav-menu a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--green-800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu a:not(.button):hover::after,
.nav-menu a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-menu__call {
  color: var(--green-800);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--sage-100);
  color: var(--green-950);
  place-items: center;
  padding: 12px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--green-800);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(15, 63, 37, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(15, 63, 37, 0.25);
}

.button--small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.button--secondary {
  background: var(--ink);
  box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: #303735;
}

.button--ghost-dark {
  background: transparent;
  color: var(--green-950);
  border: 1px solid rgba(9, 36, 23, 0.22);
  box-shadow: none;
}

.button--ghost-dark:hover,
.button--ghost-dark:focus-visible {
  color: var(--white);
  background: var(--green-900);
}

.hero {
  position: relative;
  min-height: clamp(620px, 82svh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 61% center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 18, 12, 0.92) 0%, rgba(9, 36, 23, 0.78) 34%, rgba(9, 36, 23, 0.38) 65%, rgba(9, 36, 23, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 18, 12, 0.34), rgba(6, 18, 12, 0.08));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 70px 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
}

.hero h1 {
  width: min(740px, 100%);
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero__lead {
  width: min(650px, 100%);
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(740px, 100%);
  margin: 30px 0 0;
}

.hero__proof div {
  padding: 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero__proof dt {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero__proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.quick-strip {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(21, 25, 24, 0.08);
}

.quick-strip__grid {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  font-weight: 800;
  color: #26312c;
}

.quick-strip__grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.icon-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 5px rgba(31, 106, 62, 0.12);
  flex: 0 0 auto;
}

.icon-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(194, 138, 49, 0.14);
}

.icon-dot--blue {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(47, 111, 134, 0.14);
}

.section {
  padding-block: clamp(74px, 9vw, 118px);
}

.section__intro {
  width: min(800px, var(--container));
  margin-bottom: 34px;
}

.section__intro h2,
.image-band h2,
.price-layout h2,
.trust-copy h2,
.faq-layout h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--green-950);
}

.section__intro p:not(.eyebrow),
.image-band p,
.price-layout p,
.faq-layout p,
.final-cta p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section--quote {
  background:
    linear-gradient(180deg, #f8faf8 0%, #eef5f1 100%);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.quote-form,
.quote-summary,
.service-card,
.process-grid article,
.trust-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(9, 36, 23, 0.07);
}

.quote-form {
  padding: clamp(18px, 3vw, 32px);
}

fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

fieldset:last-of-type {
  margin-bottom: 18px;
}

legend {
  margin-bottom: 14px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--green-950);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
  color: #2b3430;
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9d4;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  min-height: 46px;
  padding: 10px 12px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 128px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(31, 106, 62, 0.12);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.check-grid label {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid #d9e1dd;
  border-radius: var(--radius);
  background: #fbfdfc;
  font-size: 0.9rem;
  cursor: pointer;
}

.check-grid input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--green-800);
  flex: 0 0 auto;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-status {
  margin: 14px 0 0;
  min-height: 24px;
  color: var(--green-900);
  font-weight: 800;
}

.form-status.is-error {
  color: #9b1c1c;
}

.quote-summary {
  position: sticky;
  top: 118px;
  padding: 24px;
}

.quote-summary h3 {
  margin: 0 0 16px;
  color: var(--green-950);
  font-size: 1.45rem;
  line-height: 1.15;
}

.quote-summary ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.quote-summary li {
  padding-left: 18px;
  position: relative;
}

.quote-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-700);
}

.summary-box {
  display: grid;
  gap: 3px;
  padding: 14px;
  margin-top: 10px;
  background: var(--sage-100);
  border-radius: var(--radius);
  color: var(--muted);
}

.summary-box strong {
  color: var(--green-950);
}

.summary-box--dark {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
}

.summary-box--dark strong,
.summary-box--dark a {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 24px;
  display: grid;
  gap: 12px;
  min-height: 244px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-950);
  color: var(--white);
  font-weight: 900;
}

.service-card h3,
.process-grid h3,
.trust-grid h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.22rem;
}

.service-card p,
.process-grid p,
.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 660px;
  background: var(--green-950);
  color: var(--white);
}

.image-band__media {
  min-height: 480px;
}

.image-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band__content {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 82px);
}

.image-band h2,
.image-band p {
  color: var(--white);
}

.image-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.tick-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
}

.section--process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-grid article {
  min-height: 218px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.process-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--green-900);
  font-weight: 900;
}

.section--pricing {
  background: #f2f6f3;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1fr);
  gap: 52px;
  align-items: center;
}

.price-factors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-factors div {
  min-height: 142px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.price-factors strong {
  color: var(--green-950);
  font-size: 1.12rem;
}

.price-factors span {
  color: var(--muted);
}

.section--trust {
  background: var(--green-950);
  color: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
  align-items: start;
}

.trust-copy h2 {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  padding: 22px;
}

.trust-grid h3 {
  color: var(--white);
}

.trust-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.section--reviews {
  background: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 270px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fbfdfc;
  box-shadow: 0 14px 36px rgba(9, 36, 23, 0.07);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 1.02rem;
}

.review-card blockquote {
  margin: 0;
  color: #28312d;
  font-size: 1.05rem;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  font-size: 0.92rem;
}

.section--area {
  background:
    linear-gradient(90deg, rgba(237, 244, 239, 0.96), rgba(248, 250, 248, 0.96));
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-950);
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 54px 20px 20px;
  font-weight: 900;
  color: var(--green-950);
  position: relative;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--green-800);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  padding-block: 58px;
  background: var(--sage-100);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.final-cta p {
  max-width: 740px;
}

.final-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  background: #070b09;
  color: rgba(255, 255, 255, 0.72);
  padding-block: 54px 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__mark {
  color: #7dd397;
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.brand--footer .brand__text strong span {
  color: #7dd397;
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  max-width: 420px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.thanks-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(9, 36, 23, 0.93), rgba(9, 36, 23, 0.68)),
    url("../img/team-ontruiming-hero.png") center / cover no-repeat;
}

.thanks {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.thanks__panel {
  width: min(720px, 100%);
  display: grid;
  gap: 20px;
  padding: clamp(24px, 5vw, 46px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.thanks__panel h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.thanks__panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.thanks__lead {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--sage-100);
  color: var(--green-950);
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: min(940px, calc(100vw - 40px));
  margin-inline: auto;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner strong {
  display: block;
  color: var(--green-950);
  margin-bottom: 3px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .form-grid--three,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(720px, calc(100vw - 28px));
  }

  .topbar {
    display: none;
  }

  .navbar__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 0.22s ease;
    z-index: 99;
  }

  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-menu .button {
    margin-top: 8px;
  }

  .nav-menu a:not(.button)::after {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .hero__image {
    object-position: 69% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(6, 18, 12, 0.92), rgba(9, 36, 23, 0.58)),
      linear-gradient(0deg, rgba(6, 18, 12, 0.4), rgba(6, 18, 12, 0.08));
  }

  .hero__proof,
  .quick-strip__grid,
  .quote-layout,
  .image-band,
  .price-layout,
  .trust-layout,
  .faq-layout,
  .area-layout,
  .final-cta__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    position: static;
  }

  .image-band {
    min-height: 0;
  }

  .image-band__content {
    padding-inline: max(14px, calc((100vw - 720px) / 2));
  }

  .final-cta__actions {
    justify-content: flex-start;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .brand__text small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-block: 58px 28px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    line-height: 1.04;
  }

  .hero__lead {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .eyebrow {
    overflow-wrap: anywhere;
  }

  .hero__proof {
    display: none;
  }

  .hero__actions,
  .form-actions,
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__proof,
  .form-grid,
  .form-grid--three,
  .check-grid,
  .service-grid,
  .process-grid,
  .price-factors,
  .trust-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .quick-strip__grid {
    padding-block: 18px;
  }

  .section {
    padding-block: 64px;
  }

  .quote-form,
  .quote-summary,
  .service-card,
  .process-grid article,
  .trust-grid article {
    padding: 18px;
  }

  .image-band__media {
    min-height: 360px;
  }

  .footer-bottom {
    display: grid;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    padding: 14px;
  }

  .cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

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