:root {
  --bg: #ffffff;
  --surface: #f4f7f8;
  --surface-strong: #e8eef0;
  --ink: #101518;
  --muted: #58646b;
  --line: #d8e0e3;
  --brand: #1fb486;
  --brand-dark: #0b7f62;
  --brand-soft: #e2f7ef;
  --gold: #f4c84a;
  --charcoal: #151b1e;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(16, 21, 24, .14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

main {
  position: relative;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--brand);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--surface);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

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

.section__head > :only-child {
  grid-column: 1 / -1;
  max-width: 860px;
}

.section--dark .section__head p,
.section--dark .eyebrow {
  color: #b9c4c8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 800;
  margin: 0 0 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  font-size: 20px;
  color: #e9f0f2;
  max-width: 680px;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 180, 134, .26);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.btn--ghost {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .42);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .18);
}

.btn--dark {
  background: var(--ink);
  box-shadow: none;
}

.btn--dark:hover {
  background: #263036;
}

.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.btn--line:hover {
  background: var(--surface);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .98);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(16, 21, 24, .08);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(255, 255, 255, .98);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(16, 21, 24, .08);
}

.topbar {
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled .topbar,
.site-header.nav-open .topbar {
  border-bottom-color: var(--line);
}

.topbar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.topbar__items {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar strong {
  color: var(--brand);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  max-height: 180px;
  flex: 0 0 auto;
}

.brand-logo-slot img {
  width: 270px;
  max-width: 270px;
  max-height: 180px;
  height: auto;
  object-fit: contain;
}

.site-header .brand-logo-slot {
  width: 184px;
  height: 108px;
  max-height: 108px;
  overflow: hidden;
}

.site-header .brand-logo-slot img {
  width: 246px;
  max-width: none;
  max-height: none;
}

.site-header.is-scrolled .brand-logo-slot img,
.site-header.nav-open .brand-logo-slot img {
  filter: none;
}

.brand__name {
  color: currentColor;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 800;
}

.nav__links a {
  opacity: .92;
}

.nav__links a:hover {
  color: var(--brand);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__actions .btn {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  display: grid;
  align-items: center;
  padding: 154px 0 70px;
}

.hero__media,
.hero__media img,
.hero__shade {
  position: absolute;
  inset: 0;
}

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

.hero__shade {
  background:
    linear-gradient(90deg, rgba(13, 17, 19, .94) 0%, rgba(13, 17, 19, .78) 36%, rgba(13, 17, 19, .28) 70%, rgba(13, 17, 19, .16) 100%),
    linear-gradient(0deg, rgba(13, 17, 19, .72), rgba(13, 17, 19, .08) 48%, rgba(13, 17, 19, .42));
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 790px);
  gap: 44px;
  align-items: center;
}

.hero__content {
  max-width: 790px;
  min-width: 0;
}

.hero__badges {
  display: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}

.proof {
  border-left: 3px solid var(--brand);
  padding-left: 14px;
}

.proof strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
}

.proof span {
  color: #cbd5d9;
  font-size: 14px;
}

.lead-panel {
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.lead-panel__head {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.lead-panel__head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.lead-panel h2 {
  font-size: 32px;
  line-height: 1.08;
}

.lead-panel__tag {
  display: inline-flex;
  color: var(--brand-dark);
  font-weight: 900;
  margin-bottom: 8px;
}

.lead-form,
.calculator,
.magnet-form {
  display: grid;
  gap: 14px;
}

.lead-form {
  padding: 22px 24px 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--split {
  grid-template-columns: 1fr 1fr;
}

.field label,
.check-label {
  color: #2d363b;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(31, 180, 134, .14);
}

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

.form-status {
  min-height: 24px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}

.trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  padding: 24px 22px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.trust-item span {
  color: var(--muted);
}

.quote-section {
  border-bottom: 1px solid var(--line);
  padding: 36px 0 46px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
}

.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(16, 21, 24, .08);
}

.quote-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 14px 34px;
  align-items: end;
  margin-bottom: 22px;
}

.quote-card__head .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.quote-card__head h2 {
  margin: 0;
  font-size: 36px;
}

.quote-card__head p:last-child {
  margin: 0;
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 14px;
}

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

.quote-form__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.quote-form__bottom .btn {
  min-height: 48px;
  white-space: nowrap;
}

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

.service-card {
  display: grid;
  min-height: 298px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.service-card--image {
  min-height: 360px;
}

.service-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.service-card__body {
  padding: 22px;
}

.service-card p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  gap: 8px;
  color: #354147;
  font-size: 15px;
}

.service-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.partner-section {
  border-top: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--white);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 50px;
  align-items: center;
}

.partner-media {
  min-height: 520px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
}

.partner-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.partner-content {
  max-width: 560px;
}

.partner-content .eyebrow {
  color: #79d9ba;
}

.partner-content h2 {
  margin-bottom: 20px;
}

.partner-lead {
  color: #d7e0e3;
  font-size: 19px;
}

.partner-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.partner-list li {
  display: flex;
  gap: 12px;
  color: #eef4f5;
  font-weight: 700;
}

.partner-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(31, 180, 134, .16);
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.partner-actions span {
  max-width: 230px;
  color: #aebcc1;
  font-size: 14px;
}

.offer-band {
  background: var(--charcoal);
  color: var(--white);
}

.offer-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
  padding: 48px 0;
}

