/* ============================================================
   REVARO – Brand Stylesheet
   Mobile-first | Breakpoints: 768px, 1200px
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --deep-petrol:      #1A2A32;
  --petrol:           #4A6670;
  --terrakotta:       #B5654F;
  --light-terrakotta: #D4937E;
  --warm-white:       #F7EDE8;
  --hellgrau:         #F5F6F7;
  --dark-terrakotta:  #8A4535;
  --white:            #FFFFFF;

  --font-sans:   'DM Sans', sans-serif;
  --font-serif:  'Cormorant Garamond', serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --transition: 0.25s ease;

  --container:  1200px;
  --gutter:     1.25rem;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--deep-petrol);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-sans); font-size: 1rem; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Terrakotta Signature Line */
.accent-line {
  display: block;
  width: 52px;
  height: 2px;
  background: var(--terrakotta);
  border-radius: 9999px;
  margin-top: 0.75rem;
}
.accent-line--center { margin-inline: auto; }
.accent-line--wide   { width: 80px; }

/* Section spacing */
.section { padding: 4rem var(--gutter); }
@media (min-width: 768px)  { .section { padding: 5rem var(--gutter); } }
@media (min-width: 1200px) { .section { padding: 6rem var(--gutter); } }

/* Section labels */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terrakotta);
  margin-bottom: 0.75rem;
}

/* Section headlines */
.section-headline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  color: var(--deep-petrol);
}
.section-headline--light { color: var(--white); }

/* Subheadline */
.section-sub {
  font-size: 1rem;
  color: var(--petrol);
  margin-top: 1rem;
  max-width: 56ch;
}
.section-sub--light { color: rgba(255,255,255,0.75); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--terrakotta {
  background: var(--terrakotta);
  color: var(--white);
}
.btn--terrakotta:hover { background: var(--dark-terrakotta); }

.btn--outline-light {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
}
.btn--outline-light:hover {
  border-color: var(--light-terrakotta);
  color: var(--light-terrakotta);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--deep-petrol);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* Logo */
.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}
.logo__wordmark {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 18px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-right: -18px; /* kompensiert trailing letter-spacing — Lockup-Breite = visuelle Textbreite */
}
.logo__line {
  width: 100%;
  height: 2px;
  background: var(--terrakotta);
  border-radius: 9999px;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Phone link — always visible */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.header-phone:hover { color: var(--light-terrakotta); }
.header-phone__icon { flex-shrink: 0; }
.header-phone__text { display: none; }
@media (max-width: 767px) {
  .logo__wordmark {
    font-size: 0.8rem;
    letter-spacing: 5px;
    margin-right: -5px; /* kompensiert trailing letter-spacing */
  }
  .site-header { padding: 0.75rem 0.75rem; }
  .header-right { gap: 0.5rem; }
  .header-cta { font-size: 0.72rem; padding: 0.5rem 0.7rem; }
}
@media (max-width: 480px) {
  .logo__wordmark {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .header-phone__text { display: block; }
  .header-right { gap: 1.25rem; }
}

/* CTA — always visible, shorter label on mobile */
.header-cta {
  display: inline-flex;
  font-size: 0.78rem;
  padding: 0.55rem 0.9rem;
}
.header-cta__mobile  { display: block; }
.header-cta__desktop { display: none; }
@media (min-width: 768px) {
  .header-cta { font-size: 0.8rem; padding: 0.6rem 1.1rem; }
  .header-cta__mobile  { display: none; }
  .header-cta__desktop { display: block; }
}

/* ============================================================
   SECTION 1 – HERO
   Two-column grid: content left, image right
   ============================================================ */
.hero {
  background: var(--deep-petrol);
  overflow: hidden;
  position: relative;
}

/* Outer grid — single col mobile, 2-col desktop */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100svh - 72px); /* compensate fixed header */
  align-items: center;
  padding: 5rem var(--gutter) 4rem;
}

@media (min-width: 1200px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 7rem var(--gutter) 5rem;
  }
}

/* Content side */
.hero__content {
  display: flex;
  flex-direction: column;
}

