:root {
  --bg: #FAF7F2;
  --bg-2: #F3EDE4;
  --surface: #FFFFFF;
  --border: #E8E0D5;
  --text: #1B4332;
  --muted: #5C6B62;
  --accent: #C45C26;
  --accent-hover: #A34A1C;
  --sage: #52796F;
  --forest: #1B4332;
  --white: #FFFFFF;
  --radius: 16px;
  --shadow: 0 8px 28px rgba(27,67,50,0.08);
  --font: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; overflow-x: hidden;
  background: var(--bg); color: var(--text);
  font-family: var(--font); line-height: 1.65;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.bg-surface { background: var(--bg); }
.bg-surface2 { background: var(--bg-2); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; margin: 0 0 12px;
  color: var(--forest); letter-spacing: -0.02em;
  text-align: center;
}
.section-subtitle {
  color: var(--muted); margin: 0 auto 40px;
  font-size: 18px; max-width: 640px; text-align: center;
}

/* Light header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px; height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.header-cta { white-space: nowrap; padding: 10px 18px; font-size: 14px; flex-shrink: 0; }
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; margin: 0; padding: 0; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: none; color: var(--forest); font-size: 24px; cursor: pointer; }

.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 15px; transition: all 0.2s; cursor: pointer;
  border: 2px solid transparent; font-family: var(--font);
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); }
.btn-ghost { background: transparent; color: var(--forest); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* Centered light hero */
.hero {
  background-image:
    linear-gradient(rgba(250,247,242,0.78), rgba(250,247,242,0.88)),
    url('/images/hero-home.webp');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 110px 24px 72px;
}
.hero-inner { max-width: 760px; width: 100%; margin: 0 auto; }
.hero .hero-content { color: var(--text); max-width: 720px; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; line-height: 1.15;
  margin: 16px 0 16px; color: var(--forest);
  letter-spacing: -0.03em;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 560px; margin: 0 auto 28px;
  color: var(--muted); line-height: 1.55;
}
.hero-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px;
}
.trust-strip {
  display: flex; gap: 14px 20px; justify-content: center; flex-wrap: wrap;
  font-size: 14px; color: var(--muted);
}
.trust-strip .check { color: var(--sage); margin-right: 4px; font-weight: 700; }
.hero-badge {
  display: inline-block;
  background: rgba(196,92,38,0.1);
  border: 1px solid rgba(196,92,38,0.25);
  color: var(--accent);
  padding: 6px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; margin-bottom: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

.why-grid, .device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card, .device-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow);
}
.why-card .icon, .device-card .icon { font-size: 32px; margin-bottom: 12px; }
.why-card h3, .device-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700; margin: 0 0 8px;
}
.why-card p, .device-card p { color: var(--muted); font-size: 15px; margin: 0; }

.stats-bar {
  background: var(--forest); color: var(--white);
  padding: 48px 24px;
}
.stats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: #F4A261; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
}
.step-num {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--white); width: 48px; height: 48px; line-height: 48px;
  border-radius: 50%; background: var(--accent); margin: 0 auto 14px;
}
.step-card h3 { font-family: var(--font-display); font-size: 20px; margin: 0 0 8px; }
.step-card p { color: var(--muted); font-size: 15px; margin: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow); position: relative;
}
.price-card.featured {
  border: 2px solid var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(196,92,38,0.15);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  padding: 4px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
}
.duration { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.price { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--accent); }
.price-old { text-decoration: line-through; color: var(--muted); font-size: 16px; }
.pricing-monthly { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.price-features { list-style: none; text-align: left; margin: 20px 0; padding: 0; color: var(--muted); font-size: 14px; }
.price-features li { padding: 8px 0; border-bottom: 1px solid var(--border); }

.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bento-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.bento-card h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 8px; }
.bento-card p { color: var(--muted); font-size: 14px; margin: 0; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.split-image { min-height: 360px; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  background: var(--bg-2); padding: 56px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.split-label {
  color: var(--accent); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; margin-bottom: 12px; text-transform: uppercase;
}
.split-content h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700; margin: 0 0 18px; text-align: left;
}
.check-list { list-style: none; margin: 0 0 24px; padding: 0; }
.check-list li { padding: 8px 0; color: var(--muted); }
.check-list li::before { content: '✓ '; color: var(--sage); font-weight: 700; }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.review-stars { color: var(--accent); margin-bottom: 8px; letter-spacing: 2px; }
.review-author { font-weight: 700; font-size: 14px; }
.review-date { color: var(--muted); font-size: 12px; margin-bottom: 10px; }
.review-text { color: var(--muted); font-size: 15px; margin: 0; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; background: var(--surface);
}
.faq-question {
  width: 100%; text-align: left; padding: 18px 22px;
  background: var(--surface); border: none; color: var(--forest);
  font-weight: 700; font-size: 16px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font);
}
.faq-question span { color: var(--accent); font-size: 20px; font-weight: 700; }
.faq-answer { display: none; padding: 0 22px 18px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.blog-card-body { padding: 22px; }
.blog-card h3 { font-family: var(--font-display); font-size: 18px; margin: 10px 0 8px; }
.blog-card p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }

.final-cta {
  padding: 100px 24px; text-align: center;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--border);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700; margin: 0 0 28px;
}

