/* Google Fonts loaded via <link> in HTML for performance */

:root {
  --bg-dark: #0B0E14;
  --bg-surface: #0E121B;
  --bg-card: #141822;
  --bg-card-hover: #1A202E;
  --glass-border: #222938;
  --glass-border-light: rgba(255, 255, 255, 0.08);
  --accent-gold: #C5A059;
  --accent-gold-hover: #D4AF37;
  --accent-gold-glow: rgba(197, 160, 89, 0.12);
  --text-pure: #F8FAFC;
  --text-silver: #CBD5E1;
  --text-muted: #94A3B8;
  --text-dark: #475569;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-pure);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Liquid Canvas */
#liquid-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}

/* Ambient Radial Glows */
.ambient-glow {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.04) 0%, rgba(0,0,0,0) 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
  z-index: -1;
  filter: blur(120px);
}

.ambient-glow-bottom {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(0,0,0,0) 75%);
  bottom: -200px;
  left: -200px;
  pointer-events: none;
  z-index: -1;
  filter: blur(100px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #222938;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Utility Containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  font-weight: 400;
}

.text-gold {
  color: var(--accent-gold);
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass Card Base */
.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), background-color var(--transition-smooth);
}

.glass-panel:hover {
  border-color: rgba(197, 160, 89, 0.3);
  background-color: var(--bg-card-hover);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gold);
  color: #0B0E14;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-gold-hover);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
}

.btn-whatsapp svg {
  color: #FFFFFF !important;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #28e36e 0%, #159b8b 100%);
  color: #FFFFFF !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.65);
  border-color: rgba(255, 255, 255, 0.5);
}

.wa-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: inline-block;
  animation: waPulse 2s infinite ease-in-out;
}

@keyframes waPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-pure);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.badge-swiss {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: all var(--transition-fast);
}

/* ============================================
   No-Distraction Architecture (.distraction-free)
   ============================================ */
/* Ausblenden aller Ablenkungen auf Verkaufs- & Fokus-Seiten */
body.distraction-free .navbar nav,
body.distraction-free .navbar .nav-actions,
body.distraction-free footer .footer-grid > div:nth-child(2),
body.distraction-free footer .footer-bottom div:last-child {
  display: none !important;
}

/* Reduzierter, fokussierter Header */
body.distraction-free .navbar .nav-container {
  justify-content: center; /* Nur das VELUM AC Logo zentriert anzeigen */
  padding: 16px 0;
}

body.distraction-free .logo {
  pointer-events: none; /* Keine Verlinkung weg von der Seite */
}


.navbar.scrolled {
  background: rgba(11, 14, 20, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--glass-border);
  background: #141822;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-pure);
  letter-spacing: 0.12em;
  line-height: 1;
  font-family: var(--font-display);
}

.logo-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent-gold);
  transition: width var(--transition-fast);
}

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

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

.swiss-flag {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: #D52B1E;
  position: relative;
  border-radius: 2px;
}
.swiss-flag::before, .swiss-flag::after {
  content: '';
  position: absolute;
  background: #FFFFFF;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiss-flag::before { width: 9px; height: 3px; }
.swiss-flag::after { width: 3px; height: 9px; }

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* Cinematic Full-Width Background & Scroll Lighting */
.hero > picture {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0.55) contrast(1.15);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0B0E14 0%, rgba(11, 14, 20, 0.45) 22%, rgba(11, 14, 20, 0.45) 75%, #0B0E14 100%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-header-block {
  max-width: 860px;
  margin-bottom: 0;
}


.hero-header-block h1 {
  font-size: 3.1rem;
  line-height: 1.18;
  font-weight: 300;
  margin-bottom: 24px;
}

.hero-header-block h1 strong {
  font-weight: 600;
  color: var(--text-pure);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
  font-weight: 300;
  line-height: 1.65;
}

.hero-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-trust-list.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-silver);
  font-weight: 400;
}

.hero-trust-item span.check {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Neue eigenständige Interaktions-Section unter dem Hero-Bereich */
.hero-optin-section {
  padding: 40px 0 90px 0;
  background: var(--bg-dark);
  position: relative;
  z-index: 2;
}

.hero-interaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 0;
  align-items: stretch;
}