/* Location badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 0.875rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  width: fit-content;
  margin-bottom: 1.75rem;
}
.hero__badge span { color: var(--light-terrakotta); }

.hero__headline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__line {
  width: 40px;
  height: 2.5px;
  background: var(--terrakotta);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero__subline {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  max-width: 46ch;
  line-height: 1.75;
}

/* Stats grid below subline */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.hero__stat {
  padding: 1.25rem 1rem;
  background: var(--deep-petrol);
}

.hero__stat-number {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.hero__stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}

/* CTA row */
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__secondary {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.hero__secondary:hover { color: rgba(255,255,255,0.8); }

/* Visual side (image) — hidden on mobile, shown on desktop */
.hero__visual {
  display: none;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  align-self: stretch;
}

@media (min-width: 1200px) {
  .hero__visual {
    display: block;
  }
}

/* Terrakotta line at bottom of image — the Signaturelement */
.hero__visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terrakotta);
  border-radius: 0;
  z-index: 2;
}

/* Background image inside visual */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.75;
}

/* Gradient fade from left (blends with Deep Petrol content area) */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--deep-petrol) 0%,
    transparent 35%
  );
}

/* Deep Petrol section background already serves as fallback if image fails to load */

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   PROOF BAR — services quick-scan below hero
   ============================================================ */
.proof-bar {
  background: var(--warm-white);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(26,42,50,0.08);
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  overflow: hidden;
}

.proof-bar__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-petrol);
  white-space: nowrap;
}

.proof-bar__divider {
  width: 1px;
  height: 16px;
  background: rgba(26,42,50,0.18);
  flex-shrink: 0;
}

.proof-bar__item {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--petrol);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.proof-bar__dot {
  width: 5px;
  height: 5px;
  background: var(--terrakotta);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   CTA REPEAT BAND
   ============================================================ */
.cta-band {
  background: var(--warm-white);
  padding: 2.25rem var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(181,101,79,0.18);
  border-bottom: 1px solid rgba(181,101,79,0.18);
}
.cta-band p {
  font-size: 0.95rem;
  color: var(--petrol);
  text-align: center;
}
@media (min-width: 768px) {
  .cta-band { flex-direction: row; justify-content: center; gap: 1.5rem; }
  .cta-band p { text-align: left; }
}

.cta-band--dark {
  background: var(--deep-petrol);
  border-color: rgba(181,101,79,0.25);
}
.cta-band--dark p { color: rgba(255,255,255,0.7); }

/* ============================================================
   SECTION 2 – PROBLEM / LÖSUNG
   ============================================================ */
.problem { background: var(--warm-white); }

.problem__header { margin-bottom: 3rem; }

.problem__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(74,102,112,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.problem__row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(74,102,112,0.12);
  transition: background var(--transition);
}
.problem__row:last-child { border-bottom: none; }

.problem__col {
  padding: 1.5rem 1.75rem;
}
.problem__col--issue {
  background: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(74,102,112,0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.problem__col--issue::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 3px;
  height: 100%;
  min-height: 24px;
  background: rgba(181,101,79,0.35);
  border-radius: 9999px;
  margin-top: 0.15rem;
}
.problem__col--solution {
  background: rgba(247,237,232,0.5);
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.problem__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
}

.problem__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--petrol);
  opacity: 0.6;
  margin-bottom: 0.25rem;
}
.problem__label--sol { color: var(--terrakotta); opacity: 1; }

.problem__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--deep-petrol);
}

@media (min-width: 768px) {
  .problem__row {
    grid-template-columns: 1fr 1fr;
  }
  .problem__col--issue {
    border-bottom: none;
    border-right: 1px solid rgba(74,102,112,0.12);
  }
}

/* ============================================================
   SECTION 3 – LEISTUNGEN
   ============================================================ */
.leistungen { background: var(--hellgrau); }

.leistungen__header { margin-bottom: 3rem; }

.leistungen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .leistungen__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .leistungen__grid { grid-template-columns: repeat(3, 1fr); }
}

.leistungen__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(74,102,112,0.1);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.leistungen__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terrakotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.leistungen__card:hover {
  box-shadow: 0 8px 32px rgba(26,42,50,0.1);
  transform: translateY(-3px);
}
.leistungen__card:hover::before { transform: scaleX(1); }

.leistungen__card-icon {
  width: 40px;
  height: 40px;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--terrakotta);
}

