/* ============================================================
   Vision Webdesign – fable5-redesign
   Mobile First · Vanilla CSS · Keine externen Abhängigkeiten
   Farbwelt: hell & warm, Blau-Grau-Text, Cyan-Akzent,
   sparsame Bronze-/Sand-Akzente. Kein Darkmode.
   ============================================================ */

/* ---------- Fonts (lokal, DSGVO-sicher) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Grundflächen: warm und hell, kein reines Weiß als Fläche */
  --paper: #faf8f5;
  --paper-alt: #f3f0ea;
  --card: #ffffff;

  /* Text: dunkles Blau-Grau statt hartem Schwarz */
  --ink: #232e38;
  --ink-soft: #4c5862;
  --line: #e4dfd5;

  /* Akzent: ruhiges Cyan-Blau (Vision-Akzent) */
  --accent: #0e7490;
  --accent-deep: #0b5d74;
  --accent-soft: #e7f1f4;

  /* Sparsame Premium-Akzente: Bronze & Sand */
  --bronze: #8c6d3f;
  --sand: #f3ede2;
  --sand-line: #e3d9c6;

  --error: #b3362a;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --container: 1140px;
  --shadow-soft: 0 2px 24px rgba(35, 46, 56, 0.07);
}

/* ---------- Reset & Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 480;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
}

h1 em, h2 em {
  font-style: italic;
  color: var(--accent);
}

p {
  margin: 0 0 1em;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout-Helfer ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.container-narrow {
  max-width: 820px;
}

.section {
  padding-block: clamp(4rem, 10vw, 7.5rem);
}

.section-alt {
  background: var(--paper-alt);
}

/* Sand-Ton für ruhige Wechselsektionen (ehem. dunkle Sektionen) */
.section-tint {
  background: var(--sand);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  max-width: 60ch;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 1.6rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}

.section-tint .btn-ghost {
  border-color: var(--sand-line);
}
.section-tint .btn-ghost:hover {
  border-color: var(--ink);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.9rem clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 30px;
  width: auto;
}

@media (min-width: 640px) {
  .brand-logo {
    height: 36px;
  }
}

.footer-logo {
  display: block;
  height: 54px;
  width: auto;
  margin-bottom: 1rem;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
}

.brand-sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: var(--ink);
}

.main-nav .nav-cta {
  color: var(--accent);
  font-weight: 600;
}

.header-cta {
  display: none;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  background: var(--accent);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
}
.header-cta:hover {
  background: var(--accent-deep);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile-Navigation */
@media (max-width: 899.98px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0 1rem;
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 0.9rem clamp(1.25rem, 5vw, 2.5rem);
    font-size: 1.0625rem;
  }
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }
  .header-cta {
    display: inline-flex;
  }
  /* Auf Desktop übernimmt der Header-Button rechts den Kontakt-Einstieg */
  .main-nav .nav-contact {
    display: none;
  }
  .nav-toggle {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(5rem, 14vw, 10rem) clamp(4rem, 10vw, 7rem);
  text-align: center;
}

.hero .eyebrow {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 440;
  line-height: 1.06;
  max-width: 20ch;
  margin-inline: auto;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 1.5rem auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ---------- Vertrauensleiste ---------- */
.trustbar {
  border-block: 1px solid var(--line);
  padding-block: 2rem;
  background: var(--card);
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
}

.trust-item {
  text-align: center;
}

.trust-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 540;
  letter-spacing: -0.01em;
}

.trust-label {
  display: block;
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}

