/* =====================================================
   LOCAL FONTS – Montserrat (DSGVO-konform)
   Dateien ablegen in: assets/fonts/
   ===================================================== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/montserrat-normal-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/montserrat-normal-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/montserrat-normal-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/montserrat-normal-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/montserrat-normal-800.woff2') format('woff2');
}

/* =====================================================
   Marco Vormann – Elektromeister | Premium Stylesheet
   Deep Navy #072945 | Electric Cyan #04b5d6
   Font: Montserrat
   ===================================================== */

/* --- CSS Variables --- */
:root {
  --navy: #072945;
  --navy-dark: #051d31;
  --navy-light: #0d3d65;
  --cyan: #04b5d6;
  --cyan-dark: #0398b5;
  --cyan-light: rgba(4, 181, 214, 0.12);
  --white: #ffffff;
  --off-white: #f4f7fa;
  --gray-100: #e8eef4;
  --gray-300: #b0bec8;
  --gray-500: #6e8094;
  --gray-700: #3a4f61;
  --text-primary: #072945;
  --text-secondary: #3a4f61;
  --text-muted: #6e8094;
  --font: 'Montserrat', sans-serif;
  --max-w: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(7, 41, 69, 0.08);
  --shadow-md: 0 8px 32px rgba(7, 41, 69, 0.12);
  --shadow-lg: 0 24px 64px rgba(7, 41, 69, 0.16);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Browser-Standard :invalid-Styling global deaktivieren */
input:invalid,
textarea:invalid,
select:invalid {
  box-shadow: none;
  outline: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

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

ul { list-style: none; }

/* --- Typography Scale --- */
.h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
.h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.3; }
.h4 { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }
.label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

section { width: 100%; overflow: hidden; max-width: 100vw; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy-dark);
  box-shadow: 0 0 0 0 rgba(4, 181, 214, 0.4);
}

.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 181, 214, 0.35);
}

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

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

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- Section Label --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}

#nav.scrolled {
  background: rgba(7, 41, 69, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

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

.nav-cta {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy-dark);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile .btn {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* =====================================================
   SECTION 1 – HERO
   ===================================================== */
#hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  max-width: 100vw;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 181, 214, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 181, 214, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(4,181,214,0.1) 0%, transparent 70%);
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(4,181,214,0.06) 0%, transparent 70%);
  pointer-events: none;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 181, 214, 0.12);
  border: 1px solid rgba(4, 181, 214, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-badge span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-h1 .accent { color: var(--cyan); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
  width: 100%;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
  overflow: hidden;
}

.hero-stat {
  background: rgba(255,255,255,0.02);
  padding: 20px;
  text-align: center;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.02em;
  display: block;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy-light);
  border: 1px solid rgba(4, 181, 214, 0.2);
}

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

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--cyan);
  color: var(--navy-dark);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-img-badge span {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* =====================================================
   SECTION 2 – SERVICES / OFFER
   ===================================================== */
#leistungen {
  padding: 100px 0;
  background: var(--off-white);
}

.services-intro {
  max-width: 640px;
  margin-bottom: 64px;
}

.services-intro p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 16px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(4, 181, 214, 0.2);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--cyan);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.services-problems {
  margin-top: 64px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.problems-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(4,181,214,0.15);
  border: 1px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.check-icon svg {
  width: 10px;
  height: 10px;
  color: var(--cyan);
}

/* =====================================================
   SECTION 3 – VERTRAUEN / AUTHORITY
   ===================================================== */
#vertrauen {
  padding: 100px 0;
  background: var(--white);
}

.trust-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.trust-content h2 { margin-bottom: 20px; }

.trust-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.trust-founder {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
}

.founder-top {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-light);
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
}

.founder-info h4 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.founder-info span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.founder-quote {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--cyan);
  padding-left: 16px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-badge-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--cyan-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.trust-badge-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Reviews */
.trust-reviews-heading {
  text-align: center;
  margin-bottom: 40px;
}

.trust-reviews-heading h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
  color: #f59e0b;
}

.stars-score {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.stars-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.review-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
}

.review-stars { margin-bottom: 12px; }
.review-stars .stars svg { width: 14px; height: 14px; }

.review-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.review-author-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Partner Logos */
.partners-strip {
  border-top: 1px solid var(--gray-100);
  padding-top: 40px;
  text-align: center;
}

.partners-strip p {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--gray-300);
  padding: 8px 16px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: var(--transition);
}

.partner-logo:hover {
  color: var(--navy);
  border-color: var(--gray-300);
}

/* =====================================================
   SECTION 4 – 3-SCHRITT-PLAN
   ===================================================== */