.leistungen__card-title {
  font-weight: 500;
  font-size: 1rem;
  color: var(--deep-petrol);
  margin-bottom: 0.5rem;
}

.leistungen__card-text {
  font-size: 0.875rem;
  color: var(--petrol);
  line-height: 1.6;
}

/* ============================================================
   CASE STUDY — Dark section, large number proof point
   ============================================================ */
.case-study {
  background: var(--deep-petrol);
  padding: 5rem var(--gutter);
}

.case-study__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1200px) {
  .case-study__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.case-study__header .section-label { color: var(--light-terrakotta); }

.case-study__number {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.case-study__subtitle {
  font-size: 0.9rem;
  color: rgba(247,237,232,0.6);
  line-height: 1.65;
  margin-top: 0.25rem;
}

.case-study__content h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.case-study__content h3 .accent-line {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.case-study__content p {
  font-size: 0.9rem;
  color: rgba(247,237,232,0.68);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ============================================================
   SECTION 4 – VERGLEICH
   ============================================================ */
.vergleich {
  background: var(--deep-petrol);
  overflow-x: auto;
}

.vergleich__header { margin-bottom: 2.5rem; }

.vergleich__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.vergleich__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.vergleich__table thead tr {
  background: rgba(255,255,255,0.05);
}
.vergleich__table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.vergleich__table th:first-child { color: rgba(255,255,255,0.5); }
.vergleich__table th:nth-child(2) { color: rgba(255,255,255,0.5); }
.vergleich__table th:nth-child(3) {
  color: var(--terrakotta);
  border-bottom: 2px solid var(--terrakotta);
}

.vergleich__table tbody tr {
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.vergleich__table tbody tr:hover { background: rgba(255,255,255,0.04); }

.vergleich__table td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
}
.vergleich__table td:first-child {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.vergleich__table td:nth-child(2) {
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vergleich__table td:nth-child(3) {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  background: rgba(181,101,79,0.07);
  border-left: 2px solid rgba(181,101,79,0.3);
}

.vergleich__icon-no  { color: #9CA3AF; font-size: 1rem; }
.vergleich__icon-yes { color: var(--terrakotta); font-size: 1rem; }

.vergleich__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--light-terrakotta);
}
.vergleich__badge::before {
  content: '✓';
  font-weight: 700;
  color: var(--terrakotta);
}

/* Vergleich – mobile card layout */
@media (max-width: 767px) {
  .vergleich__table-wrap { overflow-x: visible; }
  .vergleich__table { min-width: 0; display: block; }
  .vergleich__table thead { display: none; }
  .vergleich__table tbody {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
  .vergleich__table tbody tr {
    display: block;
    border-top: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    overflow: hidden;
  }
  .vergleich__table tbody tr:hover { background: rgba(255,255,255,0.05); }
  .vergleich__table td {
    display: block;
    padding: 0.65rem 1rem;
  }
  .vergleich__table td:first-child {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.65rem;
  }
  .vergleich__table td:nth-child(2) {
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .vergleich__table td:nth-child(2)::before {
    content: 'Typischer Verwalter';
    display: block;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.25rem;
  }
  .vergleich__table td:nth-child(3) {
    border-left: none;
    background: rgba(181,101,79,0.07);
    padding-top: 0.5rem;
    padding-bottom: 0.65rem;
  }
  .vergleich__table td:nth-child(3)::before {
    content: 'REVARO';
    display: block;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terrakotta);
    margin-bottom: 0.25rem;
  }
}

/* ============================================================
   SECTION 5 – VERTRAUEN
   ============================================================ */
.vertrauen { background: var(--warm-white); }

.vertrauen__header { margin-bottom: 3rem; }

.vertrauen__grid {
  display: grid;
  /* minmax(0,1fr) statt 1fr: verhindert, dass lange Komposita wie
     "Vermoegensschadenhaftpflicht" die Spalte ueber den Viewport hinaus aufziehen */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
/* 5 Kacheln = 5 Spalten. Zuvor repeat(6,1fr): die fuenfte Karte liess
   rechts eine leere Spalte stehen. */
@media (min-width: 900px) {
  .vertrauen__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.vertrauen__badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(74,102,112,0.12);
  transition: box-shadow var(--transition);
  /* gleiche Hoehe unabhaengig von der Textlaenge */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vertrauen__badge:hover {
  box-shadow: 0 4px 20px rgba(26,42,50,0.08);
}
.vertrauen__badge-icon {
  width: 44px;
  height: 44px;
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.875rem;
  color: var(--terrakotta);
  font-size: 1.1rem;
  font-weight: 700;
}
.vertrauen__badge-title {
  overflow-wrap: break-word;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--deep-petrol);
  margin-bottom: 0.35rem;
  line-height: 1.4;
}
.vertrauen__badge-desc {
  font-size: 0.75rem;
  color: var(--petrol);
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* ============================================================
   SECTION 6 – PROZESS
   ============================================================ */
.prozess {
  background: var(--hellgrau);
  position: relative;
}

.prozess__header-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.prozess__free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--terrakotta);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0.45rem 0.875rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.prozess__free-badge::before { content: '★'; }

.prozess__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}
@media (min-width: 768px) {
  .prozess__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .prozess__steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .prozess__steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: var(--terrakotta);
    opacity: 0.3;
    z-index: 0;
  }
}

.prozess__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(74,102,112,0.1);
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.prozess__card:hover {
  box-shadow: 0 8px 32px rgba(26,42,50,0.1);
  transform: translateY(-3px);
}
.prozess__card:hover .prozess__card-detail {
  max-height: 120px;
  opacity: 1;
}

.prozess__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terrakotta);
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.prozess__card-title {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--deep-petrol);
  margin-bottom: 0.5rem;
}

.prozess__card-sub {
  font-size: 0.85rem;
  color: var(--petrol);
  line-height: 1.55;
}

.prozess__card-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  font-size: 0.82rem;
  color: var(--petrol);
  line-height: 1.6;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(74,102,112,0.12);
}

/* ============================================================
   SECTION 7 – KONTAKT
   ============================================================ */
.kontakt { background: var(--deep-petrol); }

.kontakt__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.kontakt__header { margin-bottom: 1rem; }
.kontakt__subline {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 56ch;
  line-height: 1.7;
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

/* Promo Banner */
.kontakt__banner {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: rgba(181,101,79,0.12);
  border: 1px solid rgba(181,101,79,0.35);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.kontakt__banner-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.kontakt__banner-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.kontakt__banner-text strong {
  color: var(--light-terrakotta);
  font-weight: 500;
}

/* Form Layout */
.kontakt__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1200px) {
  .kontakt__layout { grid-template-columns: 1fr 380px; }
}

/* Step Wizard */
.form-wizard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .form-wizard { padding: 2.5rem 2rem; }
}

/* Progress */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px; /* exact gap = connector width */
  margin-bottom: 2.5rem;
}
.wizard-step-dot {
  width: 28px; /* explicit = matches .wizard-step-num size */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

/* Connector: each non-last dot draws a line forward to the right */
.wizard-step-dot:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 28px;          /* starts at right edge of circle */
  width: 56px;         /* must match .wizard-progress gap */
  height: 2px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border-radius: 9999px;
  transition: background var(--transition);
}

/* Colour the connector once the dot is complete */
.wizard-step-dot.done:not(:last-child)::after {
  background: var(--terrakotta);
}

.wizard-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
  position: relative; /* sits above the connector line */
  z-index: 1;
}
.wizard-step-dot.active .wizard-step-num {
  background: var(--terrakotta);
  border-color: var(--terrakotta);
  color: var(--white);
}
.wizard-step-dot.done .wizard-step-num {
  background: var(--dark-terrakotta);
  border-color: var(--dark-terrakotta);
  color: var(--white);
}

