/* ============================================================
   WEGNER SOLUTIONS – Hauptstylesheet (Visual Upgrade v2)
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ============================================================
   CSS VARIABLEN
   ============================================================ */
:root {
  --bg:             #F9F8F6;
  --bg-alt:         #FFFFFF;
  --bg-section:     #F2F0EB;
  --text-primary:   #18181B;
  --text-secondary: #52525B;
  --text-muted:     #A1A1AA;
  --accent:         #B8975A;
  --accent-light:   #F5EDD8;
  --accent-hover:   #9E7F45;
  --border:         #E4E2DD;
  --border-dark:    #C8C4BC;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:      0 16px 56px rgba(0,0,0,0.12);
  --shadow-gold:    0 8px 32px rgba(184,151,90,0.28);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      24px;
  --nav-height:     72px;
  --font-heading:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
}

/* ============================================================
   RESET & BASIS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.015em;
}

h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.78;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.85;
  font-weight: 300;
}

.text-muted { color: var(--text-muted); font-size: 0.875rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 112px 0; }
.section-alt  { background-color: var(--bg-section); }
.section-white { background-color: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.section-header p { margin-top: 18px; }

/* Eyebrow Label */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.01em;
}

/* Primär-Button */
.btn-primary {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(184,151,90,0.4), 0 1px 2px rgba(0,0,0,0.08);
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Sekundär-Button */
.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-dark);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Ghost-Button */
.btn-ghost {
  color: var(--accent);
  padding: 15px 0;
  font-weight: 500;
}

.btn-ghost:hover { color: var(--accent-hover); }
.btn-ghost svg { transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1); }
.btn-ghost:hover svg { transform: translateX(6px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background-color: rgba(249, 248, 246, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(228, 226, 221, 0.7);
  z-index: 1000;
  transition: box-shadow 0.3s, background 0.3s;
}

.nav.scrolled {
  background-color: rgba(249, 248, 246, 0.96);
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.8; }
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
}

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

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

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.nav-mobile { display: none; }

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

  .nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    z-index: 999;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }

  .nav-mobile.open { display: flex; }

  .nav-mobile a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-mobile a:last-of-type { border-bottom: none; }
  .nav-mobile a:hover { color: var(--accent); }
  .nav-mobile .btn { width: 100%; justify-content: center; margin-top: 8px; }
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-content { padding-top: var(--nav-height); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 120px 0 112px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg,
    rgba(245,237,216,0.35) 0%,
    rgba(249,248,246,0) 50%,
    rgba(242,240,235,0.2) 100%);
}

/* Großer Gold-Glow rechts oben */
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -120px;
  width: 800px; height: 800px;
  background: radial-gradient(circle at center,
    rgba(184,151,90,0.12) 0%,
    rgba(184,151,90,0.04) 40%,
    transparent 70%);
  pointer-events: none;
}

/* Subtiler Glow links unten */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center,
    rgba(184,151,90,0.06) 0%,
    transparent 70%);
  pointer-events: none;
}

/* Dekorative Linie oben */
.hero-line-decoration {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(184,151,90,0.4) 30%,
    rgba(184,151,90,0.6) 50%,
    rgba(184,151,90,0.4) 70%,
    transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(255,255,255,0.8) 100%);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(184,151,90,0.25);
  box-shadow: 0 2px 8px rgba(184,151,90,0.12);
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero .lead {
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.hero-trust-item svg { color: var(--accent); flex-shrink: 0; }

.hero-trust-sep {
  width: 1px; height: 14px;
  background: var(--border-dark);
}

/* ============================================================
   BOOKING MOCKUP
   ============================================================ */
.hero-visual { position: relative; }

.booking-mockup {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184,151,90,0.1);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.booking-mockup:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.16), 0 0 0 1.5px rgba(184,151,90,0.2);
  transform: translateY(-6px) rotate(0.3deg);
}

.mockup-header {
  background: linear-gradient(135deg, #18181B 0%, #222228 60%, #1a1a20 100%);
  padding: 26px 30px;
  color: white;
  position: relative;
  overflow: hidden;
}

.mockup-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(184,151,90,0.2) 0%, transparent 70%);
}