@media (max-width: 992px) {
  .hero-interaction-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

@media (max-width: 640px) {
  .hero-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Form Card — clean layout */
.hero-compact-form-card {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}

.hero-form-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.hero-form-header .badge-swiss {
  margin-bottom: 14px;
  font-size: 0.72rem;
}

.hero-form-header h3 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-pure);
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.hero-form-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

.hero-form-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-form-body .form-group {
  margin-bottom: 14px;
}

.hero-form-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-form-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  transition: color var(--transition-fast);
  padding: 4px 0;
}

.hero-form-wa-link:hover {
  color: #25D366;
}

.hero-form-disclaimer {
  font-size: 0.72rem;
  color: var(--text-dark);
  text-align: center;
  margin: 0;
  font-weight: 300;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 35%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 35%, #000 100%);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-dark) 0%, rgba(11, 14, 20, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Über VELUM AC Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(11,14,20,0) 0%, rgba(14,18,27,0.6) 50%, rgba(11,14,20,0) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-highlight-card {
  background: var(--bg-card);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.about-highlight-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.about-highlight-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ABSCHNITT: "Spezialisierte Expertise" (#expertise) */
.expertise-section {
  padding: 90px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(14,18,27,0.4) 0%, rgba(11,14,20,0.8) 100%);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.expertise-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 2px solid var(--accent-gold);
}

.expertise-box {
  background: rgba(11, 14, 20, 0.6);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border-left: 3px solid var(--text-dark);
}

.expertise-box.problem {
  border-left-color: #EF4444;
  background: rgba(239, 68, 68, 0.05);
}

.expertise-box.loesung {
  border-left-color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.06);
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expertise-list li {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.expertise-list li .icon-bullet {
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* NEUER ABSCHNITT: "Warum Vor-Ort?" (#vorteile) */
.vorteile-section {
  padding: 90px 0;
  position: relative;
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vorteile-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vorteile-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 24px;
}

/* Shared base for problem/solution boxes (vorteile + expertise) */
.problem-solution-box,
.vorteile-box,
.expertise-box {
  background: rgba(11, 14, 20, 0.6);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
  border-left: 3px solid var(--text-dark);
}

.vorteile-box.problem,
.expertise-box.problem {
  border-left-color: #E53E3E;
  background: rgba(239, 68, 68, 0.04);
}

.vorteile-box.loesung,
.expertise-box.loesung {
  border-left-color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.05);
}

.vorteile-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.vorteile-box.problem .vorteile-tag {
  color: #FC8181;
}

.vorteile-box.loesung .vorteile-tag {
  color: var(--accent-gold);
}

.vorteile-box p {
  font-size: 0.88rem;
  color: var(--text-silver);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

/* NEUER ABSCHNITT: "Partner-Netzwerk" (#partner) */
.partner-section {
  padding: 90px 0;
}

.partner-banner {
  padding: 44px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.partner-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-gold);
}

.partner-content h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.partner-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.65;
}

.partner-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.partner-item-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.partner-item h5 {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.partner-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 0;
}

/* NEUER ABSCHNITT: "Unsere Arbeitsweise & Ausrüstung" (#arbeitsweise) */
.arbeitsweise-section {
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(14,18,27,0.6) 0%, rgba(11,14,20,0) 100%);
}

.arbeitsweise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

.arbeitsweise-card {
  padding: 32px 24px;
}

.arbeitsweise-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.arbeitsweise-card h4 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.arbeitsweise-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 300;
  margin-top: 14px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
}

/* Programme Section (Luxury Minimalist 4-Grid) */
.paths-section {
  padding: 110px 0;
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(197, 160, 89, 0.04) 0%, rgba(11, 14, 20, 0) 70%);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.path-card {
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  background: rgba(18, 23, 33, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: transform var(--transition-smooth), 
              border-color var(--transition-smooth), 
              box-shadow var(--transition-smooth), 
              background var(--transition-smooth);
  overflow: hidden;
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.7) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 24px rgba(197, 160, 89, 0.1);
  background: rgba(22, 29, 42, 0.85);
}

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

