:root {
  --bg: #0c1110;
  --bg-deep: #070b0a;
  --panel: #111918;
  --panel-soft: #18221f;
  --paper: #f4f6f2;
  --ink: #101514;
  --text: #f6f8f4;
  --muted: #a8b4ad;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(16, 21, 20, 0.12);
  --green: #72bf44;
  --green-bright: #95db4f;
  --green-dark: #326d30;
  --mint: #34d49b;
  --yellow: #ffc52d;

  /* Inhaltsbreiten (Walter, 04.09.2026): die Seite wirkte auf breiten Monitoren
     leer, weil die Inhalte bei ~1000px endeten. Alle Inhaltsbereiche haengen an
     diesen drei Werten — hier aendern, nicht in den einzelnen Regeln.
     Den seitlichen Rand liefert das Padding der jeweiligen Section. Hier KEIN
     "100% - 96px" verwenden: der feste Abzug kommt zum Section-Padding hinzu und
     schnuert die Inhalte auf dem Handy zusammen (bei 430px blieben 243px uebrig). */
  --inhalt: min(1400px, 100%);          /* Raster, Splits, Formular */
  --inhalt-mittel: min(1180px, 100%);   /* Hero, Fakten-Reihe */
  --inhalt-schmal: min(900px, 100%);    /* zentrierte Einleitungstexte:
     bewusst schmaler, sonst werden die Zeilen zu lang zum Lesen */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

img {
  display: block;
  max-width: 100%;
  /* Pflicht, sobald im HTML width/height als Attribute stehen: ohne height:auto
     gilt das Attribut als Hoehe. Dann wird ein per CSS auf 58px verkleinertes Logo
     58 x 1098 px gross, und ein aspect-ratio wird komplett ignoriert, weil es nur
     greift, wenn die andere Dimension auto ist. */
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 0 clamp(20px, 4vw, 72px);
  background: rgba(7, 11, 10, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 260px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-kicker {
  display: block;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: 0.5px;
  line-height: 0.95;
}

.brand small {
  color: #dbe4df;
  font-size: 11px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.7vw, 42px);
  font-size: 13px;
  font-weight: 850;
}

.main-nav a {
  color: #f8fbf7;
  text-decoration: none;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  color: var(--green-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-block {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.phone-block .icon {
  color: var(--green);
  font-size: 25px;
}

.phone-block b {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
}

.phone-block small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #061009;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(114, 191, 68, 0.25);
  cursor: pointer;
}

button.button {
  font-family: inherit;
}

.button:hover {
  transform: translateY(-1px);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 108px clamp(24px, 5vw, 78px) 78px;
  background-image:
    radial-gradient(circle at 18% 58%, rgba(114, 191, 68, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(7, 11, 10, 0.94) 0%, rgba(7, 11, 10, 0.76) 38%, rgba(7, 11, 10, 0.2) 72%, rgba(7, 11, 10, 0.78) 100%),
    linear-gradient(0deg, rgba(7, 11, 10, 0.74), rgba(7, 11, 10, 0.22)),
    url("yard-front.jpg");
  background-position: center;
  background-size: cover;
}

.hero-inner {
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dce8dd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "♻";
  color: var(--green);
  font-size: 20px;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 6.5vw, 88px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 950;
  line-height: 1.08;
}

h3 {
  font-size: 20px;
  font-weight: 950;
}

.accent {
  color: var(--green);
}

.lead {
  max-width: 690px;
  color: #e6eee9;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 46px 0 36px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.badge-icon,
.card-icon,
.contact-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.badge-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(149, 219, 79, 0.6);
  color: var(--green-bright);
  font-size: 22px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.section {
  padding: clamp(56px, 6vw, 92px) clamp(22px, 5vw, 78px);
}

.light-section {
  background: var(--paper);
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.media-card {
  min-height: 380px;
  border-radius: 10px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.media-yard {
  background-image:
    linear-gradient(180deg, rgba(7, 11, 10, 0.08), rgba(7, 11, 10, 0.2)),
    url("yard-aerial.jpg");
}

.media-scrap {
  background-image:
    linear-gradient(180deg, rgba(7, 11, 10, 0.1), rgba(7, 11, 10, 0.25)),
    url("scrapyard.jpg");
}

.label {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.light-section p {
  color: #35413c;
}

.body-copy {
  font-size: 18px;
  line-height: 1.74;
}

.checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  color: #26322d;
  font-weight: 800;
}

.checks span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-right: 10px;
  border-radius: 50%;
  background: #dff3d4;
  color: #3f9d35;
  font-size: 12px;
}

.dark-image-section {
  background-image:
    linear-gradient(180deg, rgba(12, 17, 16, 0.95), rgba(12, 17, 16, 0.98)),
    url("scrapyard.jpg");
  background-position: center;
  background-size: cover;
}

.center {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.card {
  min-height: 238px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 32px;
  background: rgba(114, 191, 68, 0.1);
}

.card h3 {
  margin-bottom: 12px;
  text-transform: uppercase;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.card a {
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  padding: clamp(26px, 3vw, 42px);
  border-radius: 9px;
  background-image:
    linear-gradient(90deg, rgba(25, 94, 75, 0.92), rgba(10, 16, 15, 0.35)),
    url("scrapyard.jpg");
  background-position: center 56%;
  background-size: cover;
}

.cta-band h2,
.cta-band h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cta-band p {
  margin-bottom: 0;
  color: #dce8dd;
}

.contact-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 34px;
}

.contact-panel {
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(8, 12, 12, 0.88);
}

.contact-list {
  display: grid;
  gap: 24px;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  color: var(--green-bright);
  background: rgba(114, 191, 68, 0.13);
}

.contact-row b {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.contact-row span,
.contact-row a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.map-panel {
  position: relative;
  min-height: 430px;
  border-radius: 9px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 22, 21, 0.62), rgba(15, 22, 21, 0.15)),
    linear-gradient(36deg, transparent 0 49%, rgba(149, 219, 79, 0.3) 49% 50%, transparent 50%),
    linear-gradient(118deg, transparent 0 48%, rgba(255, 255, 255, 0.16) 48% 49%, transparent 49%),
    #182420;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.35;
}

.pin {
  position: absolute;
  left: 56%;
  top: 40%;
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  transform: rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
}

.page-hero {
  padding: 96px clamp(22px, 5vw, 78px) 80px;
  background-image:
    linear-gradient(90deg, rgba(7, 11, 10, 0.92), rgba(7, 11, 10, 0.58), rgba(7, 11, 10, 0.9)),
    url("yard-aerial.jpg");
  background-position: center;
  background-size: cover;
}

.page-hero .lead {
  max-width: 850px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
}

.prose {
  max-width: 980px;
}

.prose p {
  color: #d8e1dc;
  font-size: 18px;
  line-height: 1.8;
}

.prose.light p {
  color: #25312c;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.step-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #07100b;
  font-weight: 950;
}

.side-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.side-panel .button {
  width: 100%;
  margin-top: 12px;
}

.form-page {
  background: var(--paper);
  color: var(--ink);
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: start;
}

.form-intro {
  min-height: 690px;
  padding: 36px;
  border-radius: 9px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(12, 17, 16, 0.12), rgba(12, 17, 16, 0.9)),
    url("yard-aerial.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.form-intro h2 {
  margin-top: 250px;
}

.form-intro p {
  color: #dbe4df;
  font-size: 17px;
  line-height: 1.7;
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid #dde5e0;
  border-radius: 6px;
  background: #edf2ef;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 170px;
  padding-top: 16px;
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 54px clamp(22px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: #111514;
}

.site-footer img {
  width: 120px;
}

.site-footer p,
.site-footer a {
  color: #d9dfdc;
  text-decoration: none;
  line-height: 1.8;
}

.legal-page {
  min-height: 50vh;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 10px;
  }

  .phone-block {
    display: none;
  }

  .split,
  .contact-grid,
  .content-grid,
  .form-wrap,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    grid-template-columns: 1fr;
  }

  .form-intro {
    min-height: 430px;
  }

  .form-intro h2 {
    margin-top: 160px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    gap: 10px;
  }

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

  .brand-kicker {
    display: none;
  }

  .brand strong {
    font-size: 18px;
  }

  .header-actions .button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 640px;
    padding: 58px 22px 34px;
    background-position: center;
  }

  h1 {
    font-size: 43px;
  }

  .hero-badges {
    display: grid;
    gap: 14px;
  }

  .hero-actions,
  .actions,
  .request-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .media-card {
    min-height: 230px;
  }

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

  .card {
    min-height: 0;
  }

  .contact-panel {
    padding: 24px;
  }

  .map-panel {
    min-height: 300px;
  }

  .step {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .step-number {
    width: 44px;
    height: 44px;
  }

  .form-intro {
    min-height: 360px;
    padding: 24px;
  }

  .form-intro h2 {
    margin-top: 110px;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer img {
    margin: 0 auto;
  }
}

/* Onepage redesign */
.onepage {
  --one-bg: #f6f8f7;
  --one-soft: #eef3f1;
  --one-card: #ffffff;
  --one-ink: #13201c;
  --one-muted: #66756f;
  --one-line: #dde8e4;
  --one-teal: #72bf44;
  --one-teal-dark: #72bf44;
  background: var(--one-bg);
  color: var(--one-ink);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

.onepage {
  --one-bg: #0c1110;
  --one-soft: #111918;
  --one-card: rgba(255, 255, 255, 0.055);
  --one-ink: #f6f8f4;
  --one-muted: #a8b4ad;
  --one-line: rgba(255, 255, 255, 0.1);
  --one-teal: #72bf44;
  --one-teal-dark: #95db4f;
}

.onepage-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 clamp(18px, 5vw, 96px);
  background: rgba(7, 11, 10, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.onepage-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.onepage-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  color: #f8fbf7;
  font-size: 12px;
  font-weight: 850;
}

.onepage-nav a,
.onepage-footer a {
  color: inherit;
  text-decoration: none;
}

.onepage-nav a:hover {
  color: var(--one-teal);
}

.onepage-header-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #95db4f, #72bf44);
  color: #061009;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.onepage-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 110px 22px 120px;
  text-align: center;
  background-image:
    radial-gradient(circle at 48% 58%, rgba(114, 191, 68, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(7, 11, 10, 0.5), rgba(7, 11, 10, 0.92) 78%, #0c1110 100%),
    linear-gradient(90deg, rgba(7, 11, 10, 0.75), rgba(7, 11, 10, 0.2), rgba(7, 11, 10, 0.75)),
    url("yard-aerial.jpg");
  background-position: center top;
  background-size: cover;
}

.onepage-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: linear-gradient(180deg, rgba(12,17,16,0), #0c1110);
  pointer-events: none;
}

.onepage-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.onepage-kicker,
.onepage-section-head span,
.onepage-line {
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--one-teal);
}

.onepage-kicker {
  width: auto;
  height: auto;
  margin-bottom: 16px;
  background: transparent;
  color: var(--one-teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.onepage h1,
.onepage h2,
.onepage h3 {
  color: var(--one-ink);
  letter-spacing: 0;
}

.onepage h1 {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 780;
  line-height: 1;
  text-transform: none;
}

.onepage h1 span {
  display: block;
  color: #95db4f;
}

.onepage-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #dce8dd;
  font-size: 18px;
  line-height: 1.65;
}

.onepage-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.onepage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, #95db4f, #72bf44);
  color: #061009;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(114, 191, 68, 0.22);
  cursor: pointer;
}

.onepage-button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(31, 48, 42, 0.12);
}

.onepage-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 820px;
  margin: 34px auto 0;
}

.onepage-hero-facts div,
.onepage-feature-grid article,
.onepage-service-grid article,
.onepage-trust-grid article,
.onepage-contact-cards a {
  border: 1px solid var(--one-line);
  border-radius: 8px;
  background: var(--one-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.onepage-hero-facts div {
  padding: 14px;
  text-align: left;
}

.onepage-hero-facts b,
.onepage-hero-facts span {
  display: block;
}

.onepage-hero-facts b {
  font-size: 12px;
}

.onepage-hero-facts span {
  margin-top: 4px;
  color: var(--one-muted);
  font-size: 11px;
}

.onepage-section {
  padding: clamp(70px, 8vw, 112px) clamp(22px, 5vw, 96px);
  background: #0c1110;
}

.onepage-band {
  background: #111918;
}

.onepage-section-head {
  width: var(--inhalt-schmal);
  margin: 0 auto 46px;
  text-align: center;
}

.onepage-section-head h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 760;
  text-transform: none;
}

.onepage-section-head p,
.onepage p {
  color: var(--one-muted);
  line-height: 1.7;
}

.onepage-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: var(--inhalt);
  margin: 0 auto;
}

.onepage-feature-grid article,
.onepage-service-grid article {
  padding: 28px;
}

.onepage-feature-grid article:nth-child(4),
.onepage-feature-grid article:nth-child(5) {
  transform: translateX(calc(50% + 9px));
}

.onepage-feature-grid i,
.onepage-service-grid i,
.onepage-trust-grid i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--one-teal);
  color: #fff;
  font-style: normal;
  font-weight: 950;
}

.onepage-feature-grid h3,
.onepage-service-grid h3,
.onepage-trust-grid h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 760;
}

.onepage-feature-grid p,
.onepage-service-grid p,
.onepage-trust-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.onepage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  width: var(--inhalt);
  margin: 0 auto;
}

.onepage-split img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.onepage-split h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 760;
  text-transform: none;
}

.onepage-split p {
  font-size: 16px;
}

.onepage-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: var(--inhalt);
  margin: 0 auto;
}

