/* === ProDataStudio – Dark Data Studio Theme === */

/* 1) Design Tokens */
:root {
  /* Brand */
  --brand: #5b7bff;
  --brand-accent: #bf63ff;

  /* Surface & Background */
  --bg: radial-gradient(circle at 20% 20%, #121b34 0%, #050a17 55%, #050713 100%);
  --surface: rgba(20, 28, 48, 0.88);
  --surface-alt: rgba(15, 23, 42, 0.72);
  --elevated: rgba(9, 13, 24, 0.85);

  /* Text */
  --text: #f2f6ff;
  --text-muted: rgba(202, 210, 230, 0.7);

  /* Lines */
  --border: rgba(94, 115, 168, 0.35);

  /* States */
  --ok: #20dc82;
  --err: #ff5f6d;
  --warn: #f7b944;

  /* Radii & shadow */
  --radius: 18px;
  --shadow-card: 0 18px 50px rgba(6, 10, 24, 0.45);
  --shadow-card-soft: 0 10px 40px rgba(20, 30, 58, 0.35);

  /* Typography */
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  --h1: clamp(2.5rem, 3vw, 3.25rem);
  --h2: clamp(2rem, 2.5vw, 2.4rem);
  --h3: clamp(1.35rem, 1.9vw, 1.6rem);
}

/* 2) Global */
html,
body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: -100px;
  pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(91, 123, 255, 0.28), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(191, 99, 255, 0.22), transparent 50%);
  filter: blur(60px);
  opacity: 0.9;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(27, 36, 63, 0.35), rgba(7, 11, 20, 0.85));
  z-index: -3;
}
a {
  color: var(--brand-accent);
}
a:hover {
  opacity: 0.9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* 3) Header/Nav – Glassy, Sticky, Modern */
:root {
  --nav-h: 72px; /* konsistente Höhe */
  --nav-bg: rgba(
    17,
    24,
    39,
    0.55
  ); /* Glas-Hintergrund (auf deinem Dark Theme) */
  --nav-border: rgba(148, 163, 184, 0.18);
  --nav-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Sticky Header mit Glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: var(--nav-shadow);
}

/* zarte „Hairline“ unten wie bei iOS */
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.45),
    transparent
  );
  opacity: 0.6;
}

/* Innenlayout: nie zusammenquetschen */
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* Brand/Logo links */
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1px;
}
.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--brand-accent);
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.18),
    0 0 18px rgba(139, 92, 246, 0.45);
}

/* Navigation rechts neben Brand */
.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem; /* kompakt auf Desktop */
}

/* Links mit animierter Underline */
/* Header Links – clean, ohne Underline */
.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.7rem;
  color: var(--text);
  opacity: 0.86;
  border-radius: 10px;
  transition: opacity 0.18s ease, background 0.18s ease, transform 0.18s ease;
  text-decoration: none; /* deaktiviert Unterstreichung */
}

.nav-links a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
}

/* Entfernte Underline-Pseudo-Elemente */
.nav-links a::after {
  display: none;
}

.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

/* Call-to-Action rechts */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.25rem;
}
.nav-cta .btn {
  height: 40px;
  padding: 0 0.9rem;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.28);
}
.nav-cta .btn-outline {
  border-color: var(--nav-border);
}

/* Responsive Navigation */
.nav-inner {
  position: relative;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--nav-border);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  transition: background 0.18s ease, border-color 0.18s ease;
  color: inherit;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-backdrop {
  display: none;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(42deg);
}
.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-42deg);
}