#ablauf {
  padding: 100px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.ablauf-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 181, 214, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 181, 214, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.ablauf-inner { position: relative; z-index: 1; }

.ablauf-header {
  text-align: center;
  margin-bottom: 64px;
}

.ablauf-header h2 { color: var(--white); }

.ablauf-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 16px auto 0;
}

.steps-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.steps-connector {
  position: absolute;
  top: 52px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, rgba(4,181,214,0.3) 50%, var(--cyan) 100%);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
}

.step-num-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid rgba(4, 181, 214, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.step-num svg {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.step-num-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--navy-dark);
}

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

.step-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.65;
}

.ablauf-cta {
  text-align: center;
  margin-top: 56px;
}

/* =====================================================
   SECTION 5 – WHAT'S AT STAKE
   ===================================================== */
#stakes {
  padding: 100px 0;
  background: var(--off-white);
}

.stakes-header {
  text-align: center;
  margin-bottom: 56px;
}

.stakes-header h2 { margin-bottom: 12px; }

.stakes-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

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

.stakes-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.stakes-col.bad { border-top: 4px solid #ef4444; }
.stakes-col.good { border-top: 4px solid #22c55e; }

.stakes-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.stakes-col-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stakes-col.bad .stakes-col-icon { background: rgba(239,68,68,0.1); }
.stakes-col.good .stakes-col-icon { background: rgba(34,197,94,0.1); }

.stakes-col-icon svg { width: 22px; height: 22px; }
.stakes-col.bad .stakes-col-icon svg { color: #ef4444; }
.stakes-col.good .stakes-col-icon svg { color: #22c55e; }

.stakes-col-header h3 { font-size: 1.05rem; color: var(--navy); }

.stakes-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stakes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.stakes-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
}

.stakes-col.bad .stakes-dot { background: #ef4444; }
.stakes-col.good .stakes-dot { background: #22c55e; }

/* =====================================================
   SECTION 6 – LEAD MAGNET
   ===================================================== */
#leadmagnet {
  padding: 80px 0;
  background: var(--navy);
}

.leadmagnet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.leadmagnet-content {}

.leadmagnet-content h2 { color: var(--white); margin-bottom: 16px; }

.leadmagnet-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.leadmagnet-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.leadmagnet-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
}

.leadmagnet-feature svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
}

.leadmagnet-form-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.leadmagnet-form-box h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.leadmagnet-form-box p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-bottom: 24px;
}

.opt-in-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-field::placeholder { color: rgba(255,255,255,0.35); }

.form-field:focus { border-color: var(--cyan); }

.form-privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 4px;
}

.form-privacy a {
  color: rgba(4,181,214,0.7);
  text-decoration: underline;
}

/* =====================================================
   SECTION 7 – KONTAKT FUNNEL
   ===================================================== */
#kontakt {
  padding: 100px 0;
  background: var(--off-white);
}

.funnel-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.funnel-header {
  text-align: center;
  margin-bottom: 48px;
}

.funnel-header h2 { margin-bottom: 12px; }

.funnel-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Funnel Steps */
.funnel-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.funnel-step-dot {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  transition: var(--transition);
}

.funnel-step-dot.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy-dark);
}

.funnel-step-dot.done {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.funnel-step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-100);
  transition: var(--transition);
}

.funnel-step-line.done { background: var(--navy); }

.funnel-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.funnel-screen { display: none; }
.funnel-screen.active { display: block; }

.funnel-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.funnel-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.funnel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.funnel-option {
  background: var(--off-white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  width: 100%;
}

.funnel-option:hover {
  border-color: var(--cyan);
  background: var(--cyan-light);
}

.funnel-option.selected {
  border-color: var(--cyan);
  background: var(--cyan-light);
}

.funnel-option-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
}

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

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

.funnel-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

.btn-funnel-back {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--gray-100);
  padding: 12px 24px;
  font-size: 0.85rem;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-funnel-back:hover { border-color: var(--navy); color: var(--navy); }

.btn-funnel-next {
  background: var(--cyan);
  color: var(--navy-dark);
  border: none;
  padding: 13px 28px;
  font-size: 0.88rem;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-funnel-next:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
}

.funnel-success {
  text-align: center;
  padding: 24px 0;
}

.funnel-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.funnel-success-icon svg {
  width: 36px;
  height: 36px;
  color: #22c55e;
}

.funnel-success h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.funnel-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Honeypot */
.hp-field { display: none !important; position: absolute; left: -9999px; }

/* =====================================================
   CLOSING CTA SECTION
   ===================================================== */
