/* ==========================================================================
   Schönheitszentrum - Modern Aesthetic & High Performance Design System
   Brand Color: #d8af6f (Gold) | Locations: Bremen & Oldenburg
   ========================================================================== */

:root {
  --primary: #d8af6f;
  --primary-hover: #c49a56;
  --primary-dark: #875e18;
  --primary-light: #f7ebd4;
  --primary-gradient: linear-gradient(135deg, #e5c58a 0%, #d8af6f 50%, #b88d44 100%);
  --primary-glow: rgba(216, 175, 111, 0.28);
  --primary-subtle: rgba(216, 175, 111, 0.08);

  --dark-bg: #111111;
  --dark-surface: #181818;
  --dark-card: #202020;
  --dark-border: rgba(216, 175, 111, 0.18);

  --bg-page: #fbf9f5;
  --bg-surface: #ffffff;
  --bg-warm: #f6f1e8;
  --bg-soft: #f2ece1;

  --text-main: #1d1b18;
  --text-secondary: #423e38;
  --text-muted: #757067;
  --text-light: #ffffff;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(29, 27, 24, 0.09);
  --shadow-gold: 0 10px 30px rgba(216, 175, 111, 0.25);

  --transition-smooth: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --container-width: 1240px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, li, span, a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

img, svg, picture, video {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.text-gold {
  color: var(--primary) !important;
}

.gold-gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-lg {
  padding: 7rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
  background: var(--primary-subtle);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary-glow);
  margin-bottom: 1rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #111111;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(216, 175, 111, 0.4);
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-bg);
  color: var(--text-light);
  border: 1px solid var(--dark-border);
}

.btn-dark:hover {
  background: var(--dark-surface);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
}

.btn-outline-gold:hover {
  background: var(--primary);
  color: #111;
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-gold {
  background: var(--primary-subtle);
  color: var(--primary-dark);
  border: 1px solid var(--primary-glow);
}

.badge-dark {
  background: var(--dark-surface);
  color: var(--primary);
  border: 1px solid var(--dark-border);
}

/* Cards & Glassmorphism */
.card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 175, 111, 0.12);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.card-dark {
  background: var(--dark-surface);
  color: var(--text-light);
  border: 1px solid var(--dark-border);
}

.card-dark h3, .card-dark h2, .card-dark h4 {
  color: var(--text-light);
}

.card-dark p {
  color: #c0bcb5;
}

/* Header & Navigation */
.header-top {
  background: #111111;
  color: #c9c5bd;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(216, 175, 111, 0.15);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-top-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 175, 111, 0.15);
  transition: var(--transition-smooth);
}

.header-main.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  height: auto;
  padding: 0.5rem 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-brand img {
  height: 56px;
  width: auto;
  max-width: 220px;
  display: block;
  transition: var(--transition-smooth);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 0.9rem;
  }
  .nav-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 1040px) {
  .nav-menu {
    gap: 0.6rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(216, 175, 111, 0.18);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.nav-dropdown-item:hover {
  background: var(--bg-warm);
  color: var(--primary-dark);
  padding-left: 1.5rem;
}

/* Treatment Clean Dropdown in Nav */
.nav-dropdown-treatments-clean {
  min-width: 520px;
  max-width: 95vw;
  padding: 0.6rem 0.5rem;
  left: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateY(10px);
}

.nav-dropdown:hover .nav-dropdown-treatments-clean {
  transform: translateY(0);
}

.nav-treatments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.5rem;
}

.nav-treatments-grid .nav-dropdown-item {
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-treatments-grid .nav-dropdown-item:hover {
  background: var(--bg-warm);
  color: var(--primary-dark);
  padding-left: 1.1rem;
}

/* Mobile treatment drawer list */
.mobile-treatment-accordion {
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  padding: 0.4rem 0.5rem;
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(216, 175, 111, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-treatment-link {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.mobile-treatment-link:hover,
.mobile-treatment-link:active {
  background: rgba(216, 175, 111, 0.15);
  color: var(--primary-dark);
}

/* Subpage Standort-Auswahl Bar */
.standort-switcher-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0.5rem;
  padding: 0.85rem 1.25rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(216, 175, 111, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.standort-switcher-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.standort-switcher-options {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.standort-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(216, 175, 111, 0.4);
  background: var(--bg-warm);
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.2s ease;
}

.standort-switcher-btn:hover {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  background: #ffffff;
  transform: translateY(-1px);
}

.standort-switcher-btn.active {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: #111111;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(216, 175, 111, 0.35);
}

/* Services Overview on /leistungen/ */
.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.service-card-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(216, 175, 111, 0.2);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
}

.service-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  background: var(--primary-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  width: fit-content;
}

.service-card-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.service-card-item p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-location-picker {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(216, 175, 111, 0.18);
}

.service-location-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-location-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1.5px solid rgba(216, 175, 111, 0.45);
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-location:hover {
  background: var(--primary-gradient);
  color: #111111;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(216, 175, 111, 0.32);
}

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

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 999999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  padding: 1.25rem 0 1rem;
  border-bottom: 1px solid rgba(216, 175, 111, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  margin-bottom: 1.25rem;
}

.mobile-drawer-close {
  background: var(--bg-warm);
  border: 1px solid rgba(216, 175, 111, 0.25);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.mobile-drawer-close:hover {
  background: var(--primary);
  color: #111111;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-warm) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge-wrap {
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(216, 175, 111, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-stars {
  color: #f5a623;
  display: flex;
  gap: 2px;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
  position: relative;
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--primary-glow);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-floating-card .rating-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* Service / Treatment Cards */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.treatment-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 175, 111, 0.16);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.treatment-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.treatment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.treatment-card:hover .treatment-img-wrap img {
  transform: scale(1.06);
}

.treatment-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.treatment-card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.treatment-card-body p {
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.treatment-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Locations Section */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2.5rem;
}

.location-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(216, 175, 111, 0.2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.location-card:hover {
  border-color: var(--primary);
}

.location-header {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.location-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-body {
  padding: 2.2rem;
}

.location-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.location-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.location-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing Tables */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(216, 175, 111, 0.16);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0.75rem 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-feature-item svg {
  color: var(--primary-dark);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Accordion (FAQ) */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 840px;
  margin: 0 auto;
}

.accordion-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(216, 175, 111, 0.16);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-dark);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-body {
  padding: 0 1.5rem 1.25rem;
}

/* Reviews / Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 175, 111, 0.15);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.review-stars {
  color: #f5a623;
  margin-bottom: 0.25rem;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: #0f0f0f;
  color: #a8a49c;
  padding: 5rem 0 2rem;
  border-top: 2px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 68px;
  width: auto;
  max-width: 130px;
  display: block;
}

.footer-brand p {
  color: #a8a49c;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

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

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

/* Sticky Mobile CTA Bar */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-top: 1px solid rgba(216, 175, 111, 0.2);
}

.sticky-mobile-cta-inner {
  display: flex;
  gap: 0.75rem;
}

.sticky-mobile-cta .btn {
  flex: 1;
}

/* Breadcrumb */
.breadcrumb-nav {
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb-list a:hover {
  color: var(--primary-dark);
}

.breadcrumb-separator {
  color: var(--primary);
}

/* Blog / Content Typography */
.content-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
}

.content-body h2 {
  margin: 2.5rem 0 1rem;
}

.content-body h3 {
  margin: 2rem 0 0.85rem;
}

.content-body ul {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

.content-body ol {
  margin: 1.25rem 0;
  padding-left: 1.75rem;
}

.content-body ul > li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.content-body ol > li {
  margin-bottom: 0.65rem;
  list-style-type: decimal;
  padding-left: 0.35rem;
}

.content-body hr {
  border: 0;
  border-top: 1px solid rgba(216, 175, 111, 0.25);
  margin: 2.25rem 0;
}

.content-body img {
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

/* Subpage Layout Grid */
.layout-grid-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

/* Responsive Media Queries */
/* Pricing & Financing Banner Grid */
.pricing-banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .pricing-banner-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .layout-grid-with-sidebar,
  [class*="layout-grid"],
  div[style*="grid-template-columns: 1fr 340px"],
  div[style*="1fr 340px"] {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    width: 100% !important;
  }
  .layout-grid-with-sidebar > aside,
  .layout-grid-with-sidebar aside,
  aside[style*="position: sticky"] {
    position: static !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    order: 2 !important;
  }
  .layout-grid-with-sidebar > .content-body,
  .content-body {
    width: 100% !important;
    max-width: 100% !important;
    order: 1 !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .nav-inner {
    min-height: 65px !important;
    height: auto !important;
    padding: 0.5rem 0 !important;
  }
  .logo-brand img {
    height: 48px !important;
    width: auto !important;
    max-width: 120px !important;
  }
  .nav-menu, .header-top {
    display: none !important;
  }
  .nav-actions > .btn,
  .nav-actions .btn-sm {
    display: none !important;
  }
  .nav-actions {
    gap: 0 !important;
  }
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(216, 175, 111, 0.35);
    background: var(--bg-warm);
    color: var(--text-main);
    cursor: pointer;
  }
  .mobile-nav-toggle svg {
    width: 24px;
    height: 24px;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 2.5rem 0 3rem !important;
    overflow: hidden !important;
  }
  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-lead {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-cta-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    width: 100% !important;
    margin-bottom: 1.75rem !important;
  }
  .hero-cta-group .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }
  .hero-trust-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.65rem !important;
    padding-top: 1.25rem !important;
    width: 100% !important;
  }
  .trust-item {
    font-size: 0.88rem !important;
  }
  .hero-image-card {
    border-radius: var(--radius-lg) !important;
    border-width: 2px !important;
  }
  .hero-floating-card {
    position: static !important;
    margin-top: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
  }

  /* Standort Switcher Bar Mobile */
  .standort-switcher-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    padding: 0.85rem 1rem !important;
  }
  .standort-switcher-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  .standort-switcher-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.88rem !important;
    min-height: 44px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sticky-mobile-cta {
    display: block !important;
    z-index: 900 !important;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom, 0px)) !important;
  }
  .sticky-mobile-cta-inner {
    display: flex;
    gap: 0.4rem;
  }
  .sticky-mobile-cta .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    padding: 0.5rem 0.35rem;
    white-space: nowrap;
  }
  .city-pill {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .section {
    padding: 2.5rem 0;
  }
  .section-sm {
    padding: 1.5rem 0;
  }
  .card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  h1 {
    font-size: 1.85rem !important;
  }
  h2 {
    font-size: 1.45rem !important;
  }
  h3 {
    font-size: 1.2rem !important;
  }
}

/* Tables & Pricing Tables Responsive Styling */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(216, 175, 111, 0.2);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

table, .content-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  background: #ffffff;
  font-size: 0.95rem;
}

table th, .content-table th {
  background: linear-gradient(135deg, #201e1b 0%, #151515 100%);
  color: var(--primary);
  font-weight: 700;
  text-align: left;
  padding: 0.9rem 1.15rem;
  border-bottom: 2px solid var(--primary);
  letter-spacing: 0.02em;
}

table td, .content-table td {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-main);
  transition: var(--transition-smooth);
}

table tr:nth-child(even) td, .content-table tr:nth-child(even) td {
  background-color: var(--bg-warm);
}

table tr:hover td, .content-table tr:hover td {
  background-color: var(--primary-subtle);
}

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

@media (max-width: 768px) {
  table, .content-table {
    display: table;
    width: 100%;
    min-width: 480px; /* Ensures readable columns when scrolling */
    font-size: 0.85rem;
  }
  table th, .content-table th,
  table td, .content-table td {
    padding: 0.65rem 0.85rem;
    white-space: nowrap;
  }
  .table-responsive {
    position: relative;
  }
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(216, 175, 111, 0.25);
  background: #ffffff;
  font-size: 16px; /* Essential: Prevents iOS Safari auto-zoom */
  color: var(--text-main);
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.form-control:focus, input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(216, 175, 111, 0.2);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: #181818;
  color: #ffffff;
  border: 1px solid rgba(216, 175, 111, 0.35);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  z-index: 99999;
  font-size: 0.88rem;
  line-height: 1.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: calc(75px + env(safe-area-inset-bottom, 0px) + 10px);
    max-width: none;
    padding: 1rem 1.15rem;
    font-size: 0.82rem;
  }
}

/* Location Selection Modal */
.location-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.location-modal {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(216, 175, 111, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  max-width: 620px;
  width: 100%;
  padding: 2.25rem 2rem;
  position: relative;
  text-align: center;
  transform: scale(0.94) translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-modal-overlay.active .location-modal {
  transform: scale(1) translateY(0);
}

.location-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: var(--bg-warm);
  border: 1px solid rgba(216, 175, 111, 0.25);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.location-modal-close:hover {
  background: var(--primary);
  color: #111111;
  transform: rotate(90deg);
}

.location-modal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-dark);
  background: var(--bg-warm);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(216, 175, 111, 0.3);
  margin-bottom: 0.6rem;
}

.location-modal-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.location-modal-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.location-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .location-modal-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .location-modal {
    padding: 1.75rem 1.25rem;
  }
}

