/* =====================================================================
   DESIGN TOKENS
   ===================================================================== */
:root {
  /* Farbschema */
  --color-primary: #0d3b14;      /* Dunkelgrün – Headings & dunkle Sektionen */
  --color-primary-dark: #08280d; /* tiefere Variante (Footer, Verläufe) */
  --color-accent: #03ab13;       /* Grün – Hauptfarbe / Akzent / CTA */
  --color-accent-dark: #038f10;  /* Akzent Hover */
  --color-bg: #ffffff;           /* Weiß – Standard-Hintergrund */
  --color-bg-alt: #f4f6f4;       /* Grau – Sektionshintergrund */
  --color-text: #2e2e2e;         /* Fließtext dunkel (neutral) */
  --color-text-muted: #8a8a8a;   /* Grau – Sekundärfarbe / abgeschwächter Text */
  --color-border: #e4e7e4;       /* feine Trennlinien */
  --color-success: #03ab13;      /* grün für Häkchen */

  /* Typografie */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Abstände */
  --space-section: clamp(4rem, 3rem + 4vw, 7rem);
  --container-max: 1180px;

  /* Sonstiges */
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(13, 59, 20, 0.06);
  --shadow-md: 0 12px 30px rgba(13, 59, 20, 0.10);
  --shadow-lg: 0 24px 60px rgba(13, 59, 20, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =====================================================================
   RESET / BASIS
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--color-primary); letter-spacing: -0.02em; }

/* =====================================================================
   LAYOUT-HELFER
   ===================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding-block: var(--space-section); }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-primary); color: #fff; }

.section-head { max-width: 900px; margin-bottom: 3rem; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section h2 { font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.85rem); }
.section .lead { font-size: 1.15rem; color: var(--color-text-muted); margin-top: 1rem; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

/* Primärer CTA – immer Hellblau, weiße Schrift, leichte Rundung */
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(3, 171, 19, 0.28);
}
.btn--primary:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(3, 171, 19, 0.36); }

/* Sekundär – outline */
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--secondary:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }

/* Sekundär auf dunklem Grund */
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn--lg { font-size: 1.0625rem; padding: 1.05rem 2.1rem; }

/* =====================================================================
   1. NAVIGATION
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo Navigation */
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 40px; width: auto; display: block; }

/* Logo Footer – weißer Chip für Kontrast auf dunklem Grund */
.footer__logo {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
}
.footer__logo img { height: 36px; width: auto; display: block; }

/* Logo-Platzhalter (Referenz Reul) */
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding-inline: 1.1rem;
  border: 2px dashed var(--color-accent);
  border-radius: var(--radius);
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--color-bg-alt);
}

.nav__links { display: none; gap: 2rem; align-items: center; }
.nav__links a { font-weight: 500; color: var(--color-text-muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--color-accent); }

@media (min-width: 920px) {
  .nav__links { display: flex; }
}

/* Mobile: Logo + CTA kompakter, damit nichts überläuft */
@media (max-width: 560px) {
  .nav__inner { height: 64px; }
  .nav__logo img { height: 30px; }
  .nav .btn--primary { padding: 0.6rem 0.95rem; font-size: 0.875rem; }
}

/* =====================================================================
   2. HERO
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(3,171,19,0.07), transparent 42%),
    radial-gradient(circle at 5% 95%, rgba(3,171,19,0.04), transparent 38%),
    var(--color-bg);
  padding-block: clamp(3.5rem, 2rem + 7vw, 6.5rem);
}
.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.4fr 0.8fr; gap: 3rem; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(3,171,19,0.10);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__h1-l1 {
  display: block;
  font-size: clamp(1.7rem, 1rem + 2.1vw, 2.15rem);
}
.hero__h1-l2 {
  display: block;
  margin-top: 0.15rem;
  font-size: clamp(1.35rem, 0.9rem + 1.4vw, 1.7rem);
}
.hero__h1-sub {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1.1rem, 0.85rem + 0.9vw, 1.4rem);
  font-weight: 700;
}
.hero h1 .accent { color: var(--color-accent); }

.hero__subline {
  font-size: 1.18rem;
  color: var(--color-text-muted);
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__trust .check { color: var(--color-success); font-weight: 800; }

/* Hero-Visual / Screenshot-Platzhalter */
.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
}
.hero__visual-bar { display: flex; gap: 0.5rem; padding: 0.4rem 0.2rem 0.9rem; }
.hero__visual-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.hero__visual-screen {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero__visual-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.hero__visual-badge {
  position: absolute;
  bottom: -1rem;
  right: -0.75rem;
  background: #fff;
  color: var(--color-primary);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__visual-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-success); }

/* =====================================================================
   3. PROBLEM-SEKTION (Timeline)
   ===================================================================== */
