:root {
  --white: #FFFFFF;
  --ice: #F7FAFC;
  --frost: #EDF2F7;
  --steel: #2B2B2B;
  --slate: #4A5568;
  --muted: #718096;
  --blue: #0072BC;
  --blue-dark: #002D4A;
  --blue-light: #E6F4FA;
  --cyan: #00ADEF;
  --border: #E2E8F0;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Merriweather', Georgia, serif;

  /* Fluid Typography (impeccable adapt) */
  --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-h1: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --fs-h2: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
}

body {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  background: var(--white);
  color: var(--steel);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
}
h1 { font-size: var(--fs-h1); line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: var(--fs-h2); line-height: 1.2; margin-bottom: 1.25rem; }
h3 { font-size: var(--fs-h3); line-height: 1.3; margin-bottom: 1rem; }
 .container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

 /* --- Header: Utility Bar + Main Nav (Flowbite-inspired) --- */
  .site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    transition: box-shadow 0.3s ease;
  }
  .site-header.scrolled { box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
  nav {
    padding: 0 0;
  }
  nav .container { display: flex; align-items: center; justify-content: space-between; min-height: 48px; }
  .nav-logo { font-weight: 800; font-size: 1.15rem; color: var(--steel); text-decoration: none; letter-spacing: -0.3px; display: flex; align-items: center; gap: 0.5rem; line-height: 1; }
  .nav-logo span { color: var(--blue); }
  .nav-logo-icon { width: 28px; height: 28px; background: linear-gradient(135deg, var(--blue), var(--cyan)); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .nav-logo-icon svg { width: 16px; height: 16px; stroke: white; flex-shrink: 0; }
  .nav-desktop { display: flex; align-items: center; gap: 0.5rem; }
  .nav-desktop .nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
  .nav-desktop .nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--slate); text-decoration: none;
    padding: 0.4rem 0.6rem; border-radius: 6px; transition: all 0.2s ease; line-height: 1;
    display: block;
  }
  .nav-desktop .nav-links a:hover,
  .nav-desktop .nav-links a.active { color: var(--blue); background: var(--blue-light); }
  .nav-actions { display: flex; align-items: center; gap: 0.5rem; margin-left: 0.75rem; }
  .nav-link-login {
    font-size: 0.875rem; font-weight: 500; color: var(--slate); text-decoration: none;
    padding: 0.4rem 0.6rem; border-radius: 6px; transition: all 0.2s ease;
  }
  .nav-link-login:hover { color: var(--blue); background: var(--blue-light); }
  .nav-cta {
    font-size: 0.8125rem; font-weight: 600; color: var(--white);
    background: var(--blue); border: none; padding: 0.5rem 1rem; border-radius: 6px;
    cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-flex;
    align-items: center; gap: 0.35rem; box-shadow: 0 1px 2px rgba(0,114,188,0.15);
    line-height: 1; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,114,188,0.2); }
  .nav-mobile-btn {
    display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; border-radius: 6px; transition: background 0.2s;
  }
  .nav-mobile-btn:hover { background: var(--frost); }
  .nav-mobile-btn svg { width: 24px; height: 24px; stroke: var(--steel); }
 .mobile-sheet {
   position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: 0; transition: opacity 0.3s ease;
 }
 .mobile-sheet.open { pointer-events: auto; opacity: 1; }
 .mobile-sheet-overlay {
   position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
 }
.mobile-sheet-panel {
   position: absolute; top: 0; right: 0; width: min(320px, 85vw); height: 100%;
   background: var(--white); border-left: 1px solid var(--border);
   box-shadow: -4px 0 24px rgba(0,0,0,0.08);
   transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
   display: flex; flex-direction: column; padding: 1rem 1.5rem;
   overflow: hidden;
}
 .mobile-sheet.open .mobile-sheet-panel { transform: translateX(0); }
