/* ═══════════════════════════════════════════════════════
   E-Scooter-Doktor.de – Clean "Doktor" Design
   Medical-inspired, trust, clean, white & green
   ═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --primary: #16a34a;
  --primary-light: #22c55e;
  --primary-dark: #15803d;
  --primary-glow: rgba(22, 163, 74, 0.1);
  --primary-glow-strong: rgba(22, 163, 74, 0.15);
  --accent: #0ea5e9;
  --accent-light: #38bdf8;
  --white: #ffffff;
  --bg: #f8fdf9;
  --bg-card: #ffffff;
  --text: #1a2332;
  --text-light: #5a6a7e;
  --text-muted: #8896a6;
  --border: #e4eaf0;
  --border-light: #f0f4f8;
  --success: #10b981;
  --error: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(22, 163, 74, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a { transition: color 0.2s; color: var(--primary); }
a:hover { color: var(--primary-dark); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
}

.logo-icon {
  font-size: 1.5rem;
  line-height: 1;
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--border);
}

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

.mobile-menu a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(1.5rem, 5vw, 6rem) 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 750px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-sub {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  background: var(--primary-glow);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero h1 .green {
  color: var(--primary);
}

.hero-text {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.35);
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem clamp(1.5rem, 5vw, 6rem);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item { text-align: center; }

.trust-item .num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

.trust-item .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════════════════ */
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 0.8rem;
  color: var(--text);
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   PROCESS / STEPS
   ═══════════════════════════════════════════════════════ */
.process {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-glow);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

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

/* ═══════════════════════════════════════════════════════
   FEATURES (Einsende vs. Abholung)
   ═══════════════════════════════════════════════════════ */
.features {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all 0.3s;
}

.faq-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.faq-card h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.faq-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   CONTACT / FORM
   ═══════════════════════════════════════════════════════ */
.contact {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--bg);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow);
}

.form-wrapper .section-title { margin-bottom: 0.5rem; }
.form-wrapper .section-sub { margin-bottom: 2rem; }

.form-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: var(--bg);
  padding: 0.3rem;
  border-radius: 50px;
}

.toggle-btn {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-light);
  background: transparent;
}

.toggle-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.25);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow-strong);
  background: var(--white);
}

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

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.25);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(22, 163, 74, 0.35);
}

.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-hint a { color: var(--primary); text-decoration: none; }
.form-hint a:hover { text-decoration: underline; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success.show { display: block; }

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), var(--accent));
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ═══════════════════════════════════════════════════════
   SEO TEXT
   ═══════════════════════════════════════════════════════ */
.seo-text {
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
  background: var(--white);
}

.seo-content {
  max-width: 750px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.seo-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 4rem clamp(1.5rem, 5vw, 6rem) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

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

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

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════ */
.legal-page {
  padding: 120px clamp(1.5rem, 5vw, 6rem) 5rem;
  background: var(--bg);
  min-height: 80vh;
}

.legal-content {
  max-width: 750px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-sm);
}

.legal-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
}

.legal-content h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content li { margin-bottom: 0.4rem; }

.legal-content a { color: var(--primary); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { min-height: 70vh; padding-top: 100px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .trust-items { gap: 1.5rem; }
  .trust-item .num { font-size: 1.2rem; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   HERO ANIMATED ELEMENTS
   ═══════════════════════════════════════════════════════ */
.hero-animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--primary);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-float:nth-child(1) { width: 300px; height: 300px; top: -80px; right: -60px; animation-delay: 0s; }
.hero-float:nth-child(2) { width: 200px; height: 200px; bottom: -40px; left: -40px; animation-delay: 2s; background: var(--accent); }
.hero-float:nth-child(3) { width: 150px; height: 150px; top: 30%; left: 10%; animation-delay: 4s; }
.hero-float:nth-child(4) { width: 100px; height: 100px; bottom: 20%; right: 15%; animation-delay: 1s; background: var(--accent); }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-pulse {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* ═══════════════════════════════════════════════════════
   BRANDS GRID
   ═══════════════════════════════════════════════════════ */
.brands-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  transition: all 0.3s;
  text-align: center;
}

.brand-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════
   COMMON PROBLEMS
   ═══════════════════════════════════════════════════════ */
.problems-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--bg);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.problem-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.problem-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.problem-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.problem-card a {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.problem-card a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

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

.testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════════════
   SUSTAINABILITY
   ═══════════════════════════════════════════════════════ */
.sustainability-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.sustainability-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sustainability-content .eco-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sustainability-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}

.sustainability-point {
  padding: 1.5rem;
}

.sustainability-point .point-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.sustainability-point h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.sustainability-point p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   NETWORK / SISTER SITES
   ═══════════════════════════════════════════════════════ */
.network-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--bg);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.network-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}

