/* ===========================================================================
   CleanCar Mobile - Hauptstylesheet (oeffentliche Seiten)
   Look: hell & minimal, viel Weissraum, ein Akzent (Violett)
   =========================================================================== */

:root {
  --bg:          #ffffff;
  --bg-soft:     #f6f6f9;
  --bg-tint:     #faf9fe;
  --ink:         #16161c;
  --ink-2:       #595965;
  --ink-3:       #9a9aa6;
  --line:        #e9e9ef;
  --line-2:      #dededa;
  --accent:      #5b4bd6;
  --accent-press:#4a3bc0;
  --accent-soft: #efedfc;
  --gold:        #b08328;
  --gold-soft:   #f6efdb;
  --ok:          #1f9d61;
  --ok-soft:     #e6f6ee;
  --err:         #d23b3b;
  --err-soft:    #fbeaea;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-sm:   9px;
  --shadow-sm:   0 1px 2px rgba(20,20,40,.04), 0 2px 8px rgba(20,20,40,.05);
  --shadow-md:   0 8px 30px rgba(28,24,70,.10);
  --shadow-lg:   0 24px 60px rgba(28,24,70,.16);
  --maxw:        1160px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; }

/* --- Typografie ------------------------------------------------------------ */

h1, h2, h3, h4 { line-height: 1.18; font-weight: 600; letter-spacing: -.02em; }

.display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -.015em;
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* --- Layout ---------------------------------------------------------------- */

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

.section { padding: 104px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }

.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing: -.02em;
  line-height: 1.12;
}
.section-intro { margin-top: 16px; color: var(--ink-2); font-size: 17px; }

/* --- Buttons --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-press); box-shadow: 0 8px 22px rgba(91,75,214,.28); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--accent); }
.btn-light:hover { box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { filter: brightness(1.07); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 15px; color: var(--accent); text-decoration: none;
}
.link-arrow::after { content: '\2192'; transition: transform .15s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* --- Header / Navigation --------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 21px; letter-spacing: -.01em; text-decoration: none; color: var(--ink);
  display: flex; align-items: center; gap: 9px;
}
.logo .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px;
}
.logo span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2); text-decoration: none;
  transition: color .15s ease;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active { font-weight: 600; }
.nav-mobile-cta { display: none; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--line-2); border-radius: 10px; background: #fff;
  cursor: pointer; flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.menu-toggle span { width: 17px; height: 2px; background: var(--ink); border-radius: 2px; }

/* --- Hero ------------------------------------------------------------------ */

.hero { padding: 72px 0 88px; position: relative; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 22px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.07; letter-spacing: -.025em;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  margin-top: 20px; font-size: 18px; color: var(--ink-2); max-width: 460px;
}
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-points {
  margin-top: 30px; display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 14px; color: var(--ink-2);
}
.hero-points span { display: flex; align-items: center; gap: 7px; }
.hero-points span::before {
  content: '\2713'; color: var(--accent); font-weight: 700;
}

.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 4.4;
  background: linear-gradient(150deg, #e9e6fb 0%, #f3f1fc 60%, #f7f0db 100%);
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; left: -26px; bottom: 34px;
  background: #fff; border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 13px;
}
.hero-float .stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.hero-float b { font-size: 20px; }
.hero-float small { color: var(--ink-3); font-size: 12.5px; }

/* --- Stat-Leiste ----------------------------------------------------------- */

.stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; overflow: hidden;
}
.stat-bar .stat { padding: 28px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat-bar .stat:last-child { border-right: 0; }
.stat-num {
  font-family: 'DM Serif Display', Georgia, serif; font-size: 34px; line-height: 1;
}
.stat-label { margin-top: 6px; font-size: 13px; color: var(--ink-3); }

/* --- Paket-Karten ---------------------------------------------------------- */

.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  align-items: start;
}
.pkg-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 4px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pkg-card.featured {
  border-color: var(--accent); box-shadow: var(--shadow-md); position: relative;
}
.pkg-flag {
  position: absolute; top: -13px; left: 28px;
  background: var(--gold); color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.pkg-name { font-size: 21px; font-weight: 700; }
.pkg-tagline { color: var(--ink-2); font-size: 14px; min-height: 40px; }
.pkg-price { margin: 14px 0 6px; font-family: 'DM Serif Display', serif; font-size: 38px; }
.pkg-price .from { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--ink-3); font-weight: 500; }
.pkg-price .cur { font-size: 22px; }
.pkg-features { list-style: none; margin: 18px 0 24px; display: grid; gap: 11px; }
.pkg-features li {
  position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink-2);
}
.pkg-features li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b4bd6' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.pkg-card.featured .pkg-features li::before {
  background-color: var(--gold-soft);
}
.pkg-card .btn { margin-top: auto; }