.location-modal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
  border: 1.5px solid rgba(216, 175, 111, 0.25);
  text-decoration: none;
  transition: all 0.25s ease;
}

.location-modal-card:hover {
  background: #ffffff;
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(216, 175, 111, 0.25);
}

.location-modal-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.location-modal-city {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.location-modal-card:hover .location-modal-city {
  color: var(--primary-dark);
}

.location-modal-address {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.location-modal-tel {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.1rem;
}

.location-modal-card-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #111111;
  transition: all 0.2s ease;
  margin-top: auto;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.location-modal-card:hover .location-modal-card-btn {
  background: var(--primary-dark);
  color: #ffffff;
}

/* ==========================================================================
   Scroll-To-Top Floating Button
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #111111;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 990;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(216, 175, 111, 0.4);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 76px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   Live Social Proof & Trust Toast
   ========================================================================== */
.trust-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: rgba(24, 24, 24, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(216, 175, 111, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 980;
  font-size: 0.86rem;
  line-height: 1.4;
}

.trust-toast.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.trust-toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-subtle);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-toast-content strong {
  color: var(--primary);
  display: block;
  font-size: 0.88rem;
}

.trust-toast-close {
  background: transparent;
  border: none;
  color: #9e9a96;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.2rem;
  margin-left: auto;
  line-height: 1;
  transition: color 0.2s ease;
}

.trust-toast-close:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .trust-toast {
    display: none !important; /* Keep mobile screen clean for sticky CTA bar */
  }
}

/* ==========================================================================
   Treatment Filter & Live Search Toolbar
   ========================================================================== */
.treatment-toolbar {
  background: var(--bg-surface);
  border: 1px solid rgba(216, 175, 111, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.treatment-toolbar-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.treatment-search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.treatment-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  font-size: 0.95rem;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--bg-page);
}

.treatment-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  background: #ffffff;
}

