/* ============================================
   Mr. Autoglanz — Design Tokens & Base
============================================ */
:root {
  /* Colors */
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --primary-lighter: #f1ecfc;
  --primary-glow: rgba(124, 58, 237, 0.35);
  --bg: #ffffff;
  --bg-alt: #faf8fd;
  --bg-dark: #1a1625;
  --ink: #1c1a24;
  --ink-soft: #5f5b73;
  --ink-faint: #918da3;
  --border: #ebe7f5;
  --white: #ffffff;
  --success: #16a34a;
  --pink: #ec4899;
  --pink-glow: rgba(236, 72, 153, 0.35);

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.4rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(28, 26, 36, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 26, 36, 0.08);
  --shadow-lg: 0 20px 45px rgba(28, 26, 36, 0.10);
  --shadow-glow: 0 12px 40px var(--primary-glow);

  /* Layout */
  --container: 1200px;
  --container-narrow: 800px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1440px;
}

section { position: relative; }

.section-pad { padding: 6rem 0; }
@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }
}

.bg-alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-lighter);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 50px var(--primary-glow); }

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--primary-light);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.85rem; }

.btn-disabled {
  cursor: not-allowed;
  color: var(--ink-faint);
  border-color: var(--border);
  background: var(--bg-alt);
}
.btn-disabled:hover { transform: none; color: var(--ink-faint); border-color: var(--border); }

/* ============================================
   Header
============================================ */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(124, 58, 237, 0.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.site-header .container { max-width: none; }

@media (min-width: 901px) {
  .site-header .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .site-header .header-actions { margin-right: 1.5rem; }
}

.logo .logo-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.05rem;
  box-shadow: var(--shadow-glow);
}

.logo .logo-sub { color: var(--primary); }

.logo-img { height: 4.2rem; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(28, 26, 36, 0.18)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--primary-dark); }
.nav-links a.btn, .nav-links a.btn:hover { color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

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

@media (max-width: 900px) {
  .nav-links, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-header .container { height: 4.6rem; }
  .logo-img { height: 3.4rem; }

  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 4.6rem;
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .site-header.nav-open .header-cta-mobile {
    display: inline-flex;
    margin-top: 0.3rem;
  }
}

/* Handy: Logo mittig im Header */
@media (max-width: 600px) {
  .site-header .container { position: relative; justify-content: flex-end; }
  .site-header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ============================================
   Hero
============================================ */
.hero {
  padding: 9.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-lighter), var(--bg-alt));
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* video background only on mobile & tablet, see media query below */
}

@media (max-width: 1024px) {
  .hero-media video { display: block; }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 85% 8%, var(--primary-glow) 0%, transparent 60%),
    radial-gradient(45% 40% at 8% 90%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    rgba(255, 255, 255, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
}

.hero-badge .dot {
  width: 0.45rem; height: 0.45rem;
  border-radius: 50%;
  background: var(--success);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.hero-stats .stat span {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 600;
}

/* ============================================
   About
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  max-width: 220px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary-lighter), var(--bg-alt));
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-visual .placeholder-icon {
  color: var(--primary-light);
  opacity: 0.7;
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

.about-pillars {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pillar {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.pillar > div:last-child {
  flex: 1;
  min-width: 0;
}

.pillar-icon {
  flex-shrink: 0;
  width: 2.4rem; height: 2.4rem;
  border-radius: var(--radius-sm);
  background: var(--primary-lighter);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
}

.pillar h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.15rem; }
.pillar p { font-size: 0.85rem; color: var(--ink-faint); margin: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .about-pillars { grid-template-columns: 1fr; }
}

/* ============================================
   Features
============================================ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 260px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-glow);
}

.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

.tier-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-glow);
}

@media (max-width: 900px) {
  .feature-card { flex: 0 1 calc(50% - 0.75rem); }
}
@media (max-width: 600px) {
  .feature-card { flex: 0 1 100%; }
}

/* ============================================
   Pricing
============================================ */
.pricing-tabs-note {
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.pricing-group-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3.5rem 0 1.75rem;
}
.pricing-group-title:first-of-type { margin-top: 0; }

.pricing-group-title h3 {
  font-size: 1.4rem;
  font-weight: 800;
  white-space: nowrap;
}
.pricing-group-title .line {
  height: 1px;
  background: var(--border);
  flex: 1;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

[data-href] {
  position: relative;
  cursor: pointer;
}
[data-href] .btn {
  position: relative;
  z-index: 2;
}
.card-cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.price-card {
  background: var(--primary-lighter);
  border: 2px solid rgba(124, 58, 237, 0.45);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
}

/* Card selection (click card = mark it, only "Jetzt buchen" navigates) */
/* :hover variants repeated so a "stuck" mobile hover state never masks the pink ring */
.price-card.selected,
.price-card.selected:hover {
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.65), var(--shadow-lg);
}
.price-card.featured.selected,
.price-card.featured.selected:hover {
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.65), var(--shadow-glow);
}
.price-card.dark-card.selected,
.price-card.dark-card.selected:hover {
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.65), var(--shadow-glow);
}

