:root {
  --primary: #cd1a1d;
  --primary-dark: #a81518;
  --accent: #00c896;
  --dark: #0a1628;
  --dark-soft: #1a2942;
  --text: #334155;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 110;
  pointer-events: none;
  background: rgba(205, 26, 29, 0.1);
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  display: block;
  max-height: 2.5rem;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(205, 26, 29, 0.35);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.header-over-promo,
.header-over-promo.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.header-over-promo .logo,
.header-over-promo.scrolled .logo {
  color: var(--primary);
}

.header-over-promo .nav-links a,
.header-over-promo.scrolled .nav-links a {
  color: var(--text);
}

.header-over-promo .nav-links a:hover,
.header-over-promo.scrolled .nav-links a:hover {
  color: var(--primary);
}

.header-over-promo .nav-toggle span,
.header-over-promo.scrolled .nav-toggle span {
  background: var(--dark);
}

.header-over-promo .nav-cta,
.header-over-promo.scrolled .nav-cta {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Promo Hero Banner */
.hero-promo {
  --hero-promo-bg: #cb242a;
  --hero-promo-panel: #132137;
  background: var(--hero-promo-bg);
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  overflow: hidden;
  overflow-x: clip;
  max-width: 100%;
}

.hero-promo-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: min(62vh, 560px);
}

.hero-promo-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 2.5rem clamp(1.25rem, 3.5vw, 2.5rem) 2.5rem clamp(2rem, 6vw, 4.5rem);
  z-index: 2;
  background: var(--hero-promo-panel);
  min-height: 100%;
}

.hero-promo-content {
  color: #fff;
  padding: 0;
  z-index: 1;
  width: min(100%, 520px);
  text-align: left;
}

.hero-promo-region {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-promo-region-icon {
  font-size: 0.85rem;
  line-height: 1;
}

.hero-promo-headline {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-promo-headline-accent {
  display: inline;
  box-shadow: inset 0 -0.14em 0 0 var(--primary);
}

.hero-promo-lead {
  margin: 0 0 1.35rem;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.hero-promo-lead strong {
  color: #fff;
  font-weight: 700;
}

.hero-promo-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-promo-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.hero-promo-points li::before {
  content: '';
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5 6.5 11.5 12.5 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8rem;
}

.hero-promo-price {
  margin: 0;
  padding: 0;
  width: min(100%, 520px);
  display: flex;
  justify-content: flex-start;
}

.hero-promo-price-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  width: min(100%, 340px);
}

.hero-promo-cta {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(205, 26, 29, 0.28);
}

.hero-promo-cta:hover {
  box-shadow: 0 14px 32px rgba(205, 26, 29, 0.38);
}

/* WhatsApp – eigene Klasse, 1:1 wie hero-promo-cta aber grün */
.hero-promo-price-block .btn.hero-promo-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  color: #fff;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.hero-promo-price-block .btn.hero-promo-whatsapp:hover {
  color: #fff;
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.38);
}

.hero-promo-price-block .btn.hero-promo-whatsapp svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.hero-promo-price-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.15rem 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-promo-price-prefix {
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 700;
  text-transform: lowercase;
  opacity: 0.9;
  letter-spacing: 0.02em;
  color: #fff;
}

.hero-promo-price-value {
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero-promo-price-note {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 600;
  opacity: 0.88;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
  color: #fff;
}

.hero-promo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100%;
  align-self: stretch;
  background: var(--hero-promo-bg);
  padding: clamp(1rem, 3vw, 2rem);
}

.hero-promo-van {
  width: min(110%, 920px);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.22));
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 200, 150, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero-content > p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.store-btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.store-btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.store-btn-dark:hover {
  background: var(--dark-soft);
  border-color: var(--dark-soft);
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-screen {
  width: 280px;
  height: 520px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 100%);
  border-radius: 36px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 4px solid #1e293b;
}

.map-dots {
  position: absolute;
  inset: 1.5rem;
  background:
    radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 20px;
  opacity: 0.6;
}

.car-pin {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.car-pin::after {
  content: '🚐';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  font-size: 1.2rem;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 102, 255, 0.5); }
  50% { box-shadow: 0 4px 40px rgba(0, 102, 255, 0.8); }
}

