:root {
  --red: #d71920;
  --red-dark: #a90f16;
  --black: #08090b;
  --ink: #17191d;
  --muted: #626873;
  --line: #e7e9ee;
  --soft: #f5f6f8;
  --white: #fff;
  --green: #23c463;
  --radius: 8px;
  --shadow: 0 20px 54px rgba(0, 0, 0, .18);
}

* {
  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(--white);
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(16px, 4vw, 58px);
  background: rgba(8, 9, 11, .86);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand strong,
.footer-brand span {
  display: block;
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  margin-top: 3px;
}

.dark-brand {
  color: var(--ink);
  margin-bottom: 44px;
}

.dark-brand small {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: auto;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--white);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(215, 25, 32, .3);
}

.header-call svg,
.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .66) 42%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 142px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 680px) 310px;
  align-items: end;
  gap: 40px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

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

h1 {
  max-width: 710px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.7vw, 68px);
  line-height: 1;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.18;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 15px 34px rgba(215, 25, 32, .32);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-whatsapp {
  color: #052412;
  background: var(--green);
}

.btn-whatsapp svg {
  color: var(--white);
  fill: var(--white);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-badges span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 800;
}

.urgent-box {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.urgent-box img {
  width: 80px;
  margin-bottom: 14px;
}

.urgent-box h2 {
  font-size: 24px;
}

.urgent-box p {
  color: var(--muted);
  line-height: 1.55;
}

.urgent-box a,
.text-link,
.price-card a {
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.proof-strip div {
  padding: 20px clamp(16px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.proof-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 26px;
  line-height: 1;
}

.proof-strip span {
  color: rgba(255, 255, 255, .78);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.section p {
  color: var(--muted);
  line-height: 1.62;
}

.problem-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

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

.problem-grid a,
.district-grid a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  font-weight: 850;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.problem-grid a:hover,
.district-grid a:hover {
  border-color: rgba(215, 25, 32, .45);
  background: #fff2f3;
  transform: translateY(-1px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.compact-head h2 {
  max-width: 650px;
}

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

.service-list article {
  display: grid;
  grid-template-rows: 150px auto;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(10, 12, 16, .06);
}

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

.service-list article > div {
  padding: 18px;
}

.service-list p {
  margin-bottom: 0;
}

.price-card {
  background: var(--black) !important;
  color: var(--white);
}

.price-card p {
  color: rgba(255, 255, 255, .76);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--black);
  color: var(--white);
}

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

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 78px);
}

.split-copy p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.62;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 16px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, .88);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .22);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.process article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process article:nth-child(2) {
  background: var(--soft);
}

.process article span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.image-band {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .1));
}

.image-band div {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  max-width: 700px;
  margin: 0 auto;
  padding: 0 0 44px;
  justify-self: start;
}

.districts {
  text-align: center;
}

.districts > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto 22px;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
  text-align: left;
}

.contact-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.contact-copy {
  padding: clamp(32px, 5vw, 52px);
  background:
    linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .86)),
    url("assets/bad-rohr.png") center / cover;
}

.contact-copy p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.62;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-methods a {
  display: block;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
}

.contact-methods span,
.contact-methods small {
  display: block;
  color: rgba(255, 255, 255, .66);
}

.contact-methods strong {
  display: block;
  margin: 3px 0;
  font-size: 19px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: clamp(28px, 5vw, 48px);
  background: #101216;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  outline: none;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font: inherit;
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, .2);
}

.full {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 44px clamp(18px, 4vw, 60px) 96px;
  background: #f0f1f4;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 16px;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer a {
  font-weight: 850;
}

.sticky-actions {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
}

.sticky-actions a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.sticky-actions svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.sticky-call {
  background: var(--red);
  color: var(--white);
}

.sticky-wa {
  background: var(--green);
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  z-index: 70;
  left: 18px;
  bottom: 18px;
  width: min(460px, calc(100% - 36px));
  display: none;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

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

.cookie-banner div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner a {
  color: var(--red);
  font-weight: 850;
}

.cookie-banner button {
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.simple-page {
  background: var(--soft);
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 54px);
}

.legal-page h2 {
  margin-top: 30px;
  font-size: 22px;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.7;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.district-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.district-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.district-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .28));
}

.district-hero > div {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 52px;
}

.district-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.55;
}

.district-content {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 62px 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
}

.district-content p {
  color: var(--muted);
  line-height: 1.68;
}

.district-aside {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.district-aside p {
  color: rgba(255, 255, 255, .76);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .header-call {
    margin-left: auto;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .25)),
      linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .08));
  }

  .hero-content,
  .problem-section,
  .split-section,
  .contact-section,
  .district-content {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .district-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list,
  .process-grid,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 86px;
  }

  .site-header {
    height: 68px;
    padding: 9px 14px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .header-call {
    width: 46px;
    height: 46px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .header-call span {
    display: none;
  }

  .header-call:not(:has(svg)) {
    width: auto;
    padding: 0 13px;
    border-radius: var(--radius);
  }

  .header-call:not(:has(svg)) span {
    display: inline;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg {
    object-position: 68% center;
  }

  .hero-content {
    width: min(100% - 28px, 1160px);
    padding: 116px 0 28px;
    gap: 20px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .urgent-box {
    display: none;
  }

  .proof-strip,
  .problem-grid,
  .service-list,
  .process-grid,
  .district-grid,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 8px;
  }

  .service-list article {
    grid-template-rows: 135px auto;
    min-height: auto;
  }

  .service-list img {
    height: 135px;
  }

  .split-section {
    min-height: 0;
  }

  .split-image {
    min-height: 330px;
  }

  .split-copy {
    padding: 34px 18px 42px;
  }

  .image-band {
    min-height: 420px;
  }

  .contact-section {
    width: min(100% - 28px, 1160px);
    margin-bottom: 58px;
  }

  .contact-copy,
  .contact-form {
    padding: 26px 18px;
  }

  .sticky-actions {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: var(--black);
  }

  .sticky-actions a {
    width: 100%;
    height: 56px;
    border-radius: var(--radius);
  }

  .cookie-banner {
    left: 10px;
    bottom: 96px;
    width: calc(100% - 20px);
  }

  .district-hero {
    min-height: 480px;
  }
}
