/* ============================================================
   AUTOMAKLER HESSEN – Stylesheet
   Fonts: League Spartan (Display) + DM Sans (Body)
   via Google Fonts (siehe index.html)
   ============================================================ */

:root {
  --white: #ffffff;
  --off-white: #f9f8f5;
  --light-grey: #eeece8;
  --border: #e2dfd9;
  --mid-grey: #7a7570;
  --dark: #1c1b19;
  --anthracite: #2e2d2b;
  --gold: #414690;
  --gold-light: #6b70b8;
  --font-display: 'League Spartan', Georgia, sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 980px;
  --section-pad: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--anthracite);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.anim {
  opacity: 0;
}

.anim.visible {
  animation: fadeUp 0.7s cubic-bezier(.22, .68, 0, 1.1) forwards;
}

.anim-delay-1.visible {
  animation-delay: 0.1s;
}

.anim-delay-2.visible {
  animation-delay: 0.2s;
}

.anim-delay-3.visible {
  animation-delay: 0.3s;
}

.anim-delay-4.visible {
  animation-delay: 0.4s;
}

.anim-delay-5.visible {
  animation-delay: 0.5s;
}

.anim-delay-6.visible {
  animation-delay: 0.6s;
}

/* TYPOGRAPHY */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

p {
  font-size: clamp(0.93rem, 1.5vw, 1.05rem);
  color: var(--mid-grey);
  font-weight: 300;
}

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

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 70px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--gold);
  margin-left: 4px;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 400;
  color: var(--mid-grey);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  background: var(--dark);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}

.nav-cta:hover {
  background: var(--anthracite);
  transform: translateY(-1px);
}

.nav-mobile-cta {
  display: none;
}

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

  .nav-cta {
    display: none;
  }

  .nav-mobile-cta {
    display: none;
  }

  .nav-logo {
    font-size: 1.05rem;
    gap: 6px;
  }

  .nav-logo img {
    height: 26px;
  }
}

/* SECTION WRAPPER */
section {
  padding: var(--section-pad);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
}

.btn-primary:hover {
  background: var(--anthracite);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, transform .15s, color .2s;
}

.btn-secondary:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .25);
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  display: flex;
  min-height: 85vh;
  max-height: 95vh;
  padding: 70px 0 0 0;
  overflow: hidden;
  background: var(--off-white);
}

.hero__left {
  flex: 0 0 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero__left::after {
  display: none;
}

.hero__content {
  padding: clamp(56px, 8vh, 100px) clamp(36px, 4vw, 56px);
  max-width: 520px;
  width: 100%;
}

.hero__right {
  flex: 0 0 50%;
  position: relative;
  min-width: 0;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0% 100%);
  background: var(--light-grey) url('assets/Bild Website.png') center 38% / cover no-repeat;
}

.hero__stat-overlay {
  display: none;
}

.hero-eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  color: var(--mid-grey);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 0;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--mid-grey);
  font-weight: 400;
}

.hero-trust-item svg {
  flex-shrink: 0;
}

.hero-vermittler-note {
  margin-top: 22px;
  font-size: .68rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.65;
  padding-left: 10px;
  border-left: 1.5px solid var(--border);
  max-width: 430px;
  opacity: .75;
}

/* STAT PANEL */
.hero-stat-panel {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .85);
  box-shadow: 0 12px 48px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .95);
  overflow: hidden;
}

.hero-stat-item {
  padding: 22px 26px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.hero-stat-item:last-child {
  border-bottom: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat-label {
  font-size: .66rem;
  color: var(--mid-grey);
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
}

@media(max-width:900px) {
  .hero {
    max-height: none;
    justify-content: center;
  }

  .hero__left {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__content {
    padding: 48px clamp(24px, 8vw, 80px) 56px;
    max-width: 680px;
  }

  .hero__right {
    display: none;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-items: start;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-vermittler-note {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

@media(max-width:680px) {
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
}

/* PROBLEM */
#problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.solution-box .section-label {
  color: rgba(255, 255, 255, .7);
}

.problem-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.problem-item:first-child {
  border-top: 1px solid var(--border);
}

.problem-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #fdf5ee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.problem-text-head {
  font-size: .93rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
}

.problem-text-sub {
  font-size: .83rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.5;
}

.solution-box {
  background: var(--dark);
  color: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.solution-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(184, 151, 106, .12);
}

.solution-box h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.solution-box p {
  color: rgba(255, 255, 255, .65);
  font-weight: 300;
  margin-bottom: 28px;
  font-size: 1rem;
}

.solution-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .85);
  font-weight: 300;
}

.check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(184, 151, 106, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media(max-width:768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* USP */
#usp {
  background: var(--off-white);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.usp-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  position: relative;
}

.usp-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}

.usp-card.featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.usp-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: block;
}

.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 500;
}