.hero-page {
  background-size: cover !important; background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 42vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 64px;
}
.hero-page .hero-content { max-width: 760px; width: 100%; }
.hero-page h1 {
  font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700; color: var(--forest); margin: 12px 0 14px;
}
.hero-preise {
  background-image:
    linear-gradient(rgba(250,247,242,0.82), rgba(250,247,242,0.9)),
    url('/images/hero-preise.webp');
}
.hero-reseller {
  background-image:
    linear-gradient(rgba(250,247,242,0.82), rgba(250,247,242,0.9)),
    url('/images/hero-reseller.webp');
}
.hero-kontakt {
  background-image:
    linear-gradient(rgba(250,247,242,0.82), rgba(250,247,242,0.9)),
    url('/images/hero-kontakt.webp');
}

.site-footer {
  background: var(--forest); padding: 60px 24px 30px;
  color: var(--white); border-top: none;
}
.footer-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
}
.footer-grid h4 {
  font-family: var(--font-display); color: #F4A261;
  margin: 0 0 14px; font-size: 15px; font-weight: 700;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-links a:hover { color: #F4A261; }
.brand-col p { color: rgba(255,255,255,0.7); font-size: 14px; }
.copyright {
  text-align: center; color: rgba(255,255,255,0.45); font-size: 13px;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px; text-align: center; box-shadow: var(--shadow);
}
.reseller-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reseller-plan {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
}
.panel-card {
  background: rgba(196,92,38,0.06); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 32px;
}

.blog-article { max-width: 760px; margin: 0 auto; padding: 100px 24px 60px; }
.blog-article h1 {
  font-family: var(--font-display); font-size: clamp(28px, 5vw, 40px);
  font-weight: 700; margin: 16px 0;
}
.blog-article h2 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  margin: 36px 0 12px; color: var(--accent);
}
.blog-article p { color: var(--muted); margin: 0 0 16px; }
.blog-article ul, .blog-article ol { color: var(--muted); margin: 0 0 20px; padding-left: 22px; }
.blog-article table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 14px; }
.blog-article th, .blog-article td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.blog-article th { background: var(--bg-2); color: var(--forest); }
.blog-cta {
  background: rgba(196,92,38,0.08); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 32px; margin-top: 40px; text-align: center;
}
.takeaways {
  background: var(--bg-2); border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 24px 28px; margin: 28px 0;
}
.takeaways h2 { margin-top: 0 !important; color: var(--accent) !important; font-size: 18px !important; }
.toc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; margin: 28px 0;
}
.toc h2 { font-size: 16px; margin: 0 0 12px; color: var(--accent); }
.toc ol { margin: 0; padding-left: 20px; color: var(--muted); }

.legal-content { max-width: 800px; margin: 0 auto; padding: 100px 24px 60px; }
.legal-content h1 { font-family: var(--font-display); font-size: 36px; font-weight: 700; margin: 0 0 24px; }
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--accent); }
.legal-content p, .legal-content li { color: var(--muted); margin: 0 0 12px; }

.landing-hero {
  background: linear-gradient(180deg, rgba(250,247,242,0.7), var(--bg)), url('/images/section-1.webp');
  background-size: cover; background-position: center;
  padding: 140px 24px 72px; text-align: center;
}
.landing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px); font-weight: 700;
  max-width: 860px; margin: 0 auto 16px;
}

.trial-strip {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 28px 24px; text-align: center;
}
.trial-strip p { margin: 0 0 14px; color: var(--muted); }

.wa-float {
  position: fixed; right: 20px; bottom: 80px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  font-size: 28px; text-decoration: none;
}
.wa-float:hover { color: #fff; transform: scale(1.06); }

.popup-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(27,67,50,0.55); z-index: 10000;
  align-items: center; justify-content: center;
}
.popup-overlay.active { display: flex; }
.popup-modal {
  background: var(--surface); border: 2px solid var(--accent);
  border-radius: var(--radius); padding: 40px 32px;
  max-width: 420px; width: 90%; text-align: center; box-shadow: var(--shadow);
}
.popup-deal { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; margin-bottom: 12px; }
.popup-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.popup-old { color: var(--muted); text-decoration: line-through; }
.popup-price { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--accent); margin: 8px 0; }
.popup-countdown { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--sage); margin: 16px 0; }
.popup-close { background: none; border: none; color: var(--muted); margin-top: 16px; cursor: pointer; }

.rating-breakdown { max-width: 600px; margin: 0 auto 40px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; color: var(--muted); font-size: 14px; }
.rating-bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .header-cta { display: none !important; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); flex-direction: column; padding: 20px;
    border-bottom: 1px solid var(--border); z-index: 1001;
  }
  .nav-links.open { display: flex; }
  .hero { padding: 100px 16px 56px; min-height: auto; }
  .hero h1 { font-size: clamp(26px, 7vw, 34px) !important; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .trust-strip { display: grid !important; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 12px; }
  .split-section { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .device-grid, .step-cards, .pricing-grid, .bento-grid,
  .blog-grid, .reseller-plans, .contact-grid, .reviews-grid {
    display: flex !important; flex-direction: column !important;
  }
  .price-card.featured { transform: none; }
  footer .footer-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  footer .brand-col { grid-column: 1 / -1 !important; text-align: center !important; }
  .mobile-cta-bar {
    position: fixed !important; bottom: 0 !important; left: 0 !important; right: 0 !important;
    background: var(--accent) !important; color: #fff !important; text-align: center !important;
    padding: 16px !important; z-index: 9999 !important; font-weight: 700 !important;
    font-size: 16px !important; display: block !important; text-decoration: none !important;
  }
  body { padding-bottom: 60px !important; }
  .wa-float { bottom: 72px; right: 14px; }
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero-page { padding: 108px 16px 48px; min-height: auto; }
}
@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
}
