/*
Theme Name: Alex Entrümpelung Hannover
Theme URI: https://alexentruempelung.de
Author: Alex Entrümpelung
Description: Professionelle WordPress-Theme für Alex Entrümpelung Hannover – Entrümpelung, Haushaltsauflösung & Wohnungsauflösung in Hannover und Umgebung.
Version: 1.0.0
Text Domain: alex-entruempelung
*/

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  /* Colors */
  --clr-primary: #1a6b4a;
  --clr-primary-dark: #145438;
  --clr-primary-light: #e8f5ee;
  --clr-primary-lighter: #f3faf6;
  --clr-accent: #e8703a;
  --clr-accent-dark: #d4602e;
  --clr-accent-light: #fef3ec;
  --clr-dark: #1a1f2b;
  --clr-dark-soft: #2d3340;
  --clr-text: #3a3f4b;
  --clr-text-light: #6b7280;
  --clr-border: #e2e5ea;
  --clr-bg: #ffffff;
  --clr-bg-alt: #f7f8fa;
  --clr-bg-warm: #fdfcfa;
  --clr-white: #ffffff;
  --clr-star: #f5a623;
  --clr-whatsapp: #25d366;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(26,107,74,0.08);
  --shadow-hover: 0 8px 30px rgba(26,107,74,0.15);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1200px;
  --navbar-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--clr-accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--clr-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* ============================================
   UTILITY
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--space-2xl) 0; }
.section--alt { background: var(--clr-bg-alt); }
.section--primary { background: var(--clr-primary-light); }
.section--dark {
  background: var(--clr-dark);
  color: var(--clr-white);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--clr-white); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-badge svg { width: 16px; height: 16px; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section-header p {
  color: var(--clr-text-light);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--clr-primary); }
.text-accent { color: var(--clr-accent); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,112,58,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn-secondary:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
}
.btn-white:hover {
  background: transparent;
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-phone {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.btn-phone:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  height: var(--navbar-h);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-dark);
  text-decoration: none;
}
.navbar-brand:hover { color: var(--clr-primary); }

.navbar-brand img,
.navbar-brand svg {
  max-height: 42px;
  width: auto;
}

.navbar-brand .brand-icon {
  width: 40px; height: 40px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-brand .brand-icon svg { width: 22px; height: 22px; }

.navbar-brand .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.navbar-brand .brand-name { font-size: 1.15rem; color: var(--clr-dark); }
.navbar-brand .brand-sub { font-size: 0.7rem; font-family: var(--font-body); font-weight: 500; color: var(--clr-text-light); letter-spacing: 0.05em; text-transform: uppercase; }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text);
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--clr-primary);
  background: var(--clr-primary-lighter);
}

.nav-menu > li > a .dropdown-arrow {
  width: 12px; height: 12px;
  transition: var(--transition);
}

.nav-menu > li:hover > a .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown sub-menu */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.6rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.nav-menu .sub-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--clr-white);
}

.nav-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-menu .sub-menu li a:hover {
  background: var(--clr-primary-light);
  color: var(--clr-primary);
}

/* Navbar CTA */
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--clr-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--clr-primary-light);
  transition: var(--transition);
}
.navbar-phone svg { width: 16px; height: 16px; }
.navbar-phone:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: calc(var(--navbar-h) + 60px) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--clr-primary-lighter) 0%, var(--clr-bg) 50%, var(--clr-accent-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,107,74,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.hero-badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,107,74,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(26,107,74,0); }
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero h1 .highlight {
  color: var(--clr-primary);
  position: relative;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--clr-border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--clr-text-light);
}
.hero-trust-item svg { width: 20px; height: 20px; color: var(--clr-primary); flex-shrink: 0; }
.hero-trust-item strong { color: var(--clr-dark); font-size: 1.1rem; display: block; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: var(--clr-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper .hero-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  color: rgba(255,255,255,0.3);
}
.hero-image-wrapper .hero-placeholder svg { width: 80px; height: 80px; }

.hero-float-card {
  position: absolute;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}
.hero-float-card svg { width: 28px; height: 28px; flex-shrink: 0; }

.hero-float-card--rating { bottom: 15%; left: -20px; }
.hero-float-card--check { top: 15%; right: -20px; animation-delay: 1.5s; }

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

.hero-float-card .stars { display: flex; gap: 2px; color: var(--clr-star); }
.hero-float-card .stars svg { width: 14px; height: 14px; }
.hero-float-card .card-label { font-size: 0.8rem; color: var(--clr-text-light); }
.hero-float-card .card-value { font-size: 1rem; font-weight: 700; color: var(--clr-dark); }

/* Page Hero (inner pages) */
.page-hero {
  padding-top: calc(var(--navbar-h) + 60px);
  padding-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--clr-primary-lighter) 0%, var(--clr-bg) 100%);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--clr-border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-text-light); }