.phone-label {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Sections */
.section {
  padding: 5rem 0;
}

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

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

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Vehicles */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vehicle-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.vehicle-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vehicle-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.vehicle-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.75rem 1.35rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
  transform: none;
}

.price-card.featured:hover {
  transform: translateY(-3px);
}

.price-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card h3 {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.price {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price span {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--text-light);
}

.price-card ul {
  list-style: none;
  margin-top: auto;
}

.price-card li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
}

.price-card li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  padding: 1.65rem 1.5rem 1.5rem;
  text-align: left;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(205, 26, 29, 0.22);
}

.step-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(205, 26, 29, 0.28);
  flex-shrink: 0;
}

.step-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.step-card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-card-text p {
  margin: 0;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

@media (min-width: 961px) and (max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.2s;
}

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

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #fff;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-inner p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.cta-inner .hero-actions {
  justify-content: center;
}

.cta-section-portal .portal-cta-inner {
  max-width: 640px;
  margin-inline: auto;
}

.portal-cta-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.cta-section-portal .cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.portal-cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.portal-cta-chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.portal-cta-actions {
  gap: 0.85rem;
}

.cta-section .store-btn-portal {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(205, 26, 29, 0.35);
}

.cta-section .store-btn-portal:hover {
  background: #b01518;
  border-color: #b01518;
  box-shadow: 0 10px 28px rgba(205, 26, 29, 0.45);
}

.cta-section .store-btn {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.cta-section .store-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

/* Location */
.location-section {
  padding-bottom: 4rem;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem 1.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
}

.location-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(205, 26, 29, 0.1) 0%, rgba(205, 26, 29, 0.04) 100%);
  color: var(--primary);
}

.location-card-body {
  min-width: 0;
  flex: 1;
}

.location-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.65rem;
}

.location-address {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.location-address strong {
  color: var(--dark);
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.location-link:hover {
  gap: 0.45rem;
}

.location-hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.location-hours-header h3 {
  margin-bottom: 0;
}

.location-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.location-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.location-status.is-open {
  background: #ecfdf5;
  color: #059669;
}

.location-status.is-closed {
  background: #fef2f2;
  color: #dc2626;
}

.location-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.location-hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s;
}

.location-hours-list li.is-today {
  background: linear-gradient(90deg, rgba(205, 26, 29, 0.08) 0%, rgba(205, 26, 29, 0.02) 100%);
  color: var(--dark);
  font-weight: 600;
}

.location-hours-day {
  flex: 1;
}

.location-hours-time {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.location-hours-list li.is-closed .location-hours-time {
  color: #94a3b8;
  font-weight: 500;
}

.location-map-wrap {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.location-map-card {
  position: relative;
  flex: 1;
  height: 100%;
  min-height: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #e8edf3;
}

.location-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Newsletter */
.newsletter-section {
  padding-top: 4rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #f1f5f9 100%);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.75rem;
  align-items: start;
}

.newsletter-copy,
.newsletter-form-wrap {
  min-width: 0;
}

.newsletter-copy h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0.85rem 0 1rem;
}

.newsletter-headline-accent {
  color: var(--primary);
}

.newsletter-lead {
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.newsletter-usps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.newsletter-usp {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.newsletter-usp:hover {
  transform: translateY(-2px);
  border-color: rgba(205, 26, 29, 0.18);
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.08);
}

.newsletter-usp-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(205, 26, 29, 0.12) 0%, rgba(205, 26, 29, 0.04) 100%);
  color: var(--primary);
}

.newsletter-usp-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.newsletter-usp-body strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}

.newsletter-usp-body span {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-light);
}

.newsletter-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark-soft);
  background: #fff;
  border: 1px solid var(--border);
}

.newsletter-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.85rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.newsletter-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.newsletter-tab {
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.newsletter-tab.is-active {
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow);
}

.newsletter-tab-panel[hidden] {
  display: none;
}

.newsletter-unsubscribe-btn {
  background: #fff;
  color: var(--dark-soft);
  border: 1px solid var(--border);
}

.newsletter-unsubscribe-btn:hover {
  border-color: rgba(10, 22, 40, 0.2);
  background: var(--bg-alt);
}