.price-card .badge {
  position: absolute;
  top: -0.8rem; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.price-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.price-card .price-desc {
  color: var(--ink-faint);
  font-size: 0.85rem;
  margin-bottom: 1.4rem;
}

.price-single {
  margin-bottom: 1.5rem;
}

.price-single .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--ink);
}

.price-single .amount .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-faint);
  margin-left: 0.1rem;
}

.price-single .price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 0.3rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.price-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  font-weight: 700;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.price-table td {
  text-align: center;
  padding: 0.9rem 0.3rem;
  border-bottom: 1px dashed var(--border);
}

.price-table tr:last-child td { border-bottom: none; }

.price-table .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}
.price-table .amount .strike {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.price-table .currency { font-size: 0.7rem; font-weight: 600; color: var(--ink-faint); }

.price-card ul {
  margin-bottom: 1.75rem;
  flex: 1;
}

.price-card ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-bottom: 0.65rem;
  margin-bottom: 0.65rem;
  border-bottom: 1px dashed var(--border);
  overflow-wrap: break-word;
  min-width: 0;
}
.price-card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.price-card ul li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--primary);
}

/* Unified 5-up row: Basis, Komfort, Premium, Außenreinigung (coming soon), Premium Deal (coming soon) */
.price-cards.price-cards-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1150px) {
  .price-cards.price-cards-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .price-cards.price-cards-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .price-cards.price-cards-5 { grid-template-columns: minmax(0, 1fr); }
}

/* Preis-Karten: horizontales Swipe-Karussell mit Peek-Ansicht (wie Paket-Auswahl im Buchungsassistenten) */
@media (max-width: 600px) {
  .price-cards.price-cards-5 {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem 2rem 0;
    gap: 0.75rem;
    margin: -1.5rem -2rem 0;
    scrollbar-width: none;
  }
  .price-cards.price-cards-5::-webkit-scrollbar { display: none; }
  .price-cards.price-cards-5 .price-card {
    flex: 0 0 calc(100% - 4rem);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

.price-card.dark-card {
  background: linear-gradient(135deg, var(--bg-dark), #241b3a);
  border: 2px solid var(--pink);
  box-shadow: var(--shadow-glow), 0 0 0 2px rgba(236, 72, 153, 0.25);
}
.price-card.dark-card h4 { color: var(--white); }
.price-card.dark-card .price-desc { color: rgba(255,255,255,0.65); }
.price-card.dark-card .price-table th { color: rgba(255,255,255,0.5); }
.price-card.dark-card .price-table td { border-bottom-color: rgba(255,255,255,0.15); }
.price-card.dark-card .price-table .amount { color: var(--white); }
.price-card.dark-card .price-table .amount .strike { color: rgba(255,255,255,0.4); }
.price-card.dark-card .price-table .currency { color: rgba(255,255,255,0.5); }
.price-card.dark-card .price-single .amount { color: var(--white); }
.price-card.dark-card .price-single .amount .currency { color: rgba(255,255,255,0.5); }
.price-card.dark-card .price-single .price-note { color: rgba(255,255,255,0.6); }
.price-card.dark-card ul li { color: rgba(255,255,255,0.8); }
.price-card.dark-card ul li svg { color: var(--primary-light); }
.price-card.dark-card .tier-icon { background: linear-gradient(135deg, var(--pink), var(--primary)); box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35); }
.price-card.dark-card:hover { box-shadow: 0 16px 50px var(--primary-glow), 0 0 0 2px rgba(236, 72, 153, 0.25); }

.price-card.coming-soon { opacity: 0.75; }
.price-card.coming-soon:hover { transform: none; box-shadow: none; }
.price-card.dark-card.coming-soon:hover { box-shadow: var(--shadow-glow); }
.price-card .badge-soon { background: linear-gradient(135deg, var(--ink-faint), var(--ink-soft)); }
.coming-soon-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.price-card.dark-card .coming-soon-note { color: rgba(255,255,255,0.6); }

.save-badge {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #a3e635;
  background: rgba(163, 230, 53, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

/* Exterior single card */
.exterior-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 2.5rem;
  align-items: center;
}

.exterior-card .price-table { margin-bottom: 0; }

@media (max-width: 900px) {
  .price-cards { grid-template-columns: 1fr; }
  .exterior-card { grid-template-columns: 1fr; }
}

/* Combo / Premium Deal */
.combo-card {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--bg-dark), #241b3a);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.combo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 90% 0%, rgba(167,139,250,0.35), transparent 65%);
}

.combo-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 2.5rem;
  align-items: center;
}

.combo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.combo-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.9rem; color: var(--white); }
.combo-card p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; font-size: 0.95rem; }