.onepage-service-grid a {
  display: inline-block;
  margin-top: 18px;
  color: var(--one-teal);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.onepage-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  width: var(--inhalt);
  margin: 0 auto;
  text-align: center;
}

.onepage-process b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border: 1px solid rgba(114, 191, 68, 0.25);
  border-radius: 50%;
  background: #e5faf5;
  color: var(--one-teal);
}

.onepage-process h3 {
  font-size: 16px;
}

.onepage-process p {
  font-size: 13px;
}

.onepage-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: var(--inhalt);
  margin: 0 auto;
}

.onepage-trust-grid article {
  padding: 24px;
  text-align: center;
}

.onepage-trust-grid i {
  margin-inline: auto;
  border-radius: 50%;
  background: #e5faf5;
  color: var(--one-teal);
}

.onepage-contact {
  background: #f4f6f8;
  color: #151b26;
}

.onepage-contact .onepage-section-head h2,
.onepage-contact .onepage-section-head p {
  color: #151b26;
}

.onepage-contact-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: -16px auto 34px;
}

.onepage-contact-cards a {
  min-width: 230px;
  padding: 18px 22px;
  color: var(--one-ink);
  text-decoration: none;
}

.onepage-contact-cards b,
.onepage-contact-cards span {
  display: block;
}