.newsletter-form-head {
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.newsletter-form-head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.newsletter-form-head p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
}

.newsletter-form.contact-form {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 1rem;
}

.newsletter-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.newsletter-form-grid .contact-field {
  min-width: 0;
}

.newsletter-form .contact-form input,
.newsletter-form .contact-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.newsletter-field-full {
  grid-column: 1 / -1;
}

.field-required {
  color: var(--primary);
  font-style: normal;
}

.field-optional {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.85em;
}

.newsletter-legal {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-light);
}

.newsletter-legal a {
  color: var(--primary);
  font-weight: 600;
}

.newsletter-legal a:hover {
  text-decoration: underline;
}

/* Blog teaser */
.section-blog-teaser {
  padding: 2.75rem 0;
  background: linear-gradient(135deg, rgba(205, 26, 29, 0.06) 0%, rgba(10, 22, 40, 0.03) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-teaser-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.blog-teaser-copy h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--dark);
  margin: 0.65rem 0 0.4rem;
  letter-spacing: -0.02em;
}

.blog-teaser-copy p {
  margin: 0;
  max-width: 42ch;
  color: var(--text-light);
  font-size: 0.98rem;
}

.blog-teaser-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.85rem 0.85rem 0.85rem 1.35rem;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 20px rgba(205, 26, 29, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, filter 0.25s;
}

.blog-teaser-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(205, 26, 29, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  filter: brightness(1.03);
}

.blog-teaser-btn:active {
  transform: translateY(-1px);
}

.blog-teaser-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-align: left;
}

.blog-teaser-btn-label {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.blog-teaser-btn-sub {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.88;
  line-height: 1.3;
}

.blog-teaser-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s;
}

.blog-teaser-btn:hover .blog-teaser-btn-icon {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.28);
}

/* Reviews */
.section-reviews {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.section-reviews::before,
.section-reviews::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section-reviews::before {
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(205, 26, 29, 0.22) 0%, transparent 70%);
}

.section-reviews::after {
  bottom: -100px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.section-reviews .container {
  position: relative;
  z-index: 1;
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.reviews-header-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 0.5rem;
  color: #fff;
}

.reviews-header-copy p {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.65;
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.15rem 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.reviews-score-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.reviews-score {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}

.reviews-score-stars {
  display: flex;
  gap: 0.15rem;
  color: #fbbf24;
}

.reviews-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

.reviews-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.reviews-track-wrap {
  overflow: hidden;
  border-radius: 4px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.35rem 0.25rem 1rem;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.reviews-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.reviews-track.is-dragging .review-card {
  pointer-events: none;
  transform: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(100%, 380px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 280px;
  padding: 1.65rem 1.75rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.review-card-tag {
  align-self: flex-start;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(205, 26, 29, 0.35);
  color: #fecaca;
  border: 1px solid rgba(205, 26, 29, 0.45);
}

.review-card-stars {
  display: flex;
  gap: 0.12rem;
  color: rgba(255, 255, 255, 0.25);
}

.reviews-star.is-filled {
  color: #fbbf24;
  filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.35));
}

.review-card-text {
  flex: 1;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.92);
  font-style: normal;
}

.review-card-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(205, 26, 29, 0.45);
}

.review-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.review-card-name {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.review-card-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.review-card-date {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.reviews-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: scale(1.05);
}

.reviews-nav:active {
  transform: scale(0.98);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.reviews-dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s;
}

.reviews-dot.is-active {
  width: 1.75rem;
  background: var(--primary);
}

.reviews-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.reviews-dot.is-active:hover {
  background: #e11d24;
}

@media (min-width: 768px) {
  .review-card {
    flex-basis: calc((100% - 1.25rem) / 2);
  }
}

@media (min-width: 1100px) {
  .review-card {
    flex-basis: calc((100% - 2.5rem) / 3);
  }
}

@media (max-width: 767px) {
  .reviews-slider {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
  }

  .reviews-nav {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
  }

  .reviews-track-wrap {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .blog-teaser-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-teaser-btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* Contact */
.section-contact {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(205, 26, 29, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
}

.contact-aside .badge {
  margin-bottom: 1rem;
}

.contact-grid h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.contact-aside-lead {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 36ch;
  line-height: 1.65;
}

.contact-channels {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-channels > li {
  margin: 0;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(10, 22, 40, 0.045);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s, background 0.22s;
  text-decoration: none;
  color: inherit;
}

.contact-channel:hover {
  border-color: rgba(205, 26, 29, 0.28);
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.09);
  transform: translateY(-2px);
  background: #fff;
}

.contact-channel:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.contact-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  flex-shrink: 0;
}

.contact-channel-icon--mail {
  background: linear-gradient(145deg, rgba(205, 26, 29, 0.14) 0%, rgba(205, 26, 29, 0.06) 100%);
  color: var(--primary);
}

.contact-channel-icon--phone {
  background: linear-gradient(145deg, rgba(0, 200, 150, 0.16) 0%, rgba(0, 200, 150, 0.06) 100%);
  color: #059669;
}

.contact-channel-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

.contact-channel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-channel-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  word-break: break-word;
}

.contact-channel:hover .contact-channel-value {
  color: var(--primary);
}

.contact-channel:has(.contact-channel-icon--phone):hover .contact-channel-value {
  color: #059669;
}

.contact-channel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--text-light);
  flex-shrink: 0;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}

.contact-channel:hover .contact-channel-arrow {
  background: rgba(205, 26, 29, 0.1);
  color: var(--primary);
  transform: translateX(2px);
}

.contact-channel:has(.contact-channel-icon--phone):hover .contact-channel-arrow {
  background: rgba(0, 200, 150, 0.12);
  color: #059669;
}

.contact-aside-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.contact-aside-note-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.2);
  flex-shrink: 0;
}

