/* ═══════════════════════════════════════════════════════
   Fernseher-Reparatur.de – Warm Orange Technical Design
   Professional, conversion-focused, distinct from Doktor branding
   ═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --primary: #e67e22;
  --primary-light: #f0932b;
  --primary-dark: #d35400;
  --primary-glow: rgba(230, 126, 34, 0.1);
  --primary-glow-strong: rgba(230, 126, 34, 0.18);
  --accent: #2c3e50;
  --accent-light: #34495e;
  --green: #27ae60;
  --green-light: #2ecc71;
  --white: #ffffff;
  --bg: #faf8f5;
  --bg-warm: #fdf6ef;
  --bg-card: #ffffff;
  --text: #2c3e50;
  --text-light: #5a6a7e;
  --text-muted: #8896a6;
  --border: #e8e0d8;
  --border-light: #f2ece6;
  --success: #27ae60;
  --error: #e74c3c;
  --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(230, 126, 34, 0.15);
}

* { 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); text-decoration: none; }
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.97);
  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.2rem;
  color: var(--accent);
  text-decoration: none;
}

.logo-svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  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) !important;
  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(230, 126, 34, 0.35);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 36px;
  height: 36px;
  position: relative;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 2px;
  transition: 0.3s;
}

.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;
  display: block;
}

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

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

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-1 {
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 70%);
}

.hero-shape-2 {
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
}

.hero-shape-3 {
  top: 20%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(44, 62, 80, 0.03) 0%, transparent 70%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  background: var(--primary-glow);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(230, 126, 34, 0.15);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
}

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

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

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

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════
   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(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  border-radius: 12px;
}

.trust-text { }

.trust-item .num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.trust-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

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

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

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

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

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

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-glow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   DEFECTS GRID (Problem Types)
   ═══════════════════════════════════════════════════════ */
.process {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--bg);
}

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

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

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

.defect-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  border-radius: 14px;
  margin-bottom: 1rem;
}

.defect-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

/* ═══════════════════════════════════════════════════════
   COMPARISON (Vor-Ort vs Einsendung)
   ═══════════════════════════════════════════════════════ */
.comparison-section {
  padding: 5rem clamp(1.5rem, 5vw, 6rem);
  background: var(--white);
}

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

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

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

.comparison-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

.comparison-badge-alt {
  background: var(--accent);
}

.comparison-icon {
  margin-bottom: 1.2rem;
}

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

.comparison-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.comparison-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.comparison-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.comparison-features li:last-child {
  border-bottom: none;
}

.comparison-card .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
}

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

.process-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.process-step:last-child { padding-bottom: 0; }

.process-step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step:last-child::before { display: none; }

.process-step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.process-step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--text);
  padding-top: 0.2rem;
}

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

/* ═══════════════════════════════════════════════════════
   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(170px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: all 0.3s;
}

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

.brand-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.brand-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.brand-item-more {
  background: var(--primary-glow);
  border-color: rgba(230, 126, 34, 0.2);
}

.brand-item-more strong {
  color: var(--primary);
}

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

.sustainability-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.sustainability-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.sustainability-text > p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sustainability-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.sustain-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green);
}

.sustain-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-text-link {
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-text-link:hover {
  color: var(--green-light);
}

.sustainability-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.08);
  border: 2px solid rgba(39, 174, 96, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.eco-circle span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green);
  text-align: center;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .sustainability-content {
    grid-template-columns: 1fr;
  }
  .sustainability-visual { display: none; }
  .sustainability-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

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

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

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

.ratgeber-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  border-radius: 12px;
  margin-bottom: 1rem;
}

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

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

.ratgeber-cta {
  text-align: center;
  margin-top: 2rem;
}

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

.faq-accordion {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: var(--bg);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item.active {
  border-color: var(--primary);
  background: var(--white);
}

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

.faq-question svg {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

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

.faq-answer p {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Legacy FAQ grid (for other pages) */
.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;
}

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

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

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

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

.network-card strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.network-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  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(--white);
  padding: 0.3rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.toggle-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  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(230, 126, 34, 0.3);
}

.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(--white);
  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(230, 126, 34, 0.3);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.4);
}

.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; }

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

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

.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(--accent);
  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 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  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.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  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: 1200px;
  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: 900px) {
  .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;
}

.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;
}

.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); }
.legal-content a:hover { text-decoration: underline; }

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

.breadcrumbs-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumbs .sep {
  color: var(--border);
  margin: 0 0.2rem;
}

.breadcrumbs .current {
  color: var(--text-light);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   RATGEBER ARTICLE PAGES
   ═══════════════════════════════════════════════════════ */
.article-page {
  padding: 0 clamp(1.5rem, 5vw, 6rem) 4rem;
  background: var(--bg);
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.article-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}

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

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.article-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.article-content h3 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  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.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

.article-content strong {
  color: var(--text);
}

.article-content a {
  color: var(--primary);
}

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

/* Article CTA Box */
.article-cta {
  background: linear-gradient(135deg, var(--primary-glow) 0%, rgba(230, 126, 34, 0.05) 100%);
  border: 2px solid rgba(230, 126, 34, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

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

.article-cta p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

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

/* Article Info Box */
.info-box {
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.info-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Article Cost Table */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.cost-table th,
.cost-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cost-table th {
  background: var(--bg);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.cost-table td {
  color: var(--text-light);
}

.cost-table tr:hover td {
  background: var(--primary-glow);
}

/* Article sidebar / related */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.sidebar-box h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.sidebar-box a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-box a:last-child { border-bottom: none; }
.sidebar-box a:hover { color: var(--primary); }

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

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

.ratgeber-hub-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.ratgeber-hub-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.ratgeber-category {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.ratgeber-category h2 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.ratgeber-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.ratgeber-list-item {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

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

.ratgeber-list-item h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.ratgeber-list-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   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: 80vh; padding-top: 100px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-stats { gap: 1rem; }
  .hero-stat-divider { height: 30px; }
  .trust-items { gap: 1.2rem; }
  .trust-item { flex-direction: column; text-align: center; }
  .defects-grid { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .ratgeber-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .defects-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0.5rem; }
  .hero-stat-divider { width: 40px; height: 1px; }
}