/* --- Preistabelle ---------------------------------------------------------- */

.price-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.price-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 560px; }
.price-table th, .price-table td {
  padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.price-table thead th {
  background: var(--bg-soft); font-weight: 600; font-size: 13.5px; color: var(--ink-2);
}
.price-table tbody th {
  text-align: left; font-weight: 700; background: #fff;
}
.price-table tbody tr:last-child td, .price-table tbody tr:last-child th { border-bottom: 0; }
.price-table .row-premium { background: var(--gold-soft); }
.price-table .row-premium th { background: var(--gold-soft); }
.price-table td b { font-weight: 700; }

/* --- Ablauf / Steps -------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { }
.step-num {
  font-family: 'DM Serif Display', serif; font-size: 18px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step-title { font-size: 17px; font-weight: 600; margin-bottom: 7px; }
.step-text { font-size: 14.5px; color: var(--ink-2); }

/* --- Feature-Grid (Warum wir) ---------------------------------------------- */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px;
}
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft);
  display: grid; place-items: center; margin-bottom: 16px;
}
.feature-icon svg { width: 23px; height: 23px; stroke: var(--accent); }
.feature-title { font-size: 16.5px; font-weight: 600; margin-bottom: 7px; }
.feature-text { font-size: 14.5px; color: var(--ink-2); }

/* --- Bewertungen ----------------------------------------------------------- */

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 12px; }
.review-text { font-size: 14.5px; color: var(--ink); }
.review-author { margin-top: 16px; font-size: 14px; font-weight: 600; }
.review-meta { font-size: 13px; color: var(--ink-3); }

/* --- Galerie --------------------------------------------------------------- */

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #ecebf8, #f6f0db);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.placeholder {
  display: grid; place-items: center; text-align: center;
  border: 1px dashed var(--line-2);
}
.gallery-item.placeholder span {
  font-size: 13px; color: var(--ink-3); padding: 0 16px;
}
.gallery-item .tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
}

/* --- FAQ ------------------------------------------------------------------- */

.faq { display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16px;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .ic {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 17px; transition: transform .2s ease;
}
.faq-item[open] .faq-q .ic { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; color: var(--ink-2); font-size: 15px; }

/* --- CTA-Band -------------------------------------------------------------- */

.cta-band {
  background: var(--accent); color: #fff; border-radius: var(--radius-lg);
  padding: 64px 48px; text-align: center;
}
.cta-band h2 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.14;
}
.cta-band p { margin: 14px auto 28px; color: rgba(255,255,255,.82); max-width: 480px; font-size: 17px; }

/* --- Formulare ------------------------------------------------------------- */