.treatment-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--text-muted);
  pointer-events: none;
}

.treatment-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.treatment-pill {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-warm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.treatment-pill:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.treatment-pill.active {
  background: var(--primary);
  color: #111111;
  border-color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* ==========================================================================
   Interactive Pricing & Installment Calculator
   ========================================================================== */
.calculator-card {
  background: var(--bg-surface);
  border: 1.5px solid rgba(216, 175, 111, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.calc-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.calc-option-btn {
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-warm);
  color: var(--text-main);
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-option-btn:hover {
  border-color: var(--primary);
  background: #ffffff;
}

.calc-option-btn.active {
  background: var(--primary-light);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.calc-summary-box {
  background: linear-gradient(135deg, #1d1b18 0%, #111111 100%);
  color: #ffffff;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 175, 111, 0.35);
  margin-top: 1.5rem;
}

.calc-rate-highlight {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

/* ==========================================================================
   404 Page Aesthetics
   ========================================================================== */
.error-hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.error-badge {
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 900;
  font-family: var(--font-serif);
  line-height: 1;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.error-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.error-shortcut-card {
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid rgba(216, 175, 111, 0.22);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error-shortcut-card:hover {
  border-color: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px var(--primary-glow);
}

/* ==========================================================================
   Responsive Treatment Grids
   ========================================================================== */
@media (max-width: 1024px) {
  .treatment-grid,
  .services-showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 640px) {
  .treatment-grid,
  .services-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* ==========================================================================
   Modern Laser Hair Removal Pricing System (Design System Integration)
   Brand color: #d8af6f / Dark surfaces / Premium cards
   ========================================================================== */
.pricing-hero-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.pricing-hero-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.pricing-hero-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* 4-Package Grid */
.laser-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.laser-pkg-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(216, 175, 111, 0.25);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.laser-pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.laser-pkg-card.highlighted {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px var(--primary-glow);
  transform: scale(1.02);
}

.laser-pkg-card.highlighted:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 16px 40px rgba(216, 175, 111, 0.4);
}

.laser-pkg-header {
  padding: 1.5rem 1.25rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(216, 175, 111, 0.15);
  background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 100%);
}

.laser-pkg-card.highlighted .laser-pkg-header {
  background: var(--primary-gradient);
  color: #111111;
}

.laser-pkg-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.laser-pkg-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}

.laser-pkg-body {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.laser-pkg-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.laser-pkg-price-highlight {
  margin: 0.5rem 0 1rem;
}

.laser-pkg-price-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
}

.laser-pkg-price-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-top: 0.2rem;
}

.laser-pkg-discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  border: 1px solid var(--primary-glow);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1rem;
  margin: 0.5rem 0 1rem;
}

.laser-pkg-discount-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1.25rem;
  font-size: 0.82rem;
}

.laser-pkg-discount-table th {
  padding: 0.35rem 0.25rem;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent !important;
}

.laser-pkg-discount-table td {
  padding: 0.45rem 0.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
  background: transparent !important;
}

.laser-pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.laser-pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.laser-pkg-features li span.check {
  color: var(--primary-dark);
  font-weight: 800;
  flex-shrink: 0;
}

.laser-pkg-footer {
  margin-top: auto;
  padding: 0.85rem 1rem;
  background: var(--bg-warm);
  border-top: 1px solid rgba(216, 175, 111, 0.15);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Gold/Warm accent styling for 3er-Starter */
.laser-pkg-card.starter-gold,
.laser-pkg-card.highlighted {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px var(--primary-glow);
  transform: scale(1.02);
}

.laser-pkg-card.starter-gold:hover,
.laser-pkg-card.highlighted:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 16px 40px rgba(216, 175, 111, 0.4);
}

.laser-pkg-card.starter-gold .laser-pkg-header {
  background: var(--primary-gradient);
  color: #111111;
  border-bottom: 1px solid var(--primary);
}

.laser-pkg-card.starter-gold .laser-pkg-badge {
  color: #111111 !important;
  opacity: 0.95;
}

.laser-pkg-card.starter-gold .laser-pkg-title {
  color: #111111 !important;
  letter-spacing: 0.04em;
}

.laser-pkg-card.starter-gold .laser-pkg-price-main {
  color: var(--primary-dark);
}

.laser-pkg-card.starter-gold .laser-pkg-footer {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  border-top: 1px solid rgba(216, 175, 111, 0.2);
}

/* Callout badge for 5er & 8er */
.laser-pkg-callout-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.4rem 0 0.9rem;
}

.laser-pkg-callout-badge .callout-sub {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.laser-pkg-callout-badge .callout-pct {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.05;
  margin: 0.2rem 0;
}

.laser-pkg-callout-badge .callout-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

/* Special Box Circular Badges */
.laser-special-circle-badge {
  background: var(--primary-gradient);
  color: #111111;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(216, 175, 111, 0.35);
  flex-shrink: 0;
}

.laser-special-circle-badge .badge-sub {
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
}

.laser-special-circle-badge .badge-pct {
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.1;
}

.laser-special-circle-badge .badge-label {
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

/* Security / Risk Free Banner (legacy compatibility) */
.laser-guarantee-banner {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-warm) 100%);
  border: 1.5px solid var(--primary-glow);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.laser-guarantee-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.laser-guarantee-icon {
  font-size: 2.2rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.laser-guarantee-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.laser-guarantee-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.laser-guarantee-divider {
  width: 1px;
  height: 48px;
  background: rgba(216, 175, 111, 0.25);
}

.laser-guarantee-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

/* Detailed Einzelpreise Grid */
.laser-details-section {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.laser-einzelpreise-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 175, 111, 0.2);
  box-shadow: var(--shadow-md);
  padding: 1.75rem 1.35rem;
}

.laser-einzelpreise-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.laser-price-col-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 0.65rem;
}

.laser-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.laser-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  gap: 0.6rem;
  transition: background 0.2s ease;
}

.laser-price-item:nth-child(odd) {
  background: rgba(246, 241, 232, 0.45);
}

.laser-price-item:hover {
  background: var(--primary-light);
}

.laser-price-item .area-name {
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.25;
  flex: 1;
}

.laser-price-item .area-price {
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.laser-price-item.highlight-pill {
  background: var(--primary-gradient);
  color: #111111;
  font-weight: 700;
  padding: 0.5rem 0.6rem;
  margin-top: 0.3rem;
  box-shadow: 0 3px 8px rgba(216, 175, 111, 0.35);
}

.laser-price-item.highlight-pill .area-name,
.laser-price-item.highlight-pill .area-price {
  color: #111111;
  font-weight: 800;
}

/* Beine Komplett Special Box */
.laser-special-card {
  background: linear-gradient(145deg, #ffffff 0%, var(--bg-warm) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 1.35rem;
  display: flex;
  flex-direction: column;
}

.laser-special-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--primary-glow);
}

.laser-special-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.laser-special-box {
  background: #ffffff;
  border: 1.5px solid rgba(216, 175, 111, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 0.85rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.laser-special-tag {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
}

.laser-special-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0.2rem 0;
  line-height: 1.1;
  white-space: nowrap;
}

.laser-special-discount-chip {
  background: #fdf1e4;
  color: #d35400;
  border: 1px solid #f8c471;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  margin: 0.35rem auto 0.6rem;
  display: inline-block;
}

.laser-special-total {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.laser-special-rate {
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: auto;
}

.laser-special-notice {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 175, 111, 0.2);
}

/* Bottom Note Bar */
.laser-bottom-note {
  background: var(--bg-warm);
  border: 1px solid rgba(216, 175, 111, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .laser-packages-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .laser-details-section {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .laser-packages-grid {
    grid-template-columns: 1fr !important;
  }
  .laser-einzelpreise-columns {
    grid-template-columns: 1fr !important;
  }
  .laser-special-boxes {
    grid-template-columns: 1fr !important;
  }
  .laser-guarantee-banner {
    flex-direction: column !important;
    text-align: center !important;
  }
  .laser-guarantee-left {
    flex-direction: column !important;
  }
  .laser-guarantee-divider {
    display: none !important;
  }
  .laser-bottom-note {
    border-radius: var(--radius-md) !important;
  }
}

/* ==========================================================================
   Luxury Pricing System & Package Cards (Universal for all /preise/ pages)
   Brand color: #d8af6f / Luxury Warm / High-End Beauty Aesthetics
   ========================================================================== */

/* Subpage Pricing Grid (2, 3 or 4 packages) */
.pricing-system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.pricing-system-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

@media (max-width: 1150px) {
  .pricing-system-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .pricing-system-grid.grid-4 {
    grid-template-columns: 1fr;
  }
}

.pricing-card-box {
  background: var(--bg-surface);
  border: 1.5px solid rgba(216, 175, 111, 0.22);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pricing-card-box:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 12px 36px rgba(216, 175, 111, 0.18), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card-box.popular {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  box-shadow: 0 8px 30px rgba(216, 175, 111, 0.25);
  transform: scale(1.02);
}

.pricing-card-box.popular:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 16px 45px rgba(216, 175, 111, 0.35);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #111111;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(216, 175, 111, 0.4);
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(216, 175, 111, 0.15);
  margin-bottom: 1.5rem;
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.pricing-card-desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.pricing-card-price {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.pricing-card-box.popular .pricing-card-price {
  color: var(--primary-dark);
}

.pricing-card-per {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
}

.pricing-card-features li .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Risk-Free Guarantee Banner */
.risk-free-banner {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-warm) 100%);
  border: 1.5px solid var(--primary-glow);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.risk-free-badge {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.04em;
}

.risk-free-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Subpage 2-Column Details Layout */
.laser-pricing-details-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .laser-pricing-details-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Content Table Improvements */
.content-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(216, 175, 111, 0.25);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  margin-top: 1rem;
}

.content-table thead th {
  background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 100%);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--primary);
  text-align: left;
}

.content-table tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
}

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

.content-table tbody tr:nth-child(even) {
  background: rgba(246, 241, 232, 0.35);
}

.content-table tbody tr:hover {
  background: var(--primary-light);
}

/* ==========================================================================
   Pricing Hub Showcase Cards (Main /preise/ Page)
   ========================================================================== */

.pricing-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.pricing-filter-btn {
  background: #ffffff;
  border: 1.5px solid rgba(216, 175, 111, 0.28);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.25s ease;
}

.pricing-filter-btn:hover,
.pricing-filter-btn.active {
  background: var(--primary-gradient);
  color: #111111;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(216, 175, 111, 0.35);
  font-weight: 700;
}

.pricing-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 1080px) {
  .pricing-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .pricing-hub-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pricing-showcase-card {
  background: #ffffff;
  border: 1.5px solid rgba(216, 175, 111, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(216, 175, 111, 0.22), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pricing-showcase-card.fade-in {
  animation: pricingCardFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pricingCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pricing-card-media {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-warm);
  cursor: pointer;
  text-decoration: none;
}

.pricing-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-showcase-card:hover .pricing-card-media img,
.pricing-card-media:hover img {
  transform: scale(1.06);
}

.pricing-card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pricing-card-title-link:hover,
.pricing-showcase-card:hover .pricing-card-title-link {
  color: var(--primary-dark);
}

.pricing-card-tag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(216, 175, 111, 0.4);
}

.pricing-card-price-chip {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary-gradient);
  color: #111111;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.pricing-showcase-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing-showcase-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-main);
}

.pricing-showcase-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.pricing-showcase-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-showcase-highlights li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pricing-showcase-highlights li span.dot {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1rem;
}

.pricing-showcase-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: auto;
}

/* Redesigned Luxury Installment Calculator */
.calculator-card {
  background: linear-gradient(135deg, #1d1c1a 0%, #2b2723 100%);
  color: #ffffff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 25px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.calculator-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216, 175, 111, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.calc-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.calc-option-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(216, 175, 111, 0.25);
  color: #ffffff;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}

.calc-option-btn:hover {
  background: rgba(216, 175, 111, 0.18);
  border-color: var(--primary);
}

.calc-option-btn.active {
  background: var(--primary-gradient);
  color: #111111;
  border-color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(216, 175, 111, 0.4);
}

.calc-summary-box {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(216, 175, 111, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1.75rem;
}

.calc-rate-highlight {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .calculator-card {
    padding: 1.5rem;
  }
  .calc-option-grid {
    grid-template-columns: 1fr !important;
  }
  .pricing-showcase-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Highlight Cards & Spotlight for Gutscheine & Deals
   ========================================================================== */
.feature-card-highlight {
  position: relative !important;
  border: 2px solid var(--primary) !important;
  box-shadow: 0 10px 30px rgba(216, 175, 111, 0.2) !important;
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%) !important;
  transition: var(--transition-smooth);
}

.feature-card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 3;
}

.feature-card-highlight:hover {
  border-color: var(--primary-dark) !important;
  box-shadow: 0 16px 40px rgba(216, 175, 111, 0.3) !important;
  transform: translateY(-6px) !important;
}

.vip-ribbon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-gradient);
  color: #111111;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(216, 175, 111, 0.4);
  z-index: 2;
}

/* Spotlight Dual Box under Hero / in Sections */
.deals-vouchers-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin: 2.5rem 0 3.5rem;
}