.contact-channel-body a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark);
  word-break: break-word;
}

.contact-channel-body a:hover {
  color: var(--primary);
}

.contact-info {
  list-style: none;
  margin-top: 1.5rem;
}

.contact-info li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.contact-info a {
  color: var(--primary);
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form-wrap {
  min-width: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  background: #fff;
  padding: 2rem 2rem 1.75rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.1), 0 2px 8px rgba(10, 22, 40, 0.04);
}

.contact-form-head {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.15rem;
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.contact-form-lead {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--text-light);
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-field-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-alt);
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(205, 26, 29, 0.12);
}

.contact-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-form-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  animation: contactAlertIn 0.35s ease;
}

.contact-form-alert[hidden] {
  display: none !important;
}

.contact-form-alert.is-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.contact-form-alert.is-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.contact-form-alert-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.contact-form-alert.is-success .contact-form-alert-icon {
  color: #059669;
}

.contact-form-alert.is-error .contact-form-alert-icon {
  color: #dc2626;
}

.contact-form-alert-body {
  min-width: 0;
}

.contact-form-alert-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.contact-form-alert-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  opacity: 0.92;
}

.recaptcha-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin-top: 0.15rem;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-light);
}

.recaptcha-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  flex-shrink: 0;
}

.recaptcha-badge-text {
  font-weight: 500;
  color: var(--text-light);
}

.recaptcha-badge-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.recaptcha-badge-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.recaptcha-badge-links a:hover {
  text-decoration: underline;
}

.contact-form-submit {
  position: relative;
  width: 100%;
  min-height: 3.25rem;
  margin-top: 0.35rem;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(205, 26, 29, 0.35);
}

.contact-form-submit:hover:not(.is-loading) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205, 26, 29, 0.42);
}

.contact-form-submit.is-loading {
  opacity: 0.85;
  cursor: wait;
}

.contact-form-submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form-submit-loading[hidden],
.contact-form-submit-label[hidden] {
  display: none !important;
}

@keyframes contactAlertIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background: #eef1f6;
  color: #0a1628;
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.footer-brand .logo {
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #0a1628;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #0a1628;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(10, 22, 40, 0.65);
  margin: 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 22, 40, 0.12);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: #0a1628;
  background: rgba(10, 22, 40, 0.06);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.footer-social-link:hover {
  color: var(--primary);
  background: rgba(205, 26, 29, 0.1);
  transform: translateY(-1px);
}