.combo-table {
  width: 100%;
  border-collapse: collapse;
}
.combo-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.combo-table td {
  text-align: center;
  padding: 1.1rem 0.5rem;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.combo-table tr:last-child td { border-bottom: none; }
.combo-table .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
}
.combo-table .strike {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.combo-table .save {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #a3e635;
  background: rgba(163,230,53,0.12);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

@media (max-width: 900px) {
  .combo-card { padding: 2.2rem 1.6rem; }
  .combo-inner { grid-template-columns: 1fr; }
}

.pricing-notes {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pricing-note {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
}

.pricing-note .note-icon {
  flex-shrink: 0;
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--primary));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
}
.pricing-note .note-icon::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 55%);
}
.pricing-note .note-icon svg { position: relative; z-index: 1; }

.pricing-note h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.pricing-note p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 768px) {
  .pricing-notes { grid-template-columns: 1fr; }
}

/* ============================================
   Gallery (slider)
============================================ */
.gallery-slider {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.gallery-slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-slides::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.gallery-placeholder {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-lighter), var(--bg-alt));
  border: 1.5px dashed var(--primary-light);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary-dark);
  text-align: center;
  padding: 1rem;
}

.gallery-placeholder svg { opacity: 0.55; }
.gallery-placeholder span { font-size: 0.78rem; font-weight: 700; color: var(--ink-faint); }

.gallery-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--primary-light);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.gallery-arrow:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
}
.gallery-arrow-prev { left: -1.4rem; }
.gallery-arrow-next { right: -1.4rem; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.gallery-dots button {
  width: 0.55rem; height: 0.55rem;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.gallery-dots button.active {
  opacity: 1;
  background: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .gallery-placeholder { height: 260px; }
  .gallery-photo { height: 260px; }
  .gallery-arrow { width: 2.5rem; height: 2.5rem; }
  .gallery-arrow-prev { left: 0.4rem; }
  .gallery-arrow-next { right: 0.4rem; }
}

/* ============================================
   Gallery fullscreen button + Lightbox
============================================ */
.gallery-fullscreen-btn {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-md);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.gallery-fullscreen-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 16, 0.96);
  z-index: 999;
  display: none;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.open { display: flex; opacity: 1; }

.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  flex: 0 0 auto;
}
.lightbox-badge {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255,255,255,0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.lightbox-actions { display: flex; gap: 0.6rem; }
.lightbox-actions button {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-actions button:hover { background: rgba(255,255,255,0.24); }

.lightbox-stage {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  cursor: grab;
}
.lightbox-stage.zoomed { cursor: grab; }
.lightbox-stage:active { cursor: grabbing; }

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.24); }
.lightbox-nav-prev { left: 1rem; }
.lightbox-nav-next { right: 1rem; }

@media (max-width: 600px) {
  .lightbox-nav { width: 2.4rem; height: 2.4rem; }
  .lightbox-nav-prev { left: 0.4rem; }
  .lightbox-nav-next { right: 0.4rem; }
}