/* Steps */
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }

.wizard-panel-title {
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
  .form-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-label--required::after {
  content: ' *';
  color: var(--light-terrakotta);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--terrakotta);
  background: rgba(255,255,255,0.1);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: rgba(255,80,80,0.6);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option {
  background: var(--deep-petrol);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  font-size: 0.72rem;
  color: rgba(255,100,100,0.85);
  margin-top: 0.1rem;
  display: none;
}
.form-error.visible { display: block; }

/* Wizard Nav */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  gap: 1rem;
}
.btn-wizard-back {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 0.5rem 0;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.btn-wizard-back:hover { color: rgba(255,255,255,0.85); }
.btn-wizard-back[disabled] { visibility: hidden; pointer-events: none; }

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(181,101,79,0.15);
  border: 2px solid var(--terrakotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--terrakotta);
}
.form-success h3 {
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.form-success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Form Error (Webhook-Fehler) */
.form-error {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-error.visible { display: block; }
.form-error__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(196,92,74,0.15);
  border: 2px solid #C45C4A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #E8836F;
}
.form-error h3 {
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.form-error p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 34rem;
  margin: 0 auto;
}
.form-error__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.75rem auto 0;
}
.form-error__link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1.4rem;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-error__link:hover,
.form-error__link:focus-visible {
  border-color: var(--terrakotta);
  background: rgba(181,101,79,0.08);
}
.form-error__link-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-error__link-value {
  font-size: 0.95rem;
  color: var(--white);
  overflow-wrap: break-word;
}
.form-error__retry {
  margin-top: 1.75rem;
}