@media (max-width: 940px) {
  :root {
    --nav-h: 64px;
  }

  .site-header .container {
    gap: 0.75rem;
  }

  .nav-shell {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem 1.5rem 2.25rem;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 20px 60px rgba(5, 9, 20, 0.45);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }

  .site-header.nav-open .nav-shell {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .nav-links a {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-size: 1.025rem;
    justify-content: flex-start;
  }

  .nav-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-left: 0;
  }

  .nav-cta .btn,
  .nav-cta form {
    width: 100%;
  }

  .nav-cta .btn {
    justify-content: center;
    height: 48px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-backdrop {
    display: none;
  }

  .site-header.nav-open .nav-backdrop {
    display: block;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(3, 6, 14, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

/* 4) Sections & Cards */
.hero {
  background: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.15),
    rgba(30, 64, 175, 0.08) 40%,
    transparent 100%
  );
}
.section {
  padding: 4rem 0;
}

.stat-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.stat-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(160deg, rgba(91, 123, 255, 0.12), rgba(12, 18, 30, 0.85));
  border: 1px solid rgba(94, 115, 168, 0.28);
  box-shadow: var(--shadow-card-soft);
  display: grid;
  gap: 0.5rem;
}
.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(191, 99, 255, 0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}
.stat-card__label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(202, 210, 230, 0.65);
}
.stat-card__value {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.stat-card__hint {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.stat-card__link {
  color: rgba(203, 219, 255, 0.9);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.stat-card__link::after {
  content: "→";
  font-size: 0.9em;
  opacity: 0.7;
}

.card {
  position: relative;
  background: var(--surface);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(94, 115, 168, 0.28);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -140% 40% 45% -40%;
  background: radial-gradient(circle, rgba(91, 123, 255, 0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(191, 99, 255, 0.14), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.card > * {
  position: relative;
  z-index: 1;
}
.card--flat {
  box-shadow: var(--shadow-card-soft);
  border: 1px solid rgba(94, 115, 168, 0.22);
  background: var(--surface-alt);
}
.card__body {
  padding: clamp(1.35rem, 3vw, 1.85rem);
}

/* 5) Typography helpers */
.h1 {
  font-size: var(--h1);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: var(--h2);
  line-height: 1.15;
  font-weight: 700;
}
.h3 {
  font-size: var(--h3);
  line-height: 1.25;
  font-weight: 600;
}
.text-muted {
  color: var(--text-muted);
}

/* 6) Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 0.95rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--brand);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}
.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

/* 7) Inputs */
.input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  background: rgba(11, 18, 32, 0.95);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(0.65rem, 1.6vw, 0.9rem) clamp(0.8rem, 2vw, 1.1rem);
  outline: none;
  line-height: 1.45;
  font-size: clamp(0.95rem, 0.4vw + 0.9rem, 1.05rem);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    transform 0.2s ease;
}
.input {
  min-height: 2.75rem;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.input::placeholder,
textarea::placeholder {
  color: #6b7280;
}
.input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand-accent);
  background: rgba(18, 27, 46, 0.98);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
  transform: translateY(-1px);
}
/* 8) Badges & Table */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(91, 123, 255, 0.16);
  color: rgba(221, 227, 255, 0.92);
  border: 1px solid rgba(91, 123, 255, 0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--ok {
  background: rgba(32, 220, 130, 0.14);
  color: #6ef5b5;
  border-color: rgba(32, 220, 130, 0.3);
}
.badge--err {
  background: rgba(255, 95, 109, 0.14);
  color: #ff9aa6;
  border-color: rgba(255, 95, 109, 0.32);
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(12, 18, 30, 0.75);
  border: 1px solid rgba(94, 115, 168, 0.25);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}
.table thead {
  background: linear-gradient(90deg, rgba(91, 123, 255, 0.25), rgba(12, 18, 30, 0.9));
}
.table th,
.table td {
  padding: 0.9rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(94, 115, 168, 0.2);
  font-size: 0.92rem;
}
.table thead th {
  color: rgba(215, 222, 245, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.table tbody tr:last-child td {
  border-bottom: none;
}
.table tbody tr:hover {
  background: rgba(91, 123, 255, 0.08);
}
.table td .btn,
.table td .input {
  font-size: 0.9rem;
}

/* 9) Utilities */
.shadow-card {
  box-shadow: var(--shadow-card);
}
.rounded-xl {
  border-radius: var(--radius);
}
.bg-accent-soft {
  background: rgba(139, 92, 246, 0.12);
}
.bg-brand-soft {
  background: rgba(30, 64, 175, 0.12);
}

/* 10) Header logo lockup (optional) */
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-accent);
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.18);
}
/* Basislesbarkeit & vertikale Abstände */
html {
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem 0;
}
p,
ul,
ol {
  margin: 0 0 1rem 0;
}

/* Section-Spacings */
.section {
  padding: 5rem 0;
}
.section--sm {
  padding: 3rem 0;
}
.section--lg {
  padding: 7rem 0;
}

/* Container mit Luft */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
/* Flex & Grid */
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

.grid {
  display: grid;
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Spacing */
.mt-0 {
  margin-top: 0;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}

/* Width & Text */
.w-full {
  width: 100%;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* Stacks: vertikale Abstände zwischen Kindern */
.stack > * + * {
  margin-top: 1rem;
}
.stack-xs > * + * {
  margin-top: 0.35rem;
}
.stack-sm > * + * {
  margin-top: 0.5rem;
}
.stack-lg > * + * {
  margin-top: 1.5rem;
}
/* Button Rows */
.btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-row.center {
  justify-content: center;
}
.btn-block {
  width: 100%;
}
/* Cards mit mehr Luft */
.card__body {
  padding: clamp(1.35rem, 3vw, 1.85rem);
}
.card .card__header {
  padding: 1rem clamp(1.35rem, 3vw, 1.85rem);
  border-bottom: 1px solid rgba(94, 115, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Form-Gruppen */
.form {
  display: grid;
  gap: 1rem;
}

/* Booking Widgets */
.booking-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      145deg,
      rgba(30, 64, 175, 0.35),
      rgba(15, 23, 42, 0.75)
    ),
    var(--surface);
  border-color: rgba(139, 92, 246, 0.28);
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: -40% 40% 40% -40%;
  background: radial-gradient(
    circle at top left,
    rgba(139, 92, 246, 0.45),
    transparent 55%
  );
  opacity: 0.6;
  pointer-events: none;
}
.booking-card .card__body {
  position: relative;
  z-index: 1;
}
.booking-card__head .badge {
  margin-left: auto;
}
.badge--accent {
  background: rgba(91, 123, 255, 0.2);
  border-color: rgba(91, 123, 255, 0.38);
  color: rgba(224, 230, 255, 0.95);
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.booking-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
}
.booking-week-nav > *:first-child,
.booking-week-nav > *:last-child {
  flex-shrink: 0;
}
.booking-week-label {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
}
.booking-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.82);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.booking-nav-btn:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
  color: #cbd5f5;
}
.booking-nav-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.booking-nav-btn.is-active {
  background: linear-gradient(135deg, var(--brand), rgba(139, 92, 246, 0.85));
  border-color: rgba(255, 255, 255, 0.25);
  color: #e0e7ff;
  box-shadow: 0 12px 25px rgba(30, 64, 175, 0.35);
}
.booking-days-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 840px) {
  .booking-days-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
.booking-week-nav + .booking-days-grid {
  margin-top: 0.5rem;
}
.booking-day {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 16px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.booking-day__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.booking-day__weekday {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.65);
}
.booking-day__date {
  font-size: 1.05rem;
  font-weight: 600;
}
.booking-day__badge {
  font-size: 0.85rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(30, 41, 59, 0.85);
  color: rgba(226, 232, 240, 0.72);
}
.booking-day__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 0.25rem;
}
.booking-day__slots::-webkit-scrollbar {
  width: 6px;
}
.booking-day__slots::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.45);
}
.booking-slot {
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.booking-slot input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.booking-slot__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.08);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.booking-slot:hover .booking-slot__time {
  border-color: rgba(139, 92, 246, 0.55);
  background: rgba(139, 92, 246, 0.18);
  transform: translateY(-1px);
}
.booking-slot input:checked + .booking-slot__time {
  background: linear-gradient(135deg, var(--brand), rgba(139, 92, 246, 0.85));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 25px rgba(30, 64, 175, 0.35);
  transform: translateY(-2px);
}
.booking-slot input:focus-visible + .booking-slot__time {
  outline: 3px solid rgba(139, 92, 246, 0.45);
  outline-offset: 3px;
}
.booking-inputs .input,
.booking-inputs textarea {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 14px;
}
.booking-actions {
  margin-top: 0.5rem;
}
.booking-refresh {
  color: rgba(148, 163, 184, 0.9);
  text-decoration: none;
  font-weight: 600;
}
.booking-refresh:hover {
  color: #e0e7ff;
}
.booking-empty {
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px dashed rgba(148, 163, 184, 0.35);
}
.booking-form-empty {
  grid-area: form;
}
@media (max-width: 700px) {
  .booking-week-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-week-label {
    text-align: center;
  }
  .booking-nav-btn {
    justify-content: center;
  }
}

.form-2col {
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .form-2col {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group > label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

/* Header mehr Raum */
.site-header .container {
  height: 72px;
}
nav.nav a {
  padding: 0.25rem 0.25rem;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline__item {
  position: relative;
  padding-left: 1.5rem;
  margin: var(--space-3) 0;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.4rem;
  bottom: -1.2rem;
  width: 2px;
  background: var(--border);
}
.timeline__item:last-child::before {
  display: none;
}
.timeline__dot {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}
.timeline__content {
  position: relative;
}
.card--elevated {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.feature-list__item {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.5rem;
  align-items: start;
}
.checkmark {
  display: inline-grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 6px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
  font-size: 0.85rem;
}
.table-responsive {
  overflow-x: auto;
}
.text-center {
  text-align: center;
}
/* --- Layout --- */
.pricing-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}
.headline-xl {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.subtext {
  font-size: 1.1rem;
  color: #9ca3af;
}
/* --- Layout --- */
.pricing-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}
.headline-xl {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.subtext {
  font-size: 1.1rem;
  color: #9ca3af;
}

/* --- Pricing Deck & Cards --- */
.pricing-hero {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-hero .display {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin: 0;
}
.pricing-hero .lead {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.plan-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95));
  padding: 1.75rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 24px 45px rgba(124, 58, 237, 0.35);
}
.plan-card.plan-featured {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 24px 55px rgba(139, 92, 246, 0.38);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.16), rgba(15, 23, 42, 0.92));
}

.plan-card .plan-head {
  margin-bottom: 1.25rem;
}
.plan-card .plan-name {
  font-size: 1.35rem;
  font-weight: 700;
}
.plan-card .plan-sub {
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.45;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.plan-price .currency {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.plan-price .value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
}
.plan-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.plan-features .check {
  color: #22d3ee;
}
.plan-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: auto;
}
.plan-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
}

.pricing-empty {
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
  padding: 2rem;
}

.order-wizard__crumbs {
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}
.order-wizard {
  display: grid;
  gap: 1.75rem;
}
.order-wizard__hero {
  margin-bottom: 2.25rem;
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
}
.order-wizard__hero .display {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin: 0;
  font-weight: 800;
}
.order-wizard__hero .lead {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin: 0;
}
.pricing-grid--compact {
  gap: 1.25rem;
}

.order-progress {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0 0 2.5rem;
  padding: 0;
}
.order-progress__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.order-progress__index {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.85);
  font-weight: 600;
  color: var(--text-muted);
}
.order-progress__item--active .order-progress__index {
  border-color: rgba(139, 92, 246, 0.55);
  background: rgba(139, 92, 246, 0.18);
  color: var(--text);
}
.order-progress__item--active {
  color: var(--text);
}
.order-progress__item--done .order-progress__index {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(34, 211, 238, 0.18);
  color: #22d3ee;
}
.order-progress__item--done {
  color: var(--text);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.order-main {
  display: grid;
  gap: 1.8rem;
}
.order-aside {
  display: grid;
  gap: 1.4rem;
}
.order-aside .plan-card {
  padding: 1.35rem 1.4rem;
}
.order-summary {
  display: grid;
  gap: 1.4rem;
  padding: 1.6rem;
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(30, 27, 75, 0.85), rgba(8, 47, 73, 0.75));
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.4);
}
.order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
}
.order-summary__total-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(226, 232, 240, 0.78);
}
.order-summary__total-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.order-summary__total-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.order-summary__total-amount strong {
  font-size: 1.4rem;
  font-weight: 800;
}
.order-summary__hint {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.75);
  text-align: right;
}
.order-summary__header {
  display: grid;
  gap: 0.4rem;
}
.order-summary__header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.order-summary__header p {
  margin: 0;
  font-size: 0.92rem;
}
.plan-card.plan-card--summary {
  padding: 1.6rem;
}
.plan-price--summary {
  margin-bottom: 0.65rem;
}
.plan-card.plan-card--compact {
  padding: 1.4rem 1.45rem;
}
.plan-card {
  position: relative;
  cursor: pointer;
}
.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}
.plan-card.is-selected::after {
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 16px 32px rgba(139, 92, 246, 0.22);
}
.plan-card input:focus-visible + .plan-head {
  outline: 2px solid rgba(139, 92, 246, 0.65);
  outline-offset: 6px;
}
.order-summary-card {
  padding: 1.4rem 1.5rem;
  background: rgba(15, 23, 42, 0.78);
  border-radius: 18px;
  display: grid;
  gap: 0.75rem;
}
.order-summary-card strong {
  font-size: 0.95rem;
}
.order-summary-card .feature-list {
  gap: 0.45rem;
}
.order-summary-card .feature-list__item {
  align-items: flex-start;
}
.plan-features--summary {
  margin-top: 0.85rem;
  gap: 0.45rem;
}
.order-total-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  font-size: 0.95rem;
}
.order-total-inline span {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.order-total-inline strong {
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .order-progress {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .order-layout {
    grid-template-columns: 1fr;
  }
  .order-aside {
    order: -1;
    gap: 1.25rem;
  }
  .order-wizard__hero {
    margin-bottom: 1.75rem;
  }
  .order-layout {
    gap: 1.75rem;
  }
  .order-summary__total {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .order-summary__total-amount {
    align-items: flex-start;
  }
}

/* =========================
   Header – Polishing
   ========================= */

/* Höhe als Variable, damit Sections oben genug Platz haben (optional nutzen) */
/* Nav-Links: ruhig, klar, mit animiertem Underline */
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-muted);
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* Underline-Animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-links a:hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}

/* Aktiver Link (class="active" am <a>) */
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* CTA rechts etwas kompakter */
.nav-cta .btn {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(76, 53, 245, 0.32);
}
.nav-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
}