.onepage-contact-cards span {
  margin-top: 4px;
  color: var(--one-muted);
}

.onepage-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  width: var(--inhalt);
  margin: 0 auto;
  align-items: start;
}

.onepage-form {
  padding: 28px;
  border: 1px solid var(--one-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(25, 42, 36, 0.08);
}

.onepage-form input,
.onepage-form select,
.onepage-form textarea {
  background: #f6faf8;
  border-color: #dfe9e5;
}

.onepage-contact-layout aside {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--one-line);
}

.onepage-contact-layout aside a {
  color: var(--one-teal-dark);
  text-decoration: none;
}

.onepage-footer {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .8fr;
  gap: 44px;
  padding: 54px clamp(22px, 5vw, 96px);
  border-top: 1px solid var(--one-line);
  background: #111514;
  color: #f6f8f4;
}

.onepage-footer img {
  width: 42px;
  margin-bottom: 16px;
}

.onepage-footer h3 {
  margin-bottom: 14px;
  font-size: 14px;
}

.onepage-footer a {
  display: block;
  margin-bottom: 9px;
  color: var(--one-muted);
  font-size: 13px;
}

.onepage-footer p {
  max-width: 310px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .onepage-header {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }

  .onepage-nav {
    display: none;
  }

  .onepage-header-button {
    justify-self: end;
  }

  .onepage-hero-facts,
  .onepage-feature-grid,
  .onepage-service-grid,
  .onepage-process,
  .onepage-trust-grid,
  .onepage-split,
  .onepage-contact-layout,
  .onepage-footer {
    grid-template-columns: 1fr;
  }

  .onepage-feature-grid article:nth-child(4),
  .onepage-feature-grid article:nth-child(5) {
    transform: none;
  }

  .onepage-split.reverse img {
    order: 2;
  }
}

@media (max-width: 640px) {
  .onepage-header {
    min-height: 58px;
    padding-inline: 16px;
  }

  .onepage-header-button {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .onepage-hero {
    min-height: 690px;
    padding-top: 74px;
  }

  .onepage h1 {
    font-size: 39px;
  }

  .onepage-hero-actions,
  .onepage-contact-cards {
    display: grid;
  }

  .onepage-button {
    width: 100%;
  }

  .onepage-section {
    padding: 62px 18px;
  }

  .onepage-form {
    padding: 18px;
  }
}

.onepage .onepage-kicker {
  color: #95db4f;
}

.onepage .onepage-feature-grid i,
.onepage .onepage-service-grid i,
.onepage .onepage-trust-grid i,
.onepage-process b {
  background: rgba(114, 191, 68, 0.14);
  color: #95db4f;
  border: 1px solid rgba(149, 219, 79, 0.28);
}

.onepage-service-grid a {
  color: #95db4f;
}

.onepage-contact .onepage-section-head {
  margin-bottom: 54px;
}

.onepage-contact .onepage-section-head span {
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: #72bf44;
}

.onepage-contact .onepage-section-head h2 {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 700;
}

.onepage-contact .onepage-section-head p {
  max-width: 1100px;
  margin-inline: auto;
  color: #637087;
  font-size: clamp(20px, 2vw, 28px);
}

.inquiry-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(1100px, 100%);
  margin: 0 auto 76px;
}

