* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; background: #0A0E1F; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #F0F4FF;
  line-height: 1.6;
  padding-top: 72px;
}
a { color: #FFC107; text-decoration: none; }
a:hover { color: #FFD54F; }
img { max-width: 100%; }

.logo { display: inline-flex; align-items: center; text-decoration: none; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,31,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,193,7,0.15);
  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: #F0F4FF; font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: #FFC107; }
.nav-toggle { display: none; background: none; border: none; color: #F0F4FF; font-size: 24px; cursor: pointer; }

.btn {
  display: inline-block; padding: 14px 28px; border-radius: 6px;
  font-weight: 800; font-size: 15px; cursor: pointer; border: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center; font-family: 'Sora', sans-serif;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #FFC107; color: #0A0E1F; }
.btn-primary:hover { background: #FFD54F; color: #0A0E1F; }
.btn-ghost { background: transparent; color: #F0F4FF; border: 2px solid rgba(255,193,7,0.35); }
.btn-ghost:hover { border-color: #FFC107; color: #FFC107; }
.btn-ghost-white {
  background: transparent; color: #F0F4FF;
  border: 2px solid rgba(255,193,7,0.45);
}
.btn-ghost-white:hover { border-color: #FFC107; color: #FFC107; }
.btn-dark { background: #0A0E1F; color: #FFC107; border: 2px solid #0A0E1F; }
.btn-dark:hover { background: #141C3A; color: #FFD54F; }
.btn-ghost-dark {
  background: transparent; color: #0A0E1F;
  border: 2px solid rgba(10,14,31,0.35);
}
.btn-ghost-dark:hover { border-color: #0A0E1F; background: rgba(10,14,31,0.08); }

.badge-pill {
  display: inline-block;
  background: rgba(255,193,7,0.1);
  border: 1px solid rgba(255,193,7,0.35);
  color: #FFC107;
  padding: 8px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.5px;
  font-family: 'Sora', sans-serif;
}

.text-gold { color: #FFC107; }

.hero-rating { margin: 20px 0 16px; }
.hero-rating .stars { color: #FFC107; font-size: 22px; letter-spacing: 3px; display: block; }
.hero-rating .rating-text { color: #FFC107; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; margin-top: 8px; display: block; }

.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #FFC107; color: #0A0E1F;
  font-family: 'Sora', sans-serif; font-weight: 900; font-size: 14px;
  margin-right: 8px; vertical-align: middle;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 16px;
  color: #F0F4FF;
}
.section-title-lg { font-size: 52px; }
.section-subtitle { color: #6B7799; font-size: 18px; margin-bottom: 48px; font-weight: 400; }

.hero {
  background-image: linear-gradient(rgba(10,14,31,0.68), rgba(10,14,31,0.68)), 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: 50vh; display: flex; align-items: center; justify-content: center; text-align: center;
  margin-top: -72px; padding-top: 72px;
}
.hero-preise { background-image: linear-gradient(rgba(10,14,31,0.68), rgba(10,14,31,0.68)), url('/images/hero-preise.webp'); }
.hero-reseller { background-image: linear-gradient(rgba(10,14,31,0.68), rgba(10,14,31,0.68)), url('/images/hero-reseller.webp'); }
.hero-kontakt { background-image: linear-gradient(rgba(10,14,31,0.68), rgba(10,14,31,0.68)), url('/images/hero-kontakt.webp'); }
.hero-content { max-width: 920px; padding: 40px 24px; color: #fff; }
.hero-content h1 { color: #fff; }
.hero-content p { color: rgba(240,244,255,0.88); font-size: 18px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.trust-strip { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; color: rgba(240,244,255,0.85); font-size: 14px; font-weight: 500; }
.trust-strip .check { color: #00C853; font-weight: 800; }

.comparison-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,193,7,0.1); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.comparison-table thead th {
  background: #141C3A; color: #F0F4FF;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px;
  padding: 18px 20px; text-align: left;
  border-bottom: 1px solid rgba(255,193,7,0.15);
}
.comparison-table tbody tr:nth-child(odd) { background: #0F1530; }
.comparison-table tbody tr:nth-child(even) { background: #141C3A; }
.comparison-table td { padding: 16px 20px; font-size: 15px; border-bottom: 1px solid rgba(255,193,7,0.06); }
.comparison-table .comp-feature { color: #F0F4FF; font-weight: 500; }
.comparison-table .comp-us { text-align: center; width: 120px; }
.comparison-table .comp-other { color: #6B7799; }
.comp-check { color: #FFC107; font-size: 22px; font-weight: 800; }
.comp-x { color: #E53935; font-weight: 800; margin-right: 6px; }

.stats-bar {
  background: linear-gradient(90deg, #0A0E1F, #141C3A, #0A0E1F);
  padding: 48px 24px;
  border-top: 1px solid rgba(255,193,7,0.12);
  border-bottom: 1px solid rgba(255,193,7,0.12);
}
.stats-bar-gold {
  background: linear-gradient(135deg, #FFC107 0%, #FFD54F 50%, #FFC107 100%);
  border-top: none; border-bottom: none;
}
.stats-bar-gold .stat-value { color: #0A0E1F; }
.stats-bar-gold .stat-label { color: rgba(10,14,31,0.75); }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-value { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; color: #FFC107; }
.stat-label { color: #6B7799; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; font-weight: 600; }

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proof-card {
  background: #0F1530;
  border: 1px solid rgba(255,193,7,0.1);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.proof-card .proof-icon { font-size: 36px; margin-bottom: 12px; }
.proof-card h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 8px; color: #FFC107; }
.proof-card p { color: #6B7799; font-size: 14px; line-height: 1.5; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price-card {
  background: #0F1530;
  border: 1px solid rgba(255,193,7,0.1);
  border-radius: 16px; padding: 36px 28px; text-align: center;
}
.price-card.featured {
  border: 2px solid #FFC107;
  box-shadow: 0 0 40px rgba(255,193,7,0.12);
}
.price-badge {
  display: inline-block; background: rgba(255,193,7,0.15);
  color: #FFC107; padding: 6px 16px; border-radius: 6px;
  font-size: 12px; font-weight: 800; margin-bottom: 12px;
  font-family: 'Sora', sans-serif; letter-spacing: 0.5px;
}
.save-badge {
  background: #1565C0; color: #F0F4FF;
  padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 800; margin-left: 8px;
}
.price-card .duration { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: #F0F4FF; }
.price-card .price { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 800; color: #FFC107; margin: 12px 0; }
.price-old { text-decoration: line-through; color: #6B7799; font-size: 20px; }
.pricing-monthly { color: #6B7799; font-size: 14px; }
.price-features { list-style: none; text-align: left; margin: 20px 0; font-size: 14px; color: #6B7799; }
.price-features li { padding: 6px 0; }
.price-features li::before { content: '✓ '; color: #FFC107; font-weight: 800; }

.bento-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto auto; gap: 16px; }
.bento-card {
  background: #0F1530;
  border: 1px solid rgba(255,193,7,0.1);
  border-radius: 16px; padding: 28px;
  border-left: 4px solid #FFC107;
}
.bento-card.orange { border-left-color: #1565C0; }
.bento-card h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 8px; color: #F0F4FF; }
.bento-card p { color: #6B7799; font-size: 14px; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.split-image { overflow: hidden; min-height: 320px; display: flex; align-items: stretch; background: #0F1530; }
.split-image img { min-height: 320px; }
.split-content {
  background: #0A0E1F; padding: 60px 48px; display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid rgba(255,193,7,0.1);
}
.split-label { color: #FFC107; font-family: 'Sora', sans-serif; font-size: 12px; margin-bottom: 16px; letter-spacing: 3px; font-weight: 800; text-transform: uppercase; }
.split-content h2 { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: #F0F4FF; }
.check-list { list-style: none; margin-bottom: 32px; }
.check-list li { padding: 8px 0; color: #F0F4FF; }
.check-list li::before { content: '✓ '; color: #FFC107; font-weight: 800; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: #0F1530;
  border: 1px solid rgba(255,193,7,0.1);
  border-top: 3px solid #FFC107;
  border-radius: 16px; padding: 24px;
}
.review-stars { color: #FFC107; font-size: 18px; margin-bottom: 12px; }
.review-author { font-weight: 600; font-size: 14px; margin-bottom: 4px; font-family: 'Sora', sans-serif; }
.review-date { color: #6B7799; font-size: 12px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #6B7799; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,193,7,0.1);
  border-radius: 16px; margin-bottom: 12px;
  background: #0F1530; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 20px 24px; background: none; border: none; text-align: left;
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 800;
  color: #F0F4FF; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-question span { color: #FFC107; font-size: 22px; }
.faq-answer { padding: 0 24px 20px; color: #6B7799; font-size: 15px; display: none; }
.faq-item.open .faq-answer { display: block; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.blog-card {
  background: #0F1530;
  border: 1px solid rgba(255,193,7,0.1);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; height: auto;
}
.blog-card-img {
  aspect-ratio: 16 / 9; overflow: hidden; flex-shrink: 0; width: 100%; line-height: 0;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 12px; color: #F0F4FF; line-height: 1.3; }
.blog-card p { color: #6B7799; font-size: 14px; margin-bottom: 16px; flex: 1; line-height: 1.6; }
.blog-card a { font-weight: 600; color: #FFC107; margin-top: auto; }
.blog-tag { display: inline-block; color: #FFC107; font-size: 12px; font-weight: 800; margin-bottom: 8px; font-family: 'Sora', sans-serif; }

.final-cta {
  background: #0A0E1F;
  border-top: 1px solid rgba(255,193,7,0.15);
  text-align: center; padding: 100px 24px; color: #fff;
}
.final-cta-gold {
  background: linear-gradient(135deg, #FFC107 0%, #FFD54F 50%, #FFC107 100%);
  border-top: none;
}
.final-cta-gold h2 { color: #0A0E1F; }
.final-cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px,6vw,64px); font-weight: 800; margin-bottom: 32px;
  line-height: 1.1; color: #F0F4FF;
}

.site-footer { background: #060810; color: #6B7799; padding: 60px 0 30px; border-top: 1px solid rgba(255,193,7,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid h4 { color: #F0F4FF; font-family: 'Sora', sans-serif; font-size: 16px; margin-bottom: 16px; font-weight: 800; }
.footer-links { list-style: none; }
.footer-links a { color: #6B7799; font-size: 14px; }
.footer-links a:hover { color: #FFC107; }
.copyright { text-align: center; padding-top: 40px; margin-top: 40px; border-top: 1px solid rgba(255,193,7,0.08); font-size: 13px; }

.bg-surface { background: #0F1530; }
.bg-surface2 { background: #141C3A; }

.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 700px; margin: 0 auto; }
.contact-card {
  background: #0F1530; border: 1px solid rgba(255,193,7,0.1);
  border-radius: 16px; padding: 48px 32px; text-align: center;
}
.contact-card .icon { font-size: 48px; margin-bottom: 16px; }
.contact-card h3 { font-family: 'Sora', sans-serif; font-size: 24px; margin-bottom: 12px; font-weight: 800; }
.contact-card p { color: #6B7799; margin-bottom: 20px; }

.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.legal-content h1 { font-family: 'Sora', sans-serif; font-size: 42px; margin-bottom: 32px; font-weight: 800; }
.legal-content h2 { font-family: 'Sora', sans-serif; font-size: 24px; margin: 32px 0 16px; color: #FFC107; font-weight: 800; }
.legal-content p, .legal-content li { color: #6B7799; margin-bottom: 12px; }

.blog-article { max-width: 800px; margin: 0 auto; padding: 40px 24px 80px; }
.blog-article-image { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 16px; margin: 30px 0; background: #0F1530; line-height: 0; }
.blog-article-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-article h1 { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.blog-article h2 { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; margin: 40px 0 16px; }
.blog-article h3 { font-family: 'Sora', sans-serif; font-size: 22px; color: #FFC107; margin: 28px 0 12px; font-weight: 800; }
.blog-article p { margin-bottom: 16px; color: #6B7799; line-height: 1.8; }
.blog-cta {
  background: #0F1530; border: 1px solid rgba(255,193,7,0.25);
  border-radius: 16px; padding: 32px; text-align: center; margin-top: 48px;
}

.panel-card {
  background: #0F1530; border: 1px solid rgba(255,193,7,0.2);
  border-radius: 16px; padding: 40px; margin: 40px 0;
}
.reseller-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.reseller-plan {
  background: #0F1530; border: 1px solid rgba(255,193,7,0.1);
  border-radius: 16px; padding: 32px; text-align: center;
}

.rating-breakdown { max-width: 600px; margin: 0 auto 48px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: 14px; color: #6B7799; }
.rating-bar { flex: 1; height: 12px; background: #141C3A; border-radius: 6px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: #FFC107; border-radius: 6px; }

.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(10,14,31,0.88); z-index: 10000; align-items: center; justify-content: center; }
.popup-overlay.active { display: flex; }
.popup-modal {
  background: #0F1530; border: 2px solid rgba(255,193,7,0.4);
  border-radius: 16px; padding: 40px 36px; max-width: 440px; width: 90%; text-align: center;
  box-shadow: 0 8px 48px rgba(255,193,7,0.2);
}
.popup-deal { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 800; color: #FFC107; letter-spacing: 1px; margin-bottom: 8px; }
.popup-title { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; margin: 16px 0; color: #F0F4FF; }
.popup-old { text-decoration: line-through; color: #6B7799; font-size: 18px; }
.popup-price { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: #FFC107; margin: 8px 0; }
.popup-countdown {
  background: rgba(255,193,7,0.12); color: #FFC107;
  padding: 10px 24px; border-radius: 6px;
  font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800;
  display: inline-block; margin: 16px 0; border: 1px solid rgba(255,193,7,0.25);
}
.popup-close { background: none; border: none; color: #6B7799; font-size: 14px; cursor: pointer; margin-top: 16px; text-decoration: underline; }

.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.error-page h1 { font-family: 'Sora', sans-serif; font-size: 64px; font-weight: 800; color: #FFC107; }

.mobile-cta-bar { display: none; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: rgba(10,14,31,0.98);
    padding: 24px; border-bottom: 1px solid rgba(255,193,7,0.15);
  }
  .grid, .cards, [class*="grid"], [class*="cards"], [class*="bento"], [class*="row"] {
    display: flex !important; flex-direction: column !important;
    width: 100% !important; overflow: hidden !important;
  }
  .grid > *, .cards > *, [class*="grid"] > *, [class*="row"] > *, [class*="bento"] > * {
    width: 100% !important; min-width: unset !important;
    max-width: 100% !important; flex: none !important;
  }
  [class*="review"] > *, [class*="bewertung"] > * {
    width: 100% !important; max-width: 100% !important;
  }
  h1 { font-size: 34px !important; line-height: 1.2 !important; }
  h2 { font-size: 26px !important; }
  img { max-width: 100% !important; height: auto !important; }
  .split-section { grid-template-columns: 1fr; }
  .split-content { padding: 40px 24px; border-left: none; border-top: 1px solid rgba(255,193,7,0.1); }
  .section-title { font-size: 32px; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  footer [class*="grid"] {
    display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px !important;
  }
  footer [class*="logo"], footer .brand-col {
    grid-column: 1 / -1 !important; text-align: center !important;
  }
  footer .copyright {
    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: #FFC107 !important; color: #0A0E1F !important;
    text-align: center !important; padding: 16px !important;
    z-index: 9999 !important; font-weight: 800 !important; font-size: 16px !important;
    display: block !important; text-decoration: none !important;
    font-family: 'Sora', sans-serif !important;
  }
  body { padding-bottom: 60px !important; }
}
@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
}