/* ============================================
   Social
============================================ */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.social-card {
  background: var(--white);
  border: 1.5px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.social-icon {
  width: 3.2rem; height: 3.2rem;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.social-icon.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.social-icon.tiktok { background: none; }
.social-icon.tiktok img { width: 100%; height: 100%; object-fit: contain; }

.social-card h4 { font-size: 1.05rem; font-weight: 700; }
.social-card p { font-size: 0.85rem; color: var(--ink-faint); margin: 0.15rem 0 0.9rem; }

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

/* ============================================
   Contact
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 2rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item .c-icon {
  width: 2.6rem; height: 2.6rem;
  border-radius: var(--radius-sm);
  background: var(--primary-lighter);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); font-weight: 700; margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { font-weight: 700; font-size: 1.02rem; }
.contact-item a:hover { color: var(--primary-dark); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-lighter);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 0.9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cta-note { margin-top: 2.5rem !important; }
  .contact-form { margin-top: -1.5rem; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
}

/* ============================================
   Final CTA
============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--bg-dark), #241b3a);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 50% 0%, rgba(167,139,250,0.35), transparent 70%);
}
.final-cta * { position: relative; }
.final-cta h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.9rem; }
.final-cta p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2rem; }
.final-cta .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-ghost { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: var(--white); }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* ============================================
   Footer
============================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-logo-img { height: 3.2rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   Legal pages
============================================ */
.legal-page { padding: 8.5rem 0 5rem; }
.legal-page h1 { font-size: 2rem; font-weight: 800; line-height: 1.35; margin-bottom: 0.5rem; overflow-wrap: break-word; }

@media (max-width: 420px) {
  .legal-page h1 { font-size: 1.65rem; }
}
.legal-page .updated { color: var(--ink-faint); font-size: 0.85rem; margin-bottom: 3rem; }
.legal-page h2 { font-size: 1.25rem; font-weight: 800; margin: 2.5rem 0 0.9rem; }
.legal-page h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 0.6rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin-bottom: 0.9rem; font-size: 0.96rem; }
.legal-page ul { padding-left: 1.3rem; list-style: disc; }
.legal-page a { color: var(--primary-dark); font-weight: 600; text-decoration: underline; }
.legal-page strong { color: var(--ink); }
.legal-page table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; }
.legal-page table th, .legal-page table td {
  text-align: left; padding: 0.6rem 0.8rem; border: 1px solid var(--border); font-size: 0.9rem;
}
.legal-page table th { background: var(--bg-alt); }

/* ============================================
   Reveal animation
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ============================================
   Booking Wizard
============================================ */
.booking-page {
  padding: 8.5rem 0 6rem;
  min-height: 80vh;
}

.booking-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.booking-head h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.booking-head p { color: var(--ink-soft); }

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.step-dot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-faint);
  cursor: not-allowed;
}
.step-dot.reachable { cursor: pointer; }
.step-dot .circle {
  width: 1.9rem; height: 1.9rem;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: all 0.25s ease;
}
.step-dot.reachable:hover .circle {
  border-color: var(--primary);
  transform: scale(1.08);
}
.step-dot.active .circle {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.step-dot.done .circle {
  background: var(--primary-lighter);
  border-color: var(--primary-light);
  color: var(--primary-dark);
}
.step-dot.active, .step-dot.done { color: var(--ink); }
.step-line {
  width: 2rem; height: 1.5px;
  background: var(--border);
}
@media (max-width: 700px) {
  .step-dot span.label { display: none; }
  .step-line { width: 1rem; }
}

/* Card */
.booking-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}
@media (max-width: 600px) {
  .booking-card { padding: 1.75rem; border-radius: var(--radius-lg); }
}

.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.booking-step h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.4rem; }
.booking-step > p.step-sub { color: var(--ink-soft); margin-bottom: 2rem; font-size: 0.95rem; }

/* Option grid (Paket / Fahrzeug) */
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.option-grid.pkg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.option-card {
  border: 2px solid rgba(124, 58, 237, 0.45);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--primary-lighter);
  position: relative;
}
.option-card:hover { border-color: var(--primary-light); transform: translateY(-2px); }

.option-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
}

