/* ================================================
   Webovate Solutions – Stylesheet v2
   ================================================
   Design: Premium Dark – tief, modern, lebendig
   ================================================
   1.  CSS Variablen
   2.  Reset & Basis
   3.  Animationen & Keyframes
   4.  Scroll-Reveal
   5.  Hilfsklassen
   6.  Buttons
   7.  Header & Navigation
   8.  Hero
   9.  Services
   10. Prozess
   11. Prototypen
   12. Preise
   13. Kontakt
   14. Footer
   15. Modal
   16. Responsive
   ================================================ */


/* ================================================
   1. CSS VARIABLEN
   ================================================ */

:root {
  /* Farben */
  --clr-dark:         #080b10;
  --clr-dark-2:       #0e1219;
  --clr-dark-3:       #141922;
  --clr-dark-4:       #1a2030;
  --clr-accent:       #c8f547;
  --clr-accent-dim:   #a8d030;
  --clr-accent-glow:  rgba(200, 245, 71, 0.12);
  --clr-accent-glow2: rgba(200, 245, 71, 0.06);
  --clr-white:        #ffffff;
  --clr-text:         #e8edf5;
  --clr-text-muted:   #6b7a99;
  --clr-border:       #1e2535;
  --clr-border-light: #2a3349;

  /* Schriften */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Abstände & Effekte */
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow:     0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg:  0 16px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(200, 245, 71, 0.15);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ================================================
   2. RESET & BASIS
   ================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--clr-dark);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* ================================================
   3. ANIMATIONEN & KEYFRAMES
   ================================================ */

@keyframes float-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -60px) scale(1.05); }
  66%       { transform: translate(-30px, 40px) scale(0.97); }
}

@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-50px, 50px) scale(1.08); }
  66%       { transform: translate(60px, -30px) scale(0.95); }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badge-slide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}


/* ================================================
   4. SCROLL-REVEAL
   ================================================ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================
   5. HILFSKLASSEN
   ================================================ */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 130px 0;
}

.section-header {
  margin-bottom: 72px;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.section-header.centered .section-eyebrow {
  display: flex;
  justify-content: center;
}

.section-header h2,
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--clr-white);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-desc {
  margin-top: 18px;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.8;
}

.section-header.centered .section-desc {
  margin: 18px auto 0;
}


/* ================================================
   6. BUTTONS
   ================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-accent);
  color: var(--clr-dark);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: var(--clr-accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 245, 71, 0.3);
}

.btn-primary:hover::after {
  opacity: 1;
  animation: shimmer 0.6s linear;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--clr-text);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--clr-border-light);
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: rgba(200, 245, 71, 0.3);
  background: var(--clr-accent-glow2);
  color: var(--clr-white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--clr-accent);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(200, 245, 71, 0.4);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--clr-accent);
  color: var(--clr-dark);
  border-color: var(--clr-accent);
  box-shadow: 0 6px 20px rgba(200, 245, 71, 0.25);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.btn-text:hover {
  color: var(--clr-white);
  border-color: var(--clr-text-muted);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--clr-accent);
  color: var(--clr-dark);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.btn-nav:hover {
  background: var(--clr-accent-dim);
  box-shadow: 0 4px 16px rgba(200, 245, 71, 0.25);
}


/* ================================================
   7. HEADER & NAVIGATION
   ================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition),
              border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(8, 11, 16, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--clr-border);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.4);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--clr-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-dot {
  color: var(--clr-accent);
}

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

.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

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

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-text);
  transition: all var(--transition);
  border-radius: 2px;
}


/* ================================================
   8. HERO
   ================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
}

/* Gradient-Orbs im Hintergrund */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(200, 245, 71, 0.10) 0%, rgba(100, 160, 20, 0.04) 60%, transparent 100%);
  animation: float-orb-1 18s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(80, 140, 255, 0.08) 0%, rgba(40, 80, 200, 0.03) 60%, transparent 100%);
  animation: float-orb-2 22s ease-in-out infinite;
}