.timeline { display: grid; gap: 1.25rem; margin-top: 1rem; }
@media (min-width: 720px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .timeline { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card__icon {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 0.9rem;
  display: block;
}
.step-card__num {
  position: absolute;
  top: 1.1rem; right: 1.25rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-accent);
  background: rgba(3,171,19,0.10);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.step-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.94rem; color: var(--color-text-muted); line-height: 1.55; }

.problem-conclusion {
  margin-top: 2.75rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.55;
  box-shadow: var(--shadow-md);
}
.problem-conclusion strong { color: #7fe08a; font-weight: 700; }

/* =====================================================================
   4. LÖSUNG / USP-KACHELN
   ===================================================================== */
.usp-grid { display: grid; gap: 1.5rem; margin-top: 1rem; }
@media (min-width: 820px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }

.usp-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.usp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(3,171,19,0.35); }
.usp-card__icon { font-size: 2.2rem; margin-bottom: 1.1rem; }
.usp-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.usp-card p { color: var(--color-text-muted); }

/* =====================================================================
   5. FEATURES
   ===================================================================== */
.feature-block { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 940px) { .feature-block { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.feature-list { display: grid; gap: 0.9rem; margin-top: 1.75rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.05rem;
  font-weight: 500;
}
.feature-list li .tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(3,171,19,0.12);
  color: var(--color-success);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 2px;
}
.feature-list li .opt { color: var(--color-text-muted); font-weight: 400; font-style: italic; }

/* Integrationen / Anbindung Hausverwaltungssoftware */
.integrations {
  margin-top: 3.5rem;
  padding: 2.25rem clamp(1.5rem, 1rem + 2vw, 2.75rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.integrations h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.integrations p { color: var(--color-text-muted); max-width: 640px; margin: 0 auto 1.6rem; }
.integrations__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.integrations__chips span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.integrations__note { font-size: 0.92rem; color: var(--color-text-muted); margin: 0; }
.integrations__note strong { color: var(--color-accent); }

.badge-available {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-success);
  background: rgba(3,171,19,0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Feature-Visual-Platzhalter */
.feature-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* Modul 2 – Highlight-Box (Coming Soon) */
.module2 {
  position: relative;
  margin-top: 4.5rem;
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.module2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(3,171,19,0.4), transparent 50%);
  pointer-events: none;
}
.module2__inner { position: relative; display: grid; gap: 3rem; }
@media (min-width: 940px) { .module2__inner { grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; } }

.badge-soon {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.module2 .eyebrow { color: #7fe08a; }
.module2 h3 { color: #fff; font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); margin-bottom: 1rem; }
.module2 > .module2__inner p.module2__text { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 1.5rem; }

.module2 .feature-list li { color: rgba(255,255,255,0.92); font-size: 1rem; }
.module2 .feature-list li .tick { background: rgba(127,224,138,0.18); color: #7fe08a; }

/* Wartelisten-Formular */
.waitlist {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
  backdrop-filter: blur(4px);
}
.waitlist h4 { color: #fff; font-size: 1.2rem; margin-bottom: 0.4rem; }
.waitlist p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 1.4rem; }
.waitlist__form { display: flex; flex-direction: column; gap: 0.85rem; }
.waitlist__form input[type="email"] {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.95);
  color: var(--color-primary);
}
.waitlist__form input::placeholder { color: #8493a8; }
.waitlist__form input:focus { outline: 3px solid rgba(3,171,19,0.5); outline-offset: 1px; }
.waitlist__success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(3,171,19,0.2);
  border: 1px solid rgba(3,171,19,0.5);
  color: #c7f0d8;
  font-size: 0.95rem;
  font-weight: 500;
}

/* =====================================================================
   6. PROZESS (3 Schritte)
   ===================================================================== */
.process-grid { display: grid; gap: 1.75rem; margin-top: 1rem; counter-reset: step; }
@media (min-width: 860px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem 1.85rem;
  box-shadow: var(--shadow-sm);
}
.process-card__num {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--color-accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 18px rgba(3,171,19,0.3);
}
.process-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.process-card p { color: var(--color-text-muted); }

/* =====================================================================
   7. TESTIMONIAL
   ===================================================================== */
.testimonial {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.testimonial__mark {
  font-size: 6rem;
  line-height: 0.6;
  color: var(--color-accent);
  opacity: 0.22;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}
.testimonial__quote {
  font-size: clamp(1.25rem, 1rem + 1.2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.45;
  margin-bottom: 2rem;
}
.testimonial__person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
/* Foto-Platzhalter (Kreis mit Initialen) */
.testimonial__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  flex-shrink: 0;
  border: 2px solid var(--color-accent);
}
.testimonial__name { text-align: left; }
.testimonial__name strong { display: block; font-size: 1.05rem; color: var(--color-primary); }
.testimonial__name span { font-size: 0.95rem; color: var(--color-text-muted); }

/* Logo Immobilienservice Reul */
.testimonial__logo {
  height: 58px;
  width: auto;
  display: block;
}

.kpi-bar {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}
@media (min-width: 720px) { .kpi-bar { grid-template-columns: repeat(3, 1fr); } }
.kpi { text-align: center; }
.kpi__value { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.25rem); font-weight: 900; color: var(--color-accent); white-space: nowrap; }
.kpi__label { font-size: 0.95rem; color: var(--color-text-muted); margin-top: 0.25rem; }

/* =====================================================================
   8. PREISE
   ===================================================================== */
.pricing-grid { display: grid; gap: 1.5rem; margin-top: 1rem; align-items: stretch; }
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* Professional hervorheben */
.price-card--featured {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
  position: relative;
}
@media (min-width: 1040px) { .price-card--featured { transform: scale(1.04); } .price-card--featured:hover { transform: scale(1.04) translateY(-5px); } }
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(3,171,19,0.35);
  white-space: nowrap;
}
.price-card__name { font-size: 1.2rem; font-weight: 800; color: var(--color-primary); }
.price-card__units { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 0.25rem; min-height: 1.4em; }
.price-card__price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary);
  margin: 1.25rem 0 0.25rem;
}
.price-card__price span { font-size: 0.95rem; font-weight: 500; color: var(--color-text-muted); }
.price-card__ideal {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 1rem 0 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  flex-grow: 1;
}
.price-card .btn { width: 100%; justify-content: center; }

.pricing-note small { display: inline-block; margin-top: 0.6rem; font-size: 0.85rem; opacity: 0.85; }
.pricing-note {
  max-width: 760px;
  margin: 2.5rem auto 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}
.early-access {
  max-width: 760px;
  margin: 1.75rem auto 0;
  background: rgba(3,171,19,0.07);
  border: 1px solid rgba(3,171,19,0.22);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  text-align: center;
  font-size: 1rem;
  color: var(--color-primary);
}
.early-access strong { color: var(--color-accent); }
.pricing-cta { text-align: center; margin-top: 2.25rem; }

/* =====================================================================
   9. FAQ (Akkordeon)
   ===================================================================== */
.faq-list { max-width: 800px; margin: 1rem auto 0; display: grid; gap: 0.85rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(3,171,19,0.35); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  transition: transform 0.25s var(--ease);
}
.faq-item summary .chev::before,
.faq-item summary .chev::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2.5px;
  background: var(--color-accent);
  border-radius: 2px;
}
.faq-item summary .chev::before { transform: translate(-50%, -50%); }
.faq-item summary .chev::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.25s var(--ease); }
.faq-item[open] summary .chev::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item__answer { padding: 0 1.5rem 1.4rem; color: var(--color-text-muted); line-height: 1.6; }
.faq-item__answer a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }

/* =====================================================================
   10. ABSCHLUSS-CTA
   ===================================================================== */
.final-cta { text-align: center; }
.final-cta__inner {
  max-width: 720px;
  margin-inline: auto;
}
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); margin-bottom: 1.25rem; }
.final-cta p { color: rgba(255,255,255,0.82); font-size: 1.15rem; margin-bottom: 2.25rem; }
.final-cta .btn { box-shadow: 0 12px 30px rgba(3,171,19,0.4); }