.path-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.path-icon-champagne {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.16) 0%, rgba(212, 175, 55, 0.04) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.path-card:hover .path-icon-champagne {
  transform: scale(1.08);
  border-color: rgba(212, 175, 55, 0.6);
  color: #F1D49B;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.2);
}

.path-number {
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.22);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.path-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text-pure);
  font-family: var(--font-display);
}

.path-card .path-subline {
  color: #A0ABC0;
  font-size: 0.83rem;
  line-height: 1.45;
  font-weight: 300;
  min-height: 38px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 14px;
}

.path-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.path-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-silver);
  line-height: 1.45;
  font-weight: 300;
}

.path-bullet-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.path-card-action {
  margin-top: auto;
  padding-top: 14px;
}

.btn-card-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-pure);
  border: 1px solid rgba(197, 160, 89, 0.3);
  transition: all var(--transition-fast);
}

.btn-card-cta:hover {
  background: var(--accent-gold);
  color: #0B0E14;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.3);
}

/* Footer-Hinweis unter dem Grid */
.paths-footer-band {
  margin-top: 40px;
  padding: 18px 28px;
  background: rgba(14, 18, 27, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.paths-footer-band p {
  color: #CBD5E1;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.paths-footer-band .band-sparkle {
  color: var(--accent-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Before / After Paint Restoration Slider Section */
.comparison-section {
  padding: 100px 0;
}

.comparison-wrapper {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.img-before img {
  filter: contrast(0.65) brightness(0.5) sepia(0.6) saturate(0.3) hue-rotate(10deg);
}

.img-after {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent-gold);
  z-index: 10;
  pointer-events: none;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--accent-gold);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #0B0E14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.label-badge {
  position: absolute;
  top: 24px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 5;
  backdrop-filter: blur(16px);
}

.label-before {
  right: 24px;
  background: rgba(11, 14, 20, 0.85);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.label-after {
  left: 24px;
  background: var(--accent-gold);
  color: #0B0E14;
  font-weight: 600;
}

/* 2-WEGE ANFRAGEMODUL (#kontakt) */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(11,14,20,0) 0%, rgba(14,18,27,0.8) 50%, rgba(11,14,20,0) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}

.contact-express-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form-card {
  padding: 40px;
}

.express-contact-info {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-row .icon {
  font-size: 1.2rem;
}

.contact-info-row strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-pure);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-row p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 300;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: #0B0E14;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-pure);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
}

/* Gallery & Showcase Grid */
.gallery-section {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,14,20,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-pure);
}

.gallery-overlay p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent-gold);
  color: #0B0E14;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px 0;
  background: var(--bg-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
  color: var(--text-dark);
  font-size: 0.82rem;
}

/* ============================================
   MOBILE NAVIGATION — Hamburger + Drawer
   ============================================ */
.hamburger-btn {
  display: none;
  background: none;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 10px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast);
  z-index: 200;
}

.hamburger-btn:hover {
  border-color: var(--accent-gold);
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-pure);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animated X state */
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 20, 0.7);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #0E121B;
  border-left: 1px solid var(--glass-border);
  z-index: 160;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-close {
  background: none;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-links a.active {
  color: var(--accent-gold);
  border-left: 2px solid var(--accent-gold);
  padding-left: 14px;
}

.mobile-nav-footer {
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}

.mobile-nav-footer .btn-whatsapp {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */
@media (max-width: 1200px) {
  .paths-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vorteile-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .partner-banner { grid-template-columns: 1fr; }
  .arbeitsweise-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hamburger-btn { display: flex; }
  .nav-links { display: none !important; }
  .nav-actions .badge-swiss { display: none; }
  .mobile-nav-overlay { display: block; }
  .hamburger-btn { z-index: 200; position: relative; }
}

@media (max-width: 768px) {
  .paths-grid { grid-template-columns: 1fr; gap: 16px; }
  .paths-footer-band { padding: 16px 20px; }
  .hero-header-block h1 { font-size: 2.3rem; }
  .arbeitsweise-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .comparison-wrapper { height: 360px; }
  .hero-interaction-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
