/* ─── CSS Variables ──────────────────────────────────────────────────────────── */
:root {
  --bg: #09090b;
  --bg-secondary: rgba(39,39,42,0.3);
  --card: #18181b;
  --card-hover: #1f1f23;
  --border: rgba(255,255,255,0.08);
  --border-primary: rgba(168,85,247,0.2);
  --primary: #a855f7;
  --primary-dark: #9333ea;
  --primary-glow: rgba(168,85,247,0.6);
  --foreground: #fafafa;
  --muted: rgba(250,250,250,0.5);
  --input-bg: rgba(24,24,27,0.8);
  --radius: 12px;
  --shadow-primary: 0 0 30px rgba(168,85,247,0.3);
}

/* ─── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--foreground);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
.font-display {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
h1, h2, h3, h4 { line-height: 1.1; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.text-glow {
  text-shadow: 0 0 35px rgba(168,85,247,0.8);
}

/* ─── Racing Background ──────────────────────────────────────────────────────── */
.racing-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.racing-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,11,0.95), rgba(9,9,11,0.9), rgba(9,9,11,0.95));
}
.racing-glow-1 {
  position: absolute;
  left: 12%;
  top: 22%;
  width: 600px;
  height: 600px;
  background: rgba(168,85,247,0.06);
  border-radius: 50%;
  filter: blur(130px);
}
.racing-glow-2 {
  position: absolute;
  right: 14%;
  bottom: 20%;
  width: 400px;
  height: 400px;
  background: rgba(168,85,247,0.04);
  border-radius: 50%;
  filter: blur(110px);
}
@media (max-width: 767px) {
  /* filter:blur() erzeugt GPU-Compositing-Layer die mit dem Karussell-Scroll
     kollidieren und iOS WebKit zum Hängen bringen. Radial-Gradient sieht
     identisch aus ohne jeglichen GPU-Overhead. */
  .racing-glow-1 {
    left: 25%; top: 25%; width: 300px; height: 300px;
    filter: none;
    background: radial-gradient(circle, rgba(168,85,247,0.09) 0%, transparent 70%);
  }
  .racing-glow-2 {
    right: 25%; bottom: 33%; width: 220px; height: 220px;
    filter: none;
    background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
  }
  /* Backdrop-filter auf der Nav hält GPU-Layer dauerhaft aktiv – auf Mobile
     nicht nötig da Hintergrund ohnehin fast opak ist. */
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(9,9,11,0.98); }
}

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.site-wrapper { position: relative; z-index: 10; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 4rem; } }

