/* IPTV KOSTENLOS SKY — Midnight Blue Savings */
:root {
  --bg: #FFFFFF;
  --bg-alt: #EFF6FF;
  --surface: #FFFFFF;
  --border: #BFDBFE;
  --accent: #0052CC;
  --accent-hover: #0047B3;
  --secondary: #001A4D;
  --highlight: #22C55E;
  --text: #001A4D;
  --muted: #6E6E73;
  --footer-bg: #001A4D;
  --font-head: "Lexend", "SF Pro Display", system-ui, sans-serif;
  --font-body: "Lexend", system-ui, sans-serif;
  --nav-h: 68px;
  --radius: 8px;
  --card-radius: 12px;
  --section-py: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
.container { width: min(1100px, 92%); margin: 0 auto; }
.center { text-align: center; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-body); font-size: 0.92em; font-weight: 500; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(1.85rem, 5vw, 2.65rem); margin-bottom: 0.75rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 0.65rem; }
h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }

/* Header — dark Apple style */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.site-header--dark { background: #003087; border-bottom-color: rgba(255,255,255,0.08); }
.site-header--dark .nav--light a { color: rgba(255,255,255,0.75); }
.site-header--dark .nav--light a:hover,
.site-header--dark .nav--light a.active { color: #fff; }
.site-header--dark .nav-toggle--light { border-color: rgba(255,255,255,0.2); color: #fff; }
.site-header--light { background: #fff; }
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 12px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; max-width: min(280px, 52vw); line-height: 0; }
.header-logo img, .footer-logo img {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.footer-logo img { height: 40px; }
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a { color: var(--muted); }
.nav a:hover, .nav a.active { color: var(--accent); }
.nav-cta, .nav-cta--lime {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-head);
}
.mobile-nav--dark { background: #003087; border-top-color: rgba(255,255,255,0.08); }
.mobile-nav--dark a { color: rgba(255,255,255,0.85); }
.nav-cta:hover, .nav-cta--lime:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 4%;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.mobile-nav a { color: var(--text); }
.mobile-nav.open { display: flex; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-head);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-sm { padding: 8px 16px; font-size: 0.88rem; }
.btn:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.btn.alt, .btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn.alt:hover, .btn-ghost:hover { background: var(--bg-alt); color: var(--accent-hover); }
.btn-white { background: #fff; color: var(--secondary); }
.btn-ghost-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.25rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Badges */
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.badge--blue { background: rgba(0,113,227,0.1); color: var(--accent); font-weight: 600; }
.badge--yellow { background: var(--highlight); color: #fff; }
.badge--lg { font-size: 0.88rem; padding: 8px 18px; }

/* Sections */
.section { padding: var(--section-py) 0; background: var(--bg); }
.section--alt { background: var(--bg-alt); }

/* Cards */
.card, .price-card, .review-card, .why-card, .step-card, .blog-card, .trial-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover, .price-card:hover, .review-card:hover, .why-card:hover, .trial-step:hover {
  border-left: 4px solid var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Hero 55/45 split */
.hero-split {
  padding: calc(var(--nav-h) + 32px) 0 48px;
  background: var(--bg);
}
.hero-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-split--reversed .hero-split__grid { grid-template-columns: 1fr 1fr; }
.hero-split__img { border-radius: var(--card-radius); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.hero-split__content { max-width: 560px; }
.hero-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 0.5rem; }

/* Compatible boxes 3x2 */
.device-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.device-box-card h3 { font-size: 1rem; font-weight: 700; }
.devices-wide-wrap { margin-top: 2rem; }
.devices-wide-img { border-radius: var(--card-radius); box-shadow: 0 2px 20px rgba(0,0,0,0.08); width: 100%; }

/* Box setup split */
.setup-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.setup-split__img { border-radius: var(--card-radius); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.setup-step { display: flex; gap: 16px; margin: 1.25rem 0; align-items: flex-start; }
.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.step-pill--lg { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 0.75rem; }
.steps-grid--pills .step-pill-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  text-align: center;
  border: none;
}

/* Trial highlight */
.trial-highlight { padding: var(--section-py) 0; }
.trial-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem 0 1.5rem;
}

/* Trust bar */
.trust-bar {
  background: var(--secondary);
  color: #fff;
  padding: 14px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}
.trust-bar--lime { background: linear-gradient(90deg, var(--accent), var(--secondary)); }
.trust-bar--grey { background: var(--bg-alt); color: var(--text); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar--grey .trust-bar__sep { opacity: 0.3; }
.trust-bar__inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 16px; }
.trust-bar__sep { opacity: 0.5; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.pricing-grid--3 { grid-template-columns: repeat(3, 1fr); }
.price-card.popular { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.price-tag { font-family: var(--font-head); font-size: 2rem; color: var(--accent); margin: 0.5rem 0; }
.price-per-month { font-size: 0.88rem; }
.badge-pop {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.badge-pop--green { background: var(--accent); color: #fff; }
.badge-pop--blue { background: var(--accent); color: #fff; }
.pricing-cta { margin-top: 1rem; }
.pricing-row-label { margin: 2rem 0 1rem; font-family: var(--font-head); color: var(--accent); }

/* Why choose 3x2 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.why-card--lime h3 { color: var(--accent); }
.why-card--blue h3 { color: var(--accent); }

/* Devices split */
.devices-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.device-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1rem 0; }
.device-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.step-num {
  font-family: var(--font-head);
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-num--lime { color: var(--accent); }

/* Comparison table */
.cmp-wrap { overflow-x: auto; margin-top: 2rem; }
.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.cmp th, .cmp td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}
.cmp th { background: var(--bg-alt); font-family: var(--font-head); color: var(--secondary); }
.cmp .col-good { color: var(--accent); font-weight: 600; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.review-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 0.75rem; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.review-meta { font-size: 0.88rem; font-weight: 600; }
.review-device { font-size: 0.8rem; }

/* FAQ */
.faq-list { margin-top: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; background: var(--surface); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text);
  border: 0;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.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 16px 14px; color: var(--muted); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.blog-thumb { border-radius: var(--radius); margin-bottom: 1rem; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--accent); }

/* CTA strip */
.cta-strip {
  background: var(--accent);
  padding: 3rem 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; font-family: var(--font-head); }
.cta-strip .muted { color: rgba(255,255,255,0.9); }
.cta-strip--lime { background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%); }
.cta-strip--blue { background: var(--accent); }

/* Page hero */
.page-hero { padding: calc(var(--nav-h) + 48px) 0 48px; background: var(--bg-alt); }
.page-hero--img { background-size: cover; background-position: center; min-height: 280px; display: flex; align-items: center; position: relative; }
.page-hero--overlay::before { content: ""; position: absolute; inset: 0; background: rgba(26,46,5,0.65); }
.page-hero--img .hero-inner { position: relative; z-index: 1; }
.hero-sub--light { color: rgba(255,255,255,0.92); }
.page-hero--img h1 { color: #fff; }

/* Footer */
.footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--accent);
  padding: 48px 0 24px;
  color: rgba(255,255,255,0.85);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer h4 { font-family: var(--font-head); color: #fff; font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 6px; }
.footer a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer a:hover { color: #fff; }
.footer .muted { color: rgba(255,255,255,0.65); }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); font-size: 0.85rem; }

/* Float buy + sticky WA */
.float-buy {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 45;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,113,227,0.35);
}
.float-buy--lime { background: var(--accent); }
.float-buy--circle {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  box-shadow: 0 4px 20px rgba(0,82,204,0.45);
}
.trust-bar--blue { background: #003087; color: #fff; }
.trust-bar--blue .trust-bar__item { color: rgba(255,255,255,0.92); }
.trust-bar--blue .trust-bar__sep { color: rgba(255,255,255,0.35); }
.float-buy:hover { background: var(--accent-hover); color: #fff; }
.sticky-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 46;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
}
.sticky-wa:hover { filter: brightness(1.08); color: #fff; }

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,46,5,0.75);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-card {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--card-radius);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.popup-dismiss { color: var(--muted); font-size: 0.85rem; }

/* Article */
.article-prose { max-width: 720px; margin: 0 auto; }
.article-prose p { margin-bottom: 1rem; }
.article-prose h2 { margin: 2rem 0 0.75rem; color: var(--secondary); font-family: var(--font-head); }
.author-box {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card--large { text-align: center; }

.rounded-2xl { border-radius: var(--card-radius); }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .hero-split__grid { grid-template-columns: 1fr; }
  .hero-split__content { max-width: none; }
  .trial-steps, .pricing-grid, .pricing-grid--3, .why-grid,
  .devices-split, .steps-grid, .reviews-grid, .blog-grid,
  .footer-grid, .contact-cards { grid-template-columns: 1fr; }
  .device-items { grid-template-columns: 1fr; }
}
.badge--savings { background: #22C55E; color: #fff; font-weight: 800; }
.badge--save { display: block; margin-bottom: 0.5rem; font-size: 0.72rem; }
.hero-split--sky { background: linear-gradient(180deg, #EFF6FF 0%, #fff 100%); }
.hero-split__grid--55 { grid-template-columns: 1.1fr 0.9fr; }
.savings-counter { margin: 1.25rem 0; padding: 1rem 1.25rem; border-left: 4px solid #22C55E; background: #F0FDF4; }
.savings-counter__value { display: block; font-family: var(--font-head); font-size: 2rem; color: #22C55E; line-height: 1.1; }
.savings-counter__label, .savings-counter__sub { font-size: 0.88rem; }
.savings-section { padding: var(--section-py) 0; }
.savings-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 2rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.savings-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 1.75rem; color: #fff; }
.savings-card--winner { background: rgba(255,255,255,0.95); color: var(--text); border: 2px solid #22C55E; }
.savings-card--winner h3 { color: var(--accent); }
.savings-price { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; margin: 0.75rem 0; }
.savings-price span { font-size: 1rem; font-weight: 500; }
.savings-price--green { color: #22C55E; }
.savings-card ul { list-style: none; margin-top: 0.75rem; }
.savings-card li { padding: 4px 0; font-size: 0.92rem; }
.cta-strip--sky { background: #003087; }
.btn-savings { background: #22C55E !important; color: #fff !important; border-radius: 8px; }
.btn-savings:hover { background: #16A34A !important; }
.nav-cta--sky { background: #0052CC !important; border-radius: 8px; }
.site-header--dark .nav--light a:hover, .site-header--dark .nav--light a.active { color: #22C55E; }
.price-card.popular { border-top: 4px solid #0052CC; box-shadow: 0 4px 24px rgba(0,82,204,0.12); }
@media (max-width: 900px) { .hero-split__grid--55, .savings-compare-grid { grid-template-columns: 1fr; } }