/* Mobile Feinschliff */
@media (max-width: 720px) {
  .nav-inner {
    gap: 10px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links a {
    padding: 8px 10px;
  }
  .nav-links a::after {
    left: 10px;
    right: 10px;
    bottom: 4px;
  }
}
/* === Remove ALL underlines everywhere (Header, Buttons, Links) === */
a,
a:visited,
a:hover,
a:focus,
a:active,
.nav-links a,
.btn,
.btn:hover,
.btn:focus {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

/* Falls irgendwo <u> oder .underline verwendet wird */
u,
.underline {
  text-decoration: none !important;
}

/* Safari/WebKit-Fallback */
a::-webkit-any-link {
  text-decoration: none !important;
}

/* ---------- Form Layout & Utilities ---------- */
.form-shell {
  width: min(100%, 720px);
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.form-shell.wide {
  width: min(100%, 960px);
}
.form-card {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  padding: clamp(1.75rem, 4vw, 2.85rem);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.55);
}
.form-head {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: center;
}
.form-head--left {
  text-align: left;
  align-items: flex-start;
}
.form-head .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}
.form-card h1,
.form-card .h2 {
  margin: 0;
}
.form-body {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.form-stack {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
}
.form-stack--sm {
  gap: clamp(0.55rem, 1.6vw, 0.85rem);
}
.form-grid {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
}
.form-grid.split {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.form-grid .input,
.form-grid textarea,
.form-grid select {
  width: 100%;
}
.form-grid > div,
.form-group,
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field--compact {
  gap: 0.3rem;
}
.form-grid > div > label,
.form-group > label,
.field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.9);
}
.form-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
  align-items: center;
}
.form-actions .btn {
  min-width: 160px;
  flex: 0 0 auto;
}
.form-actions--between {
  justify-content: space-between;
}
.form-actions--start {
  justify-content: flex-start;
}
.form-actions--stretch {
  justify-content: stretch;
}
.form-shell .form-card + .form-card {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}
.form-footnote {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}
.field-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -0.15rem;
}
.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.field-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--brand);
  flex-shrink: 0;
}
.field-checkbox--inline {
  align-items: center;
  line-height: 1.2;
}
.field-checkbox--inline input {
  margin-top: 0;
}
.form-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-meta > * {
  flex-shrink: 0;
}
.form-subsection {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  padding: clamp(1rem, 3vw, 1.6rem);
  display: grid;
  gap: clamp(0.75rem, 1.6vw, 1.15rem);
}
.form-subsection__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.notice {
  border-radius: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-muted);
}
.notice strong {
  color: var(--text);
}
.notice.ok {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(22, 163, 74, 0.12);
  color: #4ade80;
}
.notice.err {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.12);
  color: #fca5a5;
}
.link {
  color: var(--brand-accent);
  font-weight: 500;
  transition: opacity 0.18s ease;
}
.link:hover {
  opacity: 0.85;
}