.network-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  color: var(--text);
}

.network-card .network-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.network-card h3 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.network-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   RATGEBER TEASER (Homepage)
   ═══════════════════════════════════════════════════════ */
.ratgeber-teaser-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--white);
}

.ratgeber-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.ratgeber-teaser-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-decoration: none;
  transition: all 0.3s;
}

.ratgeber-teaser-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.ratgeber-teaser-card h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.ratgeber-teaser-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.ratgeber-more {
  text-align: center;
}

.ratgeber-more a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
}

.ratgeber-more a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 90px clamp(1.5rem, 5vw, 6rem) 0;
  background: var(--bg);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.3rem;
  max-width: 750px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-list a:hover { text-decoration: underline; }

.breadcrumb-list li::after {
  content: '>';
  margin-left: 0.3rem;
  color: var(--text-muted);
}

.breadcrumb-list li:last-child::after { content: ''; }

/* ═══════════════════════════════════════════════════════
   RATGEBER HUB
   ═══════════════════════════════════════════════════════ */
.ratgeber-hub {
  padding: 2rem clamp(1.5rem, 5vw, 6rem) 5rem;
  background: var(--bg);
}

.ratgeber-hub-intro {
  max-width: 750px;
  margin: 0 auto 3rem;
  text-align: center;
}

.ratgeber-hub-intro p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ratgeber-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  text-decoration: none;
  transition: all 0.3s;
}

.ratgeber-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.ratgeber-card h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.ratgeber-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
}

.ratgeber-category {
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.ratgeber-category h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-glow-strong);
}

/* ═══════════════════════════════════════════════════════
   RATGEBER ARTICLE
   ═══════════════════════════════════════════════════════ */
.article-page {
  padding: 1.5rem clamp(1.5rem, 5vw, 6rem) 5rem;
  background: var(--bg);
  min-height: 80vh;
}

.article-content {
  max-width: 750px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-sm);
}

.article-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
  color: var(--text);
  line-height: 1.25;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.article-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
}

.article-content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  margin: 0.8rem 0 1.2rem 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.article-content li { margin-bottom: 0.4rem; }

.article-content a { color: var(--primary); text-decoration: none; }
.article-content a:hover { text-decoration: underline; }

.article-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--primary-glow);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: var(--radius);
  text-align: center;
}

.article-cta h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.article-cta p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.article-cta .btn-primary {
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
}

.article-related {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.article-related h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
  margin-top: 0;
}

.article-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-related li {
  margin-bottom: 0.5rem;
}

.article-related a {
  font-size: 0.95rem;
  color: var(--primary);
  text-decoration: none;
}

.article-related a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   HERO IMAGE
   ═══════════════════════════════════════════════════════ */
.hero-image-wrapper {
  position: relative;
  z-index: 1;
  max-width: 520px;
  flex-shrink: 0;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.hero-split {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(1.5rem, 5vw, 4rem) 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero-split-inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-split .hero-content {
  flex: 1;
  text-align: left;
  max-width: 550px;
}

.hero-split .hero-btns {
  justify-content: flex-start;
}

.hero-split .hero-text {
  margin: 0 0 2.5rem;
}

@media (max-width: 900px) {
  .hero-split-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-split .hero-content {
    text-align: center;
  }
  .hero-split .hero-btns {
    justify-content: center;
  }
  .hero-split .hero-text {
    margin: 0 auto 2.5rem;
  }
  .hero-image-wrapper {
    max-width: 400px;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════
   FEATURE CARD IMAGES
   ═══════════════════════════════════════════════════════ */
.feature-card img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  object-fit: cover;
  aspect-ratio: 16/10;
}

/* ═══════════════════════════════════════════════════════
   ARTICLE IMAGES
   ═══════════════════════════════════════════════════════ */
.article-hero-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.article-content figure {
  margin: 1.5rem 0;
}

.article-content figure img {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.article-content figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

.article-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.article-gallery img {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  aspect-ratio: 4/3;
}

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

/* ═══════════════════════════════════════════════════════
   TEAM / TRUST IMAGE SECTION
   ═══════════════════════════════════════════════════════ */
.team-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--white);
}

.team-content {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1000px;
  margin: 0 auto;
}

.team-image {
  flex: 1;
  max-width: 480px;
}

.team-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.team-text {
  flex: 1;
}

.team-text h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.team-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .team-content { flex-direction: column; }
  .team-image { max-width: 100%; }
}