.option-card .opt-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.8rem;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.25);
  position: relative;
  overflow: hidden;
}
.option-card .opt-icon::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 55%);
}
.option-card .opt-icon svg { position: relative; z-index: 1; }
.option-card[data-pkg="basis"] .opt-icon,
.option-card[data-pkg="komfort"] .opt-icon { background: linear-gradient(135deg, var(--primary-dark), #2e1065); }
.option-card[data-pkg="premium"] .opt-icon { background: linear-gradient(135deg, var(--primary-dark), var(--pink)); }
.option-card[data-pkg="aussen"] .opt-icon { background: linear-gradient(135deg, var(--pink), var(--primary)); }

.option-card.selected,
.option-card.selected:hover {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-glow), var(--shadow-lg);
}
.option-card.featured.selected,
.option-card.featured.selected:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--pink-glow), var(--shadow-glow);
}
.option-card .opt-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; overflow-wrap: break-word; }
.option-card .opt-price { color: var(--primary-dark); font-weight: 800; font-size: 1.05rem; }
.option-card .opt-price .strike {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.option-card .opt-desc { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.2rem; }
.option-card .selected-tag {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-glow);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}
.option-card.dark-card .selected-tag { background: rgba(236,72,153,0.25); color: var(--white); }
.option-card .opt-badge {
  position: absolute; top: -0.6rem; right: 0.8rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.option-card.dark-card {
  background: linear-gradient(135deg, var(--bg-dark), #241b3a);
  border: 2px solid var(--pink);
  box-shadow: var(--shadow-glow), 0 0 0 2px rgba(236, 72, 153, 0.25);
}
.option-card.dark-card:hover { box-shadow: 0 16px 50px var(--primary-glow), 0 0 0 2px rgba(236, 72, 153, 0.25); }
.option-card.dark-card.selected {
  background: linear-gradient(135deg, var(--bg-dark), #241b3a);
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.65), var(--shadow-glow);
}
.option-card.dark-card .opt-icon { background: linear-gradient(135deg, var(--pink), var(--primary)); box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35); }
.option-card.dark-card .opt-name { color: var(--white); }
.option-card.dark-card .opt-desc { color: rgba(255,255,255,0.65); }
.option-card.dark-card .opt-price { color: var(--white); }
.option-card.dark-card .opt-price .strike { color: rgba(255,255,255,0.45); }

@media (max-width: 600px) {
  .option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Paket-Auswahl: horizontales Swipe-Karussell mit Peek-Ansicht */
  .option-grid.pkg-grid {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem 2rem 0;
    gap: 0.75rem;
    margin: -1.5rem -2rem 0;
    scrollbar-width: none;
  }
  .option-grid.pkg-grid::-webkit-scrollbar { display: none; }
  .option-grid.pkg-grid .option-card {
    flex: 0 0 calc(100% - 4rem);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

/* Fragen (yes/no) */
.question-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 0.1rem 1.1rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.question-row p { font-weight: 600; font-size: 0.95rem; margin: 0; }
.yn-toggle { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-full); overflow: hidden; flex-shrink: 0; }
.yn-toggle button {
  padding: 0.5rem 1.1rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-faint);
  background: var(--white);
  transition: all 0.15s ease;
}
.yn-toggle button.active-yes,
.yn-toggle button.active-no {
  background: var(--primary);
  color: var(--white);
}

/* Price bar */
.price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.price-bar .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); font-weight: 700; }
.price-bar .value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--primary-light); }
.price-bar .hint { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* Summary (Kontakt step) */
.summary-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.summary-label svg {
  flex-shrink: 0;
  width: 1.3rem; height: 1.3rem;
  padding: 0.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}
.booking-summary {
  border: 1.5px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2rem;
  background: var(--primary-lighter);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child { color: var(--ink-faint); }
.summary-row span:last-child { font-weight: 700; }

/* Nav buttons */
.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}
.booking-nav .spacer { flex: 1; }
.booking-nav button[type="submit"] {
  padding: 0.65rem 1.3rem;
  font-size: 0.85rem;
  margin-right: 1.5rem;
}

.booking-success {
  text-align: center;
  padding: 2rem 0;
}
.booking-success .success-icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--primary-lighter);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.booking-success h2 { margin-bottom: 0.6rem; }
.booking-success p { color: var(--ink-soft); margin-bottom: 1.5rem; }

.field-error {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: -0.9rem;
  margin-bottom: 1rem;
  display: none;
}
.field-error.visible { display: block; }