.sheet-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; flex-shrink: 0; }
.sheet-header .nav-logo { font-size: 1rem; }
.sheet-close { background: none; border: none; cursor: pointer; padding: 0.4rem; border-radius: 6px; transition: background 0.2s; }
.sheet-close:hover { background: var(--frost); }
.sheet-close svg { width: 20px; height: 20px; stroke: var(--slate); }
.sheet-links { 
  list-style: none; display: flex; flex-direction: column; gap: 0.25rem; 
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  flex: 1;
  padding-right: 0.5rem;
  max-height: 60vh;
}
 .sheet-links a {
   font-size: 1rem; font-weight: 500; color: var(--steel); text-decoration: none;
   padding: 0.75rem 0.5rem; border-radius: 6px; transition: all 0.2s;
   display: flex; align-items: center; justify-content: space-between;
 }
 .sheet-links a:hover { background: var(--blue-light); color: var(--blue); }
 .sheet-links a svg { width: 16px; height: 16px; stroke: var(--muted); transition: stroke 0.2s; }
 .sheet-links a:hover svg { stroke: var(--blue); }
.sheet-cta { 
  margin-top: 3rem; 
  padding-top: 0; 
  display: flex; 
  flex-direction: column; 
  gap: 0.5rem;
  flex-shrink: 0;
}
.sheet-cta .btn-primary { width: 100%; max-width: 100%; box-sizing: border-box; }
.sheet-cta .btn-outline { flex: none; width: auto; padding-inline: 0.5rem; }
.sheet-footer { 
  margin-top: 1.5rem; 
  padding-top: 0.5rem; 
  text-align: center; 
  font-size: 0.75rem; 
  color: var(--muted); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 0.5rem; 
  flex-wrap: wrap;
  flex-shrink: 0;
}
 .sheet-footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
 .sheet-footer a:hover { color: var(--slate); }

  .hero {
    min-height: 85vh; display: flex; align-items: center;
    padding: 7rem 0 4rem;
     background: linear-gradient(180deg, rgba(230,244,250,0.92) 0%, rgba(255,255,255,0.88) 60%), url('../images/jimmy-chang-SADRSiisg50-unsplash.jpg');
    background-size: cover; background-position: center;
  }

 .section-image {
   width: 100%; height: 240px; object-fit: cover; border-radius: 8px;
   margin-bottom: 2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.06);
 }
 .img-card {
   border-radius: 8px; overflow: hidden;
   box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   margin-bottom: 1.5rem;
 }
     .img-card img { width: 100%; height: auto; max-height: 750px; object-fit: cover; display: block; }
 .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
 .hero-eyebrow {
   font-size: 0.8125rem; font-weight: 600; text-transform: uppercase;
   letter-spacing: 2px; color: var(--blue); margin-bottom: 0.75rem;
 }
 .hero h1 {
   font-weight: 800; font-size: clamp(2rem, 4vw, 3rem);
   line-height: 1.12; letter-spacing: -1px; color: var(--blue-dark); margin-bottom: 1rem;
 }
 .hero h1 span { color: var(--blue); }
 .hero-subtitle {
   font-family: var(--font-body); font-size: 1.0625rem; font-style: italic;
   color: var(--slate); max-width: 460px; margin-bottom: 1.5rem; line-height: 1.7;
 }
 .hero-pains { list-style: none; margin-bottom: 1.5rem; }
 .hero-pains li {
   display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem;
   font-size: 0.9375rem; color: var(--slate);
 }
 .hero-pains li::before { content: "\00d7"; color: #c53030; font-weight: 700; font-size: 1.1rem; }
 .hero-contact { font-size: 0.9375rem; color: var(--muted); margin-bottom: 1.25rem; }
 .hero-contact strong { color: var(--steel); font-weight: 600; }
 .hero-contact a { color: var(--blue); text-decoration: none; }
 .hero-contact a:hover { text-decoration: underline; }
 .hero-cta-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
/* Touch Targets & Button Refinement (impeccable adapt) */
.btn-primary, .btn-outline {
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s;
  padding: 0.8rem 3.5rem; border-radius: 12px; font-weight: 600; font-size: 0.9375rem;
  text-decoration: none; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn-primary { color: var(--white); background: var(--blue); border: none; gap: 0.5rem; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 114, 188, 0.15); }
.btn-outline { color: var(--blue); background: transparent; border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue-light); transform: translateY(-1px); }

