/* ==========================================
   MAGIC MOMENT BOX – main.css
   Vollständiges Stylesheet
   ========================================== */

/* ==========================================
   1. IMPORTS (Google Fonts)
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@600&display=swap');


/* ==========================================
   2. CSS CUSTOM PROPERTIES (Design-Token)
   ========================================== */
:root {
  /* Farben */
  --color-bg-primary:    #1a1a2e;
  --color-bg-secondary:  #16213e;
  --color-bg-card:       #0f3460;
  --color-accent-red:    #e94560;
  --color-accent-gold:   #f5a623;
  --color-white:         #ffffff;
  --color-text:          #eaeaea;
  --color-text-muted:    #a0a8b8;
  --color-border:        rgba(255, 255, 255, 0.08);

  /* Typografie */
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-script:   'Dancing Script', cursive;

  /* Abstände */
  --spacing-xs:    8px;
  --spacing-sm:    16px;
  --spacing-md:    24px;
  --spacing-lg:    48px;
  --spacing-xl:    80px;
  --spacing-xxl:   120px;

  /* Border Radius */
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --radius-full:   9999px;

  /* Schatten */
  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:     0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg:     0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-hover:  0 20px 60px rgba(233, 69, 96, 0.2);
  --shadow-glow:   0 0 40px rgba(233, 69, 96, 0.3);

  /* Transitionen */
  --transition:        0.3s ease;
  --transition-slow:   0.6s ease;

  /* Layout */
  --container-max:     1200px;
  --navbar-height:     72px;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-white);
}


/* ==========================================
   4. UTILITY CLASSES
   ========================================== */

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Sektions-Padding */
.section {
  padding: var(--spacing-xxl) 0;
}

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

/* Section-Header */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-red);
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Highlight-Text (Akzentfarbe in Headlines) */
.highlight {
  color: var(--color-accent-red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--transition),
              box-shadow var(--transition),
              background var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent-red);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

.btn--primary:hover {
  background: #d63651;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233, 69, 96, 0.5);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* Trennlinie */
.divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent-red);
  border-radius: var(--radius-full);
  margin: var(--spacing-sm) auto 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
  z-index: 1;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--color-text-muted);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--color-accent-red);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease infinite;
}

/* ==========================================
   5. SCROLL-REVEAL ANIMATIONEN
   Elemente starten unsichtbar und fliegen
   per JS-Trigger (.visible) ins Bild
   ========================================== */

   .hero-scroll-indicator {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-scroll-indicator.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}f
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--scale.visible {
  opacity: 1;
  transform: scale(1);
}


/* ==========================================
   6. NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 10px;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: background var(--transition),
              backdrop-filter var(--transition),
              box-shadow var(--transition);
}

/* Beim Scrollen: Glaseffekt */
.navbar.scrolled {
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo__main {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.nav-logo__sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-red);
  margin-top: 2px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-red);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

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

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

/* Aktiver Link (gesetzt via JS beim Scrollen) */
.nav-links a.active-link {
  color: var(--color-accent-red);
}

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

/* Navbar CTA-Button */
.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Hamburger (nur Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger → X Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ==========================================
   7. HERO SEKTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--navbar-height);
}

/* Hintergrund-Gradient */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%,
      rgba(233, 69, 96, 0.12) 0%,
      transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%,
      rgba(245, 166, 35, 0.06) 0%,
      transparent 60%);
  pointer-events: none;
}

/* Dekorative Punkte */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.08) 0%, transparent 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero Text */
.hero-content {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: rgba(233, 69, 96, 0.12);
  border: 1px solid rgba(233, 69, 96, 0.25);
  color: var(--color-accent-red);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

.hero-title .script-line {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-accent-gold);
  font-weight: 400;
  margin-bottom: 4px;
}

.hero-logo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.hero-logo-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(233, 69, 96, 0.25));
  animation: logoFadeIn 1s ease forwards;
}

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

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--spacing-lg);
  max-width: 520px;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

/* Hero Statistiken */
.hero-stats {
  display: flex;
  gap: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-border);
}

.hero-stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat__label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero Bild/Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-mockup__frame {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}

.hero-mockup__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Schwebendes Badge auf dem Mockup */
.hero-mockup__badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.hero-mockup__badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(233, 69, 96, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-mockup__badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-white);
  margin-bottom: 2px;
}

.hero-mockup__badge-text span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Scroll-Indikator */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}

.hero-scroll-hint i {
  font-size: 0.9rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ==========================================
   8. FEATURES SEKTION
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition),
              box-shadow var(--transition),
              border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(233, 69, 96, 0.3);
}

