* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: #0A0A0A;
  background: #FFFFFF;
  line-height: 1.6;
}
a { color: #1D4ED8; text-decoration: none; }
img { max-width: 100%; }

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  display: block;
}
@media (min-width: 769px) {
  .logo-img { max-width: 423px; }
}
.logo .logo-top { color: #F59E0B; font-style: normal; }
.logo .logo-rated { color: #0A0A0A; margin: 0 4px; }
.logo .logo-iptv { color: #1D4ED8; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
  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: #0A0A0A;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1D4ED8; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #1D4ED8; color: #FFFFFF; }
.btn-gold { background: #F59E0B; color: #0A0A0A; }
.btn-ghost {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-white { background: #FFFFFF; color: #1D4ED8; }
.btn-outline { background: transparent; border: 2px solid #1D4ED8; color: #1D4ED8; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.section-subtitle { color: #64748B; font-size: 18px; margin-bottom: 48px; }

.hero {
  background-image:
    linear-gradient(rgba(10,10,10,0.7), rgba(10,10,10,0.7)),
    url('/images/hero-home.jpg');
  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;
}
.hero-2 {
  background-image:
    linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.75)),
    url('/images/hero-preise.jpg');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-6 {
  background-image:
    linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.75)),
    url('/images/hero-reseller.jpg');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-7 {
  background-image:
    linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.75)),
    url('/images/hero-kontakt.jpg');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content { max-width: 900px; padding: 40px 24px; }
.hero-content p { color: rgba(255,255,255,0.85); 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(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}
.trust-strip span { display: flex; align-items: center; gap: 6px; }
.trust-strip .check { color: #10B981; }

.stats-bar {
  background: #1D4ED8;
  padding: 40px 24px;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #FFFFFF;
}
.stat-item .stat-label { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 4px; }

.bento-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.bento-large {
  grid-row: span 2;
  background: #1D4ED8;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-tall {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(29,78,216,0.06);
}
.bento-gold {
  background: #F59E0B;
  color: #0A0A0A;
  border-radius: 16px;
  padding: 32px;
}
.bento-full {
  grid-column: 1 / -1;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.bento-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.bento-large .stars { color: #F59E0B; font-size: 24px; margin-bottom: 12px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(29,78,216,0.06);
  position: relative;
}
.price-card.featured {
  background: #1D4ED8;
  color: #FFFFFF;
  border-color: #1D4ED8;
  transform: scale(1.03);
}
.price-badge {
  display: inline-block;
  background: #FFFFFF;
  color: #1D4ED8;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.save-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #F59E0B;
  color: #0A0A0A;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}
.price-card .duration {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.price-card .price {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 8px;
}
.price-card .price-old { text-decoration: line-through; opacity: 0.6; font-size: 20px; }
.price-card .stars { color: #F59E0B; font-size: 18px; margin: 12px 0; }
.price-card .per-month { font-size: 14px; opacity: 0.8; margin-bottom: 20px; }
.price-features { list-style: none; text-align: left; margin: 20px 0; font-size: 14px; }
.price-features li { padding: 6px 0; }
.price-features li::before { content: '✓ '; color: #10B981; font-weight: 700; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(29,78,216,0.06);
}
.review-stars { color: #F59E0B; font-size: 20px; margin-bottom: 12px; }
.review-author { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.review-date { color: #64748B; font-size: 12px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #334155; line-height: 1.5; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.split-image { overflow: hidden; }
.split-content {
  background: #1D4ED8;
  color: #FFFFFF;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-label {
  color: #F59E0B;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.split-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.split-content p { opacity: 0.7; margin-bottom: 24px; }
.check-list { list-style: none; margin-bottom: 32px; }
.check-list li { padding: 8px 0; font-weight: 500; }
.check-list li::before { content: '✓ '; color: #F59E0B; font-weight: 700; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(29,78,216,0.06);
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #1D4ED8;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #EFF6FF;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1D4ED8;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 0 24px 20px;
  color: #334155;
  font-size: 15px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-toggle { font-size: 24px; transition: transform 0.2s; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(29,78,216,0.06);
  transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-body { padding: 24px; }
.blog-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0A0A0A;
}
.blog-card p { color: #64748B; font-size: 14px; margin-bottom: 16px; }
.blog-card .read-more { color: #1D4ED8; font-weight: 600; font-size: 14px; }

.final-cta {
  background: #1D4ED8;
  text-align: center;
  padding: 100px 24px;
}
.final-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.1;
}
.final-cta .stars { color: #F59E0B; font-size: 28px; margin-bottom: 32px; }
.final-cta .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 60px 0 30px;
}
.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: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94A3B8; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: #FFFFFF; }
.copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #1E293B;
  font-size: 13px;
  color: #64748B;
}

.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;
}
.rating-bar {
  flex: 1;
  height: 12px;
  background: #E2E8F0;
  border-radius: 6px;
  overflow: hidden;
}
.rating-bar-fill { height: 100%; background: #F59E0B; border-radius: 6px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.contact-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(29,78,216,0.06);
}
.contact-card .icon { font-size: 48px; margin-bottom: 16px; }
.contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 32px;
}
.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: #1D4ED8;
}
.legal-content p, .legal-content li { color: #334155; margin-bottom: 12px; font-size: 15px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }

.blog-article { max-width: 800px; margin: 0 auto; padding: 40px 24px 80px; }
.blog-article h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-article .meta { color: #64748B; font-size: 14px; margin-bottom: 32px; }
.blog-article h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 40px 0 16px;
  color: #0A0A0A;
}
.blog-article h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: #1D4ED8;
}
.blog-article p { margin-bottom: 16px; color: #334155; line-height: 1.8; }
.blog-article .blog-img { border-radius: 16px; overflow: hidden; margin: 32px 0; }
.blog-cta {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.reseller-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.reseller-feature {
  background: #F8FAFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  font-weight: 500;
  font-size: 15px;
}
.reseller-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reseller-plan {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(29,78,216,0.06);
}
.reseller-plan h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1D4ED8;
  margin-bottom: 8px;
}
.panel-card {
  background: #1D4ED8;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
}
.panel-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}
.panel-card ul { list-style: none; }
.panel-card li { padding: 8px 0; font-size: 16px; }
.panel-card li::before { content: '→ '; color: #F59E0B; }

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.popup-overlay.active { display: flex; }
.popup-modal {
  background: #FFFFFF;
  border: 3px solid #1D4ED8;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
}
.popup-modal .popup-stars { color: #F59E0B; font-size: 24px; }
.popup-modal h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #F59E0B;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 12px 0;
}
.popup-modal .popup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}
.popup-modal .popup-price {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #1D4ED8;
  margin: 16px 0;
}
.popup-modal .popup-old { text-decoration: line-through; color: #64748B; font-size: 18px; }
.popup-countdown {
  background: #1D4ED8;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: inline-block;
  margin: 16px 0;
}
.popup-close {
  background: none;
  border: none;
  color: #64748B;
  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: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #1D4ED8;
  margin-bottom: 16px;
}

.bg-surface { background: #F8FAFF; }
.bg-surface2 { background: #EFF6FF; }

@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;
    padding: 20px;
    border-bottom: 1px solid #E2E8F0;
    gap: 16px;
  }
  .nav-toggle { display: block; }
  .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: 36px !important; line-height: 1.15 !important; }
  h2 { font-size: 26px !important; }
  img { max-width: 100% !important; height: auto !important; }
  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: #1D4ED8 !important;
    color: white !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;
    font-family: 'Outfit', sans-serif !important;
  }
  body { padding-bottom: 60px !important; }
  .price-card.featured { transform: none; }
  .split-section { grid-template-columns: 1fr; }
  .section-title { font-size: 32px !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
}