/* Mobile Bottom Navigation (impeccable adapt: thumb-first) */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom));
  display: none; z-index: 95;
  gap: 0.75rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}
@media (max-width: 600px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 80px; }
  .hero-cta-group, .service-cta { display: none; } /* Use bottom bar instead */
}
.mobile-cta-bar .btn-primary { flex: 2; }
.mobile-cta-bar .btn-outline { flex: 1; padding-inline: 0.5rem; }
 .hero-visual {
   background: var(--white); border: 1px solid var(--border); border-radius: 8px;
   padding: 2rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
 }
 .hero-visual h3 { font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 1rem; }
 .hero-contact-box { font-size: 0.9375rem; color: var(--slate); line-height: 1.7; }
 .hero-contact-box a { color: var(--blue); text-decoration: none; }
  .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--blue-light); color: var(--blue-dark); font-size: 0.8125rem; font-weight: 600; padding: 0.5rem 0; border-radius: 6px; margin-top: 1rem; width: 100%; justify-content: center; }

 .section-header { text-align: center; margin-bottom: 3rem; }
 .section-tag {
   font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
   letter-spacing: 2px; color: var(--blue); margin-bottom: 0.5rem;
 }
 .section-header h2 {
   font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem);
   line-height: 1.15; letter-spacing: -0.5px; color: var(--blue-dark); margin-bottom: 0.5rem;
 }
 .section-header p { font-size: 1rem; color: var(--slate); max-width: 520px; margin: 0 auto; }

 .problem { padding: 5rem 0; background: var(--white); border-top: 1px solid var(--border); }
 .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
 .problem h2 {
   font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem);
   line-height: 1.15; letter-spacing: -0.5px; color: var(--blue-dark); margin-bottom: 1rem;
 }
 .problem h2 span { color: var(--blue); }
 .problem-list { list-style: none; margin-bottom: 1.5rem; }
 .problem-list li {
   display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem;
   font-size: 1rem; color: var(--slate);
 }
 .problem-list li::before { content: ""; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); margin-top: 0.5rem; flex-shrink: 0; }
 .problem-text { font-family: var(--font-body); font-size: 1rem; font-style: italic; color: var(--slate); line-height: 1.7; }
 .problem-text strong { font-style: normal; color: var(--blue-dark); }
 .problem-visual {
   background: var(--blue-light); border-radius: 8px; padding: 2rem;
 }
 .problem-visual h3 { font-weight: 700; font-size: 1.1rem; color: var(--blue-dark); margin-bottom: 0.5rem; }
 .problem-visual p { font-size: 0.9375rem; color: var(--slate); line-height: 1.6; }