.usp-card.featured h3 {
  color: var(--white);
}

.usp-card p {
  font-size: .85rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.6;
}

.usp-card.featured p {
  color: rgba(255, 255, 255, .6);
}

.usp-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

@media(max-width:900px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}

/* LEISTUNGEN */
#leistungen {
  background: var(--off-white);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}

.leistung-item {
  background: var(--white);
  padding: 32px 28px;
  transition: background .2s;
}

.leistung-item:hover {
  background: var(--off-white);
}

.leistung-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--light-grey);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}

.leistung-title {
  font-size: .93rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.leistung-desc {
  font-size: .82rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.6;
}

.leistungen-extras {
  margin-top: 32px;
  background: var(--off-white);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.leistungen-extras-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.extras-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--mid-grey);
  font-weight: 300;
}

.extra-item.planned {
  font-style: italic;
  color: #aaa;
}

@media(max-width:768px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:500px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
  }
}

/* ABLAUF */
#ablauf {
  background: var(--white);
}

.ablauf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}

.ablauf-sticky {
  position: sticky;
  top: 100px;
}

.ablauf-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
}

.ablauf-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.ablauf-sidebar-card p {
  margin-bottom: 28px;
  font-size: .9rem;
}

@media(max-width:768px) {
  .ablauf-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.ablauf-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 48px auto 0;
}

.ablauf-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.ablauf-step:last-child {
  border-bottom: none;
}

.ablauf-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ablauf-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 400;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}

.ablauf-step:hover .ablauf-num {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.ablauf-body {
  padding-top: 8px;
}

.ablauf-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.ablauf-desc {
  font-size: .85rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.65;
}

.ablauf-cta {
  margin-top: 48px;
}

/* PREISMODELL */
#preismodell {
  background: var(--off-white);
}

.preis-intro {
  max-width: 560px;
  margin-top: 16px;
}

.preis-hinweis {
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  font-size: .8rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.7;
}

.preis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.preis-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.preis-card-head {
  padding: 32px 32px 24px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.preis-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.preis-card-head p {
  font-size: .84rem;
  color: var(--mid-grey);
  font-weight: 300;
}

.preis-card-body {
  padding: 28px 32px;
}

.preis-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}

.preis-big span {
  font-size: 1.4rem;
  color: var(--mid-grey);
  vertical-align: super;
}

.preis-note {
  font-size: .8rem;
  color: var(--mid-grey);
  font-weight: 300;
  margin-top: 8px;
  margin-bottom: 24px;
}

.preis-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preis-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--anthracite);
  font-weight: 400;
}

.preis-box-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.preis-info-box {
  background: var(--off-white);
  border-radius: 14px;
  padding: 28px;
}

.preis-info-box h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.preis-info-box p {
  font-size: .84rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.65;
}

.preis-success {
  background: #f0faf4;
  border: 1px solid #c6e8d3;
  border-radius: 14px;
  padding: 28px;
}

.preis-success h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #1a6b3c;
  margin-bottom: 8px;
}

.preis-success p {
  font-size: .84rem;
  color: #2d7a4f;
  font-weight: 300;
  line-height: 1.6;
}

@media(max-width:768px) {
  .preis-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* EIGNUNG */
#eignung {
  background: var(--white);
}

.eignung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.eignung-card {
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--white);
}

.eignung-card.yes {
  border-color: #c6e8d3;
  background: #f7fdf9;
}

.eignung-card.no {
  border-color: #e8d3d3;
  background: #fdf7f7;
}

.eignung-card-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eignung-card.yes .eignung-card-label {
  color: #2d7a4f;
}

.eignung-card.no .eignung-card-label {
  color: #8b3a3a;
}

.eignung-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eignung-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--anthracite);
  font-weight: 300;
  line-height: 1.5;
}

.eignung-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
}

.eignung-card.yes .eignung-dot {
  background: #25a55f;
  color: #fff;
}

.eignung-card.no .eignung-dot {
  background: #c94444;
  color: #fff;
}

.eignung-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .83rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.6;
}

@media(max-width:600px) {
  .eignung-grid {
    grid-template-columns: 1fr;
  }
}

/* GRUNDSÄTZE */
#grundsaetze {
  background: var(--off-white);
}

.grundsaetze-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin-top: 40px;
}

.grundsatz-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.grundsatz-item:first-child {
  border-top: 1px solid var(--border);
}

.grundsatz-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(65, 70, 144, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.grundsatz-label {
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
}

.grundsatz-detail {
  font-size: .83rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.55;
}

/* FAQ */
#faq {
  background: var(--white);
}