.breadcrumb a:hover { color: var(--clr-primary); }
.breadcrumb .sep { color: var(--clr-border); }

.page-hero h1 { margin-bottom: var(--space-sm); }
.page-hero p { font-size: 1.1rem; color: var(--clr-text-light); max-width: 640px; }

.page-hero .btn-group { margin-top: var(--space-md); }

/* Service Hero with checklist */
.service-hero .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: start;
}

.service-hero-checklist {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

.service-hero-checklist h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--clr-border);
}

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--clr-text);
}
.checklist li svg { width: 18px; height: 18px; color: var(--clr-primary); flex-shrink: 0; margin-top: 2px; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-lg) 0;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
}

.trust-item-icon {
  width: 50px; height: 50px;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 24px; height: 24px; }

.trust-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.trust-item-text p {
  font-size: 0.82rem;
  color: var(--clr-text-light);
  margin: 0;
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 56px; height: 56px;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.service-card-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-primary);
}
.service-card-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ============================================
   ADVANTAGES / WHY US
   ============================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.advantage-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.advantage-card:hover { box-shadow: var(--shadow-card); }

.advantage-number {
  width: 44px; height: 44px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.advantage-card h4 { margin-bottom: 0.3rem; }
.advantage-card p { font-size: 0.9rem; color: var(--clr-text-light); margin: 0; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-top: 0.3rem;
}

/* ============================================
   STEPS / PROCESS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--clr-border);
  z-index: 0;
}

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

.step-number {
  width: 60px; height: 60px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto var(--space-sm);
  box-shadow: 0 4px 15px rgba(26,107,74,0.3);
}

.step-card h4 { margin-bottom: 0.4rem; }
.step-card p { font-size: 0.88rem; color: var(--clr-text-light); margin: 0; }

/* ============================================
   PRICING / COST
   ============================================ */
.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.pricing-list { list-style: none; padding: 0; }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.95rem;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li svg { width: 20px; height: 20px; color: var(--clr-primary); flex-shrink: 0; margin-top: 2px; }

.pricing-card {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}
.pricing-card h3 { color: var(--clr-white); margin-bottom: var(--space-sm); }
.pricing-card .pricing-note {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: var(--space-md);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-card); }

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--clr-star);
  margin-bottom: var(--space-sm);
}
.testimonial-stars svg { width: 16px; height: 16px; }

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name { font-weight: 600; font-size: 0.92rem; }
.testimonial-role { font-size: 0.8rem; color: var(--clr-text-light); }

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
  margin-top: var(--space-lg);
}
.review-badge svg { width: 20px; height: 20px; }
.review-badge strong { color: var(--clr-dark); }

/* ============================================
   ABOUT COMPANY SECTION
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  background: var(--clr-primary-light);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
}
.about-image svg { width: 80px; height: 80px; opacity: 0.3; }

.about-text h2 { margin-bottom: var(--space-md); }
.about-text p { margin-bottom: var(--space-sm); }

.about-features {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}
.about-features li svg { width: 18px; height: 18px; color: var(--clr-primary); flex-shrink: 0; }

/* ============================================
   COVERAGE AREA
   ============================================ */
.coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.coverage-map {
  background: var(--clr-bg-alt);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.coverage-map iframe {
  width: 100%; height: 100%;
  border: none;
}

.coverage-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}
.coverage-areas li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  padding: 0.3rem 0;
}
.coverage-areas li svg { width: 14px; height: 14px; color: var(--clr-primary); flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--clr-primary); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: var(--clr-white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-dark);
  text-align: left;
  transition: var(--transition);
  gap: 1rem;
}