.mockup-header h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
  position: relative;
}

.mockup-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  position: relative;
}

.mockup-body { padding: 26px 30px; }

.mockup-step-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.mockup-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.mockup-service {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.mockup-service:hover {
  border-color: rgba(184,151,90,0.4);
  box-shadow: 0 2px 8px rgba(184,151,90,0.1);
}

.mockup-service.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 2px 12px rgba(184,151,90,0.2);
}

.mockup-service-name { font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.mockup-service-duration { color: var(--text-muted); font-size: 0.72rem; }

.mockup-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }

.mockup-time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.time-slot {
  padding: 7px 15px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot:hover:not(.taken) {
  border-color: var(--accent);
  color: var(--accent);
}

.time-slot.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(184,151,90,0.3);
}

.time-slot.taken { opacity: 0.3; cursor: not-allowed; }

.mockup-cta {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.25s;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(184,151,90,0.35);
}

.mockup-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,151,90,0.45);
}

.hero-visual-tag {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(255,255,255,0.95) 100%);
  border: 1px solid rgba(184,151,90,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent-hover);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(184,151,90,0.2);
  animation: gentle-pulse 3s ease-in-out infinite;
  letter-spacing: 0.02em;
}

@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(184,151,90,0.2); }
  50%       { box-shadow: 0 6px 24px rgba(184,151,90,0.38), 0 0 0 4px rgba(184,151,90,0.06); }
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.09), 0 0 0 1px rgba(184,151,90,0.15);
  border-color: rgba(184,151,90,0.2);
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(245,237,216,0.6) 100%);
  box-shadow: 0 4px 16px rgba(184,151,90,0.2);
}

.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  transition: all 0.3s;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ============================================================
   STATS / ZAHLEN
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-item {
  background: var(--bg-alt);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.3s, width 0.3s;
}

.stat-item:hover::after { opacity: 1; width: 64px; }
.stat-item:hover { background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(245,237,216,0.2) 100%); }

.stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-number span { color: var(--accent); }

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* ============================================================
   PROZESS / STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step-counter;
  position: relative;
}

/* Verbindungslinie entfernt */

.step-item {
  position: relative;
  padding-top: 12px;
}

.step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg-alt);
  background: var(--accent);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 4px 12px rgba(184,151,90,0.3);
}

.step-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-weight: 500;
}

.step-item p { font-size: 0.875rem; line-height: 1.7; }

/* ============================================================
   VERGLEICHS-TABELLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 28px;
  text-align: left;
  background: var(--bg-section);
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.compare-table th.highlight {
  background: var(--accent-light);
  color: var(--accent);
}

.compare-table td {
  padding: 16px 28px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table td.highlight {
  background: rgba(245, 237, 216, 0.3);
  color: var(--text-primary);
  font-weight: 500;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.feature-label { font-weight: 500; color: var(--text-primary); }

.check   { color: #22C55E; font-size: 1.1rem; }
.cross   { color: var(--text-muted); font-size: 1.1rem; }
.neutral { color: var(--text-muted); font-size: 1.1rem; }

/* ============================================================
   PREISE KARTEN
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: box-shadow 0.35s cubic-bezier(0.22,1,0.36,1), transform 0.35s;
}

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

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1.5px var(--accent), var(--shadow-md);
  position: relative;
  background: linear-gradient(180deg, rgba(245,237,216,0.2) 0%, var(--bg-alt) 100%);
}

.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(184,151,90,0.35);
}

.pricing-card h3 { font-size: 1.6rem; margin-bottom: 8px; }

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text-primary);
  margin: 20px 0 4px;
  letter-spacing: -0.02em;
}

.pricing-price .currency { font-size: 1.5rem; vertical-align: super; color: var(--text-secondary); }
.pricing-price .period { font-family: var(--font-body); font-size: 0.875rem; color: var(--text-muted); }

.pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 28px; }

.pricing-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-feature svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ============================================================
   KONTAKTFORMULAR
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info .lead { margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-value { font-size: 0.9rem; color: var(--text-secondary); }

.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184,151,90,0.1);
  background: var(--bg-alt);
}

.form-control::placeholder { color: var(--text-muted); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(184,151,90,0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,151,90,0.4);
}

.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }

.form-success-icon {
  width: 56px; height: 56px;
  background: #D1FAE5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: #059669;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  background: none;
  border: none;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0F0E0C 0%, #1a1916 40%, #18181B 100%);
  border-radius: var(--radius-lg);
  padding: 88px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

/* Gold Glow rechts oben */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,151,90,0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Gold Glow links unten */
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,151,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
  line-height: 1.75;
}