.footer-social-link--whatsapp:hover {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

.footer-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Responsive */
@media (max-width: 960px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.35rem;
    border-radius: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-channels {
    margin-top: 1.5rem;
  }

  .booking-widget {
    max-width: 100%;
    overflow: hidden;
  }

  .booking-main {
    padding: 1.15rem;
  }

  .booking-sidebar {
    padding: 1.25rem;
  }

  .booking-step {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .booking-step-title {
    font-size: 0.95rem;
  }

  .booking-field input,
  .booking-field select,
  .booking-field textarea {
    padding: 0.75rem 0.85rem;
    font-size: 16px;
  }

  .modus-tab {
    font-size: 0.78rem;
    padding: 0.55rem 0.45rem;
  }

  .slot-card .slot-price {
    font-size: 1.35rem;
  }

  .slot-card .slot-label {
    font-size: 0.82rem;
  }

  .hero-promo {
    --hero-promo-mobile-bg: #132137;
    --hero-promo-mobile-bg-soft: #1e3a5f;
    padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    background: linear-gradient(165deg, #0b1525 0%, var(--hero-promo-mobile-bg) 38%, var(--hero-promo-mobile-bg-soft) 100%);
    position: relative;
    isolation: isolate;
  }

  .hero-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 90% 55% at 50% 72%, rgba(255, 255, 255, 0.07) 0%, transparent 62%),
      radial-gradient(circle at 88% 12%, rgba(205, 26, 29, 0.14) 0%, transparent 42%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-promo-inner {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0;
    max-width: none;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .hero-promo-panel {
    display: contents;
  }

  .hero-promo-content {
    order: 1;
    padding: 1.5rem 1.35rem 1rem;
    text-align: left;
    background: transparent;
    position: relative;
    width: 100%;
  }

  .hero-promo-content::after {
    display: none;
  }

  .hero-promo-region {
    font-size: 0.68rem;
    margin-bottom: 0.85rem;
  }

  .hero-promo-headline {
    font-size: clamp(1.55rem, 7.2vw, 2.15rem);
    margin-bottom: 0.85rem;
  }

  .hero-promo-lead {
    font-size: 0.95rem;
    margin-bottom: 1.15rem;
  }

  .hero-promo-points {
    gap: 0.75rem;
  }

  .hero-promo-points li {
    font-size: 0.92rem;
  }

  .hero-promo-visual {
    order: 2;
    min-height: auto;
    padding: 0.25rem 1rem 0;
    align-self: center;
    width: 100%;
    background: transparent;
    justify-content: center;
    position: relative;
  }

  .hero-promo-visual::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8%;
    width: min(92%, 380px);
    height: 42%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 0%, transparent 72%);
    pointer-events: none;
  }

  .hero-promo-van {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    transform: none;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.35));
  }

  .hero-promo-price {
    order: 3;
    padding: 1.15rem 1.25rem 2.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
    background: transparent;
  }

  .hero-promo-price-block {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .hero-promo-price-card {
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 1.15rem 1.35rem 1.25rem;
    background: rgba(255, 255, 255, 0.97);
    border: none;
    border-radius: 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow:
      0 4px 6px rgba(15, 23, 42, 0.04),
      0 22px 50px rgba(0, 0, 0, 0.28);
  }

  .hero-promo-cta,
  .hero-promo-price-block .btn.hero-promo-whatsapp {
    border-radius: 999px;
  }

  .hero-promo-price-prefix {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 1;
    font-weight: 700;
  }

  .hero-promo-price-value {
    font-size: clamp(2.5rem, 13vw, 3.35rem);
    color: var(--dark);
    letter-spacing: -0.04em;
  }

  .hero-promo-price-note {
    font-size: 0.95rem;
    opacity: 1;
    color: #64748b;
    border-top-color: #e2e8f0;
    font-weight: 500;
  }

  .hero-inner,
  .contact-grid,
  .location-grid,
  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .newsletter-form-grid {
    grid-template-columns: 1fr;
  }

  .location-map-wrap {
    min-height: 360px;
  }

  .location-map-card {
    min-height: 360px;
  }

  .hero-visual {
    order: -1;
  }

  .phone-screen {
    width: 220px;
    height: 400px;
  }

  .vehicle-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .price-card {
    padding: 1.25rem 1rem;
  }

  .price-card h3 {
    font-size: 0.9rem;
  }

  .price-card li {
    font-size: 0.75rem;
  }

  .price-card.featured {
    transform: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .nav.open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(72px + 220px);
    left: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  .slot-grid {
    grid-template-columns: 1fr;
  }

  .slot-card {
    min-height: auto;
    padding: 1rem 0.85rem;
  }

  .modus-tabs {
    flex-direction: column;
    gap: 0.35rem;
  }

  .modus-tab {
    font-size: 0.85rem;
    padding: 0.65rem 0.75rem;
  }

  .booking-shell {
    border-radius: 16px;
  }
}

/* ── Booking Widget ─────────────────────────────────────── */
.badge-red {
  background: rgba(205, 26, 29, 0.1);
  color: var(--primary);
  border: 1px solid rgba(205, 26, 29, 0.15);
}

.section-booking {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
  overflow-x: clip;
  max-width: 100%;
}

.section-booking::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(205, 26, 29, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-booking::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(205, 26, 29, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.booking-widget {
  position: relative;
  z-index: 1;
}

.booking-cta-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.85rem 0 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-cta-divider::before,
.booking-cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.btn-whatsapp-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  letter-spacing: 0.01em;
}

.btn-whatsapp-booking:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42);
  color: #fff;
}

.btn-whatsapp-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.1), 0 2px 8px rgba(10, 22, 40, 0.04);
  overflow: hidden;
  max-width: 100%;
}