.inquiry-option {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 150px;
  padding: 32px 38px;
  border: 2px solid #dce3ea;
  border-radius: 18px;
  background: #fff;
  color: #151b26;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.inquiry-option:hover,
.inquiry-option.is-active {
  border-color: #72bf44;
  background: #eff8f6;
}

.inquiry-option:hover {
  transform: translateY(-1px);
}

.inquiry-option i {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 12px;
  background: #e5f4f1;
  color: #72bf44;
  font-style: normal;
  font-size: 34px;
}

.inquiry-option b,
.inquiry-option small {
  display: block;
}

.inquiry-option b {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
}

.inquiry-option small {
  margin-top: 8px;
  color: #637087;
  font-size: 22px;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 78px;
  width: min(1500px, 100%);
  margin: 0 auto;
  align-items: start;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 32px;
  padding: 50px;
  border: 2px solid #dce3ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 45, 60, 0.06);
}

.inquiry-form .field {
  gap: 12px;
}

.inquiry-form .field.full {
  grid-column: 1 / -1;
}

.inquiry-form label {
  color: #151b26;
  font-size: 21px;
  font-weight: 700;
}

.inquiry-form label span {
  color: #72bf44;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  min-height: 62px;
  border: 2px solid #dce3ea;
  border-radius: 8px;
  background: #f8fafc;
  color: #151b26;
  font-size: 20px;
}

.inquiry-form textarea {
  min-height: 160px;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #637087;
}

.inquiry-form .onepage-button {
  width: 100%;
  min-height: 70px;
  border-radius: 8px;
  background: #72bf44;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  box-shadow: none;
}

.car-field {
  display: none;
}

.inquiry-section.is-car .car-field {
  display: grid;
}

.inquiry-section.is-car .part-field {
  display: none;
}

.inquiry-side {
  padding-top: 8px;
}

.inquiry-side h3 {
  margin-bottom: 30px;
  color: #151b26;
  font-size: 29px;
  font-weight: 700;
}

.inquiry-contact-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px;
  margin-bottom: 30px;
  color: #151b26;
}

.inquiry-contact-row i {
  color: #72bf44;
  font-style: normal;
  font-size: 28px;
  line-height: 1;
}

.inquiry-contact-row p {
  margin: 0;
}

.inquiry-contact-row b,
.inquiry-contact-row a,
.inquiry-contact-row span {
  display: block;
}

.inquiry-contact-row b {
  margin-bottom: 8px;
  color: #151b26;
  font-size: 22px;
  font-weight: 700;
}

.inquiry-contact-row a,
.inquiry-contact-row span {
  color: #637087;
  font-size: 22px;
  line-height: 1.35;
  text-decoration: none;
}

.opening-card {
  margin-top: 42px;
  padding: 34px;
  border: 2px solid #dce3ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 45, 60, 0.06);
}

.opening-card h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.opening-card p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 12px;
  color: #637087;
  font-size: 21px;
}

.opening-card b {
  color: #151b26;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .inquiry-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .inquiry-side h3 {
    grid-column: 1 / -1;
  }

  .opening-card {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .inquiry-switch,
  .inquiry-form,
  .inquiry-side {
    grid-template-columns: 1fr;
  }

  .inquiry-switch {
    gap: 14px;
    margin-bottom: 38px;
  }

  .inquiry-option {
    grid-template-columns: 58px 1fr;
    min-height: 108px;
    padding: 20px;
  }

  .inquiry-option i {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .inquiry-option b {
    font-size: 22px;
  }

  .inquiry-option small,
  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea,
  .inquiry-contact-row a,
  .inquiry-contact-row span,
  .opening-card p {
    font-size: 17px;
  }

  .inquiry-form {
    padding: 22px;
    gap: 22px;
  }

  .inquiry-form label,
  .inquiry-contact-row b {
    font-size: 17px;
  }

  .onepage-contact .onepage-section-head h2 {
    font-size: 38px;
  }

  .onepage-contact .onepage-section-head p {
    font-size: 18px;
  }
}

/* Balance pass: keep the Kuhnert premium design, but with onepage pacing. */
.onepage {
  --one-bg: #f5f7f4;
  --one-soft: #edf3ef;
  --one-card: #ffffff;
  --one-ink: #151d1a;
  --one-muted: #63706a;
  --one-line: #dfe7e2;
  --one-teal: #72bf44;
  --one-teal-dark: #72bf44;
  background: var(--one-bg);
  color: var(--one-ink);
}

.onepage h1,
.onepage h2,
.onepage h3 {
  font-weight: 650;
}

.onepage-header {
  background: rgba(9, 14, 13, 0.94);
}

.onepage-hero {
  min-height: 620px;
  padding-bottom: 82px;
  background-image:
    radial-gradient(circle at 48% 58%, rgba(114, 191, 68, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(7, 11, 10, 0.24), rgba(7, 11, 10, 0.8) 76%, #0c1110 100%),
    linear-gradient(90deg, rgba(7, 11, 10, 0.78), rgba(7, 11, 10, 0.14), rgba(7, 11, 10, 0.72)),
    url("yard-aerial.jpg");
}

.onepage-hero h1,
.onepage-hero h2,
.onepage-hero h3 {
  color: #fff;
}

.onepage-hero::after {
  height: 86px;
  background: linear-gradient(180deg, rgba(12, 17, 16, 0), rgba(245, 247, 244, 0.92) 82%, #f5f7f4);
}

.onepage-hero-content {
  transform: translateY(18px);
}

.onepage-hero-facts {
  margin-top: 28px;
}

#vorteile {
  padding-top: 64px;
}

.onepage-hero-facts div {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.onepage-hero-facts b {
  color: #fff;
}

.onepage-hero-facts span {
  color: #d5ded9;
}

.onepage-section {
  background: #fff;
  color: var(--one-ink);
}

.onepage-band {
  background: var(--one-soft);
}

.onepage-section-head h2,
.onepage-split h2,
.onepage-feature-grid h3,
.onepage-service-grid h3,
.onepage-trust-grid h3 {
  color: var(--one-ink);
  font-weight: 650;
}

.onepage-section-head p,
.onepage p {
  color: var(--one-muted);
}

.onepage-feature-grid article,
.onepage-service-grid article,
.onepage-trust-grid article {
  background: #fff;
  border-color: var(--one-line);
  box-shadow: 0 16px 45px rgba(22, 35, 30, 0.06);
}

#leistungen {
  background-image:
    linear-gradient(180deg, rgba(12, 17, 16, 0.95), rgba(12, 17, 16, 0.98)),
    url("scrapyard.jpg");
  background-position: center;
  background-size: cover;
  color: #f6f8f4;
}

#leistungen .onepage-section-head h2,
#leistungen .onepage-service-grid h3 {
  color: #f6f8f4;
}

#leistungen .onepage-section-head p,
#leistungen .onepage-service-grid p {
  color: #a8b4ad;
}

#leistungen .onepage-service-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.onepage-contact {
  background: #f5f7f4;
  color: var(--one-ink);
}

