
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --blau: #1e3a5f;
  --blau-dark: #071322;
  --cyan: #4fc3d4;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  background: linear-gradient(135deg, #071322 0%, #0d2137 50%, #071322 100%);
  min-height: 100vh;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 19, 34, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.2rem;
}

.nav-logo img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

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

.lang-dropdown-container {
  position: relative;
}

.lang-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.lang-list {
  position: absolute;
  top: 120%;
  right: 0;
  background: rgba(7, 19, 34, 0.98);
  border: 1px solid var(--gold);
  border-radius: 16px;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  display: none;
  grid-template-columns: repeat(2, 1fr);
  padding: 0.5rem;
  gap: 0.3rem;
  z-index: 1000;
}

.lang-list.show {
  display: grid;
}

.lang-option {
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease;
}

.lang-option:hover {
  background: rgba(201, 168, 76, 0.2);
}

.lang-option.active {
  background: var(--gold);
  color: #000;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  border: none;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.hero {
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, rgba(0,0,0,0) 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

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

.hero-badge {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, #fff 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: #a0aec0;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section {
  padding: 6rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: #a0aec0;
  font-size: 1.1rem;
  margin-bottom: 4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card p {
  color: #a0aec0;
}

/* Pricing cards */
.paket {
  background: rgba(13, 33, 55, 0.4);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 24px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.paket:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transform: translateY(-5px);
}

.paket.highlight {
  border-color: var(--gold);
  background: rgba(13, 33, 55, 0.6);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.1);
}

.paket-siegel {
  background: var(--gold);
  color: #000;
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin: 0 auto 1.5rem;
}

.paket-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.paket-hours {
  color: #a0aec0;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.paket-preis {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--gold-light);
}

.paket-preis small {
  font-size: 1rem;
  color: #a0aec0;
  font-weight: 500;
}

.paket ul {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.paket ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: #cbd5e0;
}

.paket ul li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* FAQ section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item summary {
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '▾';
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

.faq-item p {
  margin-top: 1rem;
  color: #a0aec0;
  line-height: 1.7;
}

/* Cal.com Embed */
.calendar-section {
  background: rgba(13, 33, 55, 0.2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.calendar-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  height: 650px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Bottom mesh network links */
.mesh-section {
  border-top: 1px solid var(--glass-border);
}

.mesh-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.stadt-link {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  word-break: break-word;
  overflow-wrap: break-word;
}

.stadt-link:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

footer {
  background: #040d16;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem;
  text-align: center;
  color: #a0aec0;
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

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

@media(max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  nav {
    padding: 0.8rem 1rem;
  }
  .nav-logo span {
    display: none;
  }
}

/* VIP Modal Responsive Split Layout */
.vip-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}
.vip-modal-left {
  border-right: 1px solid rgba(201,168,76,0.15);
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vip-modal-right {
  display: flex;
  flex-direction: column;
}
@media (max-width: 820px) {
  .vip-modal-container {
    padding: 1.5rem !important;
  }
  .vip-modal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .vip-modal-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding-bottom: 1.5rem;
  }
}

/* QR CODE FLOATING SLIDESHOW */
.qr-slideshow {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
  opacity: 0;
  animation: qrFadeIn 0.8s ease 0.5s forwards;
  width: 140px;
  background: rgba(7, 19, 34, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.qr-slideshow:hover {
  border-color: var(--gold-light);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.15);
}
.qr-slide-label {
  font-size: 0.72rem;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.qr-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.2;
}
.qr-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  pointer-events: none;
}
.qr-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.qr-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: block;
}
.qr-slide-name {
  margin-top: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
.qr-dots {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}
.qr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.qr-dot.active {
  background: var(--gold-light);
  box-shadow: 0 0 6px var(--gold);
}
@keyframes qrFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media(max-width: 1024px) {
  .qr-slideshow {
    width: 120px;
    padding: 8px;
  }
}
@media(max-width: 768px) {
  .qr-slideshow {
    position: static;
    margin: 24px auto;
    width: 140px;
  }
}