.faq-question:hover { color: var(--clr-primary); }

.faq-question .faq-toggle {
  width: 28px; height: 28px;
  background: var(--clr-primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-question .faq-toggle svg { width: 14px; height: 14px; color: var(--clr-primary); transition: var(--transition); }

.faq-item.active .faq-question .faq-toggle {
  background: var(--clr-primary);
  transform: rotate(180deg);
}
.faq-item.active .faq-question .faq-toggle svg { color: var(--clr-white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.95rem;
  color: var(--clr-text-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: var(--space-md);
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--clr-primary); }

.contact-info-card-icon {
  width: 44px; height: 44px;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card-icon svg { width: 20px; height: 20px; }

.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}
.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin: 0;
}

/* Contact form */
.contact-form {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-form h3 { margin-bottom: var(--space-md); }

.form-group { margin-bottom: var(--space-md); }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: var(--transition);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(26,107,74,0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--clr-text-light);
}
.form-checkbox input { margin-top: 3px; }
.form-checkbox a { color: var(--clr-primary); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--clr-dark);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,107,74,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--clr-white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--clr-primary); }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--clr-white); }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--clr-white); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: 0.82rem;
}

.footer-legal { display: flex; gap: var(--space-md); }
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--clr-white); }

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--clr-white);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 44px; height: 44px;
  background: var(--clr-white);
  color: var(--clr-primary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--clr-primary); color: var(--clr-white); }

/* ============================================
   CONTENT SECTIONS (service pages)
   ============================================ */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.content-block--reverse { direction: rtl; }
.content-block--reverse > * { direction: ltr; }

.content-block h2 { margin-bottom: var(--space-md); }
.content-block p { margin-bottom: var(--space-sm); }

.content-image {
  background: var(--clr-bg-alt);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-light);
  border: 1px solid var(--clr-border);
}
.content-image svg { width: 60px; height: 60px; opacity: 0.2; }

/* Related services */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ============================================
   IMPRESSUM / DATENSCHUTZ
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}
.legal-content h2 { font-size: 1.4rem; margin: var(--space-lg) 0 var(--space-sm); }
.legal-content h3 { font-size: 1.15rem; margin: var(--space-md) 0 var(--space-xs); }
.legal-content p { margin-bottom: 0.75rem; font-size: 0.95rem; }
.legal-content ul { margin-bottom: 1rem; }
.legal-content li { font-size: 0.95rem; margin-bottom: 0.3rem; }

/* ============================================
   REVIEWS PAGE
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.review-summary {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.review-summary-score {
  text-align: center;
  flex-shrink: 0;
}
.review-summary-score .big-score {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.nav-overlay.active { display: block; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .service-hero .container { grid-template-columns: 1fr; }
  .service-hero-checklist { max-width: 480px; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-content { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .about-image { max-height: 300px; }
  .coverage-content { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .related-services { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--clr-white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--navbar-h) + 1rem) 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    gap: 0;
  }
  .nav-menu.active { right: 0; }

  .nav-menu > li > a {
    padding: 0.8rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--clr-border);
    border-radius: 0;
  }

  .nav-menu .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 1rem;
    min-width: auto;
    display: none;
  }
  .nav-menu .sub-menu::before { display: none; }
  .nav-menu > li.sub-open > .sub-menu { display: block; }

  .navbar-cta { display: none; }
  .navbar-phone { display: none; }

  .hero { padding-top: calc(var(--navbar-h) + 40px); padding-bottom: var(--space-xl); }
  .hero h1 { font-size: 1.8rem; }

  .trust-bar .container { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .content-block { grid-template-columns: 1fr; }
  .content-block--reverse { direction: ltr; }
  .related-services { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .review-summary { flex-direction: column; text-align: center; }
  .coverage-areas { grid-template-columns: 1fr; }

  .page-hero { padding-top: calc(var(--navbar-h) + 40px); }

  .hero-trust { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .back-to-top { bottom: 80px; right: 20px; width: 38px; height: 38px; }
}