#closing-cta {
  padding: 100px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(4,181,214,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.closing-inner h2 { color: var(--white); margin-bottom: 16px; }

.closing-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.closing-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER (Lead Magnet Near-Footer + Footer)
   ===================================================== */
#footer-leadmagnet {
  padding: 64px 0;
  background: var(--gray-100);
  border-top: 1px solid rgba(7,41,69,0.06);
}

.footer-lm-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.footer-lm-text h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.footer-lm-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 400px;
}

/* Form ist ein flex-column Container */
.footer-lm-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 420px;
  max-width: 480px;
}

/* E-Mail + Button nebeneinander */
.footer-lm-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.footer-lm-input {
  flex: 1;
  padding: 13px 20px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}

.footer-lm-input:focus { border-color: var(--cyan); }

/* Checkbox darunter */
.footer-lm-privacy {
  margin-top: 2px;
}

footer {
  background: var(--navy-dark);
  padding: 48px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.footer-brand .nav-logo {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--cyan); }

.footer-col .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  transition: color var(--transition);
}

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

/* =====================================================
   ALERTS / MESSAGES
   ===================================================== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.alert-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #16a34a;
}

.alert-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #dc2626;
}

/* =====================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-h1 { max-width: 640px; }
  .hero-sub { max-width: 540px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-problems { grid-template-columns: 1fr; gap: 32px; }

  .trust-top { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }

  .steps-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .steps-connector { display: none; }

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

  .leadmagnet-inner { grid-template-columns: 1fr; gap: 40px; }

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

  .footer-lm-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-lm-form { min-width: 0; max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  .btn {
    white-space: normal;
    word-break: break-word;
  }
}

/* =====================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  #hero { padding: 100px 0 64px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { justify-content: center; width: 100%; }

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

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

  .funnel-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .funnel-box { padding: 28px 20px; }
  .funnel-nav { flex-direction: column; }
  .btn-funnel-next, .btn-funnel-back { width: 100%; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .closing-cta-group { flex-direction: column; }
  .closing-cta-group .btn { justify-content: center; width: 100%; max-width: 360px; margin: 0 auto; }

  .partners-logos { gap: 20px; }

  .footer-lm-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-lm-form { min-width: 0; max-width: 100%; width: 100%; }
  .footer-lm-row { flex-direction: column; }
  .footer-lm-input { width: 100%; }
  .footer-lm-row .btn { width: 100%; justify-content: center; }

  .services-problems { padding: 28px 20px; }
}

/* =====================================================
   UTILITY
   ===================================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

/* Smooth scroll offset for fixed nav */
[id] { scroll-margin-top: 80px; }

/* =====================================================
   BACK-TO-TOP BUTTON
   ===================================================== */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 8000;
  width: 48px;
  height: 48px;
  background: var(--cyan);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(4, 181, 214, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background: var(--cyan-dark);
  box-shadow: 0 8px 24px rgba(4, 181, 214, 0.45);
  transform: translateY(-3px);
}

#back-to-top:active {
  transform: translateY(0);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--navy-dark);
  flex-shrink: 0;
}

/* Abstand zum Cookie-Reopen-Button */
#cookie-reopen {
  bottom: 88px;
}

/* =====================================================
   DATENSCHUTZ-CHECKBOX (alle Formulare)
   ===================================================== */
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.privacy-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--cyan);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  margin-top: 1px;
  transition: border-color var(--transition), background var(--transition);
  /* Browser-Rot komplett deaktivieren */
  box-shadow: none !important;
  outline: none !important;
  accent-color: var(--cyan);
}

/* Alle Browser-:invalid States – niemals rot */
.privacy-check input[type="checkbox"]:invalid,
.privacy-check input[type="checkbox"]:invalid:not(.error),
.privacy-check input[type="checkbox"]:user-invalid {
  border-color: var(--cyan) !important;
  box-shadow: none !important;
  outline: none !important;
}

.privacy-check input[type="checkbox"]:checked {
  background: var(--cyan);
  border-color: var(--cyan);
}

.privacy-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--navy-dark);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.privacy-check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.privacy-check label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.privacy-check label a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Dark-Hintergrund Variante (Lead Magnet / Funnel) */
.privacy-check--dark input[type="checkbox"] {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.privacy-check--dark input[type="checkbox"]:checked {
  background: var(--cyan);
  border-color: var(--cyan);
}

.privacy-check--dark label {
  color: rgba(255,255,255,0.45);
}

/* Fehlerzustand nach Submit-Versuch (via JS .error-Klasse) */
.privacy-check input[type="checkbox"].error {
  border-color: var(--navy) !important;
}

.privacy-check-error {
  display: none;
  color: var(--navy);
  font-size: 0.75rem;
  margin-top: 4px;
  margin-left: 28px;
}

.privacy-check-error.visible {
  display: block;
}