.stats-bar {
  background: var(--blue-dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.stats-band {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 160px;
}
.stats-band-item {
  flex: 1;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(237,242,247,0.12);
}
.stats-band-item:last-child { border-right: none; }
.stats-band-item svg {
  width: 32px; height: 32px; stroke: var(--cyan); stroke-width: 1.5;
  margin-bottom: 0.75rem; opacity: 0.6;
}
.stats-band-number {
  font-weight: 800; font-size: 2.25rem; color: var(--cyan);
  line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.stats-band-label {
  font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--frost); opacity: 0.7;
}
.stats-band-desc {
  font-size: 0.875rem; color: var(--frost); opacity: 0.5;
  margin-top: 0.5rem; max-width: 200px; margin-inline: auto;
}

 .wartung { padding: 5rem 0; background: var(--white); }
 .wartung-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
 .wartung h3 { font-weight: 700; font-size: 1.1rem; color: var(--blue-dark); margin-bottom: 1rem; }
 .wartung ul { list-style: none; }
 .wartung li {
   display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.5rem;
   font-size: 0.9375rem; color: var(--slate); line-height: 1.5;
 }
 .wartung li::before { content: "\2014"; color: var(--cyan); flex-shrink: 0; }
 .wartung-block {
   background: var(--ice); border: 1px solid var(--border); border-radius: 8px;
   padding: 1.5rem; margin-top: 1.5rem;
 }
 .wartung-block h4 { font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 0.75rem; }
 .wartung-block p { font-size: 0.9375rem; color: var(--slate); }

 .pricing-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
 .price-mini {
   background: var(--white); border: 1px solid var(--border); border-radius: 6px;
   padding: 1rem; text-align: center;
 }
 .price-mini-state { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 0.25rem; }
 .price-mini-num { font-weight: 800; font-size: 1.5rem; color: var(--blue-dark); }
 .price-mini-desc { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }

 .vertrieb { padding: 5rem 0; background: var(--blue-light); }
 .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
 .step-card {
   background: var(--white); border: 1px solid var(--border); border-radius: 8px;
   padding: 1.5rem; text-align: center;
 }
 .step-num { font-weight: 800; font-size: 1.5rem; color: var(--blue); margin-bottom: 0.5rem; }
 .step-title { font-weight: 600; font-size: 0.9375rem; color: var(--blue-dark); margin-bottom: 0.4rem; }
 .step-desc { font-size: 0.8125rem; color: var(--slate); line-height: 1.5; }

 .product { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; margin-bottom: 2rem; }
 .product h3 { font-weight: 800; font-size: 1.25rem; color: var(--blue-dark); margin-bottom: 0.75rem; }
 .product h3 span { color: var(--blue); }
 .product-sub { font-size: 1rem; color: var(--slate); margin-bottom: 1.25rem; line-height: 1.6; }
 .product-values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
 .pv-item { text-align: center; background: var(--ice); border-radius: 6px; padding: 0.75rem; }
 .pv-number { font-weight: 800; font-size: 1.1rem; color: var(--blue); }
 .pv-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-top: 0.2rem; }
 .product-pros { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
 .pros-col h4 { font-weight: 700; font-size: 0.875rem; color: var(--blue-dark); margin-bottom: 0.75rem; }
 .pros-col ul { list-style: none; }
 .pros-col li { font-size: 0.875rem; color: var(--slate); margin-bottom: 0.4rem; display: flex; gap: 0.4rem; line-height: 1.4; }
 .pros-col li::before { content: "\2713"; color: var(--blue); font-weight: 700; flex-shrink: 0; }
 .pros-col.cons li::before { content: "\00d7"; color: #c53030; }
    .karten-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
 .karten-grid > .product { margin-bottom: 0; }

 .testimonial { padding: 5rem 0; background: var(--white); }
 .testimonial-card {
   max-width: 680px; margin: 0 auto; text-align: center;
   background: var(--ice); border: 1px solid var(--border); border-radius: 8px;
   padding: 2.5rem 2rem;
 }
 .quote-mark { font-weight: 800; font-size: 4rem; color: var(--blue-light); line-height: 0.8; margin-bottom: -0.3rem; font-family: var(--font-body); }
 .quote-text { font-family: var(--font-body); font-size: 1.1rem; font-style: italic; color: var(--steel); line-height: 1.7; margin-bottom: 1.25rem; }
 .quote-author { font-weight: 700; font-size: 0.9375rem; color: var(--steel); }
 .quote-role { font-size: 0.8125rem; color: var(--muted); margin-top: 0.25rem; }

 .service { padding: 4rem 0; background: var(--blue-light); text-align: center; }
 .service h2 { font-weight: 800; font-size: 1.75rem; color: var(--blue-dark); margin-bottom: 0.75rem; }
 .service p { font-size: 1rem; color: var(--slate); max-width: 500px; margin: 0 auto 1.5rem; }
 .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 800px; margin: 0 auto 1.5rem; }
.service-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 3rem; }
.service-cta .btn-primary, .service-cta .btn-outline { padding: 1.1rem 2rem; font-size: 1.0625rem; font-weight: 600; }
 .service-item { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 1rem; font-size: 0.875rem; color: var(--slate); }
 .service-item strong { display: block; color: var(--blue-dark); font-size: 0.9375rem; margin-bottom: 0.2rem; }

 footer { background: var(--blue-dark); color: var(--frost); padding: 3rem 0 1.5rem; }
 .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; align-items: start; }
 .footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 0.75rem; display: block; color: var(--white); }
 .footer-brand .nav-logo span { color: var(--cyan); }
 .footer-brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; word-break: keep-all; }
 .footer-brand a { color: var(--frost); text-decoration: none; opacity: 0.8; transition: opacity 0.2s; white-space: nowrap; }
 .footer-brand a:hover { opacity: 1; }
 .footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 0.75rem; margin-top: 0.25rem; }
 .footer-col a { display: block; font-size: 0.875rem; color: var(--frost); text-decoration: none; padding: 0.25rem 0; opacity: 0.7; transition: opacity 0.2s; }
 .footer-col a:hover { opacity: 1; }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem; padding-bottom: 0.5rem; border-top: 1px solid rgba(237,242,247,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--muted);
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Varied section rhythm (impeccable: same padding is monotony) */
section { padding: clamp(3rem, 6vw, 7rem) 0; }
section.stats-bar { padding: 0; }
section.problem { padding: clamp(2.5rem, 5vw, 5rem) 0; }
section.service { padding: clamp(3.5rem, 7vw, 7rem) 0; }
@media (max-width: 900px) {
  section { padding: clamp(2rem, 5vw, 4rem) 0; }
  section.service { padding: clamp(2.5rem, 6vw, 5rem) 0; }
}