.onepage-contact .onepage-section-head {
  width: var(--inhalt-schmal);
  margin-bottom: 38px;
}

.onepage-contact .onepage-section-head h2 {
  color: var(--one-ink);
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 650;
}

.onepage-contact .onepage-section-head p {
  color: var(--one-muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.onepage-contact .onepage-section-head span {
  width: 52px;
  height: 4px;
  background: var(--one-teal-dark);
}

.inquiry-switch {
  width: var(--inhalt);
  gap: 18px;
  margin-bottom: 42px;
}

.inquiry-option {
  grid-template-columns: 54px 1fr;
  gap: 18px;
  min-height: 104px;
  padding: 22px 26px;
  border: 1px solid var(--one-line);
  border-radius: 10px;
  background: #fff;
}

.inquiry-option:hover,
.inquiry-option.is-active {
  border-color: var(--one-teal-dark);
  background: #f0f7f3;
}

.inquiry-option i {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #e6f3ee;
  color: var(--one-teal-dark);
  font-size: 24px;
}

.inquiry-option b {
  font-size: 20px;
  font-weight: 650;
}

.inquiry-option small {
  margin-top: 4px;
  font-size: 16px;
}

.inquiry-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 38px;
  width: var(--inhalt);
}

.inquiry-form {
  gap: 20px 22px;
  padding: 32px;
  border: 1px solid var(--one-line);
  border-radius: 10px;
  box-shadow: 0 16px 45px rgba(22, 35, 30, 0.07);
}

.inquiry-form label {
  font-size: 15px;
  font-weight: 650;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  min-height: 48px;
  border: 1px solid #dce5e0;
  border-radius: 6px;
  font-size: 15px;
}

.inquiry-form textarea {
  min-height: 132px;
}

.inquiry-form .onepage-button {
  min-height: 52px;
  background: var(--one-teal-dark);
  font-size: 16px;
  font-weight: 650;
}

.inquiry-side h3 {
  color: var(--one-ink);
  font-size: 22px;
  font-weight: 650;
  margin-bottom: 24px;
}

.inquiry-contact-row {
  grid-template-columns: 26px 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.inquiry-contact-row i {
  color: var(--one-teal-dark);
  font-size: 21px;
}

.inquiry-contact-row b {
  color: var(--one-ink);
  font-size: 16px;
  font-weight: 650;
}

.inquiry-contact-row a,
.inquiry-contact-row span {
  color: var(--one-muted);
  font-size: 16px;
}

.opening-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--one-line);
  border-radius: 10px;
  box-shadow: 0 16px 45px rgba(22, 35, 30, 0.07);
}

.opening-card h3 {
  font-size: 18px;
  font-weight: 650;
}

.opening-card p {
  font-size: 16px;
}

.onepage-footer {
  background: #111514;
  color: #f6f8f4;
}

@media (max-width: 1100px) {
  .inquiry-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .inquiry-switch,
  .inquiry-form,
  .inquiry-side {
    grid-template-columns: 1fr;
  }

  .inquiry-side {
    display: block;
  }
}

/* Final hero and icon refinements */
.onepage-hero {
  min-height: 620px;
  padding-bottom: 72px;
  background-image:
    radial-gradient(circle at 48% 58%, rgba(114, 191, 68, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(7, 11, 10, 0.24), rgba(7, 11, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 11, 10, 0.78), rgba(7, 11, 10, 0.16), rgba(7, 11, 10, 0.72)),
    url("yard-aerial.jpg");
}

.onepage-hero::after {
  display: none;
}

.onepage-hero p {
  color: #f3f7f4;
  opacity: 0.96;
}

.onepage-hero-facts span {
  color: #eef4ef;
}

#vorteile {
  padding-top: 86px;
}

.onepage-feature-grid i,
.onepage-service-grid i,
.onepage-trust-grid i {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 10px;
  background: #72bf44;
  color: #fff;
}

.onepage-feature-grid i img,
.onepage-service-grid i img,
.onepage-trust-grid i img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.onepage-trust-grid i {
  background: #e5f4f1;
}

.onepage-trust-grid i img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(62%) saturate(596%) hue-rotate(125deg) brightness(93%) contrast(91%);
}

/* Final card, header and contact icon refinements */
.onepage {
  --one-ink: #111a17;
  --one-copy: #293631;
}

.onepage-header {
  min-height: 76px;
}

.onepage-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.onepage-logo img {
  width: 48px;
  height: 48px;
}

.onepage-logo span {
  display: grid;
  gap: 2px;
  color: #f7fbf6;
  line-height: 1.05;
}

