@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  /* HSL Colors (BMW Isle of Man Green Metallic) */
  --primary-hue: 168;
  --primary-sat: 75%;
  --primary-light: 32%;
  
  --primary: hsl(var(--primary-hue), var(--primary-sat), var(--primary-light));
  --primary-hover: hsl(var(--primary-hue), var(--primary-sat), 24%);
  --primary-glow: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.35);
  
  /* Light Theme Variables */
  --bg-app: #f8fafc;
  --bg-gradient: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  --surface: 255, 255, 255;
  --surface-secondary: 241, 245, 249;
  --text-main: #0f172a;
  --text-muted: #475569;
  --border-color: 226, 232, 240;
  
  --warning: #ef4444;
  --warning-glow: rgba(239, 68, 68, 0.15);
  --success: #22c55e;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] {
  /* Dark Theme Variables */
  --bg-app: #09090b;
  --bg-gradient: linear-gradient(180deg, #09090b 0%, #121217 100%);
  --surface: 20, 20, 25;
  --surface-secondary: 30, 30, 38;
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --border-color: 39, 39, 42;
  
  --warning: #f87171;
  --warning-glow: rgba(248, 113, 113, 0.2);
  --success: #4ade80;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-app);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Background Microscopic Fibers Graphic Pattern */
.bg-fiber-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.08;
  mix-blend-mode: overlay;
  transition: opacity 0.4s ease;
}

[data-theme="dark"] .bg-fiber-pattern {
  opacity: 0.12;
  mix-blend-mode: screen;
}

.bg-fiber-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%);
}

.container {
  width: min(1320px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* Glassmorphism utility card */
.glass-card {
  background: rgba(var(--surface), 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--border-color), 0.5);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--border-color), 0.8);
}

/* Buttons and Controls */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(168, 75%, 38%), hsl(168, 70%, 25%));
  color: #ffffff;
  padding: 0.9rem 1.8rem;
  border-radius: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.95rem;
  text-decoration: none;
}

.btn:hover {
  background: linear-gradient(135deg, hsl(168, 75%, 44%), hsl(168, 70%, 30%));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
  background: rgba(var(--surface), 0.6);
  color: var(--text-main);
  border: 1px solid rgba(var(--border-color), 0.8);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: rgba(var(--surface-secondary), 0.9);
  border-color: var(--primary);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Typography styles */
h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(var(--surface), 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(var(--border-color), 0.4);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  background: rgba(var(--surface), 0.85);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  transition: padding 0.3s ease;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--surface-secondary), 0.8);
  border: 1px solid rgba(var(--border-color), 0.6);
  border-radius: 12px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-icon {
  transform: scale(1.05) rotate(5deg);
}

.logo-img-el {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: filter 0.3s ease;
}

[data-theme="dark"] .logo-img-el {
  filter: invert(1);
  mix-blend-mode: screen;
}

.logo-full-el {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: filter 0.3s ease;
}

[data-theme="dark"] .logo-full-el {
  filter: invert(1);
  mix-blend-mode: screen;
}

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

.logo-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-main);
  line-height: 1;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-item:hover {
  color: var(--text-main);
}

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

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