/* Container Queries (impeccable adapt) */
@container card (min-width: 400px) {
  .step-card { padding: 2rem; }
  .step-num { font-size: 2rem; }
}
.steps { container-type: inline-size; }

/* Tablet (impeccable adapt: 2-column, touch+pointer) */
@media (min-width: 768px) and (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: clamp(2rem, 5vw, 2.5rem); }
  .stats-band { flex-wrap: wrap; }
  .stats-band-item { flex: 1 1 50%; }
  .steps { grid-template-columns: 1fr 1fr; }
  .wartung-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .karten-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-values { grid-template-columns: repeat(3, 1fr); }
  .product-pros { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-mobile-btn { display: flex; }
   .hero-grid, .problem-grid, .wartung-grid, .steps, .product-pros, .pricing-inline, .service-grid, .karten-grid { grid-template-columns: 1fr; }
  .stats-bar { padding: 2rem 0; }
  .stats-band { flex-direction: column; min-height: auto; }
  .stats-band-item { border-right: none; border-bottom: 1px solid rgba(237,242,247,0.12); padding: 1.75rem 1.25rem; }
  .stats-band-item:last-child { border-bottom: none; }
  .stats-band-number { font-size: 1.75rem; }
   .footer-grid { grid-template-columns: 1fr 1fr; }
 }
 @media (max-width: 500px) {
   .container { padding: 0 1.25rem; }
   .hero { padding-top: 5rem; min-height: auto; padding-bottom: 2rem; }
   .hero h1 { font-size: 1.8rem; letter-spacing: -0.5px; }
   .hero-subtitle { font-size: 0.9375rem; }
   .hero-pains li { font-size: 0.875rem; }
   .hero-visual { padding: 1.25rem; }
   .stats-bar { padding: 2rem 0; }
   .stats-band { flex-direction: column; min-height: auto; }
   .stats-band-item { border-right: none; border-bottom: 1px solid rgba(237,242,247,0.12); padding: 1.75rem 1.25rem; }
   .stats-band-item:last-child { border-bottom: none; }
   .stats-band-number { font-size: 1.75rem; }
   .stats-band-desc { font-size: 0.8125rem; }
   .wartung-grid { grid-template-columns: 1fr; }
   .pricing-inline { grid-template-columns: 1fr; }
   .price-mini { padding: 0.875rem; }
   .product-values { grid-template-columns: repeat(2, 1fr); }
   .steps { grid-template-columns: 1fr; }
   .step-card { padding: 1.25rem; }
   .product-sub { font-size: 0.9375rem; }
   .testimonial-card { padding: 1.75rem 1.25rem; }
   .quote-text { font-size: 1rem; }
   .service-grid { grid-template-columns: 1fr; }
   .service-item { padding: 0.875rem; }
   .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
   .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
   .pros-col li { display: block; font-size: 0.8125rem; }
   .pros-col li::before { display: inline; margin-right: 0.3rem; }
   .karten-grid { gap: 1rem; margin-top: 1.5rem; }
   .karten-grid > .product { padding: 1.25rem; }
   .mobile-sheet-panel { padding: 1.25rem; }
  .sheet-links a { padding: 0.6rem 0.4rem; }
}