/* ============================================================
   NOTICE BOX
   ============================================================ */
.notice {
  border-left: 3px solid var(--accent);
  background: var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}

.notice strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.check-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   BADGE / TAG
   ============================================================ */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-light);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(184,151,90,0.2);
}

/* ============================================================
   HERO PAGE (Unterseiten)
   ============================================================ */
.page-hero {
  padding: 96px 0 84px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(245,237,216,0.22) 0%, transparent 100%);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,151,90,0.5) 50%, transparent 100%);
}

.page-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

.page-hero p { margin-top: 18px; max-width: 580px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0F0E0C;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 36px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,151,90,0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 240px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }

.footer-bottom-links { display: flex; gap: 28px; }

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   LEGAL SEITEN
   ============================================================ */
.legal-content { max-width: 760px; margin: 0 auto; padding: 60px 0 96px; }
.legal-content h1 { margin-bottom: 8px; }
.legal-content .legal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-content h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.legal-content h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.legal-content p, .legal-content li {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 12px;
}
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }

.legal-placeholder {
  display: inline;
  background: rgba(255, 180, 0, 0.2);
  border: 1px dashed rgba(200, 130, 0, 0.5);
  color: #92600A;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 600;
}

.legal-draft-notice {
  background: rgba(255, 180, 0, 0.12);
  border: 1px solid rgba(200, 130, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.legal-draft-notice strong { display: block; color: #92600A; margin-bottom: 6px; font-size: 0.875rem; }
.legal-draft-notice p { color: #92600A; font-size: 0.8rem; margin: 0; }

/* ============================================================
   SCROLL-ANIMATIONEN
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ============================================================
   VISUAL ENHANCEMENT v3 – Liquid Glass Edition
   ============================================================ */

/* ---- Keyframes ---- */
@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(30px, -40px) scale(1.06); }
  50%       { transform: translate(-10px, -20px) scale(0.97); }
  75%       { transform: translate(-30px, 15px) scale(1.03); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%       { transform: translate(-25px, 30px) scale(1.04); }
  60%       { transform: translate(20px, -15px) scale(0.96); }
}

@keyframes shimmer-gold {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes aurora-drift {
  0%, 100% { opacity: 0.55; transform: scaleX(1) translateY(0); }
  50%       { opacity: 0.75; transform: scaleX(1.08) translateY(-8px); }
}

/* ---- Hero: richer mesh + animated orbs ---- */
.hero {
  background:
    radial-gradient(ellipse 70% 55% at 75% 25%, rgba(184,151,90,0.38) 0%, rgba(184,151,90,0.15) 35%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 10% 80%, rgba(184,151,90,0.22) 0%, rgba(184,151,90,0.08) 40%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 88% 88%, rgba(245,237,216,0.9) 0%, transparent 65%),
    #F9F8F6;
}

/* Override original orb pseudo-elements with much stronger + animated versions */
.hero::before {
  background: radial-gradient(circle at center,
    rgba(184,151,90,0.35) 0%,
    rgba(184,151,90,0.18) 30%,
    rgba(184,151,90,0.06) 55%,
    transparent 70%);
  animation: orb-float-1 14s ease-in-out infinite;
}

.hero::after {
  background: radial-gradient(circle at center,
    rgba(184,151,90,0.22) 0%,
    rgba(184,151,90,0.10) 35%,
    transparent 65%);
  animation: orb-float-2 18s ease-in-out infinite;
}

/* Aurora band across hero */
.hero-line-decoration {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(184,151,90,0.2) 15%,
    rgba(184,151,90,0.7) 40%,
    rgba(212,175,107,0.9) 50%,
    rgba(184,151,90,0.7) 60%,
    rgba(184,151,90,0.2) 85%,
    transparent 100%
  );
  animation: aurora-drift 6s ease-in-out infinite;
  filter: blur(0.5px);
}

/* ---- Hero heading: iridescent gold shimmer ---- */
.hero h1 em {
  background: linear-gradient(
    90deg,
    var(--accent)    0%,
    #D4AF6B         25%,
    #F0D898         45%,
    var(--accent)    55%,
    #9E7F45         75%,
    #D4AF6B         88%,
    var(--accent)   100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  animation: shimmer-gold 5s linear infinite;
}

/* ---- Hero badge: frosted glass pill ---- */
.hero-badge {
  background: rgba(255, 254, 251, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(184,151,90,0.28);
  box-shadow:
    0 2px 10px rgba(184,151,90,0.13),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ---- Navigation: premium glass ---- */
.nav {
  background-color: rgba(249, 248, 246, 0.68);
  backdrop-filter: blur(32px) saturate(200%) brightness(1.02);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.02);
  border-bottom: 1px solid rgba(184,151,90,0.10);
  box-shadow: inset 0 -1px 0 rgba(184,151,90,0.06), inset 0 1px 0 rgba(255,255,255,0.7);
}

.nav.scrolled {
  background-color: rgba(249, 248, 246, 0.90);
  border-bottom-color: rgba(184,151,90,0.16);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ---- Features / Steps section: gradient mesh as glass backdrop ---- */
.section-alt {
  background:
    radial-gradient(ellipse 65% 50% at 10% 28%, rgba(184,151,90,0.28) 0%, rgba(184,151,90,0.10) 40%, transparent 65%),
    radial-gradient(ellipse 55% 60% at 90% 80%, rgba(184,151,90,0.22) 0%, rgba(184,151,90,0.08) 40%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 55% 5%,  rgba(245,237,216,0.95) 0%, transparent 70%),
    #F2F0EB;
}

/* ---- Feature cards: real glassmorphism ---- */
.feature-card {
  background: rgba(255, 254, 252, 0.58);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(184,151,90,0.16);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.055),
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 -1px 0 rgba(184,151,90,0.05);
}

.feature-card:hover {
  background: rgba(255, 254, 252, 0.82);
  border-color: rgba(184,151,90,0.26);
  box-shadow:
    0 20px 52px rgba(0,0,0,0.09),
    0 0 0 1px rgba(184,151,90,0.14),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.feature-icon {
  background: rgba(245, 237, 216, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(184,151,90,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

/* ---- Section white: atmospheric gold tint ---- */
.section-white {
  background:
    radial-gradient(ellipse 60% 50% at 90% 15%, rgba(184,151,90,0.18) 0%, rgba(184,151,90,0.06) 40%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 5%  88%, rgba(184,151,90,0.14) 0%, rgba(184,151,90,0.04) 40%, transparent 70%),
    #FFFFFF;
}

/* ---- Stats: glass tiles on gradient mesh ---- */
.stats-row {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,151,90,0.09) 0%, transparent 70%),
    var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

.stat-item {
  background: rgba(255, 254, 252, 0.78);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  transition: background 0.35s, box-shadow 0.35s;
}

.stat-item:hover {
  background: rgba(255, 254, 252, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 0 24px rgba(184,151,90,0.08);
}

/* ---- Booking mockup: elevated glass card ---- */
.booking-mockup {
  background: rgba(255, 254, 252, 0.82);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  border: 1px solid rgba(184,151,90,0.14);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.14),
    0 0 0 1px rgba(184,151,90,0.07),
    inset 0 1px 0 rgba(255,255,255,1);
}

/* ---- Pricing cards: glass ---- */
.pricing-card {
  background: rgba(255, 254, 252, 0.72);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  border: 1px solid rgba(184,151,90,0.13);
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.pricing-card.featured {
  background: rgba(255, 254, 252, 0.90);
  border-color: var(--accent);
  box-shadow:
    0 0 0 1.5px var(--accent),
    var(--shadow-gold),
    inset 0 1px 0 rgba(255,255,255,0.98);
}

/* ---- Contact form: glass panel ---- */
.contact-form {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  border: 1px solid rgba(184,151,90,0.14);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

/* ---- CTA Banner: atmospheric gold glow ---- */
.cta-banner {
  background: linear-gradient(135deg, #090807 0%, #131210 50%, #18181B 100%);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.055),
    inset 0 -1px 0 rgba(184,151,90,0.07);
}

.cta-banner::before {
  background: radial-gradient(ellipse 80% 65% at 72% 15%,
    rgba(184,151,90,0.30) 0%,
    rgba(184,151,90,0.10) 45%,
    transparent 75%);
  width: 720px; height: 520px;
  top: -100px; right: -60px;
}

.cta-banner::after {
  background: radial-gradient(ellipse 65% 55% at 20% 95%,
    rgba(184,151,90,0.18) 0%,
    transparent 65%);
  width: 540px; height: 420px;
}

/* Gold shimmer on CTA h2 italic ---- */
.cta-banner h2 em {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 0%,
    #F0D898 30%,
    rgba(255,255,255,0.9) 50%,
    #D4AF6B 70%,
    rgba(255,255,255,0.95) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  animation: shimmer-gold 5s linear infinite;
}

/* ---- Step number badges: gold gradient ---- */
.step-item::before {
  background: linear-gradient(145deg, #D4AF6B 0%, var(--accent) 50%, #9E7F45 100%);
  box-shadow:
    0 4px 14px rgba(184,151,90,0.38),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* ---- Reveal animation: add subtle scale ---- */
.reveal {
  transform: translateY(28px) scale(0.985);
}
.reveal.visible {
  transform: translateY(0) scale(1);
}

/* ---- Hero visual: gold shimmer glow behind booking mockup ---- */
@keyframes shimmer-rotate {
  0%   { transform: rotate(0deg) scale(1); opacity: 0.7; }
  33%  { transform: rotate(120deg) scale(1.08); opacity: 0.85; }
  66%  { transform: rotate(240deg) scale(0.96); opacity: 0.65; }
  100% { transform: rotate(360deg) scale(1); opacity: 0.7; }
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    rgba(184,151,90,0.00) 0deg,
    rgba(212,175,107,0.32) 60deg,
    rgba(240,216,152,0.48) 90deg,
    rgba(184,151,90,0.28) 130deg,
    rgba(184,151,90,0.00) 180deg,
    rgba(212,175,107,0.18) 240deg,
    rgba(240,216,152,0.35) 280deg,
    rgba(184,151,90,0.00) 360deg
  );
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: shimmer-rotate 10s linear infinite;
}

.hero-visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
    rgba(240,216,152,0.35) 0%,
    rgba(184,151,90,0.20) 35%,
    rgba(184,151,90,0.06) 65%,
    transparent 80%);
  border-radius: 50%;
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
  animation: orb-float-2 8s ease-in-out infinite;
}

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

.hero-visual-tag {
  z-index: 2;
}

/* ---- Eyebrow labels: premium glowing pill ---- */
.section-header .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 18px 6px 12px;
  background: rgba(184,151,90,0.09);
  border: 1px solid rgba(184,151,90,0.32);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 2px 10px rgba(184,151,90,0.10),
    inset 0 1px 0 rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.section-header .eyebrow::before,
.page-hero .eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(184,151,90,0.75), 0 0 3px rgba(184,151,90,0.5);
  flex-shrink: 0;
  animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(184,151,90,0.6); opacity: 1; }
  50%       { box-shadow: 0 0 12px rgba(184,151,90,0.9), 0 0 20px rgba(184,151,90,0.3); opacity: 0.85; }
}

/* ---- Steps: connecting line — centered + draw L→R ---- */
.steps-grid::before {
  display: none;
}

/* ---- Steps: slide in from left, staggered ---- */
.steps-grid .step-item.reveal {
  opacity: 0;
  transform: translateX(-28px) translateY(8px) scale(0.97);
  transition:
    opacity  0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.steps-grid .step-item.reveal.visible {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* Keep the existing delay classes working */
.steps-grid .step-item.reveal-delay-1 { transition-delay: 0.08s; }
.steps-grid .step-item.reveal-delay-2 { transition-delay: 0.22s; }
.steps-grid .step-item.reveal-delay-3 { transition-delay: 0.38s; }
.steps-grid .step-item.reveal-delay-4 { transition-delay: 0.54s; }

/* ---- Feature cards: Apple Vision Pro glass ---- */
.feature-card {
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(52px) saturate(190%) brightness(1.04);
  -webkit-backdrop-filter: blur(52px) saturate(190%) brightness(1.04);
  border: 1px solid rgba(255,255,255,0.60);
  border-top-color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.07),
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 -1px 0 rgba(184,151,90,0.05) inset;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(184,151,90,0.30);
  border-top-color: rgba(255,255,255,0.9);
  box-shadow:
    0 20px 52px rgba(0,0,0,0.09),
    0 0 0 1px rgba(184,151,90,0.12),
    0 1px 0 rgba(255,255,255,0.98) inset;
}

/* ================================================================
   STEPS — APPLE VISION PRO GLASS
   ================================================================ */

/* Richer background so glass has something vivid to blur behind */
.section-alt {
  background:
    radial-gradient(ellipse 70% 60% at 8%  20%, rgba(212,175,107,0.40) 0%, rgba(212,175,107,0.12) 45%, transparent 65%),
    radial-gradient(ellipse 60% 70% at 92% 85%, rgba(184,151,90,0.36) 0%, rgba(184,151,90,0.10) 45%, transparent 62%),
    radial-gradient(ellipse 55% 50% at 50% 50%, rgba(255,252,245,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 90% 35% at 30% 100%, rgba(240,228,196,0.45) 0%, transparent 55%),
    #EDE8DF;
}

/* Glass card on each step item */
.step-item {
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(48px) saturate(180%) brightness(1.03);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(1.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-top-color: rgba(255, 255, 255, 0.90);
  padding: 12px 22px 26px;
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.07),
    0 2px 8px  rgba(0, 0, 0, 0.04),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(184, 151, 90, 0.06),
    inset 1px 0  0 rgba(255, 255, 255, 0.35),
    inset -1px 0 0 rgba(255, 255, 255, 0.25);
  transition:
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(184, 151, 90, 0.28);
  border-top-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 16px 52px rgba(0, 0, 0, 0.09),
    0 4px 16px  rgba(0, 0, 0, 0.05),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(184, 151, 90, 0.10),
    0 0 0 1px rgba(184, 151, 90, 0.10);
  transform: translateY(-3px);
}

/* Circle badge: glass + gold tint — Apple‑style */
.step-item::before {
  background: rgba(184, 151, 90, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(184, 151, 90, 0.50);
  border-top-color: rgba(255, 255, 255, 0.70);
  color: var(--accent);
  box-shadow:
    0 2px 10px rgba(184, 151, 90, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 2;
}

/* ---- Stat items: Apple glass ---- */
.stat-item {
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -1px 0 rgba(184,151,90,0.06);
  transition: background 0.35s, box-shadow 0.35s;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.55);
}

/* ---- Accessibility: respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after,
  .hero-line-decoration,
  .hero h1 em,
  .cta-banner h2 em,
  .section-header .eyebrow::before,
  .page-hero .eyebrow::before {
    animation: none !important;
  }
  .steps-grid::before {
    transform: scaleX(1) !important;
    animation: none !important;
  }
  .steps-grid .step-item.reveal {
    transform: translateY(28px) scale(0.985);
  }
  .hero h1 em {
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
    background: none;
  }
  .cta-banner h2 em {
    -webkit-text-fill-color: rgba(255,255,255,0.9);
    color: rgba(255,255,255,0.9);
    background: none;
  }
}

/* ============================================================
   RESPONSIVE – Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ============================================================
   RESPONSIVE – Mobile (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .cta-banner { padding: 56px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-trust-sep { display: none; }
  .stat-number { font-size: 3rem; }
  h1 { font-size: clamp(2.6rem, 8vw, 3.5rem); }
}