.faq-intro {
  text-align: center;
}

#faq .section-label {
  justify-content: center;
}

.faq-wrap {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  transition: color .2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
}

.faq-item.open .faq-chevron {
  background: var(--dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22, .68, 0, 1);
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: .88rem;
  color: var(--mid-grey);
  font-weight: 300;
  line-height: 1.75;
}

/* CTA FINAL */
#cta-final {
  background: var(--dark);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.cta-final-inner .section-label {
  color: rgba(184, 151, 106, .8);
  justify-content: center;
}

.cta-final-inner .btn-secondary {
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .2);
}

#cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 151, 106, .15) 0%, transparent 70%);
}

#cta-final::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 151, 106, .08) 0%, transparent 70%);
}

.cta-final-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-final-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
}

.cta-final-inner p {
  color: rgba(255, 255, 255, .55);
  font-size: 1rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
}

.cta-contact-item a {
  color: rgba(255, 255, 255, .85);
  transition: color .2s;
}

.cta-contact-item a:hover {
  color: var(--gold);
}

/* KONTAKTFORMULAR HELL */
.form-light {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}

.form-light .form-group input,
.form-light .form-group textarea {
  background: var(--off-white);
  color: var(--dark);
  border: 1px solid var(--border);
}

.form-light .form-group textarea {
  min-height: 80px;
}

.form-light .btn-primary,
.form-light-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.form-light-note {
  font-size: .72rem;
  text-align: center;
  color: var(--mid-grey);
}

/* FORM SUCCESS STATES */
.form-success {
  text-align: center;
  padding: 32px 0;
}

.form-success-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success-dark {
  text-align: center;
  padding: 40px 0;
}

.form-success-dark .form-success-icon {
  font-size: 2.5rem;
}

.form-success-dark .form-success-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.form-success-dark p {
  color: rgba(255, 255, 255, .5);
}

/* FORM PREQUALIFY */
.form-prequalify {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 300;
  line-height: 1.65;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .05);
  border-radius: 8px;
  border-left: 2px solid rgba(65, 70, 144, .7);
  margin-bottom: 20px;
}

/* FORM ROW 3 COL */
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media(max-width:580px) {
  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

/* FORM SUBMIT ROW */
.form-submit-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.form-submit-row p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
  margin: 0;
}

.form-submit-row .btn-whatsapp {
  font-size: .88rem;
  padding: 14px 32px;
}

/* KONTAKTFORMULAR DUNKEL */
.contact-form {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
  text-align: left;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.form-group label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background-color: var(--dark);
  color: var(--white);
}

.form-group select option[value=""] {
  color: rgba(255, 255, 255, .4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .1);
}

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

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

/* FORM ERROR & DSGVO */
.form-error {
  font-size: .8rem;
  color: #c94444;
  background: rgba(201, 68, 68, .08);
  border: 1px solid rgba(201, 68, 68, .2);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.form-error-dark {
  color: #ff8080;
  background: rgba(201, 68, 68, .15);
  border-color: rgba(201, 68, 68, .3);
}

.form-dsgvo {
  font-size: .72rem;
  color: var(--mid-grey);
  margin-top: 10px;
  line-height: 1.6;
}

.form-dsgvo a {
  color: var(--gold);
  text-decoration: underline;
}

.form-dsgvo-dark {
  color: rgba(255, 255, 255, .3);
}

.form-dsgvo-dark a {
  color: rgba(255, 255, 255, .5);
}

button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* FIELD-LEVEL VALIDATION */
.field-error {
  font-size: .72rem;
  color: #c94444;
  margin-top: 3px;
  line-height: 1.4;
}

.field-error-dark {
  color: #ff8080;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: rgba(201, 68, 68, .7) !important;
}

.form-light .form-group input.invalid {
  border-color: #c94444 !important;
}

@media(max-width:580px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
footer {
  background: var(--anthracite);
  padding: 48px clamp(20px, 5vw, 60px) 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  font-weight: 300;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col ul li a.soon {
  opacity: .4;
  pointer-events: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  font-weight: 300;
}

.footer-domain {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .06em;
}

@media(max-width:768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* TWEAKS PANEL */
.tweaks-panel {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 300;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 260px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  font-family: var(--font-body);
}

.tweaks-panel.active {
  display: block;
}

.tweaks-title {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 18px;
}

.tweak-row {
  margin-bottom: 16px;
}

.tweak-label {
  font-size: .75rem;
  color: var(--mid-grey);
  margin-bottom: 6px;
  display: block;
  font-weight: 400;
}

.tweak-row input[type=color] {
  width: 100%;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 2px;
}

.tweak-row select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--anthracite);
  background: var(--white);
}