.onepage-logo b {
  max-width: 190px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.onepage-logo small {
  color: #b9c7c0;
  font-size: 11px;
}

.onepage .onepage-section-head h2,
.onepage .onepage-split h2,
.onepage .onepage-feature-grid h3,
.onepage .onepage-trust-grid h3,
.onepage .opening-card h3 {
  color: var(--one-ink);
}

.onepage .onepage-section-head p,
.onepage .onepage-feature-grid p,
.onepage .onepage-trust-grid p,
.onepage .opening-card p,
.onepage .opening-card span {
  color: var(--one-copy);
  opacity: 1;
}

.onepage .onepage-feature-grid i,
.onepage .onepage-service-grid i,
.onepage .onepage-trust-grid i,
.onepage .inquiry-option i,
.onepage .inquiry-contact-row i {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid #ccefc0;
  border-radius: 12px;
  background: #eef9e9;
  color: var(--one-ink);
}

.onepage .onepage-feature-grid i img,
.onepage .onepage-service-grid i img,
.onepage .onepage-trust-grid i img,
.onepage .inquiry-option i img,
.onepage .inquiry-contact-row i img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(8%) sepia(11%) saturate(748%) hue-rotate(103deg) brightness(93%) contrast(93%);
}

.onepage .onepage-feature-grid article,
.onepage .onepage-trust-grid article {
  color: var(--one-ink);
}

.onepage-hero-facts {
  width: min(1420px, 100%);
  max-width: min(1280px, calc(100% - 48px));
  gap: 20px;
}

.onepage-hero-facts div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px 20px;
  text-align: left;
}

.onepage-hero-facts i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(204, 239, 192, 0.82);
  border-radius: 12px;
  background: rgba(238, 249, 233, 0.96);
}

.onepage-hero-facts i img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(50%) sepia(62%) saturate(596%) hue-rotate(125deg) brightness(93%) contrast(91%);
}

.onepage-hero-facts p {
  margin: 0;
  color: inherit;
  opacity: 1;
}

.onepage-hero-facts b {
  color: #fff;
  font-size: 17px;
  font-weight: 750;
  white-space: nowrap;
}

.onepage-hero-facts span {
  margin-top: 4px;
  color: #f2f7f3;
  font-size: 14px;
}

.onepage .inquiry-option {
  grid-template-columns: 74px 1fr;
}

.onepage .inquiry-option b,
.onepage .inquiry-option small,
.onepage .inquiry-contact-row b,
.onepage .inquiry-contact-row a,
.onepage .inquiry-contact-row span {
  color: var(--one-ink);
}

.onepage .inquiry-contact-row {
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
}

.onepage .inquiry-contact-row i {
  width: 46px;
  height: 46px;
  border-radius: 10px;
}

.onepage .inquiry-contact-row i img {
  width: 30px;
  height: 30px;
}

#leistungen .onepage-section-head h2,
#leistungen .onepage-service-grid h3 {
  color: #f6f8f4;
}

#leistungen .onepage-section-head p,
#leistungen .onepage-service-grid p {
  color: #d8e1dc;
}

#leistungen .onepage-service-grid i {
  border-color: rgba(149, 219, 79, 0.35);
  background: rgba(114, 191, 68, 0.14);
  color: #fff;
}

#leistungen .onepage-service-grid i img {
  filter: brightness(0) invert(1);
}

.onepage-hero-facts i img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(62%) saturate(596%) hue-rotate(125deg) brightness(93%) contrast(91%);
}

@media (max-width: 760px) {
  .onepage-logo img {
    width: 42px;
    height: 42px;
  }

  .onepage-logo b,
  .onepage-logo small {
    display: none;
  }

  .onepage-hero-facts div,
  .onepage .inquiry-option {
    grid-template-columns: 58px 1fr;
  }

  .onepage .onepage-feature-grid i,
  .onepage .onepage-service-grid i,
  .onepage .onepage-trust-grid i,
  .onepage .inquiry-option i {
    width: 62px;
    height: 62px;
  }

  .onepage .onepage-feature-grid i img,
  .onepage .onepage-service-grid i img,
  .onepage .onepage-trust-grid i img,
  .onepage .inquiry-option i img {
    width: 40px;
    height: 40px;
  }
}

/* Top benefit strip: light image band with compact cards */
.onepage-hero {
  display: block;
  min-height: 0;
  padding: 110px 0 0;
}

.onepage-hero-content {
  width: 100%;
  max-width: none;
  padding-top: 82px;
}

.onepage-hero-content > .onepage-kicker,
.onepage-hero-content > h1,
.onepage-hero-content > p,
.onepage-hero-actions {
  margin-left: auto;
  margin-right: auto;
}

.onepage-hero-content > h1 {
  max-width: 900px;
}

.onepage-hero-content > p {
  max-width: 760px;
}

.onepage-hero-actions {
  justify-content: center;
}

.onepage-hero-facts {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 48px 0 0;
  padding: 30px max(26px, calc((100vw - 1320px) / 2)) 86px;
  background-image:
    linear-gradient(180deg, rgba(245, 248, 246, 0.86), rgba(245, 248, 246, 0.9)),
    url("scrapyard.jpg");
  background-position: center 58%;
  background-size: cover;
}

.onepage-hero-facts div {
  min-height: 106px;
  padding: 22px 26px;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  border: 1px solid #d9e3df;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(17, 26, 23, 0.08);
}

.onepage-hero-facts i {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.onepage-hero-facts i img {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(50%) sepia(62%) saturate(596%) hue-rotate(125deg) brightness(93%) contrast(91%);
}

.onepage-hero-facts p {
  margin: 0;
}

.onepage-hero-facts b {
  color: var(--one-ink);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.18;
  white-space: normal;
}

.onepage-hero-facts span {
  display: none;
}

#vorteile {
  padding-top: 92px;
}