/* Contact Alternative */
.kontakt__alt {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.5rem;
}
.kontakt__alt-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}
.kontakt__alt-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kontakt__alt-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.kontakt__alt-link:hover { color: var(--light-terrakotta); }
.kontakt__alt-link svg { flex-shrink: 0; opacity: 0.6; }

/* Kontakt aside */
.kontakt__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.kontakt__aside-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.kontakt__aside-card-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terrakotta);
  margin-bottom: 1rem;
}
.kontakt__aside-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.kontakt__aside-card p:last-child { margin-bottom: 0; }
.kontakt__aside-card strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ============================================================
   WISSEN — Ratgeber für Eigentümer
   ============================================================ */
.wissen {
  background: var(--warm-white);
}

.wissen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .wissen__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.wissen__card {
  background: var(--white);
  border-top: 2.5px solid var(--terrakotta);
  padding: 2rem 1.75rem;
}

.wissen__tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terrakotta);
  margin-bottom: 0.75rem;
}

.wissen__question {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--deep-petrol);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.wissen__card p {
  font-size: 0.9rem;
  color: rgba(26, 42, 50, 0.72);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.wissen__card p:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep-petrol);
  border-top: 2px solid var(--terrakotta);
  padding: 3rem var(--gutter) 2rem;
}

.footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
}

.footer__brand-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.875rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--light-terrakotta); }

.footer__bottom {
  max-width: var(--container);
  margin-inline: auto;
  padding-top: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   LEISTUNGEN – Preistransparenz Hinweis
   ============================================================ */
.leistungen__preistransparenz {
  margin-top: 2.25rem;
  font-size: 0.9rem;
  color: var(--petrol);
  text-align: center;
  max-width: 64ch;
  margin-inline: auto;
  line-height: 1.65;
}

/* ============================================================
   FAQ – ACCORDION
   ============================================================ */
.faq { background: var(--warm-white); }
.faq__header { margin-bottom: 2.5rem; }

.faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(74,102,112,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid rgba(74,102,112,0.12);
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--deep-petrol);
  background: var(--white);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.faq__question:hover { background: var(--warm-white); }
.faq__question[aria-expanded="true"] { color: var(--terrakotta); }

/* Chevron icon */
.faq__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform var(--transition);
}
.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq__answer.open {
  max-height: 300px;
}
.faq__answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--petrol);
  line-height: 1.7;
}

/* ============================================================
   SOCIAL PROOF – TESTIMONIALS
   Cormorant Garamond Italic ONLY for quotes — Brand Booklet
   ============================================================ */
.testimonials { background: var(--warm-white); }
.testimonials__header { margin-bottom: 2.5rem; }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial__card {
  background: var(--white);
  border-radius: 0;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid rgba(74,102,112,0.1);
  border-top: 2.5px solid var(--terrakotta); /* Terrakotta Signaturelement */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial__card:hover {
  box-shadow: 0 8px 32px rgba(26,42,50,0.08);
  transform: translateY(-3px);
}

.testimonial__stars {
  display: none; /* removed per wireframe — disclaimer replaces social proof */
}

.testimonial__quote {
  font-family: var(--font-serif); /* Cormorant Garamond Italic — ONLY for quotes */
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep-petrol);
  line-height: 1.5;
  flex: 1;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(74,102,112,0.1);
}
.testimonial__author {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--deep-petrol);
}
.testimonial__detail {
  font-size: 0.78rem;
  color: var(--petrol);
}

