/* Reset + Mobile-First Base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 56px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { margin: 0 0 var(--sp-4); line-height: var(--lh-tight); font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { margin: 0 0 var(--sp-4); }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  min-height: var(--cta-h-mobile); padding: 0 var(--sp-6);
  border-radius: var(--r-md);
  font-weight: 700; font-size: var(--fs-base);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--text-inverse); box-shadow: var(--sh-cta); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-block { width: 100%; }
.btn-lg { min-height: 64px; font-size: var(--fs-lg); padding: 0 var(--sp-8); }

/* Sections */
section { padding: var(--sp-16) 0; }
@media (min-width: 768px) { section { padding: var(--sp-24) 0; } }
.section-alt { background: var(--bg-section-alt); }

/* Eyebrow */
.eyebrow {
  display: inline-block; font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--sp-3);
}
.eyebrow-warn { color: var(--warning); }

/* Sticky Top Bar */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--accent); color: var(--text-inverse);
  font-weight: 700; font-size: var(--fs-sm);
  text-align: center; padding: 10px var(--gutter);
  padding-top: calc(10px + var(--safe-top));
}
.topbar a { text-decoration: underline; }

/* Sticky Bottom CTA (Mobile only) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--accent); color: var(--text-inverse);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3);
  padding: 12px var(--gutter) calc(12px + var(--safe-bottom));
  box-shadow: 0 -8px 24px rgba(20, 32, 26, 0.2);
  transform: translateY(100%);
  transition: transform var(--t-base) var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__copy { font-weight: 700; font-size: var(--fs-sm); line-height: 1.2; }
.sticky-cta__copy strong { display: block; font-size: var(--fs-base); }
.sticky-cta .btn { min-height: 44px; padding: 0 var(--sp-4); background: var(--text-inverse); color: var(--accent); box-shadow: none; flex-shrink: 0; }
@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* Hero */
.hero { padding-top: var(--sp-10); padding-bottom: var(--sp-12); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, var(--sun-soft) 0%, transparent 60%),
              radial-gradient(ellipse 70% 50% at 0% 100%, var(--accent-soft) 0%, transparent 60%);
  z-index: -1;
}
.hero h1 { font-size: var(--fs-hero); }
.hero__sub { font-size: var(--fs-lg); color: var(--text-secondary); margin: 0 0 var(--sp-6); max-width: 540px; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 var(--sp-6); display: grid; gap: var(--sp-2); }
.hero__bullets li { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-sm); font-weight: 600; }
.hero__bullets li::before {
  content: "✓"; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: var(--text-inverse);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.hero__cta-row { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-6); }
.hero__micro { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--sp-2); }
.hero__visual {
  position: relative; margin-top: var(--sp-8);
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--bg-section-alt);
  box-shadow: var(--sh-lg);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__floating-card {
  position: absolute; bottom: var(--sp-4); left: var(--sp-4); right: var(--sp-4);
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: var(--sp-4);
  box-shadow: var(--sh-md);
  font-size: var(--fs-sm);
}
.hero__floating-card strong { color: var(--accent); font-size: var(--fs-h3); display: block; line-height: 1.1; }

@media (min-width: 768px) {
  .hero { padding-top: var(--sp-16); padding-bottom: var(--sp-16); }
  .hero__container { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--sp-12); align-items: center; }
  .hero__visual { margin-top: 0; }
  .hero__cta-row { flex-direction: row; }
}

/* Stats Bar */
.stats {
  background: var(--bg-section-alt);
  padding: var(--sp-8) 0;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4); text-align: center;
}
.stats__item strong {
  display: block; font-size: var(--fs-h2); color: var(--accent);
  font-weight: 800; line-height: 1; margin-bottom: var(--sp-1);
}
.stats__item span { font-size: var(--fs-sm); color: var(--text-secondary); }
@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stats__item strong { font-size: var(--fs-h1); }
}