/* ---------- Responsive refinements ---------- */
@media (max-width: 960px) {
  .section {
    padding: 3.5rem 0;
  }
  .plan-card {
    padding: 1.5rem;
  }
}
@media (max-width: 720px) {
  .container {
    padding: 0 1rem;
  }
  .pricing-hero .display {
    font-size: 2.2rem;
  }
  .plan-card {
    border-radius: 16px;
  }
  .form-actions {
    justify-content: stretch;
  }
  .form-actions .btn {
    flex: 1 1 auto;
    min-width: unset;
  }
}
@media (max-width: 540px) {
  .section {
    padding: 3rem 0;
  }
  .pricing-hero {
    text-align: left;
  }
  .pricing-grid {
    gap: 1.25rem;
  }
  .plan-card {
    padding: 1.35rem;
  }
  .form-card {
    padding: clamp(1.4rem, 5vw, 1.65rem);
    border-radius: 18px;
  }
}

.form-group select,
.form-group .input,
.form-group textarea,
.form-grid.split select,
.form-grid.split .input,
.form-grid.split textarea {
  width: 100%;
}

.table form {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.table form select {
  min-width: 180px;
}
@media (max-width: 640px) {
  .table form {
    width: 100%;
    justify-content: flex-end;
  }
  .table form select {
    width: 100%;
  }
}

.btn-outline.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

/* --- Registration Wizard --- */
.card--wizard {
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(139, 92, 246, 0.18);
}
.reg-progress {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}
.wizard-progress {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.wizard-progress__bar {
  width: 100%;
  height: 10px;
  background: rgba(30, 41, 59, 0.7);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
}
.wizard-progress__bar-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--brand), rgba(139, 92, 246, 0.85));
  transition: width 0.3s ease;
}
.wizard-progress__info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 600;
}
.wizard-progress__count {
  font-size: 0.9rem;
}
.wizard-progress__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(148, 163, 184, 0.7);
}
.reg-progress__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.75);
  color: rgba(148, 163, 184, 0.85);
  transition: all 0.2s ease;
}
.reg-progress__item.is-active {
  border-color: rgba(139, 92, 246, 0.45);
  color: rgba(226, 232, 240, 0.95);
}
.reg-progress__item.is-current {
  background: linear-gradient(135deg, var(--brand), rgba(139, 92, 246, 0.8));
  color: #f8fafc;
  box-shadow: 0 12px 24px rgba(30, 64, 175, 0.35);
}
.reg-progress__index {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.reg-progress__label {
  font-weight: 600;
  font-size: 0.95rem;
}
.review-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.review-card {
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.review-list {
  margin: 0 0 1rem 0;
  padding: 0;
}
.review-list dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.7);
}
.review-list dd {
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}
.card--wizard .form .input,
.card--wizard .form textarea,
.card--wizard .form select {
  width: 100%;
}
.btn.btn-sm {
  padding: 0.35rem 0.75rem;
  height: auto;
  font-size: 0.85rem;
}