.testimonials__note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--petrol);
  text-align: center;
  opacity: 0.75;
}

/* ============================================================
   BAUSUBSTANZ-CHECK HIGHLIGHT
   ============================================================ */
.highlight {
  background: linear-gradient(135deg, var(--terrakotta) 0%, var(--dark-terrakotta) 100%);
  position: relative;
  overflow: hidden;
}
.highlight::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.highlight__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.highlight__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.875rem;
}

.highlight__headline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0;
}

/* Akzentlinie: auf Terrakotta-Grund wäre var(--terrakotta) unsichtbar,
   daher hier die helle Variante desselben Elements. */
.highlight .accent-line {
  background: rgba(255,255,255,0.5);
  margin-top: 1.125rem;
  margin-bottom: 1.875rem;
}

.highlight__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}
.highlight__price-old {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  font-weight: 500;
}
.highlight__price-arrow {
  color: rgba(255,255,255,0.45);
  font-size: 1.15rem;
}
.highlight__price-new {
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Leistungs-Bullets mit Checkmark im Kreis */
.highlight__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  max-width: 100%;
  text-align: left;
  display: grid;
  gap: 0.875rem;
}
.highlight__list li {
  position: relative;
  padding-left: 2.125rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.highlight__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}
.highlight__list li::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 0.4rem;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

/* Trust-Hinweis */
.highlight__trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 100%;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
}
.highlight__trust-num {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  white-space: nowrap;
}
.highlight__trust-text {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
  text-align: left;
  max-width: 30ch;
}
@media (max-width: 519px) {
  .highlight__trust { flex-direction: column; gap: 0.4rem; }
  .highlight__trust-text { text-align: center; }
}

.highlight__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.highlight__cta {
  background: var(--white);
  color: var(--terrakotta);
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.highlight__cta:hover {
  background: var(--warm-white);
  transform: translateY(-2px);
}

/* ============================================================
   FORM – CHECKBOXES
   ============================================================ */
.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: background var(--transition), border-color var(--transition);
  user-select: none;
}
.form-checkbox:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(181,101,79,0.4);
}
.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.form-checkbox__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox__box {
  background: var(--terrakotta);
  border-color: var(--terrakotta);
}
.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox__box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translateY(-1px);
}
.form-checkbox input[type="checkbox"]:checked ~ * { color: rgba(255,255,255,0.95); }

/* Checked row highlight */
.form-checkbox:has(input:checked) {
  background: rgba(181,101,79,0.12);
  border-color: rgba(181,101,79,0.4);
}

/* ============================================================
   FORM – SUCCESS VIEW EXTENDED
   ============================================================ */