/* Theme Toggle Button */
.theme-toggle {
  background: transparent;
  border: 1px solid rgba(var(--border-color), 0.8);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: rgba(var(--surface-secondary), 0.8);
  border-color: var(--primary);
  color: var(--primary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.theme-toggle .sun-icon { display: none; }
.theme-toggle .moon-icon { display: block; }
[data-theme="dark"] .theme-toggle .sun-icon { display: block; }
[data-theme="dark"] .theme-toggle .moon-icon { display: none; }

/* Launch Banner */
.launch-banner {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 760px);
  padding: 1.2rem 1.6rem;
  border-radius: 20px;
  background: rgba(var(--surface), 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-lg);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  animation: slideDownIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownIn {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.launch-banner-content {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.launch-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.launch-banner-text h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

.launch-banner-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.launch-banner-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-banner-close:hover {
  color: var(--text-main);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(var(--surface-secondary), 0.7);
  border: 1px solid rgba(var(--border-color), 0.6);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero h1 span {
  display: block;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-main) 60%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Card containing logo and stats */
.hero-card {
  position: relative;
  padding: 2.5rem;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-logo-box {
  background: linear-gradient(135deg, rgba(var(--surface), 0.6), rgba(var(--surface-secondary), 0.8));
  border-radius: 20px;
  border: 1px solid rgba(var(--border-color), 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05);
}

.hero-logo-box svg {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

[data-theme="dark"] .hero-logo-box svg {
  filter: drop-shadow(0 8px 16px rgba(var(--primary-hue), var(--primary-sat), 20%, 0.4));
}

.hero-logo-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-top: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  padding: 1.2rem;
  background: rgba(var(--surface-secondary), 0.5);
  border: 1px solid rgba(var(--border-color), 0.4);
  border-radius: 16px;
  text-align: center;
}

.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Safety Warning Bar Section */
.safety-alert-section {
  padding: 2rem 0;
}

.safety-box {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.03);
}

[data-theme="dark"] .safety-box {
  background: rgba(248, 113, 113, 0.03);
  border-color: rgba(248, 113, 113, 0.15);
}

.safety-icon-wrapper {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
  overflow: hidden;
  padding: 6px;
}

.safety-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.safety-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.safety-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 900px;
}

/* Section Header standard */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Services Grid (Leistungen) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 3rem 2.2rem;
  text-align: center;
}

.service-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: rgba(var(--surface-secondary), 0.8);
  border: 1px solid rgba(var(--border-color), 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
  fill: var(--text-main);
  transition: fill 0.3s ease;
}

.service-card:hover .service-icon-box svg {
  fill: #111111;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

/* Independence Section (Highlight) */
.independence-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.independence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--success);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.independence-box h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.independence-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.independence-shield {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--surface-secondary), 0.8), rgba(var(--surface), 0.4));
  border: 1px solid rgba(var(--border-color), 0.5);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05);
}

.independence-shield svg {
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
}

.independence-shield h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.independence-shield span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Importance Columns Section (Für Privat / Für Architekten) */
.importance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.importance-card {
  padding: 3rem;
}

.importance-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(var(--border-color), 0.4);
  color: var(--text-main);
}

.importance-list {
  display: grid;
  gap: 1.2rem;
  list-style: none;
}

.importance-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.importance-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.importance-footer-note {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  background: rgba(var(--surface), 0.5);
  border: 1px solid rgba(var(--border-color), 0.4);
  border-radius: 16px;
}

/* Pricing Section & Interactive Calculator */
.price-calculator-wrapper {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  padding: 3rem;
}