/* Feines Rauschen / Körnung */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
  opacity: 0.025;
  pointer-events: none;
}

/* Subtile horizontale Linien-Grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--clr-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--clr-border) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 245, 71, 0.07);
  border: 1px solid rgba(200, 245, 71, 0.2);
  color: var(--clr-accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: badge-slide 0.7s 0.1s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 300;
  color: var(--clr-white);
  line-height: 1.06;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  animation: hero-fade-up 0.9s 0.25s both;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.8;
  animation: hero-fade-up 0.9s 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: hero-fade-up 0.9s 0.55s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: hero-fade-up 0.9s 0.7s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--clr-border-light), transparent);
}


/* ================================================
   9. SERVICES
   ================================================ */

.services-section {
  background: var(--clr-dark-2);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--clr-border-light) 30%, rgba(200, 245, 71, 0.2) 50%, var(--clr-border-light) 70%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--clr-dark-3);
}

.service-card {
  background: var(--clr-dark-2);
  padding: 44px 36px;
  border-right: 1px solid var(--clr-border);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:last-child { border-right: none; }

.service-card:hover {
  background: var(--clr-dark-3);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-glow);
  border: 1px solid rgba(200, 245, 71, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  margin-bottom: 24px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(200, 245, 71, 0.15);
  border-color: rgba(200, 245, 71, 0.3);
  box-shadow: 0 0 20px rgba(200, 245, 71, 0.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--clr-white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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


/* ================================================
   10. PROZESS
   ================================================ */

.process-section {
  background: var(--clr-dark);
  position: relative;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border-light);
  background: var(--clr-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1;
  transition: all var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step:hover .step-number {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-glow);
  box-shadow: 0 0 30px rgba(200, 245, 71, 0.15);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--clr-white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 220px;
  margin: 0 auto;
}

.process-connector {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
  width: 80px;
}

.process-connector::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-border-light), var(--clr-accent), var(--clr-border-light));
  opacity: 0.5;
}


/* ================================================
   11. PROTOTYPEN – PARALLAX DEMO SCENES
   ================================================ */

.prototypes-section {
  background: var(--clr-dark);
  padding: 0;
}

.prototypes-section > .container {
  padding-top: 130px;
  padding-bottom: 72px;
}

