* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --surface: #FFF8F0;
  --surface-2: #FFEFE0;
  --accent: #E63946;
  --accent-2: #C42836;
  --yellow: #FFB703;
  --footer: #1A1A1A;
  --text: #1A1A1A;
  --muted: #6B6B6B;
  --border: #FFE0CC;
}

html, body { overflow-x: hidden; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  padding-top: 72px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; }
.logo { display: inline-flex; align-items: center; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.bg-surface { background: var(--surface); }
.bg-surface2 { background: var(--surface-2); }

.section-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.hero {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("/images/hero-home.webp");
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -72px;
  padding-top: 72px;
}

.hero-page {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -72px;
  padding-top: 72px;
}

.hero-preise {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    url("/images/hero-preise.webp");
}

.hero-reseller {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    url("/images/hero-reseller.webp");
}

.hero-kontakt {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    url("/images/hero-kontakt.webp");
}

.hero-content { max-width: 940px; padding: 40px 24px; }

.deal-badge {
  display: inline-block;
  background: var(--yellow);
  color: #1A1A1A;
  border: 1px solid #E5A300;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  transform: rotate(-3deg);
  margin-bottom: 22px;
}

.countdown-subtitle {
  color: var(--muted);
  font-size: 18px;
  margin: 8px 0 16px;
}

.price-slash {
  margin: 22px auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
}

.slash-old {
  color: var(--muted);
  font-size: 20px;
  text-decoration: line-through;
}

.slash-now {
  color: var(--accent);
  font-family: "Archivo Black", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.save-badge {
  background: var(--yellow);
  color: #1A1A1A;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  padding: 6px 12px;
}

.hero-buttons {
  margin: 28px 0;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--accent-2);
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.28);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-ghost:hover {
  background: rgba(230, 57, 70, 0.08);
  color: var(--accent-2);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.trust-strip .check { color: var(--accent); font-weight: 700; }

.mx-tag {
  display: inline-block;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.35);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.deal-breakdown,
.deal-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.deal-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.deal-item h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.deal-item p { color: var(--muted); font-size: 14px; }

.stats-bar {
  background: var(--yellow);
  color: #1A1A1A;
  padding: 36px 24px;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.stat-value {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.stat-label {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.step-card.deal {
  background: var(--surface);
  border-left: 4px solid var(--accent);
}

.step-num {
  color: var(--accent);
  font-family: "Archivo Black", sans-serif;
  font-size: 34px;
  margin-bottom: 10px;
}

.step-card h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.step-card p { color: var(--muted); font-size: 14px; }

.app-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.app-pill {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 24px;
  text-align: center;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 18px 42px rgba(230, 57, 70, 0.15);
}

.price-badge {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.price-card .duration {
  font-family: "Archivo Black", sans-serif;
  font-size: 27px;
}

.price-old {
  color: var(--muted);
  font-size: 22px;
  text-decoration: line-through;
}

.price-card .price {
  font-family: "Archivo Black", sans-serif;
  color: var(--accent);
  font-size: 44px;
  line-height: 1.1;
  margin: 8px 0;
}

.pricing-monthly { color: var(--muted); font-size: 14px; }

.price-features {
  list-style: none;
  margin: 18px 0 22px;
  text-align: left;
  color: var(--muted);
  font-size: 14px;
}

.price-features li { margin-bottom: 7px; }
.price-features li::before { content: "✓ "; color: var(--accent); font-weight: 800; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bento-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  background: #FFFFFF;
}

.bento-card.pink { background: var(--surface); }

.bento-card h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.bento-card p { color: var(--muted); font-size: 14px; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.split-image { overflow: hidden; }

.split-content {
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.split-content h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.check-list { list-style: none; margin-bottom: 30px; }
.check-list li { color: var(--muted); padding: 6px 0; }
.check-list li::before { content: "✓ "; color: var(--accent); font-weight: 800; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 24px;
}

.review-stars { color: var(--yellow); font-size: 19px; margin-bottom: 8px; }
.review-author { font-weight: 700; margin-bottom: 4px; }
.review-date { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.review-text { color: var(--muted); font-size: 14px; }

.faq-list { max-width: 860px; margin: 0 auto; }

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
}

.faq-question span { color: var(--accent); font-size: 24px; }
.faq-answer { display: none; padding: 0 20px 18px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.blog-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.blog-card h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.blog-card p { color: var(--muted); font-size: 14px; flex: 1; }
.blog-card a { margin-top: auto; font-weight: 700; color: var(--accent); }

.panel-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
}

.legal-content { max-width: 860px; margin: 0 auto; padding: 56px 24px; }
.legal-content h1 { font-family: "Archivo Black", sans-serif; font-size: 44px; margin-bottom: 26px; }
.legal-content h2 { font-family: "Archivo Black", sans-serif; color: var(--accent); font-size: 30px; margin: 30px 0 14px; }

.blog-article { max-width: 860px; margin: 0 auto; padding: 46px 24px 88px; }
.blog-article h1 { font-family: "Archivo Black", sans-serif; font-size: 46px; margin-bottom: 12px; }
.blog-article h2 { font-family: "Archivo Black", sans-serif; font-size: 33px; margin: 34px 0 14px; line-height: 1.2; }
.blog-article p { color: var(--muted); margin-bottom: 14px; line-height: 1.82; }

.blog-cta {
  margin-top: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
}

.reseller-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reseller-plan {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
}

.reseller-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.reseller-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.final-cta {
  text-align: center;
  padding: 90px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.final-cta h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.1;
  margin-bottom: 28px;
}

.final-cta-red {
  background: var(--accent);
  color: #FFFFFF;
  border-top: none;
}

.final-cta-red .btn-primary {
  background: #FFFFFF;
  color: var(--accent);
}

.final-cta-red .btn-primary:hover { color: var(--accent-2); }

.final-cta-red .btn-ghost {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.final-cta-red .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.site-footer {
  background: var(--footer);
  color: #D7D7D7;
  padding: 60px 0 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-grid h4 {
  color: #FFFFFF;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: 14px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #D7D7D7; }
.footer-links a:hover { color: #FFFFFF; }

.copyright {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #2B2B2B;
  text-align: center;
  color: #AAAAAA;
  font-size: 13px;
}

.rating-breakdown {
  max-width: 760px;
  margin: 0 auto 32px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 84px 1fr 44px;
  gap: 10px;
  align-items: center;
  margin: 7px 0;
  color: var(--muted);
}

.rating-bar {
  background: #F3F3F3;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--accent);
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.popup-overlay.active { display: flex; }

.popup-modal {
  width: min(92vw, 450px);
  background: #FFFFFF;
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.popup-deal {
  font-family: "Archivo Black", sans-serif;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.popup-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 30px;
  line-height: 1.1;
}

.popup-old { margin-top: 10px; color: var(--muted); text-decoration: line-through; }

.popup-price {
  color: var(--accent);
  font-family: "Archivo Black", sans-serif;
  font-size: 40px;
  line-height: 1.1;
}

.popup-countdown {
  margin-top: 14px;
  display: inline-block;
  background: var(--yellow);
  color: #1A1A1A;
  border-radius: 999px;
  padding: 8px 20px;
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
}

.popup-close {
  border: none;
  background: transparent;
  margin-top: 12px;
  color: var(--muted);
  cursor: pointer;
}

@media (max-width: 980px) {
  .deal-breakdown-grid,
  .pricing-grid,
  .bento-grid,
  .reviews-grid,
  .blog-grid,
  .reseller-plans,
  .reseller-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-section { grid-template-columns: 1fr; }
  .split-content { border-left: none; border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }

  .nav-toggle { display: block; }

  .deal-breakdown-grid,
  .step-cards,
  .pricing-grid,
  .bento-grid,
  .reviews-grid,
  .blog-grid,
  .contact-grid,
  .reseller-plans,
  .reseller-features,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 36px !important; line-height: 1.15 !important; }
  h2 { font-size: 28px !important; line-height: 1.2 !important; }
  .stat-value { font-size: 33px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-card-img { aspect-ratio: 16 / 9; }

  .mobile-cta-bar {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9999 !important;
    background: #E63946 !important;
    color: #FFFFFF !important;
    display: block !important;
    text-align: center !important;
    text-decoration: none !important;
    font-family: "Archivo Black", sans-serif !important;
    font-size: 16px !important;
    padding: 15px 14px !important;
  }

  body {
    background: #FFFFFF !important;
    padding-bottom: 64px !important;
  }

  .hero-buttons .btn { width: 100%; max-width: 360px; }
}

@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
}