.offer-band p {
  color: #cbd5d9;
  max-width: 720px;
}

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

.mini-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mini-list li::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 6px var(--brand-soft);
}

.mini-list--light {
  margin-bottom: 28px;
}

.team-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.team-grid > div {
  min-width: 0;
}

.team-grid p:not(.eyebrow) {
  color: var(--muted);
}

.team-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.team-photo > img:first-child {
  width: 100%;
  height: auto;
}

.team-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 21, 24, .18), transparent 44%);
  content: "";
  pointer-events: none;
}

.magnet-card {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .08);
}

.magnet-card .field label {
  color: var(--white);
}

.magnet-card .field input {
  background: rgba(255, 255, 255, .94);
}

.form-note--light {
  color: #d7e0e3;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 21, 24, .07);
}

.panel__body {
  padding: 26px;
}

.calculator__result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
}

.calculator__result strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.calculator__result span {
  color: var(--muted);
  font-size: 14px;
}

.price-factors {
  display: grid;
  gap: 14px;
}

.factor {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.factor__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
}

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

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

.step {
  position: relative;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .06);
}

.step__num {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}

.step p {
  color: #cbd5d9;
}

.process-section .step {
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 21, 24, .06);
}

.process-section .step p {
  color: var(--muted);
}

.quality-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  align-items: center;
}

.quality-media {
  min-height: 390px;
  max-height: 410px;
  align-self: center;
  border-radius: var(--radius);
  overflow: hidden;
}

.quality-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-copy {
  display: grid;
  align-content: center;
}

.quality-copy .eyebrow {
  margin-bottom: 8px;
}

.quality-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 34px;
}

@media (min-width: 1101px) {
  .hero__content {
    max-width: 700px;
  }

  .hero h1 {
    max-width: 700px;
    margin-bottom: 18px;
    font-size: 52px;
    line-height: 1.04;
  }

  .hero .lead {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.48;
  }

  .hero__cta {
    margin: 20px 0;
  }

  .quote-section {
    position: absolute;
    top: 154px;
    right: max(20px, calc((100vw - var(--container)) / 2));
    z-index: 5;
    width: 410px;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .quote-card {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
  }

  .quote-card__head {
    display: block;
    margin-bottom: 10px;
  }

  .quote-card__head .eyebrow {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .quote-card__head h2 {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.08;
  }

  .quote-card__head p:last-child {
    display: none;
  }

  .quote-form {
    gap: 8px;
  }

  .quote-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quote-form .field {
    gap: 3px;
  }

  .quote-form .field label {
    font-size: 11px;
    line-height: 1.15;
  }

  .quote-form .field input,
  .quote-form .field select {
    border-radius: 7px;
    padding: 7px 8px;
    font-size: 13px;
  }

  .quote-form__bottom {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-form__bottom .field {
    display: none;
  }

  .quote-form__bottom .btn {
    width: 100%;
    min-height: 40px;
  }

  .quote-section .form-note {
    display: none;
  }

  .quote-section .form-status {
    min-height: 0;
    font-size: 12px;
  }
}

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

.quality-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--white);
}

.quality-item h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.quality-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
}

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

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #222;
  color: var(--white);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card__body {
  padding: 22px;
  background: var(--charcoal);
}