/* Hervorgehobene Karte */
.feature-card--featured {
  background: linear-gradient(135deg,
    rgba(233, 69, 96, 0.15) 0%,
    rgba(15, 52, 96, 0.8) 100%);
  border-color: rgba(233, 69, 96, 0.25);
  grid-row: span 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(233, 69, 96, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 1.4rem;
  color: var(--color-accent-red);
  transition: background var(--transition), transform var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(233, 69, 96, 0.25);
  transform: scale(1.08);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Feature-Tag Badge */
.feature-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: var(--spacing-sm);
}

.feature-tag--new {
  background: rgba(245, 166, 35, 0.15);
  color: var(--color-accent-gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.feature-tag--soon {
  background: rgba(160, 168, 184, 0.1);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}


/* ==========================================
   9. GALERIE SEKTION
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-card);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(233, 69, 96, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Galerie-Hinweis unter dem Grid */
.gallery-note {
  text-align: center;
  margin-top: var(--spacing-lg);
  color: var(--color-text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-note i {
  color: var(--color-accent-red);
}


/* ==========================================
   10. LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: var(--spacing-md);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(233, 69, 96, 0.5);
  transform: scale(1.1);
}

.lightbox-close {
  top: var(--spacing-md);
  right: var(--spacing-md);
}

.lightbox-prev {
  left: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
  right: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}


/* ==========================================
   11. ABLAUF SEKTION (How it works)
   ========================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  position: relative;
}

/* Verbindungslinie zwischen Steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.666% + 28px);
  right: calc(16.666% + 28px);
  height: 2px;
  background: linear-gradient(90deg,
    var(--color-accent-red),
    rgba(233, 69, 96, 0.2));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--color-bg-card);
  border: 2px solid var(--color-accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-accent-red);
  position: relative;
  transition: background var(--transition), transform var(--transition);
}

.step-card:hover .step-number {
  background: var(--color-accent-red);
  color: var(--color-white);
  transform: scale(1.08);
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-white);
}

.step-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}


/* ==========================================
   12. PAKETE / PREISE SEKTION
   ========================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  align-items: start;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition),
              box-shadow var(--transition),
              border-color var(--transition);
}

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

/* Empfohlenes Paket */
.pricing-card--featured {
  border-color: var(--color-accent-red);
  background: linear-gradient(160deg,
    rgba(233, 69, 96, 0.08) 0%,
    var(--color-bg-card) 60%);
  transform: scale(1.04);
  box-shadow: var(--shadow-glow);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
}

/* "Beliebt" Badge */
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent-red);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(233, 69, 96, 0.4);
}

.pricing-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: var(--spacing-xs);
}

.pricing-price__currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.6;
}

.pricing-price__amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.pricing-price__period {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-bottom: 6px;
}

.pricing-description {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--spacing-lg);
}

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

.pricing-feature i {
  color: var(--color-accent-red);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-feature--disabled {
  color: var(--color-text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-feature--disabled i {
  color: var(--color-text-muted);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* Small remark item (e.g. requirements notice) */
.pricing-remark {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
}

.pricing-remark small {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.4;
}

.pricing-remark small i {
  color: var(--color-accent-white);
  font-size: 0.7rem;
  flex-shrink: 0;
}


/* ==========================================
   13. KONTAKTFORMULAR SEKTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-info__intro {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(233, 69, 96, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-red);
  font-size: 1rem;
  flex-shrink: 0;
}

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

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--color-white);
}

/* Formular */
.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--spacing-sm);
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: border-color var(--transition),
              background var(--transition),
              box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(160, 168, 184, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent-red);
  background: rgba(233, 69, 96, 0.05);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-group select option {
  background: var(--color-bg-secondary);
  color: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Formular Erfolgsmeldung (via JS eingeblendet) */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-top: var(--spacing-sm);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-success i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--spacing-xs);
}


/* ==========================================
   14. FOOTER
   ========================================== */
.footer {
  background: #0d0d1a;
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--spacing-lg);
}

/* Footer Logo & Beschreibung */
.footer-brand__logo {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.footer-brand__desc {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--spacing-md);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: background var(--transition),
              color var(--transition),
              border-color var(--transition);
}

.footer-social a:hover {
  background: rgba(233, 69, 96, 0.15);
  color: var(--color-accent-red);
  border-color: rgba(233, 69, 96, 0.3);
}

/* Footer Spalten */
.footer-col__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__links a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col__links a:hover {
  color: var(--color-accent-red);
  padding-left: 6px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-bottom__copy {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.footer-bottom__copy a {
  color: var(--color-accent-red);
  transition: opacity var(--transition);
}

.footer-bottom__copy a:hover {
  opacity: 0.8;
}

.footer-bottom__legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer-bottom__legal a {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-bottom__legal a:hover {
  color: var(--color-white);
}


/* ==========================================
   15. MOBILE NAVIGATION
   ========================================== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 28px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--color-border);
    z-index: 999;
  }

  /* JS setzt .open beim Hamburger-Klick */
  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--color-text);
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-cta {
    display: none;
  }
}


/* ==========================================
   16. RESPONSIVE – TABLET (max 1024px)
   ========================================== */
@media (max-width: 1024px) {
  :root {
    --spacing-xxl: 80px;
    --spacing-xl: 56px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-rows: 200px 200px;
  }

  .steps-grid::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

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

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


/* ==========================================
   17. RESPONSIVE – MOBILE (max 768px)
   ========================================== */
@media (max-width: 768px) {
  :root {
    --spacing-xxl: 64px;
    --spacing-xl: 40px;
    --spacing-lg: 32px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

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

  .contact-form {
    padding: var(--spacing-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-logo-img {
    max-width: 280px;
  }
}


/* ==========================================
   18. ACCESSIBILITY
   ========================================== */

/* Fokus-Indikator für Tastaturnavigation */
:focus-visible {
  outline: 2px solid var(--color-accent-red);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Reduzierte Animationen (Systemeinstellung) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Screenreader-only Text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   MOBILE FIX: Zentrierung & Innenabstand
   ========================================== */
@media (max-width: 768px) {

  .hero-content,
  .hero-subtitle,
  .hero-title
  /*.section-header,
  .section-title,
  .section-subtitle,
  .section-label,
  .feature-card,
  .pricing-card,
  .pricing-header,
  .contact-info,
  .footer-brand */ {
    text-align: center !important;
  }

  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .contact-item {
    justify-content: center;
    text-align: left; /* Icon+Text bleibt als Gruppe zentriert, Text darin lesbar linksbündig */
  }

  .pricing-features {
    text-align: left !important; /* Listen mit Checkmarks sehen zentriert unruhig aus */
    display: inline-block;
  }

  .footer-nav,
  .footer-legal {
    text-align: center !important;
  }
}