/* Booking Layout 2.0 */
.booking-shell {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 960px) {
  .booking-shell {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}
@media (max-width: 959px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }
}
.booking-shell > * {
  min-width: 0;
}
.booking-meta {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.booking-meta li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.booking-meta__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  color: rgba(148, 163, 184, 0.9);
}
.booking-sidebar .card__body {
  gap: clamp(1.1rem, 3vw, 1.6rem);
}
.booking-main {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
.booking-calendar-card {
  background: linear-gradient(140deg, rgba(25, 32, 54, 0.85), rgba(9, 14, 24, 0.95));
  border: 1px solid rgba(94, 115, 168, 0.32);
}
.booking-main-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "calendar"
    "slots"
    "form";
}
@media (min-width: 1024px) {
  .booking-main-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    grid-template-areas:
      "calendar slots"
      "form form";
  }
}
.booking-calendar {
  grid-area: calendar;
}
.booking-slots {
  grid-area: slots;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-form {
  grid-area: form;
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}
.booking-form .booking-actions {
  grid-column: 1 / -1;
}
.booking-duration-toggle {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.booking-duration-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 115, 168, 0.35);
  background: rgba(17, 24, 39, 0.75);
  text-decoration: none;
  color: rgba(226, 232, 240, 0.82);
  font-weight: 600;
  transition: all 0.2s ease;
}
.booking-duration-btn:hover {
  border-color: rgba(91, 123, 255, 0.55);
  color: #e2e7ff;
}
.booking-duration-btn.is-active {
  background: linear-gradient(140deg, rgba(91, 123, 255, 0.95), rgba(191, 99, 255, 0.85));
  border-color: rgba(255, 255, 255, 0.35);
  color: #f8fafc;
  box-shadow: 0 16px 34px rgba(91, 123, 255, 0.35);
}
.booking-calendar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.booking-calendar__nav-group {
  display: inline-flex;
  gap: 0.5rem;
}
.booking-calendar__month {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.booking-calendar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(30, 41, 59, 0.88);
  color: rgba(226, 232, 240, 0.85);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.booking-calendar__nav:hover {
  border-color: rgba(139, 92, 246, 0.45);
  color: #e0e7ff;
}
.booking-calendar__nav.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.booking-calendar__weekdays,
.booking-calendar__row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}
.booking-calendar__weekday {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(148, 163, 184, 0.6);
}
.booking-calendar__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(94, 115, 168, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.booking-calendar__day:hover {
  border-color: rgba(91, 123, 255, 0.45);
  color: #e2e7ff;
  box-shadow: 0 18px 35px rgba(12, 20, 38, 0.35);
}
.booking-calendar__day.is-selected {
  border-color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(140deg, rgba(91, 123, 255, 0.95), rgba(191, 99, 255, 0.85));
  color: #fff;
  box-shadow: 0 20px 40px rgba(91, 123, 255, 0.35);
}
.booking-calendar__day.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.booking-slots {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booking-slots__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.booking-slots__date {
  font-weight: 700;
  font-size: 1.05rem;
}
.booking-slots__meta {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.booking-slots__status {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
}
.booking-slots__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 0.25rem;
}
.booking-slots__list::-webkit-scrollbar {
  width: 6px;
}
.booking-slots__list::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background: rgba(91, 123, 255, 0.45);
}
.booking-slot-option {
  position: relative;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(94, 115, 168, 0.3);
  background: rgba(12, 18, 32, 0.7);
  color: var(--text);
  transition: all 0.2s ease;
}
.booking-slot-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.booking-slot-option__time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.booking-slot-option:hover {
  border-color: rgba(91, 123, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(12, 20, 38, 0.35);
}
.booking-slot-option input:checked + .booking-slot-option__time,
.booking-slot-option input:checked ~ .booking-slot-option__time {
  background: linear-gradient(140deg, rgba(91, 123, 255, 0.95), rgba(191, 99, 255, 0.85));
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(91, 123, 255, 0.3);
}
.booking-slots__form {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.65rem);
}
.booking-form-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(12, 18, 30, 0.65);
  border-radius: 18px;
  border: 1px solid rgba(94, 115, 168, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.booking-form-fields--split {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 900px) {
  .booking-form-fields--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.booking-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.booking-actions .btn {
  min-width: 180px;
}
.booking-refresh {
  color: rgba(148, 163, 184, 0.9);
  text-decoration: none;
  font-weight: 600;
}
.booking-refresh:hover {
  color: #e0e7ff;
}
.booking-empty {
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px dashed rgba(148, 163, 184, 0.35);
}
