/* IPTV List Kaufen — V3 Aurora UI */
:root {
  --bg: #0c0f14;
  --bg-soft: #141a22;
  --surface: #1a222d;
  --surface-2: #222c3a;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #f97316;
  --accent-2: #fb923c;
  --accent-glow: rgba(249, 115, 22, 0.35);
  --green: #22c55e;
  --header-bg: #ffffff;
  --header-text: #0f172a;
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(249, 115, 22, 0.45);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --nav-h: 76px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--accent); }
.container { width: min(var(--max), 100% - 2rem); margin-inline: auto; }

/* Header — white bar, dark logo */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--header-bg);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { flex-shrink: 0; line-height: 0; display: flex; align-items: center; }
.brand img {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  background: transparent !important;
}
.brand-svg { height: 48px; width: auto; display: block; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.35rem;
  align-items: center;
}
.nav-links a {
  color: var(--header-text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: #fff7ed;
  color: #c2410c;
}
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--header-text);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  padding: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--header-text);
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
}
.mobile-menu a.active { background: #fff7ed; color: #c2410c; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.35rem;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ea580c);
  color: #fff !important;
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-wa { background: var(--green); color: #fff !important; }
.btn-outline {
  background: transparent;
  border-color: #cbd5e1;
  color: var(--header-text) !important;
}
.site-header .btn-outline:hover { border-color: var(--accent); color: #c2410c !important; }
.btn-ghost { background: transparent; color: var(--accent-2); border: 0; }

/* Hero */
.hero {
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  background:
    radial-gradient(ellipse 90% 70% at 80% 0%, rgba(249, 115, 22, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(59, 130, 246, 0.08), transparent 50%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid var(--border-strong);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  margin-bottom: 1rem;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-lead { color: var(--muted); font-size: 1.08rem; max-width: 520px; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.75rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--accent);
}
.hero-stat span { font-size: 0.82rem; color: var(--muted); }
.hero-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.hero-art svg { width: 100%; height: auto; display: block; }

/* Trust */
.trust-bar {
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-item strong { color: var(--green); margin-right: 0.35rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section.alt { background: var(--bg-soft); }
.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 2rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Pricing */
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.pc:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.pc.best {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.1), var(--surface));
  box-shadow: 0 0 0 1px var(--border-strong), 0 20px 50px var(--accent-glow);
}
.pc-badge {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.pc-term { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem; }
.pc-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pc-price small { font-size: 1.1rem; color: var(--muted); }
.pc-monthly, .pc-save { font-size: 0.85rem; color: var(--muted); margin: 0.35rem 0; }
.pc-save { color: var(--green); }
.pc-features {
  list-style: none;
  margin: 1rem 0 1.25rem;
  flex: 1;
  font-size: 0.88rem;
  color: var(--muted);
}
.pc-features li { padding: 0.3rem 0; padding-left: 1.1rem; position: relative; }
.pc-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.pc .btn { width: 100%; margin-top: auto; }
.trial-note { text-align: center; margin-top: 1.5rem; color: var(--muted); font-size: 0.9rem; }
.credits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* Features / devices / reviews */
.features-grid,
.devices-grid,
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}
.features-grid { grid-template-columns: repeat(3, 1fr); }
.devices-grid { grid-template-columns: repeat(4, 1fr); }
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card,
.device-card,
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.feature-icon, .device-icon { font-size: 1.75rem; margin-bottom: 0.65rem; }
.feature-card h3, .device-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-card p, .device-card p { font-size: 0.88rem; color: var(--muted); }
.review-stars { color: var(--accent); margin-bottom: 0.5rem; }
.review-text { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.75rem; }
.review-author { font-weight: 700; font-size: 0.88rem; }
.review-author span { display: block; font-weight: 500; color: var(--muted); font-size: 0.8rem; }

/* FAQ */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--text);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.1rem 2rem 1.1rem 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.25rem;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a-inner { padding: 0 0 1.1rem; color: var(--muted); font-size: 0.95rem; }

/* Page hero / blog / legal */
.page-hero {
  padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text);
}
.page-hero p { color: var(--muted); max-width: 640px; margin-top: 0.75rem; }
.page-shell { padding: calc(var(--nav-h) + 2rem) 0 4rem; }
.page-shell h1 { font-family: var(--font-display); margin-bottom: 1rem; }
.page-shell h2 { margin: 1.5rem 0 0.75rem; font-size: 1.2rem; }
.page-shell p, .page-shell li { color: var(--muted); margin-bottom: 0.75rem; }
.lead { font-size: 1.05rem; color: var(--muted); }
.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.blog-card-body { padding: 1.35rem; }
.blog-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--text); }
.article { padding: calc(var(--nav-h) + 2rem) 0 4rem; }
.article h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0.5rem 0 1rem; }
.article-meta { color: var(--muted); margin-bottom: 1.5rem; }
.article h2 { margin: 1.5rem 0 0.65rem; font-size: 1.15rem; }

/* CTA */
.cta-band {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.05));
  border-top: 1px solid var(--border-strong);
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-band p { color: var(--muted); margin-bottom: 1.5rem; max-width: 520px; margin-inline: auto; }

/* Footer */
.footer {
  background: #07090d;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; max-width: 280px; }
.footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.85rem; color: var(--accent-2); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.45rem; }
.footer a { color: var(--muted); font-size: 0.9rem; }
.footer a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.footer .brand img { height: 40px; max-width: 200px; }

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 420px; margin-inline: auto; }
  .pricing-grid-4, .pricing-grid-3, .credits-grid,
  .reviews-grid, .blog-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