/* =====================================================================
   BUCHUNGS-MODAL (Zoho Bookings)
   ===================================================================== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 2rem);
  background: rgba(8, 40, 13, 0.6);
  backdrop-filter: blur(4px);
}
.booking-modal.is-open { display: flex; }
.booking-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.booking-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.booking-modal__head strong { color: var(--color-primary); font-size: 1.05rem; }
.booking-modal__close {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.booking-modal__close:hover { background: #fff; border-color: var(--color-accent); color: var(--color-accent); }
.booking-modal__body { flex: 1; overflow: hidden; background: #fff; }
.booking-modal__body iframe { display: block; width: 100%; height: 750px; max-height: 84vh; border: 0; }
body.booking-open { overflow: hidden; }

/* =====================================================================
   11. FOOTER
   ===================================================================== */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.75);
  padding-block: 3.5rem 2.5rem;
  font-size: 0.95rem;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer a:hover { color: #fff; }
.footer__links { display: grid; gap: 0.6rem; }
.footer__login { margin-top: 1.4rem; }
.footer__login span { font-weight: 800; }
.footer__contact p { margin-bottom: 0.4rem; }
.footer__brand p { margin-top: 0.9rem; max-width: 24rem; line-height: 1.6; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* Platzhalter-Markierung (Inline) */
.placeholder-inline {
  background: rgba(3,171,19,0.12);
  color: var(--color-accent);
  border-radius: 4px;
  padding: 0.1em 0.45em;
  font-weight: 600;
  font-size: 0.95em;
}

/* =====================================================================
   ZUGÄNGLICHKEIT / MOTION
   ===================================================================== */
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