@media (max-width: 860px) {
  .deals-vouchers-spotlight {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.spotlight-box {
  background: #ffffff;
  border: 1.5px solid rgba(216, 175, 111, 0.32);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.spotlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(216, 175, 111, 0.22);
  border-color: var(--primary);
}

.spotlight-box-img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.spotlight-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.spotlight-box:hover .spotlight-box-img img {
  transform: scale(1.06);
}

.spotlight-box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  background: var(--primary-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
  width: fit-content;
}

@media (max-width: 560px) {
  .spotlight-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }
  .spotlight-box-img {
    width: 100%;
    height: 170px;
  }
}

/* Consultation Highlight Grid */
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .consultation-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

/* ==========================================================================
   MediPay Flexible Financing Banner Component
   ========================================================================== */
.medipay-finance-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(216, 175, 111, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 3.5rem auto 1.5rem;
  max-width: 1140px;
  position: relative;
}

.medipay-card-inner {
  padding: 2.25rem 2.5rem 1.75rem;
}

.medipay-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.medipay-header-left {
  flex: 1;
  min-width: 320px;
}

.medipay-neu-badge {
  display: inline-block;
  background: #c28b38;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.medipay-title-main {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 0.25rem;
  color: #111827;
  letter-spacing: -0.01em;
}

.medipay-title-sub {
  color: #c28b38;
  display: block;
}

.medipay-intro-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  margin-top: 0.75rem;
  max-width: 540px;
}