.project-card__body p {
  margin: 0;
  color: #cbd5d9;
}

.area-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.area-map {
  min-height: 450px;
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at 30% 24%, rgba(31, 180, 134, .24), transparent 34%),
    linear-gradient(135deg, #20282c, #101518);
  color: var(--white);
}

.area-map__ring {
  display: grid;
  width: 280px;
  height: 280px;
  place-items: center;
  margin: 38px auto;
  border: 2px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, .05), 0 0 0 100px rgba(255, 255, 255, .03);
}

.area-map__ring strong {
  text-align: center;
  font-size: 28px;
}

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

.neighborhoods li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--white);
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 20px 22px;
  text-align: left;
  font-weight: 900;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 24px;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(31, 180, 134, .22), transparent 55%);
  content: "";
}

.final-cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 42px;
  align-items: center;
}

.final-cta p {
  color: #d7e0e3;
}

.final-cta .lead-panel p {
  color: var(--muted);
}

.final-cta .lead-panel h2 {
  color: var(--ink);
}

.thank-page {
  min-height: 100vh;
  background: var(--surface);
}

.thank-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.thank-header__inner {
  display: flex;
  min-height: 124px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.thank-header .brand-logo-slot {
  width: 190px;
  height: 112px;
  max-height: 112px;
  overflow: hidden;
}

.thank-header .brand-logo-slot img {
  width: 255px;
  max-width: none;
  max-height: none;
}

.thank-main {
  padding: 76px 0 96px;
}

.thank-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 30px;
  align-items: stretch;
}

.thank-message,
.thank-next {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 21, 24, .08);
}

.thank-message {
  position: relative;
  overflow: hidden;
  padding: 42px;
}

.thank-message::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--brand);
  content: "";
}

.thank-check {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 28px;
  font-weight: 900;
}

.thank-message h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: 52px;
}

.thank-message .lead {
  color: var(--muted);
}

.thank-reference {
  display: inline-flex;
  margin: 6px 0 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.thank-next {
  padding: 30px;
  background: var(--charcoal);
  color: var(--white);
}

.thank-next h2 {
  margin-bottom: 24px;
  font-size: 30px;
}

.thank-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thank-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  padding-bottom: 18px;
}

.thank-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.thank-step span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  font-weight: 900;
}

.thank-step strong {
  display: block;
  margin-bottom: 3px;
}

.thank-step p {
  margin: 0;
  color: #b9c4c8;
  font-size: 14px;
}

.thank-support {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  background: var(--white);
}

.thank-support p {
  margin: 0;
  color: var(--muted);
}

.thank-support a {
  color: var(--brand-dark);
  font-weight: 900;
}

.site-footer {
  background: #0b0f11;
  color: #cbd5d9;
  padding: 56px 0 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 16px;
}

.footer-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-brand .brand-logo-slot {
  width: 190px;
  max-height: 136px;
  border-radius: var(--radius);
  padding: 6px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .2);
}

.footer-brand .brand-logo-slot img {
  width: 178px;
  max-width: 178px;
  max-height: 124px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  gap: 10px;
  align-items: center;
}

.sticky-cta a {
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(16, 21, 24, .22);
}

.sticky-cta a.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  width: min(calc(100% - 36px), 920px);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: #101518;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
}

.cookie-consent p {
  margin: 0;
  color: #d7e0e3;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.cookie-consent a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
}

.scan-page {
  background: var(--surface);
}

.scan-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 24px 0;
}

.scan-header__inner,
.scan-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.scan-header .brand-logo-slot {
  width: 190px;
  height: 126px;
  max-height: 126px;
  overflow: hidden;
}

.scan-header .brand-logo-slot img {
  width: 255px;
  max-width: none;
  max-height: none;
}