@media (max-width: 980px) {
  .onepage-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .onepage-hero {
    padding-top: 74px;
  }

  .onepage-hero-content {
    padding-top: 42px;
  }

  .onepage-hero-facts {
    grid-template-columns: 1fr;
    padding: 24px 18px 56px;
  }

  .onepage-hero-facts div {
    min-height: 86px;
    padding: 18px 20px;
  }

  .onepage-hero-facts b {
    font-size: 19px;
  }
}

/* Requested hero layout: CTA and benefit cards inside the hero */
.onepage-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(17, 26, 23, 0.08);
}

.onepage-nav a {
  color: #506075;
}

.onepage-logo span {
  display: none;
}

.onepage-header .onepage-logo img {
  width: 42px;
  height: 42px;
  filter: brightness(0) saturate(100%);
}

.onepage-header-button {
  background: #72bf44;
  color: #fff;
}

.onepage-hero {
  display: grid;
  min-height: 760px;
  place-items: center;
  padding: 98px 24px 96px;
  background-image:
    linear-gradient(180deg, rgba(247, 249, 248, 0.9), rgba(247, 249, 248, 0.76) 46%, rgba(247, 249, 248, 0.96) 100%),
    url("yard-aerial.jpg");
  background-position: center 42%;
  background-size: cover;
  color: var(--one-ink);
}

.onepage-hero-content {
  width: var(--inhalt-mittel);
  max-width: none;   /* Deckel entfernt — die Breite steuert jetzt --inhalt-mittel */
  padding-top: 38px;
  text-align: center;
}

.onepage-hero .onepage-kicker {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 30px;
  margin-bottom: 22px;
  padding: 0 18px;
  border: 1px solid rgba(114, 191, 68, 0.26);
  border-radius: 999px;
  background: rgba(114, 191, 68, 0.12);
  color: #72bf44;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.onepage-hero h1 {
  max-width: 920px;
  color: var(--one-ink);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.96;
  text-shadow: none;
}

.onepage-hero h1 span {
  color: #72bf44;
}

.onepage-hero p {
  max-width: 720px;
  color: #506075;
  font-size: clamp(17px, 1.7vw, 22px);
  opacity: 1;
}

.onepage-hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.onepage-hero-actions .onepage-button {
  width: auto;
  min-width: 190px;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: #72bf44;
  color: #fff;
  box-shadow: 0 12px 26px rgba(114, 191, 68, 0.2);
}

.onepage-hero-actions .onepage-button.secondary {
  min-width: 260px;
  background: rgba(255, 255, 255, 0.9);
  border-color: #dfe7e2;
  color: var(--one-ink);
  box-shadow: 0 12px 26px rgba(17, 26, 23, 0.08);
}

.onepage-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--inhalt-mittel);
  max-width: none;   /* Deckel entfernt — die Breite steuert jetzt --inhalt-mittel */
  margin: 44px auto 0;
  padding: 0;
  gap: 14px;
  background: none;
}

.onepage-hero-facts div {
  min-height: 66px;
  padding: 13px 16px;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  border: 1px solid #dfe7e2;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(17, 26, 23, 0.08);
}

.onepage-hero-facts i {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
}

.onepage-hero-facts i img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(50%) sepia(62%) saturate(596%) hue-rotate(125deg) brightness(93%) contrast(91%);
}

.onepage-hero-facts b {
  color: var(--one-ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.22;
}

#vorteile {
  padding-top: 96px;
}

@media (max-width: 980px) {
  .onepage-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, 100%);
  }
}

@media (max-width: 640px) {
  .onepage-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .onepage-hero {
    min-height: 760px;
    padding: 86px 18px 56px;
  }

  .onepage-hero-content {
    padding-top: 20px;
  }

  .onepage-hero h1 {
    font-size: 42px;
  }

  .onepage-hero-actions {
    display: grid;
  }

  .onepage-hero-actions .onepage-button,
  .onepage-hero-actions .onepage-button.secondary {
    min-width: 0;
    width: 100%;
  }

  .onepage-hero-facts {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 28px;
  }
}