.medipay-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.medipay-logo-icon {
  width: 44px;
  height: 44px;
  color: #d8232a;
  flex-shrink: 0;
}

.medipay-logo-text {
  display: flex;
  flex-direction: column;
}

.medipay-logo-name {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.03em;
}

.medipay-logo-name span {
  font-weight: 500;
  color: #334155;
}

.medipay-logo-tagline {
  font-size: 0.82rem;
  color: #1e293b;
  font-weight: 600;
  margin-top: 0.35rem;
  letter-spacing: 0.01em;
}

/* 3-Column Content Body */
.medipay-content-grid {
  display: grid;
  grid-template-columns: 1.25fr auto 1.1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.medipay-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.medipay-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.medipay-benefit-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d8af6f;
  background: #fdfaf6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #c28b38;
  flex-shrink: 0;
}

.medipay-benefit-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.medipay-benefit-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.4;
}

/* Center Highlight Circle */
.medipay-circle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem;
}

.medipay-circle-card {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  border: 2px solid #eab308;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.18);
  position: relative;
}

.medipay-circle-icon {
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.medipay-circle-sub {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.medipay-circle-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: #d8232a;
  line-height: 1;
  margin: 0.2rem 0 0.15rem;
  letter-spacing: -0.02em;
}

.medipay-circle-footnote {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

/* Right Info Box */
.medipay-info-box {
  background: #fdfbf7;
  border: 1px solid rgba(216, 175, 111, 0.3);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.medipay-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.medipay-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c28b38;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.medipay-info-icon.outline-gold {
  background: #fdfaf6;
  border: 1.5px solid #c28b38;
  color: #c28b38;
}

.medipay-info-desc strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.medipay-info-desc p {
  margin: 0;
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.4;
}

/* Bottom Bar */
.medipay-bottom-bar {
  background: #fdf8f4;
  border-top: 1px solid rgba(216, 175, 111, 0.25);
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.medipay-bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.medipay-heart-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c28b38;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.medipay-bottom-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.medipay-bottom-text p {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: #4b5563;
}

.medipay-cta-btn {
  background: #d8232a;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(216, 35, 42, 0.25);
}

.medipay-cta-btn:hover {
  background: #b91c1c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 35, 42, 0.35);
}

.medipay-legal-note {
  font-size: 0.76rem;
  color: #6b7280;
  line-height: 1.45;
  margin-top: 0.75rem;
  padding: 0 0.5rem;
  text-align: left;
}

@media (max-width: 1024px) {
  .medipay-content-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .medipay-circle-wrap {
    order: -1;
    margin: 1rem 0;
  }
  .medipay-card-inner {
    padding: 1.5rem !important;
  }
  .medipay-bottom-bar {
    padding: 1.25rem 1.5rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .medipay-cta-btn {
    width: 100% !important;
  }
}