/* ---- Demo Scene: Grundstruktur ---- */
.demo-scene {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Parallax-Hintergrund – größer als der Container, translatet per JS */
.demo-scene-bg {
  position: absolute;
  inset: -25% 0;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

/* ---- Hintergründe pro Demo ---- */

/* Café: Warmes Espresso/Terrakotta */
.demo-scene--cafe .demo-scene-bg {
  background:
    radial-gradient(ellipse 60% 70% at 72% 40%, rgba(196, 98, 45, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(120, 60, 20, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 30% 35% at 85% 80%, rgba(80, 30, 8, 0.18) 0%, transparent 55%),
    linear-gradient(145deg, #130802 0%, #2e1508 30%, #4a2210 60%, #1e0e04 100%);
}

/* Handwerk: Industrielles Navy/Stahl */
.demo-scene--handwerk .demo-scene-bg {
  background:
    radial-gradient(ellipse 50% 65% at 28% 50%, rgba(232, 99, 10, 0.18) 0%, transparent 58%),
    radial-gradient(ellipse 35% 45% at 80% 30%, rgba(10, 30, 60, 0.40) 0%, transparent 55%),
    repeating-linear-gradient(
      -52deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.012) 48px,
      rgba(255, 255, 255, 0.012) 49px
    ),
    linear-gradient(148deg, #030810 0%, #081528 35%, #0e2240 60%, #060d1a 100%);
}

/* Pflege: Tiefes Salbeigrün/Wald */
.demo-scene--pflege .demo-scene-bg {
  background:
    radial-gradient(ellipse 58% 68% at 65% 42%, rgba(58, 107, 88, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 12% 65%, rgba(20, 70, 50, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 25% 30% at 88% 75%, rgba(30, 90, 65, 0.15) 0%, transparent 50%),
    linear-gradient(140deg, #040e0a 0%, #0c2018 32%, #162e22 58%, #081410 100%);
}

/* ---- Layout innerhalb der Scene ---- */
.demo-scene-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.demo-scene--flip .demo-scene-inner {
  direction: rtl;
}

.demo-scene--flip .demo-scene-inner > * {
  direction: ltr;
}

/* ---- Info-Block ---- */
.demo-scene-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-scene-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.demo-scene-tags span {
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-glow2);
  border: 1px solid rgba(200, 245, 71, 0.2);
  padding: 3px 11px;
  border-radius: 50px;
}

.demo-scene-tags--orange span {
  color: #e8630a;
  background: rgba(232, 99, 10, 0.07);
  border-color: rgba(232, 99, 10, 0.2);
}

.demo-scene-tags--sage span {
  color: #7ab5a0;
  background: rgba(58, 107, 88, 0.12);
  border-color: rgba(58, 107, 88, 0.25);
}

.demo-scene-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.demo-scene-info h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--clr-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.demo-scene-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 380px;
}

.demo-scene-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

/* Btn-Varianten für Scenes */
.btn-primary--orange {
  background: #e8630a !important;
}
.btn-primary--orange:hover {
  background: #f07830 !important;
  box-shadow: 0 8px 24px rgba(232, 99, 10, 0.32) !important;
}

.btn-primary--sage {
  background: #3a6b58 !important;
}
.btn-primary--sage:hover {
  background: #4e8a74 !important;
  box-shadow: 0 8px 24px rgba(58, 107, 88, 0.32) !important;
}

.btn-scene-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.btn-scene-text:hover {
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---- Browser-Mock Preview ---- */
.demo-scene-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scene-mock {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.07);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
}


.demo-scene--flip .scene-mock {
  transform: perspective(1000px) rotateY(4deg) rotateX(2deg);
}


.demo-scene:hover .scene-mock {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Browser-Leiste */
.sm-bar {
  height: 32px;
  background: rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.sm-bar::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 90, 90, 0.6);
  box-shadow: 14px 0 0 rgba(255, 200, 60, 0.6), 28px 0 0 rgba(80, 200, 80, 0.6);
  flex-shrink: 0;
}

/* Café: Warmer Browser-Chrome */
.scene-mock--cafe .sm-bar {
  background: #2a1409;
  border-bottom-color: rgba(196, 98, 45, 0.15);
}

/* Handwerk: Dunkler Browser-Chrome */
.sm-bar--dark {
  background: #0c1a2e !important;
  border-bottom-color: rgba(232, 99, 10, 0.2) !important;
}

/* Hero-Bereich des Mocks */
.sm-hero {
  height: 110px;
  position: relative;
}

.sm-hero--warm {
  background: linear-gradient(135deg, #3d2010 0%, #6b3a1a 60%, #4a2814 100%);
}

.sm-hero--warm::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  height: 22px;
  background: rgba(196, 98, 45, 0.3);
  border-radius: 4px;
}

.sm-hero--navy {
  background: linear-gradient(135deg, #0a1828 0%, #162840 60%, #0e2035 100%);
}

.sm-hero--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -52deg, transparent, transparent 30px,
    rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 31px
  );
}

.sm-hero--navy::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 16px;
  width: 100px;
  height: 22px;
  background: rgba(232, 99, 10, 0.35);
  border-radius: 4px;
}

.sm-hero--sage {
  background: linear-gradient(135deg, #0c2018 0%, #1a3828 60%, #102818 100%);
}

.sm-hero--sage::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  height: 22px;
  background: rgba(58, 107, 88, 0.35);
  border-radius: 4px;
}

/* Content-Bereich des Mocks */
.sm-content {
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Café: heller Hintergrund */
.scene-mock--cafe .sm-content {
  background: #f5f0ea;
}

/* Pflege: sanfter Hintergrund */
.scene-mock--pflege .sm-content {
  background: #eef4f1;
}

.sm-line {
  height: 7px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}

.scene-mock--cafe .sm-line,
.scene-mock--pflege .sm-line {
  background: rgba(0, 0, 0, 0.1);
}

.sm-line--light {
  background: rgba(255, 255, 255, 0.15);
}

.sm-line--short { width: 58%; }

.sm-btn {
  width: 90px;
  height: 20px;
  border-radius: 5px;
  margin-top: 4px;
}

.sm-btn--terra {
  background: rgba(196, 98, 45, 0.5);
}

.sm-btn--orange {
  background: rgba(232, 99, 10, 0.5);
}

.sm-btn--sage {
  background: rgba(58, 107, 88, 0.5);
}

/* Karten-Grid im Mock */
.sm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 4px;
}

.sm-block {
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.scene-mock--cafe .sm-block {
  background: rgba(196, 98, 45, 0.1);
  border: 1px solid rgba(196, 98, 45, 0.12);
}

.sm-block--sage {
  background: rgba(58, 107, 88, 0.12) !important;
  border: 1px solid rgba(58, 107, 88, 0.15) !important;
}

/* Handwerk-Cards im Mock */
.sm-cards {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}

.sm-card {
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border-left: 3px solid rgba(232, 99, 10, 0.4);
}


/* ================================================
   12. PREISE
   ================================================ */

.pricing-section {
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
}

.pricing-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200, 245, 71, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.price-card {
  background: var(--clr-dark-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  border-color: var(--clr-border-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Hervorgehobene Karte mit Glow-Rahmen */
.price-card.featured {
  background: linear-gradient(145deg, #0f1a04 0%, var(--clr-dark-2) 60%);
  border-color: rgba(200, 245, 71, 0.3);
  box-shadow: 0 0 0 1px rgba(200, 245, 71, 0.08), var(--shadow-glow);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(200, 245, 71, 0.5) 0%, transparent 50%, rgba(200, 245, 71, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.price-card.featured:hover {
  border-color: rgba(200, 245, 71, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(200, 245, 71, 0.12);
}

.price-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(200, 245, 71, 0.3);
}

.price-name {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.price-currency {
  font-size: 1.3rem;
  color: var(--clr-text-muted);
  font-weight: 300;
  align-self: flex-start;
  margin-top: 8px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--clr-white);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 0.86rem;
  color: var(--clr-text-muted);
}

.price-desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--clr-text);
}

.price-features li.muted {
  color: var(--clr-text-muted);
  opacity: 0.6;
}

.check {
  color: var(--clr-accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  position: relative;
  z-index: 1;
}


/* ================================================
   13. KONTAKT
   ================================================ */

.contact-section {
  background: var(--clr-dark-2);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(80, 140, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 300;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.contact-text > p {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.contact-detail:hover {
  color: var(--clr-white);
}

.detail-icon {
  width: 38px;
  height: 38px;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-border-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.contact-detail:hover .detail-icon {
  background: var(--clr-accent-glow);
  border-color: rgba(200, 245, 71, 0.25);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--clr-text);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--clr-text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(200, 245, 71, 0.4);
  background: var(--clr-dark-4);
  box-shadow: 0 0 0 3px rgba(200, 245, 71, 0.06);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form .btn-primary {
  align-self: flex-start;
}


/* ================================================
   14. FOOTER
   ================================================ */

.footer {
  background: var(--clr-dark);
  border-top: 1px solid var(--clr-border);
  padding-top: 88px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-top: 18px;
  max-width: 280px;
}

.footer-logo-text {
  font-size: 1.35rem;
}

.footer-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-legal a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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


/* ================================================
   15. MODAL
   ================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.modal.open {
  pointer-events: all;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  background: var(--clr-dark-2);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: 52px;
  max-width: 500px;
  width: 100%;
  transform: translateY(24px) scale(0.98);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-lg);
}

.modal.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  color: var(--clr-text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--clr-white);
  background: var(--clr-dark-4);
  border-color: var(--clr-border-light);
}

.modal-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--clr-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.modal-sub {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--clr-text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: var(--clr-text-muted);
}

.modal-form input:focus,
.modal-form textarea:focus {
  border-color: rgba(200, 245, 71, 0.4);
  box-shadow: 0 0 0 3px rgba(200, 245, 71, 0.06);
}

.modal-form textarea {
  resize: vertical;
}

.modal-form .btn-primary {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

/* Style Picker */
.style-picker-dialog {
  max-width: 680px;
}

.style-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.style-option {
  background: var(--clr-dark-3);
  border: 1.5px solid var(--clr-dark-4);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.style-option:hover {
  border-color: var(--clr-lime);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.style-option-preview {
  width: 100%;
  height: 110px;
}

.style-preview--cafe {
  background: linear-gradient(135deg, #c8894a 0%, #8b5a2b 100%);
}

.style-preview--handwerk {
  background: linear-gradient(135deg, #1b2a4a 0%, #e8642c 100%);
}

.style-preview--pflege {
  background: linear-gradient(135deg, #7aab8a 0%, #3d6b50 100%);
}

.style-option-info {
  padding: 12px 14px;
}

.style-option-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.style-option-info span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

@media (max-width: 540px) {
  .style-picker-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================================
   16. LEGAL PAGES (Impressum / Datenschutz)
   ================================================ */

.legal-section {
  padding-top: 140px;
  padding-bottom: 100px;
}

.legal-section h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.legal-section h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-section ul li {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--clr-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 245, 71, 0.3);
  transition: border-color var(--transition), color var(--transition);
}

.legal-section a:hover {
  color: var(--clr-white);
  border-bottom-color: var(--clr-white);
}

.legal-section strong {
  color: var(--clr-text);
  font-weight: 600;
}

.legal-section .btn-primary {
  color: var(--clr-dark);
  border-bottom: none;
  text-decoration: none;
}

.legal-section .btn-primary:hover {
  color: var(--clr-dark);
  border-bottom: none;
}

.legal-section > .container > p:first-of-type {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

/* Nav btn-small */
nav .btn-small {
  display: inline-flex;
  align-items: center;
  background: var(--clr-accent);
  color: var(--clr-dark);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition);
}

nav .btn-small:hover {
  background: var(--clr-accent-dim);
  box-shadow: 0 4px 16px rgba(200, 245, 71, 0.25);
}

nav a:not(.btn-small) {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

nav a:not(.btn-small):hover {
  color: var(--clr-white);
}


/* ================================================
   17. RESPONSIVE
   ================================================ */

/* ---- Tablet (max. 960px) ---- */
@media (max-width: 960px) {
  .section {
    padding: 90px 0;
  }

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

  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--clr-border);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 520px;
  }

  .process-connector {
    width: 1px;
    height: 32px;
    padding-top: 0;
    padding-left: 30px;
    align-items: stretch;
  }

  .process-connector::before {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--clr-border-light), var(--clr-accent), var(--clr-border-light));
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .step-content {
    text-align: left;
  }

  .step-content p {
    max-width: 100%;
    margin: 0;
  }

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

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

  /* Demo Scenes: Preview ausblenden, einspaltig */
  .demo-scene {
    height: auto;
    padding: 72px 0;
  }

  .demo-scene-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .demo-scene--flip .demo-scene-inner {
    direction: ltr;
  }

  .demo-scene-preview {
    display: none;
  }

  .demo-scene-info p {
    max-width: 100%;
  }
}


/* ---- Smartphone (max. 640px) ---- */
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  /* Navigation */
  .nav {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(8, 11, 16, 0.97);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    gap: 18px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
  }

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

  .nav-burger {
    display: flex;
  }

  /* Hero */
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost {
    text-align: center;
    justify-content: center;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Demo Scenes mobile */
  .demo-scene {
    padding: 56px 0;
  }

  .demo-scene-info h3 {
    font-size: 2rem;
  }

  /* Preise */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Modal */
  .modal-dialog {
    padding: 32px 24px;
  }
}