.form-success__next {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  text-align: left;
}
.form-success__next-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terrakotta);
  margin-bottom: 0.75rem;
}
.form-success__next p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.form-success__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.form-success__list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-success__list li::before {
  content: '→';
  color: var(--light-terrakotta);
  font-size: 0.8rem;
}
.form-success__back {
  margin-top: 1.5rem;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  background: var(--deep-petrol);
  border: 1px solid rgba(181,101,79,0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.cookie-banner__btn {
  align-self: flex-start;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}
@media (min-width: 640px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 520px;
  }
  .cookie-banner__text { margin-right: 1rem; }
  .cookie-banner__btn { align-self: center; white-space: nowrap; flex-shrink: 0; }
}

/* ============================================================
   JTBD — Ausloesender Moment (Deep Petrol / Terrakotta Split)
   ============================================================ */
.jtbd {
  position: relative;
  /* macht 100cqw unten zur echten Layoutbreite (ohne Scrollbar) */
  container-type: inline-size;
}

.jtbd__split {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .jtbd__split { grid-template-columns: 1.15fr 1fr; }
}

/* --- Linke Haelfte: Zitate auf Deep Petrol --- */
.jtbd__pains {
  background: var(--deep-petrol);
  display: flex;
  padding: 4rem var(--gutter);
}
@media (min-width: 768px)  { .jtbd__pains { padding: 5rem var(--gutter); } }
@media (min-width: 1200px) { .jtbd__pains { padding: 6rem var(--gutter); } }

/* Die Section laeuft farbig bis zum Rand, der Text fluchtet aber mit der
   linken Kante des .container-Rasters der uebrigen Seite. */
@media (min-width: 900px) {
  /* Fallback fuer Browser ohne Container-Query-Einheiten */
  .jtbd__pains {
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  }
  /* 100cqw schliesst die Scrollbar aus und trifft das .container-Raster exakt */
  .jtbd__pains {
    padding-left: max(var(--gutter), calc((100cqw - var(--container)) / 2 + var(--gutter)));
  }
}
.jtbd__pains-inner { width: 100%; max-width: 40rem; }

.jtbd__pains .section-label { color: var(--light-terrakotta); }

.jtbd__quotes {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.jtbd__quote {
  font-family: var(--font-serif); /* Cormorant Garamond Italic — nur fuer Zitate */
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.45;
  color: var(--white);
  padding-left: 1.25rem;
  border-left: 2px solid var(--terrakotta);
}

/* --- Rechte Haelfte: Aufloesung auf Terrakotta --- */
.jtbd__answer {
  background: linear-gradient(135deg, var(--terrakotta) 0%, var(--dark-terrakotta) 100%);
  display: flex;
  align-items: center;
  padding: 4rem var(--gutter);
}
@media (min-width: 768px)  { .jtbd__answer { padding: 5rem var(--gutter); } }
@media (min-width: 1200px) { .jtbd__answer { padding: 6rem var(--gutter); } }

.jtbd__answer-inner { max-width: 34rem; }

.jtbd__answer-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.jtbd__answer-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--white);
}
.jtbd__cta {
  margin-top: 2rem;
  background: var(--white);
  color: var(--terrakotta);
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.jtbd__cta:hover {
  background: var(--warm-white);
  transform: translateY(-2px);
}

/* ============================================================
   DREI PRINZIPIEN
   ============================================================ */
.prinzipien { background: var(--deep-petrol); }
.prinzipien__header { margin-bottom: 3rem; }
.prinzipien .section-label { color: var(--light-terrakotta); }

.prinzipien__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .prinzipien__grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.prinzipien__card {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.5rem;
}
.prinzipien__num {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--light-terrakotta);
  margin-bottom: 1rem;
}
.prinzipien__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.prinzipien__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   LADEINFRASTRUKTUR — PROZESS
   ============================================================ */
.ladeprozess { background: var(--white); }
.ladeprozess__header { margin-bottom: 3rem; }

.ladeprozess__flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .ladeprozess__flow { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.ladeprozess__step {
  position: relative;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
}
/* Verbindungspfeil zwischen den Schritten — nur im vierspaltigen Layout */
@media (min-width: 768px) {
  .ladeprozess__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.85rem;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 1.5px solid var(--terrakotta);
    border-right: 1.5px solid var(--terrakotta);
    transform: translateY(-50%) rotate(45deg);
  }
}
.ladeprozess__num {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  color: var(--terrakotta);
  margin-bottom: 0.75rem;
}
.ladeprozess__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--deep-petrol);
  margin-bottom: 0.5rem;
}
.ladeprozess__text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--petrol);
}

/* ============================================================
   TEAM & KENNZAHLEN
   ============================================================ */
.team { background: var(--white); }
.team__header { margin-bottom: 3rem; }

.kennzahlen {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(74,102,112,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 3.5rem;
}
@media (min-width: 600px) {
  .kennzahlen { grid-template-columns: repeat(3, 1fr); }
}
.kennzahlen__item {
  background: var(--deep-petrol);
  padding: 1.75rem 1rem;
  text-align: center;
}
.kennzahlen__number {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.kennzahlen__label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .team__grid { grid-template-columns: repeat(3, 1fr); }
}
.team__card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(74,102,112,0.1);
  text-align: center;
}
.team__initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--deep-petrol);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.125rem;
}
.team__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--deep-petrol);
  margin-bottom: 0.35rem;
}
.team__role {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--petrol);
}