.price-calculator-wrapper h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.calculator-desc {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.calculator-controls {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.counter-input-group {
  display: flex;
  align-items: center;
  background: rgba(var(--surface-secondary), 0.8);
  border: 1px solid rgba(var(--border-color), 0.8);
  border-radius: 14px;
  padding: 4px;
}

.counter-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.counter-btn:hover {
  background: rgba(var(--surface), 0.9);
}

.probe-number-display {
  width: 70px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  border: none;
  background: transparent;
  color: var(--text-main);
  outline: none;
}

/* Hide spin buttons for chrome/safari */
.probe-number-display::-webkit-outer-spin-button,
.probe-number-display::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-result-box {
  background: rgba(var(--surface-secondary), 0.4);
  border: 1px solid rgba(var(--border-color), 0.5);
  border-radius: 18px;
  padding: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

.price-result-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-result-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 0.2rem;
}

.price-result-value span {
  color: var(--primary);
}

.calculator-action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.calculator-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.price-card {
  padding: 3rem 2.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.price-tag {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.price-tag span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Detailed Price List Accordion */
.accordion-wrapper {
  margin-top: 3rem;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(var(--surface), 0.6);
  border: 1px solid rgba(var(--border-color), 0.6);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-trigger:hover {
  background: rgba(var(--surface-secondary), 0.8);
  border-color: rgba(var(--border-color), 0.9);
}

.accordion-trigger h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-main);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content-inner {
  padding: 2rem;
  border-left: 1px solid rgba(var(--border-color), 0.6);
  border-right: 1px solid rgba(var(--border-color), 0.6);
  border-bottom: 1px solid rgba(var(--border-color), 0.6);
  background: rgba(var(--surface-secondary), 0.2);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  overflow-x: auto;
}

.accordion-wrapper.open .accordion-trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-wrapper.open .accordion-icon {
  transform: rotate(180deg);
}

/* Prices Table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.price-table th {
  text-align: left;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid rgba(var(--border-color), 0.8);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(var(--border-color), 0.4);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr td:last-child, 
.price-table tr th:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--text-main);
}

/* Customer Reviews (Bewertungen) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.stars-rating {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-author {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-author::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--primary);
}

/* Contact Cards and Quick Options */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  padding: 2.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(var(--surface-secondary), 0.8);
  border: 1px solid rgba(var(--border-color), 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.contact-card-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--text-main);
  transition: fill 0.3s ease;
}

.contact-card:hover .contact-card-icon svg {
  fill: #111111;
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Interactive Form & Contact Integration */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem;
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.form-control {
  background: rgba(var(--surface-secondary), 0.5);
  border: 1px solid rgba(var(--border-color), 0.8);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  background: rgba(var(--surface), 0.9);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group:focus-within label {
  color: var(--primary);
}

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

.form-submit-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.form-privacy-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
}

.form-privacy-note a {
  color: var(--text-main);
  text-decoration: underline;
  cursor: pointer;
}

.form-privacy-note a:hover {
  color: var(--primary);
}

/* Form success message */
.form-success-box {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeIn 0.4s ease forwards;
}

.success-icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.success-icon-circle svg {
  width: 36px;
  height: 36px;
  fill: var(--success);
}

.form-success-box h4 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.form-success-box p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* Collapsible Legal & Privacy Sections */
.legal-accordion {
  margin-top: 2rem;
}

.legal-card {
  margin-bottom: 1rem;
}

.legal-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(var(--surface), 0.4);
  border: 1px solid rgba(var(--border-color), 0.4);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.legal-header:hover {
  background: rgba(var(--surface-secondary), 0.6);
  border-color: rgba(var(--border-color), 0.6);
}

.legal-header h3 {
  font-size: 1.1rem;
  color: var(--text-main);
}

.legal-header-icon {
  width: 20px;
  height: 20px;
  fill: var(--text-main);
  transition: transform 0.3s ease;
}

.legal-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-content-inner {
  padding: 2rem;
  border-left: 1px solid rgba(var(--border-color), 0.4);
  border-right: 1px solid rgba(var(--border-color), 0.4);
  border-bottom: 1px solid rgba(var(--border-color), 0.4);
  background: rgba(var(--surface-secondary), 0.1);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content-inner p {
  margin-bottom: 1rem;
}

.legal-content-inner p:last-child {
  margin-bottom: 0;
}

.legal-card.open .legal-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: rgba(var(--border-color), 0.5);
}

.legal-card.open .legal-header-icon {
  transform: rotate(180deg);
}

/* Footer Section */
footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(var(--border-color), 0.5);
  background: rgba(var(--surface-secondary), 0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand-logo {
  width: 40px;
  height: 40px;
  background: rgba(var(--surface-secondary), 0.8);
  border: 1px solid rgba(var(--border-color), 0.6);
  border-radius: 10px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-text h3 {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--text-main);
  line-height: 1;
}

.footer-brand-text span {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-info {
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cookie Compliance Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: min(92%, 850px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-text h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.cookie-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cookie-action {
  flex-shrink: 0;
}

/* Floating Contact Actions Bar */
.floating-actions-bar {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  align-items: center;
}

.floating-contacts-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: rgba(var(--surface), 0.8);
  border: 1px solid rgba(var(--border-color), 0.6);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-contacts-container.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.floating-contact-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--surface-secondary), 0.9);
  color: var(--text-main);
  border: 1px solid rgba(var(--border-color), 0.8);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-contact-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-contact-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-md);
  background: var(--primary);
  border-color: var(--primary);
  color: #111111;
}

.floating-whatsapp-btn:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

/* Scroll Indicator / Top Link */
.scroll-top-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--surface), 0.9);
  border: 1px solid rgba(var(--border-color), 0.8);
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top-btn.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.scroll-top-btn:hover svg {
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(var(--border-color), 0.8);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  z-index: 1001;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Scroll Animation Elements (using intersection observer) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-badge {
    margin: 0 auto 1.5rem auto;
  }
  
  .hero-description {
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-card {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .independence-box {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem;
  }
  
  .importance-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 3rem auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(var(--surface), 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(var(--border-color), 0.8);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2rem 2.5rem;
    gap: 2rem;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-actions {
    margin-right: 3.5rem; /* Make space for hamburger menu toggler */
  }
  
  .safety-box {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .price-calculator-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full-width {
    grid-column: span 1;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    width: 100%;
  }
  
  .cookie-action {
    width: 100%;
  }
  
  .cookie-action button {
    width: 100%;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-info {
    text-align: center;
  }
  
  .launch-banner {
    top: 86px;
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }
}
