/* FIRE TV STICK IPTV — Deutschland */
:root {
  --page-bg: #fff5f8;
  --card: #ffffff;
  --heading: #1c0a14;
  --muted: #6b4d62;
  --accent: #c218b5;
  --accent2: #e91e8c;
  --accent-soft: rgba(194, 24, 181, 0.1);
  --hero-bg: #fce8f0;
  --footer-bg: #f8d4e4;
  --card-border: rgba(28, 10, 20, 0.08);
  --shadow: 0 2px 16px rgba(28, 10, 20, 0.08);
  --shadow-lg: 0 12px 40px rgba(28, 10, 20, 0.1);
  --nav-h: 64px;
  --logo-h: 44px;
  --radius-card: 16px;
  --radius-btn: 8px;
  --section-py: 56px;
  --font-head: "Nunito", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--page-bg);
  color: var(--heading);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
.container { width: min(1140px, 100% - 2rem); margin-inline: auto; }

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Navbar */
.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(--card-border);
}
.site-header .container {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.brand {
  flex-shrink: 0;
  line-height: 0;
  display: flex;
  align-items: center;
}
.brand img {
  height: var(--logo-h);
  width: auto;
  max-width: min(190px, 40vw);
  object-fit: contain;
}
.nav-center {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.25rem;
  align-items: center;
  justify-content: center;
}
.nav-center a {
  color: var(--heading);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-center a:hover,
.nav-center a.active { color: var(--accent); }
.nav-cta .btn {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  border-radius: var(--radius-btn);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--card);
  padding: 1rem;
  border-bottom: 1px solid var(--card-border);
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--heading);
  font-weight: 600;
  padding: 0.65rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  color: #fff !important;
}
.btn-outline {
  background: var(--card);
  color: var(--accent) !important;
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-soft);
}
.btn-urgent {
  background: #c62828;
  color: #fff !important;
  border-color: #c62828;
}
.btn-block { width: 100%; }
.btn-muted {
  background: transparent;
  color: var(--muted) !important;
  border: 0;
  font-weight: 600;
}

/* Hero */
.hero {
  padding: calc(var(--nav-h) + 48px) 0 var(--section-py);
  background: var(--hero-bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}
.hero-lead strong { color: var(--heading); font-weight: 600; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--card-border);
}
.hero-stat {
  text-align: left;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--heading);
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Clean photos — no overlays, no captions */
.site-photo {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
  object-fit: cover;
  background: var(--card);
}
.site-photo--hero {
  aspect-ratio: 16 / 10;
  min-height: 260px;
}
.site-photo--devices {
  aspect-ratio: 16 / 10;
}

/* Devices */
.devices-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

/* Trial strip */
.trial-strip {
  padding: 1rem 0;
  background: var(--card);
  border-top: 1px solid var(--card-border);
}
.trial-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.trial-strip p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}
.trial-strip strong { color: var(--heading); }

/* Sections */
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--card); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 0.98rem;
}

/* Cards */
.card {
  background: var(--card);
  border-radius: var(--radius-card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.5rem;
}
.card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.card p { color: var(--muted); font-size: 0.92rem; }
.card-grid { display: grid; gap: 20px; }
.features-grid { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.steps-grid { grid-template-columns: repeat(3, 1fr); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card);
  border-radius: var(--radius-card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}
.pricing-term {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-align: center;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.2rem;
}
.pricing-price small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.pricing-features {
  flex: 1;
  list-style: none;
  font-size: 0.88rem;
}
.pricing-features li {
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: var(--heading);
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-features li.blank { visibility: hidden; min-height: 1.4em; }
.pricing-features li.adult { color: var(--accent); font-weight: 700; visibility: visible; }
.pricing-cta { margin-top: auto; padding-top: 1.25rem; }
.pricing-all-link { text-align: center; margin-top: 1.5rem; font-weight: 600; }

/* Trust */
.trust-bar {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow);
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--heading);
}

/* FAQ */
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--card-border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--heading);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 1rem 2rem 1rem 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--accent);
  font-size: 1.2rem;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 1rem; color: var(--muted); font-size: 0.95rem; }

/* CTA band */
.cta-band {
  background: var(--hero-bg);
  text-align: center;
  padding: var(--section-py) 0;
  border-top: 1px solid var(--card-border);
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}
.cta-band p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 480px;
  margin-inline: auto;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  padding: 2.5rem 0 1.25rem;
  border-top: 1px solid var(--card-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.35rem; }
.footer a { color: var(--muted); font-size: 0.9rem; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 1.25rem;
  border-top: 1px solid var(--card-border);
}

/* Page hero */
.page-hero {
  padding: calc(var(--nav-h) + 32px) 0 2rem;
  background: var(--hero-bg);
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 800;
}
.page-hero p { color: var(--muted); margin-top: 0.5rem; }

/* Blog / legal */
.article { padding: calc(var(--nav-h) + 32px) 0 3rem; }
.article h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.article h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.article p, .article li { color: var(--muted); margin-bottom: 0.75rem; }
.article ul, .article ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.blog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* Popup */
.offer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.offer-overlay.show { opacity: 1; pointer-events: auto; }
.offer-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  z-index: 2001;
  width: min(400px, calc(100% - 2rem));
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  border: 1px solid var(--card-border);
}
.offer-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.offer-modal.urgent { border-color: #c62828; }
.offer-modal h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}
.offer-modal p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.65rem; }
.offer-modal .btn { width: 100%; margin-top: 0.45rem; }
.offer-timer { font-size: 1.35rem; font-weight: 800; color: #c62828; margin: 0.5rem 0; }

/* Sticky WhatsApp */
.sticky-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

/* Device table */
.compat-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius-card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.compat-table th,
.compat-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.88rem;
}
.compat-table th {
  background: var(--hero-bg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.compat-table tr:last-child td { border-bottom: 0; }

@media (max-width: 1024px) {
  .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { max-width: 360px; margin-inline: auto; }
  .devices-layout { grid-template-columns: 1fr; }
  .site-photo--devices { max-width: 480px; margin-inline: auto; }
}
@media (max-width: 768px) {
  :root { --nav-h: 56px; --logo-h: 38px; --section-py: 44px; }
  .nav-center, .nav-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr; text-align: center; }
  .features-grid, .testimonials-grid, .steps-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .trial-strip-inner { flex-direction: column; text-align: center; }
  .trial-strip .btn { width: 100%; }
}