.form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group label { font-size: 14px; font-weight: 600; }
.form-group label .req { color: var(--accent); }
.input, .textarea, .select {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: #fff; width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-hint { font-size: 13px; color: var(--ink-3); }

/* --- Alerts ---------------------------------------------------------------- */

.alert {
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14.5px;
  border: 1px solid; margin-bottom: 16px;
}
.alert-success { background: var(--ok-soft); border-color: #bfe6cf; color: #166b41; }
.alert-error   { background: var(--err-soft); border-color: #f0c4c4; color: #9c2a2a; }
.alert-info    { background: var(--accent-soft); border-color: #d8d3f7; color: var(--accent-press); }

/* --- Karten-Box (generisch) ----------------------------------------------- */

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px;
}
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.info-list { list-style: none; display: grid; gap: 14px; }
.info-list li { display: flex; gap: 12px; font-size: 15px; }
.info-list .ico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
  background: var(--accent-soft); display: grid; place-items: center;
}
.info-list .ico svg { width: 19px; height: 19px; stroke: var(--accent); }
.info-list b { display: block; }
.info-list small { color: var(--ink-3); }

/* --- Footer ---------------------------------------------------------------- */

.site-footer { background: #14141a; color: #c9c9d2; padding: 64px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: #8b8b97; max-width: 280px; }
.footer-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: .1em;
  color: #6f6f7d; margin-bottom: 16px; font-weight: 600;
}
.footer-col a, .footer-col p {
  display: block; font-size: 14px; color: #c9c9d2; text-decoration: none;
  margin-bottom: 10px;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; font-size: 13px; color: #6f6f7d;
}
.footer-bottom a { color: #6f6f7d; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* --- Seitenkopf (Unterseiten) --------------------------------------------- */

.page-head { padding: 56px 0 8px; }
.page-head .eyebrow { margin-bottom: 10px; }
.page-head h1 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -.02em;
}
.page-head p { margin-top: 14px; color: var(--ink-2); font-size: 17px; max-width: 620px; }

/* --- Hilfsklassen ---------------------------------------------------------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
.prose p { margin-bottom: 14px; color: var(--ink-2); }
.prose h2 { font-size: 22px; margin: 30px 0 12px; }
.prose h3 { font-size: 17px; margin: 22px 0 8px; }
.prose ul { margin: 0 0 14px 20px; color: var(--ink-2); }
.prose ul li { margin-bottom: 6px; }
.prose a { color: var(--accent); }

/* ===========================================================================
   BUCHUNGSSEITE
   =========================================================================== */

.booking-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }

/* Schritt-Anzeige */
.bk-steps {
  display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap;
}
.bk-steps .bk-step {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-3);
  padding: 8px 14px; border-radius: 100px; background: var(--bg-soft);
}
.bk-steps .bk-step .n {
  width: 22px; height: 22px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line-2); color: var(--ink-3);
  display: grid; place-items: center; font-size: 12px;
}
.bk-steps .bk-step.active { background: var(--accent-soft); color: var(--accent); }
.bk-steps .bk-step.active .n { background: var(--accent); color: #fff; border-color: var(--accent); }
.bk-steps .bk-step.done { color: var(--ok); }
.bk-steps .bk-step.done .n { background: var(--ok); color: #fff; border-color: var(--ok); }

/* Panels */
.step-panel { display: none; }
.step-panel.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.step-panel h2 {
  font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 27px;
  margin-bottom: 6px;
}
.step-panel .lead { color: var(--ink-2); margin-bottom: 24px; }

/* Auswahl-Karten (Fahrzeug) */
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.choice {
  border: 1.5px solid var(--line-2); border-radius: var(--radius); padding: 18px 20px;
  cursor: pointer; display: flex; align-items: center; gap: 14px;
  transition: border-color .15s ease, background .15s ease;
}
.choice:hover { border-color: var(--accent); }
.choice.selected { border-color: var(--accent); background: var(--accent-soft); }
.choice .ic { font-size: 26px; }
.choice b { display: block; font-size: 15.5px; }
.choice small { color: var(--ink-3); font-size: 13px; }
.choice input { display: none; }

/* Paketauswahl (Buchung) */
.pkg-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pkg-pick .pkg-card { cursor: pointer; }
.pkg-pick .pkg-card.selected { border-color: var(--accent); background: var(--accent-soft); box-shadow: var(--shadow-md); }
.pkg-pick .pkg-card input { display: none; }

/* Zusatzpakete */
.addon-list { display: grid; gap: 12px; }
.addon {
  display: flex; align-items: flex-start; gap: 14px;
  border: 1.5px solid var(--line-2); border-radius: var(--radius); padding: 16px 18px;
  cursor: pointer; transition: border-color .15s ease, background .15s ease;
}
.addon:hover { border-color: var(--accent); }
.addon.selected { border-color: var(--accent); background: var(--accent-soft); }
.addon.included { cursor: default; opacity: .85; background: var(--gold-soft); border-color: #e8d9ad; }
.addon .box {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
  border: 1.5px solid var(--line-2); background: #fff; margin-top: 1px;
  display: grid; place-items: center;
}
.addon.selected .box { background: var(--accent); border-color: var(--accent); }
.addon.selected .box::after { content: '\2713'; color: #fff; font-size: 13px; font-weight: 700; }
.addon.included .box { background: var(--gold); border-color: var(--gold); }
.addon.included .box::after { content: '\2713'; color: #fff; font-size: 13px; font-weight: 700; }
.addon input { display: none; }
.addon .a-main b { font-size: 15px; }
.addon .a-main p { font-size: 13.5px; color: var(--ink-2); margin-top: 2px; }
.addon .a-price { margin-left: auto; font-weight: 700; white-space: nowrap; }
.addon.included .a-price { color: var(--gold); font-size: 13px; }

/* Kalender */
.calendar {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 18px; max-width: 420px;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.cal-title { font-weight: 700; font-size: 16px; }
.cal-nav {
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line-2);
  background: #fff; cursor: pointer; display: grid; place-items: center; font-size: 16px;
}
.cal-nav:hover { border-color: var(--accent); color: var(--accent); }
.cal-nav[disabled] { opacity: .35; pointer-events: none; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-wd {
  text-align: center; font-size: 11.5px; font-weight: 600; color: var(--ink-3);
  padding-bottom: 4px;
}
.cal-day {
  aspect-ratio: 1; border: 1px solid transparent; border-radius: 9px;
  background: var(--bg-soft); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--ink); position: relative;
  transition: background .12s ease, border-color .12s ease;
}
.cal-day:hover { border-color: var(--accent); }
.cal-day.empty { background: transparent; cursor: default; }
.cal-day.disabled {
  background: transparent; color: var(--ink-3); cursor: not-allowed;
  text-decoration: line-through; opacity: .55;
}
.cal-day.disabled:hover { border-color: transparent; }
.cal-day.selected { background: var(--accent); color: #fff; }
.cal-day .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: 3px;
}
.cal-day.selected .dot { background: #fff; }
.cal-legend { display: flex; gap: 16px; margin-top: 12px; font-size: 12px; color: var(--ink-3); }
.cal-legend span { display: flex; align-items: center; gap: 6px; }
.cal-legend .lg-dot { width: 8px; height: 8px; border-radius: 50%; }

/* Zeitfenster */
.slot-list { display: grid; gap: 10px; margin-top: 6px; }
.slot {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px solid var(--line-2); border-radius: var(--radius); padding: 14px 18px;
  cursor: pointer; transition: border-color .15s ease, background .15s ease;
}
.slot:hover { border-color: var(--accent); }
.slot.selected { border-color: var(--accent); background: var(--accent-soft); }
.slot.taken { opacity: .5; cursor: not-allowed; background: var(--bg-soft); }
.slot.taken:hover { border-color: var(--line-2); }
.slot b { font-size: 15px; }
.slot small { color: var(--ink-2); }
.slot .s-state { margin-left: auto; font-size: 13px; font-weight: 600; }
.slot.selected .s-state { color: var(--accent); }
.slot.taken .s-state { color: var(--ink-3); }
.slot .radio {
  width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line-2);
}
.slot.selected .radio { border-color: var(--accent); border-width: 6px; }

/* Zusammenfassung (Sidebar) */
.summary {
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff;
  padding: 24px; position: sticky; top: 90px;
}
.summary h3 { font-size: 17px; margin-bottom: 16px; }
.summary-row {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 14px; padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.summary-row .lbl { color: var(--ink-2); }
.summary-row .val { font-weight: 600; text-align: right; }
.summary-row.muted .val { color: var(--ink-3); font-weight: 500; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 16px; padding-top: 14px; border-top: 2px solid var(--ink);
}
.summary-total .lbl { font-weight: 700; }
.summary-total .val { font-family: 'DM Serif Display', serif; font-size: 30px; }
.summary-note { font-size: 12px; color: var(--ink-3); margin-top: 12px; }
.summary-empty { color: var(--ink-3); font-size: 14px; }

.step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }

/* --- Danke-Seite ----------------------------------------------------------- */
.thanks-box { max-width: 600px; margin: 0 auto; text-align: center; }
.thanks-icon {
  width: 78px; height: 78px; border-radius: 50%; background: var(--ok-soft);
  display: grid; place-items: center; margin: 0 auto 24px;
}
.thanks-icon svg { width: 38px; height: 38px; stroke: var(--ok); }
.ref-chip {
  display: inline-block; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 22px; font-size: 18px; font-weight: 700;
  letter-spacing: .04em; margin: 10px 0 4px;
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 440px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .booking-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .pkg-grid, .pkg-pick, .feature-grid, .reviews { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .nav, .nav-actions .btn-show-desk { display: none; }
  .nav.open {
    display: flex; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 8px 24px 16px;
  }
  .nav.open a { padding: 13px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav.open .nav-mobile-cta {
    display: flex; margin-top: 14px; border-bottom: 0; color: #fff; width: 100%;
  }
  .menu-toggle { display: flex; }
  .hero { padding: 40px 0 60px; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .stat-bar .stat:nth-child(2) { border-right: 0; }
  .stat-bar .stat:nth-child(1), .stat-bar .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .pkg-grid, .pkg-pick, .feature-grid, .reviews, .gallery-grid, .choice-grid {
    grid-template-columns: 1fr;
  }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 44px 24px; }
  .hero-float { left: 12px; }
  .card { padding: 24px; }
  .bk-steps .bk-step span.t { display: none; }
  .vn-grid { grid-template-columns: 1fr; }
}

/* ===========================================================================
   Vorher / Nachher Slider
   =========================================================================== */
.vn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.vn-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.vn-item .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}

.vn-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--bg-soft);
}

.vn-layer {
  position: absolute;
  inset: 0;
}

.vn-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.vn-before {
  clip-path: inset(0 50% 0 0);
}

.vn-label {
  position: absolute;
  bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 30px;
  color: #fff;
  pointer-events: none;
  opacity: .92;
}
.vn-label-before { left: 10px;  background: rgba(30,30,40,.7); }
.vn-label-after  { right: 10px; background: rgba(91,75,214,.85); }

.vn-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: all;
}

.vn-line {
  width: 2px;
  flex: 1;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,.4);
}

.vn-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--accent);
  flex-shrink: 0;
}

.vn-circle svg { flex-shrink: 0; }

.vn-slider.placeholder {
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 13px;
}