.scan-intro {
  padding: 64px 0 30px;
}

.scan-intro h1 {
  color: var(--ink);
  max-width: 900px;
}

.scan-intro .lead {
  color: var(--muted);
}

.scan-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 80px;
}

.scan-nav {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
}

.scan-nav a {
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.scan-nav a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.scan-content {
  display: grid;
  gap: 18px;
}

.scan-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 21, 24, .06);
  break-inside: avoid;
}

.scan-section h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.scan-section > p {
  color: var(--muted);
}

.scan-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 18px 0 0;
}

.scan-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: #2d363b;
  font-weight: 700;
}

.scan-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

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

.scan-table-wrap {
  overflow-x: auto;
}

.scan-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.scan-table th,
.scan-table td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
}

.scan-table th {
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
}

.scan-table input,
.scan-table select {
  width: 100%;
  min-width: 110px;
  border: 0;
  background: transparent;
  padding: 4px;
}

.scan-summary {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 750;
}

.scan-summary strong {
  color: var(--ink);
}

.scan-notes {
  width: 100%;
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  resize: vertical;
}

.scan-callout {
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 750;
}

@media print {
  .scan-header,
  .scan-nav,
  .scan-actions,
  .cookie-consent,
  .sticky-cta {
    display: none !important;
  }

  .scan-page,
  .scan-section {
    background: #fff;
  }

  .scan-layout {
    display: block;
  }

  .scan-section {
    box-shadow: none;
    margin-bottom: 16px;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .hero__grid,
  .offer-band__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .lead-panel,
  .magnet-card {
    max-width: 560px;
  }

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

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

  .quality-grid,
  .area-grid,
  .team-grid,
  .partner-grid,
  .thank-hero,
  .scan-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .quality-grid {
    gap: 20px;
  }

  .quality-media {
    min-height: 330px;
    max-height: 350px;
  }

  .quality-copy h2 {
    margin-bottom: 16px;
    font-size: 30px;
  }

  .scan-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 104px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.nav-open {
    position: sticky;
    inset: auto;
    top: -56px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 10px 26px rgba(16, 21, 24, .08);
    backdrop-filter: none;
  }

  .topbar {
    display: block;
    border-bottom: 0;
    background: var(--charcoal);
    color: var(--white);
  }

  .site-header.is-scrolled .topbar,
  .site-header.nav-open .topbar {
    border-bottom-color: transparent;
  }

  .topbar__inner {
    min-height: 56px;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .topbar__items {
    display: block;
    gap: 0;
  }

  .topbar__items span {
    display: inline;
  }

  .topbar strong {
    color: var(--brand);
  }

  .topbar a {
    display: none;
  }

  .nav {
    width: 100%;
    max-width: none;
    min-height: 96px;
    padding-inline: 16px;
  }

  .site-header .brand-logo-slot {
    width: 132px;
    height: 88px;
    max-height: 88px;
  }

  .site-header .brand-logo-slot img {
    width: 176px;
    max-width: none;
    max-height: none;
  }

  .brand__name {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .site-header.nav-open .nav__links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 152px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .nav__links a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .nav__links a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 692px;
    padding: 54px 0 28px;
    align-items: start;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero__proof,
  .section__head {
    grid-template-columns: 1fr;
  }

  .hero__proof {
    max-width: 100%;
  }

  .hero__badges {
    display: grid;
    justify-items: start;
    gap: 10px;
    margin-bottom: 28px;
  }

  .badge {
    border-color: rgba(31, 180, 134, .56);
    padding: 7px 12px;
    background: rgba(11, 127, 98, .82);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09);
    font-size: 14px;
  }

  .quote-card__head,
  .quote-form__grid,
  .quote-form__bottom {
    grid-template-columns: 1fr;
  }

  .quote-section {
    border-bottom: 0;
    padding: 34px 0 42px;
    background:
      linear-gradient(180deg, #101518 0%, #101518 86px, var(--surface) 86px, var(--surface) 100%);
  }

  .quote-card {
    padding: 20px;
    box-shadow: 0 22px 58px rgba(16, 21, 24, .18);
  }

  .quote-card__head {
    display: block;
    margin-bottom: 18px;
  }

  .quote-card__head h2 {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .quote-card__head p:last-child {
    font-size: 15px;
  }

  .quote-form__bottom .btn {
    width: 100%;
  }

  .partner-media,
  .partner-media img {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
    max-width: none;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 16px;
  }

  .hero {
    min-height: 692px;
    padding: 54px 0 28px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .hero__badges {
    order: 1;
  }

  .hero h1 {
    order: 2;
  }

  .hero__cta {
    order: 4;
  }

  .hero .lead {
    order: 3;
  }

  .hero__proof {
    order: 5;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(13, 17, 19, .96), rgba(13, 17, 19, .84)),
      linear-gradient(0deg, rgba(13, 17, 19, .72), rgba(13, 17, 19, .28));
  }

  .hero__cta {
    display: grid;
  }

  .hero__cta {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin: 22px 0 0;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .hero__proof .proof:nth-child(3) {
    display: none;
  }

  .proof {
    border-left: 0;
    padding-left: 0;
  }

  .proof strong {
    font-size: 24px;
  }

  .proof span {
    display: block;
    font-size: 13px;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    justify-items: stretch;
  }

  .hero .lead {
    margin-top: 0;
    margin-bottom: 0;
  }

  .badge {
    justify-content: center;
    max-width: 100%;
    min-height: 38px;
    padding: 8px;
    font-size: clamp(11px, 3.1vw, 13px);
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .hero__badges .badge:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 240px);
  }

  .hero__cta a[href="#kosten"] {
    order: 1;
    border-color: var(--brand);
    background: var(--brand);
    color: var(--white);
  }

  .hero__cta a[href="#offerte"] {
    order: 2;
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
  }

  .sticky-cta {
    display: none;
  }

  .nav-toggle {
    flex: 0 0 44px;
    margin-left: auto;
    background: var(--white);
    border-color: var(--line);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(16, 21, 24, .08);
  }

  .brand__name {
    max-width: 225px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-cta a {
    display: flex;
    justify-content: center;
    padding: 12px 10px;
    min-width: 0;
    white-space: nowrap;
  }

  .field--split,
  .service-grid,
  .process,
  .portfolio-grid,
  .quality-list,
  .neighborhoods,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trustbar {
    display: none;
  }

  .lead-panel__head,
  .lead-form,
  .panel__body,
  .magnet-card,
  .quote-card {
    padding: 20px;
  }

  .quote-section {
    padding: 28px 0 38px;
  }

  .quote-card__head {
    margin-bottom: 18px;
  }

  .quote-card__head h2 {
    font-size: 28px;
  }

  .trust-item {
    border-right: 1px solid var(--line);
  }

  .quality-media {
    min-height: 260px;
    max-height: 280px;
  }

  .quality-grid {
    gap: 14px;
  }

  .quality-copy .eyebrow {
    margin-bottom: 6px;
  }

  .quality-copy h2 {
    margin-bottom: 14px;
    font-size: 26px;
  }

  .quality-item {
    padding: 14px;
  }

  .quality-item h3 {
    font-size: 17px;
  }

  .quality-item p {
    font-size: 14px;
  }

  .area-map__ring {
    width: 210px;
    height: 210px;
    box-shadow: 0 0 0 34px rgba(255, 255, 255, .05), 0 0 0 68px rgba(255, 255, 255, .03);
  }

  .footer-bottom {
    display: grid;
  }

  .thank-header__inner,
  .thank-actions,
  .thank-support {
    align-items: stretch;
    flex-direction: column;
  }

  .thank-main {
    padding: 44px 0 80px;
  }

  .thank-message,
  .thank-next {
    padding: 24px;
  }

  .thank-message h1 {
    font-size: 36px;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .cookie-consent__actions,
  .cookie-consent .btn {
    width: 100%;
  }

  .scan-header__inner,
  .scan-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .scan-nav,
  .scan-checks,
  .scan-fields {
    grid-template-columns: 1fr;
  }

  .scan-section {
    padding: 20px;
  }
}