/* ─── Navigation ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(9,9,11,0.95);
  border-bottom: 1px solid var(--border-primary);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: 80px;
}
@media (min-width: 640px) { .nav-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }
.nav-logo { display: flex; align-items: center; justify-content: center; }
.nav-logo img { height: 56px; width: auto; }
.nav-left { display: flex; align-items: center; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; }
.nav-link {
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-link:hover { color: var(--primary); }
@media (max-width: 767px) {
  .nav-logo img { height: 44px; }
  .nav-inner { height: 64px; }
}
@media (max-width: 400px) {
  .nav-logo img { height: 38px; }
}

/* ─── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 40px rgba(168,85,247,0.7);
}
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--card);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(168,85,247,0.5); }
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 8px;
}
.btn-xs {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 8px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-dark); box-shadow: 0 0 20px rgba(168,85,247,0.5); }
@media (max-width: 767px) { .nav-cta-desktop { display: none; } }

/* ─── Hero Section ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg), rgba(9,9,11,0.95), var(--bg));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 1rem 4rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-content.with-video { grid-template-columns: 1fr 1fr; }
@media (max-width: 1023px) { .hero-content.with-video { grid-template-columns: 1fr; } }
@media (min-width: 640px) { .hero-content { padding: 6rem 1.5rem 5rem; } }
@media (min-width: 1024px) { .hero-content { padding: 7rem 4rem 4rem; } }
.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero h1 .text-glow {
  color: var(--primary);
  text-shadow: 0 0 35px rgba(168,85,247,0.8);
}
.hero p {
  color: rgba(250,250,250,0.8);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 32rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.hero-video-wrap {
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-video-wrap.visible { opacity: 1; }
@media (min-width: 1024px) { .hero-video-wrap { justify-content: flex-end; } }
.hero-video-box {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: 0 0 70px rgba(168,85,247,0.4);
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9/16;
  background: linear-gradient(145deg, #1a0530, #0d0515);
}
@media (min-width: 640px) { .hero-video-box { max-width: 320px; } }
@media (min-width: 1024px) { .hero-video-box { max-width: 360px; } }
.hero-video-box video { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0,0,0,0.3);
}
.hero-video-play .play-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(168,85,247,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(168,85,247,0.7);
}
.hero-video-play .play-icon svg { margin-left: 3px; }
.hero-bottom-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* ─── Section Commons ────────────────────────────────────────────────────────── */
section { position: relative; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.75rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.section-header p { color: var(--muted); font-size: 1.1rem; max-width: 40rem; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 3rem; }
.section-cta p { color: rgba(250,250,250,0.7); margin-bottom: 1rem; font-size: 1.05rem; }

/* ─── Services ───────────────────────────────────────────────────────────────── */
.services-section { padding: 5rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 30px rgba(168,85,247,0.15);
}
.service-icon {
  display: inline-block;
  padding: 0.75rem;
  background: rgba(168,85,247,0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.service-card:hover .service-icon { background: rgba(168,85,247,0.2); }
.service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.375rem; }
.service-card .service-question {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(168,85,247,0.55), 0 0 20px rgba(168,85,247,0.3);
}
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.service-expand { margin-top: 0.75rem; }
.service-expand p { margin-bottom: 0.875rem; }
.btn-mehr {
  display: block;
  margin-top: 0.75rem;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn-mehr:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--primary);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn-call:hover { background: var(--primary-dark); box-shadow: 0 0 20px rgba(168,85,247,0.5); }

/* ─── Gallery ─────────────────────────────────────────────────────────────────── */
.gallery-section { padding: 5rem 0; background: var(--bg-secondary); overflow: hidden; }

/* Carousel */
.carousel-outer { position: relative; }
/* Kein scroll-snap und kein CSS-seitiges scroll-behavior: Das Karussell läuft
   gleichmäßig durch und setzt seine Position pro Frame selbst. Snap würde die
   Position ständig auf die nächste Karte zurückziehen (sichtbares Ruckeln),
   `scroll-behavior: smooth` jede dieser Zuweisungen zusätzlich animieren.
   Die Pfeile scrollen weiterhin weich – über behavior:'smooth' im Aufruf. */
.carousel-viewport {
  overflow-x: hidden;
  scrollbar-width: none;
  cursor: default;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-track {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 3.25rem;
  user-select: none;
  -webkit-user-select: none;
}
@media (min-width: 640px) { .carousel-track { gap: 1.5rem; padding: 0.5rem 3.5rem; } }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(168,85,247,0.9);
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.carousel-arrow:hover { background: var(--primary); box-shadow: 0 0 25px rgba(168,85,247,0.6); }
.carousel-prev { left: 0.375rem; }
.carousel-next { right: 0.375rem; }
@media (max-width: 640px) {
  .carousel-arrow { width: 2rem; height: 2rem; }
  .carousel-prev { left: 0.25rem; }
  .carousel-next { right: 0.25rem; }
  .carousel-track { padding: 0.5rem 2.75rem; }
}

.gallery-card {
  position: relative;
  width: 260px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
@media (min-width: 640px) { .gallery-card { width: 340px; } }
@media (max-width: 400px) { .gallery-card { width: min(260px, calc(100vw - 5.5rem)); } }
.gallery-card:hover { border-color: rgba(168,85,247,0.5); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent, transparent);
  pointer-events: none;
}
.gallery-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  pointer-events: none;
}
.gallery-card-info p { color: #fff; font-weight: 600; font-size: 0.875rem; }
.gallery-card-info span { color: var(--primary); font-size: 0.75rem; }
.video-card {
  position: relative;
  width: 260px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
  background: linear-gradient(145deg, #1a0530, #0d0515);
}
.video-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 640px) { .video-card { width: 340px; } }
@media (max-width: 400px) { .video-card { width: min(260px, calc(100vw - 5.5rem)); } }
.video-card:hover { border-color: rgba(168,85,247,0.5); }
.video-card video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.video-card:hover .video-card-overlay { background: rgba(0,0,0,0.35); }
.play-btn {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(168,85,247,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(168,85,247,0.5);
  transition: background 0.2s;
}
.video-card:hover .play-btn { background: var(--primary); }
.play-btn svg { margin-left: 3px; }
.video-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.video-card-label p { color: var(--primary); font-size: 0.8rem; }

/* ─── Before/After Slider ────────────────────────────────────────────────────── */
.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
}
/* Beide Bilder liegen deckungsgleich übereinander und behalten immer die volle
   Größe. Nur der sichtbare Ausschnitt des Vorher-Bilds wird per clip-path
   beschnitten – dadurch bleibt der Bildausschnitt beim Ziehen unverändert. */
.ba-slider .ba-after-img,
.ba-slider .ba-before-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.ba-slider .ba-before-img { clip-path: inset(0 50% 0 0); }
.ba-label-before {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  pointer-events: none;
}
.ba-label-after {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  background: rgba(168,85,247,0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  pointer-events: none;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: #fff;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  z-index: 10;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.25rem;
  height: 2.25rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
  touch-action: none;
  min-height: 44px;
}
.ba-range::-webkit-slider-thumb { width: 44px; height: 44px; }
.ba-range::-moz-range-thumb { width: 44px; height: 44px; }
/* Hinweis: Die frühere „ba-auto"-Animation animierte die Breite des Vorher-
   Containers und ließ das Bild dadurch zoomen. Sie wurde ersatzlos entfernt –
   der Vergleich läuft ausschließlich über den Regler. */

/* ─── Modal ───────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.85);
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 48rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.modal-close:hover { background: rgba(0,0,0,0.8); }
.modal-body { padding: 1.25rem 1.5rem; }
.modal-body h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.modal-body p { color: var(--muted); font-size: 0.875rem; }

/* ─── References ─────────────────────────────────────────────────────────────── */
.references-section { padding: 6rem 0; overflow: hidden; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.google-badge .rating { font-weight: 600; font-size: 1.125rem; }
.google-badge .review-count { color: var(--muted); font-size: 0.75rem; }
.stars { display: flex; gap: 2px; }
.star { color: #fbbc05; font-size: 1rem; }
.star.empty { color: rgba(250,250,250,0.2); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr; } }
@property --review-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.review-card {
  position: relative;
  background: linear-gradient(var(--card), var(--card)) padding-box,
              conic-gradient(from var(--review-angle), rgba(168,85,247,0.08), rgba(168,85,247,0.9) 20%, rgba(168,85,247,0.08) 40%) border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
  animation: review-border-spin 5s linear infinite;
}
.review-card:hover {
  box-shadow: 0 0 35px rgba(168,85,247,0.2);
}
@keyframes review-border-spin {
  to { --review-angle: 360deg; }
}
.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-name { font-weight: 600; color: var(--foreground); line-height: 1.2; }
.review-time { color: var(--muted); font-size: 0.75rem; }
.review-text { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-top: 0.75rem; }
.google-g { position: absolute; top: 1.25rem; right: 1.25rem; }

/* ─── Contact Section ────────────────────────────────────────────────────────── */
.contact-section { padding: 5rem 0; background: var(--bg-secondary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
}
@media (min-width: 480px) { .contact-form-card { padding: 1.5rem 2rem; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  user-select: none;
  -webkit-user-select: none;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--input-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--foreground);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--primary); }
.form-input.field-invalid { border-color: #f87171 !important; box-shadow: 0 0 0 3px rgba(248,113,113,0.3) !important; }
.privacy-label.field-invalid { color: #f87171 !important; }
.privacy-label.field-invalid input[type="checkbox"] { outline: 2px solid #f87171 !important; outline-offset: 2px; border-radius: 2px; }
.form-input option { background: #18181b; }
.service-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .service-chips { grid-template-columns: 1fr 1fr 1fr; } }
.chip-label {
  display: block;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.chip-label input { display: none; }
.chip-text {
  display: flex;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  justify-content: center;
  text-align: center;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(168,85,247,0.35);
  background: #1a1a24;
  color: #a0a0b0;
  font-size: 0.8125rem;
  line-height: 1.3;
  min-height: 52px;
  transition: all 0.15s;
  hyphens: auto;
  word-break: break-word;
}
.chip-label input:checked + .chip-text {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(168,85,247,0.4);
}
.form-error { color: #f87171; font-size: 0.875rem; display: flex; align-items: center; gap: 0.375rem; margin-bottom: 0.75rem; }
.form-success { color: #4ade80; }
.error-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f87171;
  font-size: 0.875rem;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}
.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.btn-submit:hover:not(:disabled) { background: var(--primary-dark); box-shadow: 0 0 30px rgba(168,85,247,0.6); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  cursor: pointer;
  line-height: 1.4;
}
.privacy-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
.privacy-label a, .link-btn {
  color: var(--primary);
  text-decoration: underline;
}
.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  cursor: pointer;
}
/* ─── Datenschutz Modal ── */
.ds-modal-body {
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.ds-modal-body h2 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.5rem 0 0.5rem;
}
.ds-modal-body h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 1rem 0 0.35rem;
}
.ds-modal-body p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.ds-modal-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.2s;
}
.info-card:hover { border-color: rgba(168,85,247,0.5); box-shadow: 0 0 20px rgba(168,85,247,0.1); }
.info-card.hours-card { background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.25); }
.info-icon {
  padding: 0.75rem;
  background: rgba(168,85,247,0.1);
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--primary);
}
.info-icon svg { display: block; }
.info-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem; }
.info-card p { color: var(--muted); font-size: 0.9rem; }
.info-card .info-value { color: var(--primary); font-weight: 600; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; margin-bottom: 0.375rem; }
.hours-row span:first-child { color: var(--muted); }
.hours-row span:last-child { color: var(--foreground); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  background: rgba(39,39,42,0.5);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { grid-column: 1 / -1; }
@media (min-width: 768px) { .footer-logo { grid-column: auto; } }
.footer-logo img { height: 48px; width: auto; margin-bottom: 1rem; }
@media (min-width: 640px) { .footer-logo img { height: 64px; } }
.footer-logo p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.75rem; max-width: 28rem; }
.footer-logo .tagline { color: var(--primary); font-size: 0.8rem; letter-spacing: 0.1em; }
.footer-links h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 1rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-links button {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.footer-links a:hover, .footer-links button:hover { color: var(--primary); }
.social-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social-link {
  padding: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--foreground);
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
.social-link:hover { border-color: var(--primary); background: rgba(168,85,247,0.1); color: var(--primary); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

/* ─── Cookie Banner ──────────────────────────────────────────────────────────── */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(15, 10, 25, 0.97);
  border-top: 1px solid rgba(168,85,247,0.3);
  padding: 1rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
#cookieBanner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(250,250,250,0.75);
  line-height: 1.5;
}
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.cookie-btn-accept:hover { background: var(--primary-dark); box-shadow: 0 0 18px rgba(168,85,247,0.5); }
.cookie-btn-decline {
  padding: 0.5rem 1rem;
  background: none;
  color: rgba(250,250,250,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.cookie-btn-decline:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
@media (max-width: 480px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}

/* ─── Floating Call ──────────────────────────────────────────────────────────── */
.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.2s;
}
.floating-call:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 30px rgba(168,85,247,0.7);
  transform: scale(1.05);
}
.floating-call svg { display: block; }

/* ─── Animations ─────────────────────────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ─── Landing Page ───────────────────────────────────────────────────────────── */
.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.landing-hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.landing-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.landing-hero p {
  color: rgba(250,250,250,0.75);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 40rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.bullets-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
  list-style: none;
}
.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,250,250,0.85);
  font-size: 0.95rem;
}
.bullet-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(168,85,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.landing-cta-group { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .landing-cta-group { flex-direction: row; justify-content: center; } }

/* ─── Admin Styles ───────────────────────────────────────────────────────────── */
.admin-body { min-height: 100vh; background: var(--bg); color: var(--foreground); }
.admin-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header h1 { font-weight: 600; font-size: 1rem; }
.admin-header p { color: var(--muted); font-size: 0.75rem; }
.admin-tabs {
  display: flex;
  gap: 4px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.tab-btn {
  flex: 1;
  min-width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
}
.tab-btn:hover { color: var(--foreground); background: rgba(255,255,255,0.05); }
.tab-btn.active { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(168,85,247,0.3); }
.admin-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.admin-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.upload-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.upload-preview { border-radius: 8px; overflow: hidden; background: rgba(0,0,0,0.2); border: 1px solid var(--border); margin: 0.75rem 0; }
.upload-preview img, .upload-preview video { width: 100%; max-height: 10rem; object-fit: contain; display: block; }
.upload-empty {
  height: 5rem;
  border-radius: 8px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  margin: 0.75rem 0;
}
.progress-bar { width: 100%; background: var(--border); border-radius: 9999px; height: 0.5rem; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary); border-radius: 9999px; transition: width 0.15s; }
.progress-info { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); margin-bottom: 4px; }
.action-row { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.btn-upload {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem;
  background: rgba(168,85,247,0.1);
  color: var(--primary);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-upload:hover { background: rgba(168,85,247,0.2); }
.btn-upload:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-delete {
  width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 0.75rem;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-delete:hover { background: rgba(248,113,113,0.1); }
.btn-delete:disabled { opacity: 0.4; cursor: not-allowed; }
.submission-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}
.submission-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.5rem; }
.submission-name { font-weight: 600; }
.submission-meta { font-size: 0.75rem; color: var(--muted); }
.submission-fields { display: grid; grid-template-columns: 1fr; gap: 0.25rem 1rem; font-size: 0.875rem; }
@media (min-width: 640px) { .submission-fields { grid-template-columns: 1fr 1fr; } }
.field-row { display: flex; gap: 0.375rem; }
.field-label { color: var(--muted); flex-shrink: 0; }
.field-value { color: var(--foreground); word-break: break-all; }
.field-value a { color: var(--primary); }
.field-value a:hover { text-decoration: underline; }
.submission-message { margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px solid var(--border); font-size: 0.875rem; color: var(--muted); white-space: pre-wrap; }
.btn-danger-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-danger-sm:hover { background: rgba(248,113,113,0.1); }
.toast {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
  border-radius: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  max-width: 90vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease;
}
.toast.ok { background: #16a34a; color: #fff; border: 1px solid rgba(34,197,94,0.4); }
.toast.error { background: #dc2626; color: #fff; border: 1px solid rgba(239,68,68,0.4); }
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(-8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.hidden { display: none !important; }
.admin-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.admin-input:focus { border-color: var(--primary); }
.admin-form-group { margin-bottom: 1rem; }
.admin-form-group label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.375rem;
}
.info-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--muted);
}
.logout-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.logout-btn:hover { background: rgba(248,113,113,0.1); }

/* ─── Login Page ─────────────────────────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.login-box { width: 100%; max-width: 24rem; }
.login-icon {
  display: inline-flex;
  padding: 1rem;
  background: rgba(168,85,247,0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.login-center { text-align: center; margin-bottom: 2rem; }
.login-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.login-form .form-group { margin-bottom: 1rem; }
.pw-field { position: relative; }
.pw-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.pw-toggle:hover { color: var(--foreground); }

/* ─── Utility ─────────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.gap-2 { gap: 0.5rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.project-pair { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .project-pair { grid-template-columns: 1fr 1fr; } }
.upload-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.upload-card-header .label { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.875rem; }
.saved-badge { display: flex; align-items: center; gap: 4px; color: #4ade80; font-size: 0.75rem; font-weight: 600; }
.project-section { margin-bottom: 2rem; }
.project-section-title { margin-bottom: 0.75rem; }
.admin-hint { background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.25); border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.8rem; line-height: 1.6; color: var(--muted); margin-bottom: 1rem; }
.project-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; }
.project-item-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .videos-grid { grid-template-columns: 1fr 1fr; } }

/* ─── Promo Popup ────────────────────────────────────────────────────────── */
#promoOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#promoOverlay.visible { opacity: 1; pointer-events: auto; }
#promoModal {
  position: relative;
  max-width: min(92vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
#promoOverlay.visible #promoModal { transform: scale(1); }
#promoImg {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
#promoClose {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20,20,20,0.9);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
  padding: 0;
  transition: background 0.2s;
}
#promoClose:hover { background: rgba(168,85,247,0.85); border-color: rgba(168,85,247,0.5); }
@media (max-width: 640px) {
  #promoModal { max-width: 82vw; }
  #promoImg   { max-height: 70vh; }
}