/* Print Styles (impeccable adapt) */
@media print {
  *, *::before, *::after { color: #000 !important; background: #fff !important; }
   .site-header, .mobile-sheet, .mobile-cta-bar, .service-cta, .hero-cta-group,
  .hero-badge, .stats-band-item svg, .reveal, .btn-primary, .btn-outline { display: none !important; }
  body { font-size: 12pt; line-height: 1.5; }
  .container { max-width: 100%; padding: 0 1cm; }
  .hero { min-height: auto; padding: 2cm 0 1cm; }
  .hero-grid { display: block; }
  .hero h1 { font-size: 18pt; }
  .section-image, .img-card img { max-height: 5cm; margin-bottom: 0.5cm; }
  section { padding: 1cm 0; page-break-inside: avoid; }
  .stats-bar { background: #fff; border-top: 2px solid #000; border-bottom: 2px solid #000; }
  .stats-band-number, .stats-band-label { color: #000 !important; }
  .stats-band-item { border-color: #ccc; }
  .product { border: 1px solid #000; margin-bottom: 0.5cm; }
  .problem-visual { background: #f0f0f0; }
  footer { background: #fff; border-top: 1px solid #000; }
  footer .nav-logo, footer a, footer p, footer span { color: #000 !important; }
  a { text-decoration: underline; }
  a[href^="tel:"]::after, a[href^="mailto:"]::after { content: " <" attr(href) ">"; font-size: 0.9em; }
}
/* ── CookieConsent Brand Overrides (orestbida/cookieconsent) ── */
#cc-main {
  --cc-font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --cc-bg: #fff;
  --cc-primary-color: #0072BC;
  --cc-secondary-color: #4A5568;
  --cc-btn-primary-bg: #0072BC;
  --cc-btn-primary-border-color: #0072BC;
  --cc-btn-primary-hover-bg: #002D4A;
  --cc-btn-primary-hover-border-color: #002D4A;
  --cc-btn-secondary-bg: #EDF2F7;
  --cc-btn-secondary-border-color: #E2E8F0;
  --cc-btn-secondary-color: #2B2B2B;
  --cc-btn-secondary-hover-bg: #E2E8F0;
  --cc-toggle-on-bg: var(--cc-primary-color);
  --cc-toggle-off-bg: #CBD5E0;
  --cc-toggle-on-knob-bg: #fff;
  --cc-toggle-off-knob-bg: #fff;
  --cc-modal-border-radius: 8px;
  --cc-btn-border-radius: 6px;
}