@media (min-width: 900px) {
  .trustbar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Positionierung / Werte ---------- */
.value-grid {
  display: grid;
  gap: 1.25rem;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.value-card h3 {
  margin-bottom: 0.4em;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.975rem;
  margin: 0;
}

@media (min-width: 640px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Referenzen ---------- */
.case {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.case + .case {
  border-top: 1px solid var(--line);
}

.browser-frame {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.browser-url {
  margin-left: 0.75rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.case-meta {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.case-body h3 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
}

.case-body > p {
  color: var(--ink-soft);
}

.case-body blockquote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--bronze);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--ink);
}

.case-result {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--bronze);
  color: var(--ink-soft);
}

.case-result strong {
  color: var(--ink);
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.case-link:hover {
  border-bottom-color: var(--accent);
}

@media (min-width: 900px) {
  .case {
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
  }
  .case-reverse .case-media {
    order: 2;
  }
}

/* ---------- Ablauf ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding-block: 1.75rem;
}

.step + .step {
  border-top: 1px solid var(--sand-line);
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 340;
  line-height: 1;
  color: var(--bronze);
  min-width: 2ch;
}

.step h3 {
  margin-bottom: 0.3em;
}

.step p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}

/* ---------- Preise ---------- */
.price-grid {
  display: grid;
  gap: 1.25rem;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.price-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  background: var(--sand);
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  margin: 0 0 1rem;
}

.price-card h3 {
  margin-bottom: 0.2em;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 540;
  margin: 0 0 0.6rem;
}

.price-range {
  font-size: 1.05rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.price-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  min-height: 3.2em;
}

.price-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  flex-grow: 1;
}

.price-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

@media (min-width: 640px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .price-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Hinweis unter den Preiskarten ---------- */
.price-helper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  text-align: center;
}

.price-helper p {
  margin: 0;
  color: var(--ink-soft);
}

/* ---------- Kosten-Einschätzung (Kalkulator) ---------- */
.calc {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.calc-head {
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.calc-head h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.35em;
}

.calc-sub {
  color: var(--ink-soft);
  font-size: 0.975rem;
  margin: 0;
}

.calc-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .calc-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
  .calc-result {
    position: sticky;
    top: 5.5rem;
  }
}

.calc-group-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.calc-group-label + .calc-group-label,
.calc-types + .calc-group-label {
  margin-top: 1.75rem;
}

/* Website-Art */
.calc-types {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .calc-types {
    grid-template-columns: 1fr 1fr;
  }
}

.calc-type {
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  color: var(--ink);
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.calc-type:hover {
  border-color: var(--accent);
}

.calc-type.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.calc-type strong {
  display: block;
  font-size: 1rem;
}

.calc-type-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 540;
  margin: 0.15rem 0 0.3rem;
}

.calc-type-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Ergänzungen */
.calc-extras {
  display: grid;
  gap: 0.6rem;
}

.calc-extra {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.calc-extra:hover {
  border-color: var(--accent);
}

.calc-extra:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.calc-extra input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.calc-extra-body {
  flex: 1;
}

.calc-extra-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.calc-extra-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.calc-extra-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0.2rem 0;
}

.calc-extra-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Einordnungs-Badges */
.calc-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 99px;
}

.calc-badge-emp {
  color: var(--accent);
  background: var(--accent-soft);
}

.calc-extra:has(input:checked) .calc-badge-emp {
  background: var(--card);
}

.calc-badge-opt {
  color: var(--bronze);
  background: var(--sand);
}

.calc-badge-spaeter {
  color: var(--ink-soft);
  background: var(--paper-alt);
}

.calc-seo-note {
  margin: 1.5rem 0 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  background: var(--sand);
  border-left: 2px solid var(--bronze);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Ergebnisbereich */
.calc-result {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.calc-result-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.calc-result-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  margin: 0 0 0.75rem;
}

.calc-result-recurring {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}

.calc-disclaimer {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin: 0 0 1.25rem;
}

/* Hinweis im Kontakt-Assistenten */
.assistant-calc-note {
  font-size: 0.875rem;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px dashed var(--sand-line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  margin: 0 0 1.25rem;
}

/* ---------- Zusatzleistungen ---------- */
.extras {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.extras h3 {
  margin-bottom: 1.25rem;
}

.extras-hint {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.extras-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.extras-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name  price"
    "desc  price";
  gap: 0.1rem 1rem;
  align-items: center;
  padding-block: 0.85rem;
}

.extras-list li + li {
  border-top: 1px solid var(--line);
}

.extras-list span {
  grid-area: name;
  font-weight: 600;
}

.extras-list em {
  grid-area: desc;
  font-style: normal;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.extras-list strong {
  grid-area: price;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 560;
  white-space: nowrap;
}

.price-note {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Über mich ---------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.about-body > p {
  color: var(--ink-soft);
}

.about-body > p strong {
  color: var(--ink);
}

.about-points {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.about-points li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.7rem;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.about-motto {
  border-left: 2px solid var(--bronze);
  padding: 0.4rem 0 0.4rem 1.25rem;
  margin: 1.75rem 0 2rem;
}

.about-motto p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 2fr 3fr;
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 520;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 0 1.5rem;
  color: var(--ink-soft);
  max-width: 65ch;
}

.faq-body p {
  margin: 0;
}

/* ---------- Kontakt ---------- */
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.2rem;
  min-height: 48px;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.contact-chip:hover {
  border-color: var(--accent);
}

/* ---------- Anfrage-Assistent ---------- */
.assistant {
  background: var(--card);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
}

.assistant .form-field input,
.assistant .form-field textarea,
.assistant .form-field select {
  background: var(--paper);
  font-size: 1.0625rem;
  padding: 1rem 1.1rem;
}

.assistant-progress {
  margin-bottom: 1.75rem;
}

.assistant-progress-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.6rem;
}

.assistant-progress-track {
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}

.assistant-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.35s ease;
}

.assistant-title {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-bottom: 0.35em;
}

.assistant-hint {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.assistant-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Ziel-Karten (Schritt 2) */
.goal-grid {
  display: grid;
  gap: 0.85rem;
}

.goal-card {
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  color: var(--ink);
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.goal-card:hover {
  border-color: var(--accent);
}

.goal-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.goal-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.goal-card span {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

@media (min-width: 640px) {
  .goal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Branchenfragen (Schritt 3) */
.branch-questions {
  display: grid;
  gap: 0.6rem;
}

.branch-question {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  min-height: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.branch-question:hover {
  border-color: var(--accent);
}

.branch-question:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.branch-question input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

/* Zusammenfassung (Schritt 5) */
.assistant-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 1.25rem;
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
}

.assistant-summary dt {
  color: var(--ink-soft);
  white-space: nowrap;
}

.assistant-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .assistant-summary {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
  .assistant-summary dd {
    margin-bottom: 0.6rem;
  }
}

/* Hinweis Testversion */
.demo-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px dashed var(--sand-line);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  margin-top: 0.75rem;
}

/* Formular-Grundelemente */
.form-row {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Honeypot: für Besucher unsichtbar, für Bots ein normales Feld */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0.5rem 0 1.5rem;
  cursor: pointer;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-consent a {
  color: var(--accent);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

.form-error {
  color: var(--error);
  font-size: 0.95rem;
  text-align: center;
  margin-top: 0.75rem;
  min-height: 1.2em;
}

.form-success {
  background: var(--card);
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.footer-brand .brand-name {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-brand a {
  color: var(--ink-soft);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--ink);
}

.footer-note {
  font-size: 0.8125rem;
  max-width: 75ch;
  margin: 0;
}

.footer-copy {
  font-size: 0.8125rem;
  margin: 0;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .footer-note,
  .footer-copy {
    grid-column: 1 / -1;
  }
}

/* ---------- Rechtsseiten ---------- */
.legal-section {
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.35rem;
  margin-bottom: 0.6em;
}

.legal-section h3 {
  font-size: 1.1rem;
  margin-top: 1.25em;
}

.legal-section p,
.legal-section ul {
  color: var(--ink-soft);
  font-size: 0.975rem;
}

.legal-nav {
  display: flex !important;
  position: static !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}

.legal-nav a {
  padding: 0 !important;
  white-space: nowrap;
}

/* ---------- Scroll-Reveal ---------- */
/* Nur aktiv, wenn JS läuft – sonst bleibt alles sichtbar */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