/* Restore the original dark hero; keep only the corrected buttons and icon cards */
.onepage-header {
  background: rgba(9, 14, 13, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.onepage-nav a {
  color: #f6f8f4;
}

.onepage-logo span {
  display: grid;
  color: #f7fbf6;
}

.onepage-logo small {
  color: #b9c7c0;
}

.onepage-header .onepage-logo img {
  width: 48px;
  height: 48px;
  filter: none;
}

.onepage-header-button {
  background: linear-gradient(135deg, #95db4f, #72bf44);
  color: #061009;
}

.onepage-hero {
  min-height: 760px;
  padding: 110px 24px 96px;
  background-image:
    radial-gradient(circle at 48% 58%, rgba(114, 191, 68, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(7, 11, 10, 0.24), rgba(7, 11, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 11, 10, 0.78), rgba(7, 11, 10, 0.16), rgba(7, 11, 10, 0.72)),
    url("yard-aerial.jpg");
  background-position: center top;
  background-size: cover;
  color: #fff;
}

.onepage-hero-content {
  padding-top: 38px;
}

.onepage-hero .onepage-kicker {
  border-color: rgba(149, 219, 79, 0.24);
  background: rgba(149, 219, 79, 0.1);
  color: #95db4f;
}

.onepage-hero h1 {
  color: #fff;
}

.onepage-hero h1 span {
  color: #95db4f;
}

.onepage-hero p {
  color: #f3f7f4;
}

.onepage-hero-actions .onepage-button {
  background: linear-gradient(135deg, #95db4f, #72bf44);
  color: #061009;
}

.onepage-hero-actions .onepage-button.secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.32);
  color: #111a17;
}

.onepage-hero-facts div {
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 640px) {
  .onepage-header {
    background: rgba(9, 14, 13, 0.94);
  }

  .onepage-logo b,
  .onepage-logo small {
    display: none;
  }

  .onepage-header .onepage-logo img {
    width: 42px;
    height: 42px;
  }

  .onepage-hero {
    min-height: 760px;
    padding: 86px 18px 56px;
  }
}

/* Footer content and readability refinements */
.onepage-footer {
  grid-template-columns: 1.45fr 0.85fr 0.85fr 1fr;
  gap: clamp(32px, 5vw, 76px);
  padding: 68px clamp(22px, 5vw, 96px) 34px;
  background: #111514;
  color: #f5f8f6;
}

.onepage-footer .footer-brand img {
  width: 120px;
  margin-bottom: 26px;
}

.onepage-footer h3 {
  color: #f7faf8;
  font-size: 18px;
  font-weight: 650;
  margin-bottom: 22px;
}

.onepage-footer p,
.onepage-footer a {
  color: #d6e0db;
  font-size: 18px;
  line-height: 1.55;
}

.onepage-footer a {
  margin-bottom: 12px;
  text-decoration: none;
}

.onepage-footer a:hover {
  color: #95db4f;
}

.onepage-footer .footer-brand p {
  max-width: 390px;
}

.onepage-footer .footer-copy {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(214, 224, 219, 0.18);
  color: #c7d3cd;
  text-align: center;
  font-size: 15px;
}

@media (max-width: 980px) {
  .onepage-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .onepage-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .onepage-footer p,
  .onepage-footer a {
    font-size: 16px;
  }
}

/* Legal pages in the same visual system as the onepage site */
.onepage.legal-page {
  background: #f5f7f4;
  color: #111a17;
}

.legal-main {
  background: #f5f7f4;
}

.legal-section {
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0 clamp(76px, 8vw, 120px);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(36px, 5vw, 58px);
  color: #326d30;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
}

.legal-back:hover {
  color: #72bf44;
}

.legal-content {
  max-width: 900px;
}

.legal-content h1 {
  margin: 0 0 clamp(34px, 5vw, 56px);
  color: #111a17;
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.legal-content section {
  margin-bottom: clamp(34px, 4vw, 52px);
}

.legal-content h2 {
  margin: 0 0 12px;
  color: #111a17;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.legal-content h3 {
  margin: 28px 0 10px;
  color: #111a17;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 750;
  line-height: 1.25;
}

.legal-content h4 {
  margin: 22px 0 8px;
  color: #111a17;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.legal-content p {
  margin: 0 0 18px;
  color: #536256;
  font-size: 17px;
  line-height: 1.72;
}

.legal-content a {
  color: #326d30;
  text-decoration: none;
}

.legal-content a:hover {
  color: #72bf44;
}

/* Unified accent system */
.onepage {
  --one-teal: #72bf44;
  --one-teal-dark: #72bf44;
  --one-accent-bright: #95db4f;
  --one-accent-text: #061009;
  --one-accent-link: #326d30;
  --one-accent-soft: #eef9e9;
  --one-accent-line: #ccefc0;
}

.onepage-header-button,
.onepage-hero-actions .onepage-button,
.inquiry-form .onepage-button {
  background: linear-gradient(135deg, var(--one-accent-bright), var(--one-teal));
  color: var(--one-accent-text);
  box-shadow: 0 16px 32px rgba(114, 191, 68, 0.22);
}

.onepage-contact .onepage-section-head span,
.onepage-section-head span {
  background: var(--one-teal);
}

.inquiry-option:hover,
.inquiry-option.is-active {
  border-color: var(--one-teal);
  background: #f4fbef;
}

.inquiry-option i,
.onepage .inquiry-option i,
.onepage .inquiry-contact-row i,
.onepage .onepage-feature-grid i,
.onepage .onepage-trust-grid i {
  border-color: var(--one-accent-line);
  background: var(--one-accent-soft);
  color: var(--one-ink);
}

.inquiry-form label span {
  color: var(--one-teal);
}

.legal-back,
.legal-content a {
  color: var(--one-accent-link);
}

.legal-back:hover,
.legal-content a:hover,
.onepage-footer a:hover {
  color: var(--one-accent-bright);
}

.onepage-hero .onepage-kicker,
.onepage-hero h1 span,
.onepage-service-grid a {
  color: var(--one-accent-bright);
}

.onepage-hero .onepage-kicker {
  border-color: rgba(149, 219, 79, 0.24);
  background: rgba(149, 219, 79, 0.1);
}

.onepage-hero-facts i img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(44%) saturate(758%) hue-rotate(55deg) brightness(96%) contrast(88%);
}

#leistungen .onepage-service-grid i img {
  filter: brightness(0) invert(1);
}

@media (max-width: 640px) {
  .legal-section {
    width: min(100% - 32px, 1040px);
    padding: 38px 0 76px;
  }

  .legal-content h1 {
    font-size: 38px;
  }

  .legal-content p {
    font-size: 16px;
  }
}

/* ---------------------------------------------------------------------------
   Anfrageformular: Spamschutz, Einwilligung, Rueckmeldung
   --------------------------------------------------------------------------- */

/* Honeypot. Bewusst NICHT display:none — viele Bots ueberspringen ausgeblendete
   Felder, ein aus dem Bild geschobenes Feld fuellen sie dagegen aus. Fuer
   Screenreader ist es ueber aria-hidden und tabindex="-1" ausgeblendet. */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Pflicht-Einwilligung nach DSGVO */
.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
}

.consent-field input[type="checkbox"] {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 0;
  margin-top: 3px;
  accent-color: #72bf44;
}

.consent-field label {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.consent-field label a {
  color: #4a8f24;
  text-decoration: underline;
}

.consent-field label a:hover {
  color: #72bf44;
}

/* Rueckmeldung nach einem Fehlversuch (wird per JS eingeblendet) */
.form-hinweis {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 16px 20px;
  border: 2px solid #d8433a;
  border-left-width: 6px;
  border-radius: 8px;
  background: #fdeceb;
  color: #7d1c16;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
}

/* Danke-Seite (noindex) — nutzt das Layout der Rechtstexte */
.danke-content .danke-lead {
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.6;
}

.danke-content ol {
  margin: 0 0 clamp(24px, 3vw, 36px);
  padding-left: 22px;
}

.danke-content ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.danke-content .onepage-button {
  display: inline-block;
  margin-top: 12px;
}