.booking-main {
  padding: 2rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 900px) {
  .booking-shell {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

@media (min-width: 640px) {
  .booking-main {
    padding: 2.5rem;
  }
}

.booking-step {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.booking-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.booking-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.booking-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.booking-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 0;
  flex: 1;
}

.booking-extras-hint {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--text-light);
}

.extras-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.extra-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--bg-alt);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.extra-option:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.extra-option.selected {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 1px var(--primary);
}

.extra-option input[type='checkbox'] {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.extra-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}

.extra-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.extra-label {
  font-weight: 700;
  color: var(--dark);
}

.extra-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.extra-price-free {
  color: var(--text-light);
  font-weight: 600;
}

.extra-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.booking-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
  max-width: 100%;
}

@media (min-width: 520px) {
  .booking-row.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.booking-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-field {
  min-width: 0;
  max-width: 100%;
}

.booking-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (max-width: 520px) {
  .booking-datetime {
    grid-template-columns: 1fr;
  }
}

.booking-date,
.booking-time {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--bg-alt);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.booking-date:hover,
.booking-time:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.booking-date:focus,
.booking-time:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(205, 26, 29, 0.1);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--bg-alt);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.booking-field input:hover,
.booking-field select:hover,
.booking-field textarea:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(205, 26, 29, 0.1);
}

.slot-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
}

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

.slot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 0.75rem;
  background: var(--bg-alt);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s, background 0.2s;
  font: inherit;
  min-height: 130px;
  min-width: 0;
  max-width: 100%;
  --slot-color: var(--primary);
}

.slot-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  color: var(--slot-color, var(--primary));
}

.svg-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.svg-icon-sm {
  width: 0.75rem;
  height: 0.75rem;
}

.svg-icon-lg {
  width: 2.25rem;
  height: 2.25rem;
}

.slot-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--slot-color, var(--primary));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.slot-card .slot-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.slot-card .slot-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.4;
}

.slot-card:hover {
  border-color: var(--slot-color);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.slot-card.selected {
  border-color: var(--slot-color);
  background: #fff;
  box-shadow: 0 6px 24px color-mix(in srgb, var(--slot-color) 20%, transparent);
}

.slot-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--slot-color);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-card .slot-price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--slot-color);
  margin: 0.3rem 0 0.15rem;
  letter-spacing: -0.02em;
}

/* Modus-Tabs */
.modus-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  background: var(--bg-alt);
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  max-width: 100%;
}

.modus-tab {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 9px;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}

.modus-tab.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.modus-tab:hover:not(.active) {
  color: var(--dark);
}

/* Stunden-Regler */
.regler-panel {
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.regler-display {
  text-align: center;
  margin-bottom: 1.25rem;
}

.regler-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.regler-unit {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.regler-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary) var(--pct, 50%), #e2e8f0 var(--pct, 50%), #e2e8f0 100%);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

.regler-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(205, 26, 29, 0.35);
  cursor: grab;
}