/* Deadline Comparison Table */
.deadline { background: var(--bg-section-alt); }
.deadline h2 .accent-warn { color: var(--warning); }
.deadline__table {
  background: var(--bg-card);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md); margin-top: var(--sp-8);
}
.deadline__row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
}
.deadline__row:last-child { border-bottom: 0; }
.deadline__row > div { padding: var(--sp-4); }
.deadline__head { background: var(--bg-section-alt); font-weight: 800; }
.deadline__head .good { color: var(--accent); }
.deadline__head .bad { color: var(--warning); }
.deadline__row > div:first-child { font-weight: 600; }
.deadline__row .col-now { background: rgba(31, 138, 76, 0.06); font-weight: 700; color: var(--accent); }
.deadline__row .col-later { background: rgba(208, 74, 59, 0.06); color: var(--warning); }
.deadline__source { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--sp-4); text-align: center; }

@media (max-width: 640px) {
  .deadline__head { display: none; }
  .deadline__row { grid-template-columns: 1fr; padding: var(--sp-2) 0; }
  .deadline__row > div { border-bottom: 1px solid var(--border-strong); }
  .deadline__row > div:last-child { border-bottom: 0; }
  .deadline__row > div:first-child { background: var(--bg-section-alt); font-size: var(--fs-base); }
  .deadline__row .col-now::before { content: "Sie kaufen 2026: "; font-weight: 800; color: var(--text-primary); display: block; font-size: var(--fs-xs); letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.7; margin-bottom: 2px; }
  .deadline__row .col-later::before { content: "Sie warten bis 2027: "; font-weight: 800; color: var(--text-primary); display: block; font-size: var(--fs-xs); letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.7; margin-bottom: 2px; }
}

/* Footer */
.site-footer {
  background: var(--text-primary); color: var(--bg);
  padding: var(--sp-12) 0 calc(var(--sp-12) + var(--safe-bottom));
  font-size: var(--fs-sm);
}
.site-footer a { color: var(--accent-soft); }
.site-footer__cols { display: grid; gap: var(--sp-8); }
.site-footer__cols h4 { color: var(--bg); margin-bottom: var(--sp-3); }
.site-footer__legal { margin-top: var(--sp-8); padding-top: var(--sp-6); border-top: 1px solid #2a3b32; font-size: var(--fs-xs); color: var(--text-muted); }
@media (min-width: 768px) { .site-footer__cols { grid-template-columns: 2fr 1fr 1fr; } }

/* Utilities */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-8 { margin-top: var(--sp-8); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Sticky-Bottom-CTA reserves space at end of <main> on mobile so footer-Buttons not blocked */
@media (max-width: 1023px) {
  body { padding-bottom: 80px; }
}

/* ROI Calculator */
.roi-calc {
  margin-top: var(--sp-8);
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .roi-calc { padding: var(--sp-10); display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
}
.roi-calc__inputs { display: grid; gap: var(--sp-6); }
.roi-calc__field label { display: block; font-weight: 700; margin-bottom: var(--sp-2); font-size: var(--fs-sm); }
.roi-calc__field input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; background: var(--border); border-radius: var(--r-pill); outline: 0;
}
.roi-calc__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  box-shadow: 0 2px 8px rgba(31,138,76,0.4);
  border: 3px solid var(--bg);
}
.roi-calc__field input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  border: 3px solid var(--bg);
}
.roi-calc__field input[type="number"] {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--r-md);
  font-size: var(--fs-base); min-height: var(--tap);
}
.roi-calc__val { float: right; font-weight: 800; color: var(--accent); }
.roi-calc__heat { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); margin-top: var(--sp-2); }
.roi-calc__heat label {
  display: flex; align-items: center; justify-content: center;
  min-height: var(--tap); padding: 0 var(--sp-3);
  border: 1px solid var(--border); border-radius: var(--r-md);
  cursor: pointer; font-weight: 600; font-size: var(--fs-sm);
  transition: all var(--t-fast) var(--ease);
}
.roi-calc__heat input { display: none; }
.roi-calc__heat input:checked + label,
.roi-calc__heat label:has(input:checked) { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }

.roi-calc__output {
  background: linear-gradient(135deg, var(--accent) 0%, #166e3c 100%);
  color: var(--text-inverse); border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.roi-calc__output h3 { color: var(--text-inverse); margin-bottom: var(--sp-4); }
.roi-calc__rows { display: grid; gap: var(--sp-3); }
.roi-calc__row { display: flex; justify-content: space-between; align-items: baseline; padding: var(--sp-2) 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.roi-calc__row:last-child { border-bottom: 0; }
.roi-calc__row span { opacity: 0.85; font-size: var(--fs-sm); }
.roi-calc__row strong { font-size: var(--fs-xl); font-weight: 800; white-space: nowrap; flex-shrink: 0; padding-left: var(--sp-2); }
.roi-calc__row span { min-width: 0; }
.roi-calc__highlight { background: rgba(255,255,255,0.12); border-radius: var(--r-md); padding: var(--sp-4); margin-top: var(--sp-4); text-align: center; }
.roi-calc__highlight strong { font-size: var(--fs-h2); display: block; color: var(--sun); }
.roi-calc__cta { margin-top: var(--sp-6); }
.roi-calc__cta .btn { background: var(--text-inverse); color: var(--accent); width: 100%; }

/* Pain Cards */
.pain-grid { display: grid; gap: var(--sp-4); margin-top: var(--sp-8); }
@media (min-width: 768px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: transform var(--t-base) var(--ease);
}
.pain-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.pain-card__icon { font-size: 36px; line-height: 1; margin-bottom: var(--sp-4); }
.pain-card h3 { font-size: var(--fs-xl); }
.pain-card p { color: var(--text-secondary); margin: 0; }

/* Process */
.process-grid { display: grid; gap: var(--sp-5); margin-top: var(--sp-8); counter-reset: step; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  position: relative; padding-top: var(--sp-12);
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: var(--sp-4); left: var(--sp-4);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--text-inverse);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: var(--fs-xl);
}
.process-step h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.process-step__time { display: inline-block; padding: 4px 10px; border-radius: var(--r-pill); background: var(--accent-soft); color: var(--accent); font-size: var(--fs-xs); font-weight: 800; margin-bottom: var(--sp-3); letter-spacing: 0.05em; }
.process-step p { color: var(--text-secondary); margin: 0; font-size: var(--fs-sm); }

/* Testimonials */
.testimonials { display: grid; gap: var(--sp-5); margin-top: var(--sp-8); }
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--bg-card); border-radius: var(--r-lg);
  padding: var(--sp-6); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.testimonial__head { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--accent); font-size: var(--fs-xl);
}
.testimonial__name { font-weight: 800; line-height: 1.2; }
.testimonial__name span { display: block; font-weight: 500; font-size: var(--fs-sm); color: var(--text-muted); }
.testimonial__stats {
  display: flex; gap: var(--sp-4); padding: var(--sp-3); background: var(--bg-section-alt);
  border-radius: var(--r-md); font-size: var(--fs-sm);
}
.testimonial__stats div strong { display: block; color: var(--accent); font-size: var(--fs-lg); font-weight: 800; }
.testimonial__quote { color: var(--text-secondary); font-style: italic; line-height: 1.5; flex: 1; }
.testimonial__rating { color: var(--sun); font-size: var(--fs-base); letter-spacing: 0.1em; }

/* FAQ */
.faq { margin-top: var(--sp-8); display: grid; gap: var(--sp-3); max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-cat { font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800; color: var(--accent); margin: var(--sp-6) 0 var(--sp-2); }
.faq-cat:first-of-type { margin-top: 0; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-item summary {
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer; font-weight: 700;
  list-style: none; min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: var(--fs-xl); font-weight: 400; color: var(--accent); transition: transform var(--t-base) var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__answer { padding: 0 var(--sp-5) var(--sp-5); color: var(--text-secondary); }
.faq-item__answer p { margin: 0; }
.faq-item__answer p + p { margin-top: var(--sp-3); }

/* Final CTA section big counter */
.big-counter { font-size: var(--fs-h1); font-weight: 800; color: var(--warning); display: inline-block; }