.regler-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(205, 26, 29, 0.35);
  cursor: grab;
}

.regler-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.regler-hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

.price-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--card-accent, var(--primary));
}

.price-card-icon .svg-icon {
  width: 2rem;
  height: 2rem;
}

.booking-field input[readonly] {
  background: #f1f5f9;
  color: var(--text-light);
  cursor: default;
}

/* Sidebar – Preis */
.booking-sidebar {
  background: linear-gradient(160deg, #0a1628 0%, #1a2942 60%, #0f1f35 100%);
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .booking-sidebar {
    position: sticky;
    top: 88px;
    min-height: 100%;
  }
}

.booking-sidebar-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
}

.booking-sidebar .price-big {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.booking-sidebar .price-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.price-breakdown {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  list-style: none;
}

.price-breakdown li.total {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.price-breakdown li.total span:last-child {
  color: #fff;
  font-size: 1.1rem;
}

.price-features {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.price-feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-book {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(205, 26, 29, 0.4);
  letter-spacing: 0.01em;
}

.btn-book:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205, 26, 29, 0.45);
}

.btn-book:disabled {
  background: #64748b;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.booking-hint {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.booking-hours-hint {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted, #64748b);
  line-height: 1.4;
}

.booking-sidebar-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.booking-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  padding: 2rem 0;
  min-height: 120px;
}

.booking-hours-error {
  margin-top: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #fcd34d;
  font-size: 0.78rem;
  font-weight: 600;
}

.booking-unavailable-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.28);
}

.booking-unavailable-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.2);
  color: #fcd34d;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35rem;
  text-align: center;
}

.booking-unavailable-title {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fde68a;
}

.booking-unavailable-text {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.booking-side-suggestions-wrap {
  margin-top: 0.5rem;
}

.booking-side-suggestions-label {
  margin: 0 0 0.65rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.booking-side-suggestion-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.booking-side-suggestion-list::-webkit-scrollbar {
  width: 4px;
}

.booking-side-suggestion-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.bk-side-suggestion {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.bk-side-suggestion:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 200, 150, 0.4);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.bk-side-suggestion.is-recommended {
  border-color: rgba(0, 200, 150, 0.32);
  background: linear-gradient(145deg, rgba(0, 200, 150, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  padding-top: 0.85rem;
}

.bk-side-suggestion-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.2rem 0.5rem;
  border-radius: 0 12px 0 10px;
  background: rgba(0, 200, 150, 0.22);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6ee7b7;
  line-height: 1.2;
}

.bk-side-suggestion-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
}

.bk-side-suggestion-duration {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.bk-side-suggestion-when {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

.bk-side-suggestion-price {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.bk-avail-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

@media (min-width: 640px) {
  .bk-avail-popup {
    align-items: center;
  }
}

.bk-avail-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.bk-avail-card {
  position: relative;
  width: 100%;
  max-width: 22rem;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  color: var(--dark);
}

.bk-avail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
}

.bk-avail-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.bk-avail-head h4 {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}

.bk-avail-sub {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  color: var(--text-light);
}

.bk-avail-close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #94a3b8;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.bk-avail-close:hover {
  background: #f1f5f9;
  color: #475569;
}

.bk-avail-list {
  max-height: min(52vh, 320px);
  overflow-y: auto;
}

.bk-avail-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.bk-avail-item:last-child {
  border-bottom: 0;
}

.bk-avail-item:hover {
  background: #f8fafc;
}

.bk-avail-item strong {
  display: block;
  font-size: 0.86rem;
  color: var(--dark);
}

.bk-avail-item small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  color: var(--text-light);
}

.bk-avail-item-price {
  flex-shrink: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  background: rgba(0, 200, 150, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
}

.bk-avail-empty {
  margin: 0;
  padding: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

.booking-success {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.booking-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: rgba(0, 200, 150, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.booking-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.booking-success p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.booking-success .booking-id {
  font-family: monospace;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin: 1rem 0;
}

.booking-success .booking-price-final {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.booking-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.booking-loading::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: bk-spin 0.7s linear infinite;
}

@keyframes bk-spin {
  to { transform: rotate(360deg); }
}

.booking-hidden {
  display: none !important;
}
