/* ============================================================
   balkaniptv.tv — Balkan IPTV landing page
   Dark cinema canvas · gold accent · Unbounded + Instrument Sans
   ============================================================ */

:root {
  --bg: #0b0b0e;
  --bg-soft: #101014;
  --bg-card: #15151b;
  --bg-card-hi: #1b1b23;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f4f2;
  --text-dim: #a3a3ad;
  --gold: #f5c518;
  --gold-soft: rgba(245, 197, 24, 0.12);
  --green: #2fbf71;
  --red: #ff4d4d;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --radius: 18px;
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.45);
  --container: 1180px;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain overlay for atmosphere */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

a { color: inherit; }
ul, ol { padding: 0; }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}
.container-narrow { max-width: 820px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #0b0b0e;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  border-radius: 12px;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: #131309;
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.32);
}
.btn-gold:hover { box-shadow: 0 12px 36px rgba(245, 197, 24, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(245, 197, 24, 0.65);
}
.btn-outline:hover { background: var(--gold-soft); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn-dark {
  background: #131309;
  color: var(--gold);
}
.btn-ghost-dark {
  background: rgba(0, 0, 0, 0.12);
  color: #131309;
  border: 1.5px solid rgba(0, 0, 0, 0.35);
}

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.92rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 14, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark { width: 36px; height: 36px; border-radius: 9px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.logo-text em { font-style: normal; color: var(--gold); }
.logo-text small { font-size: 0.7em; color: var(--text-dim); font-weight: 600; }

.main-nav {
  display: flex;
  gap: 1.6rem;
  margin-inline: auto;
}
.main-nav a {
  text-decoration: none;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}

/* language selector */
.lang-select { position: relative; }
.lang-select summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s ease;
}
.lang-select summary::-webkit-details-marker { display: none; }
.lang-select summary:hover { border-color: rgba(245, 197, 24, 0.5); }
.lang-select .chev { width: 10px; transition: transform 0.2s ease; }
.lang-select[open] .chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  background: var(--bg-card-hi);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  list-style: none;
  padding: 0.4rem;
  z-index: 200;
  animation: pop 0.18s ease;
  max-height: min(70vh, 520px);
  overflow-y: auto;
}
@keyframes pop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  border-radius: 9px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.lang-menu a:hover { background: var(--gold-soft); color: var(--gold); }
.lang-menu a[aria-current="true"] { background: rgba(255, 255, 255, 0.05); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 80%;
  background:
    radial-gradient(600px 420px at 18% 10%, rgba(245, 197, 24, 0.14), transparent 65%),
    radial-gradient(700px 500px at 85% 30%, rgba(47, 105, 191, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 99px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.4rem;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.55); }
  60% { box-shadow: 0 0 0 8px rgba(255, 77, 77, 0); }
}

.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 1.12rem;
  max-width: 56ch;
  margin-bottom: 1.8rem;
}
.hero-sub strong { color: var(--text); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.hero-stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.hero-rating-text {
  color: var(--text-dim);
  font-size: 0.94rem;
  font-weight: 500;
}
.hero-rating-text strong {
  color: var(--text);
  font-weight: 700;
}

/* hero TV mockup */
.hero-visual { position: relative; }
.tv-frame {
  background: linear-gradient(160deg, #1d1d26, #121218);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.1rem 1.1rem 1.3rem;
  box-shadow: var(--shadow-card);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.tv-frame:hover { transform: rotate(0deg) scale(1.01); }

.tv-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}
.badge-live {
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  animation: blink 1.4s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0.55; } }
.tv-quality {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
}

.tv-screen {
  background: radial-gradient(120% 130% at 50% 0%, #20202b 0%, #0d0d12 70%);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 1.1rem;
}
.tv-channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.ch {
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.38rem 0.65rem;
  white-space: nowrap;
}
.ch.hot {
  background: var(--gold-soft);
  border-color: rgba(245, 197, 24, 0.45);
  color: var(--gold);
}

.tv-now {
  display: grid;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}
.tv-now-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
}
.tv-now-title { font-weight: 700; font-size: 0.98rem; }
.tv-progress {
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.tv-progress-fill {
  display: block;
  height: 100%;
  width: 62%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #ffdf6b);
  animation: progress 14s linear infinite;
}
@keyframes progress { from { width: 18%; } to { width: 92%; } }

.tv-shadow {
  position: absolute;
  inset: auto 8% -26px;
  height: 40px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(0, 0, 0, 0.55), transparent);
  filter: blur(6px);
}

/* stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4rem;
}
.stat {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.stat dd {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--gold);
  order: -1;
}
.stat dt {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* ---------- region strip ---------- */
.region-strip {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 1.6rem 0;
}
.region-title {
  text-align: center;
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.region-title strong { color: var(--text); }
.region-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* ---------- sections ---------- */
.section { padding: 5.5rem 0; }
.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.2rem;
}
.kicker {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.section-sub { color: var(--text-dim); font-size: 1.05rem; }

/* ---------- features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 197, 24, 0.4);
  background: var(--bg-card-hi);
}
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  font-size: 1.5rem;
  background: var(--gold-soft);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 14px;
  margin-bottom: 1.1rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-dim); font-size: 0.97rem; }

/* ---------- content overview ---------- */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
}
.content-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.content-card > p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 1.1rem; }
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}
.tag-list li {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.tag-list li:hover { border-color: rgba(245, 197, 24, 0.5); color: var(--gold); }

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  list-style: none;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem 1.8rem;
}
.step-num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #131309;
  background: var(--gold);
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
}
.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.55rem; }
.step p { color: var(--text-dim); font-size: 0.97rem; }

.devices-note {
  text-align: center;
  margin-top: 2.6rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.devices-note strong { color: var(--text); font-weight: 600; }

/* ---------- pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem 1.6rem 1.7rem;
  text-align: center;
  min-width: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: var(--shadow-card);
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(170deg, rgba(245, 197, 24, 0.07), var(--bg-card) 45%);
  box-shadow: 0 0 0 1px var(--gold), 0 22px 60px rgba(245, 197, 24, 0.12);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #131309;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.95rem;
  border-radius: 99px;
  white-space: nowrap;
}
.plan-badge.badge-muted {
  background: #2a2a33;
  color: var(--text);
  border: 1px solid var(--line);
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.plan-tag {
  font-size: 0.83rem;
  color: var(--text-dim);
  margin-bottom: 1.3rem;
  min-height: 2.4em;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
}
.plan-price sup {
  font-size: 0.45em;
  color: var(--gold);
  margin-right: 0.1em;
  vertical-align: 1.1em;
}
.plan-price .cents { font-size: 0.55em; font-weight: 700; }
.plan-monthly {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0.5rem 0 0.75rem;
}
.plan-save {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--green);
  background: rgba(47, 191, 113, 0.12);
  border: 1px solid rgba(47, 191, 113, 0.32);
  border-radius: 99px;
  padding: 0.28rem 0.85rem;
  margin-bottom: 1.4rem;
}
.plan-save.muted {
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.6rem;
  display: grid;
  gap: 0.65rem;
  flex-grow: 1;
}
.plan-features li {
  font-size: 0.94rem;
  padding-left: 1.6rem;
  position: relative;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.price-card .btn { width: 100%; white-space: normal; line-height: 1.35; }
.plan-secure {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.pricing-note {
  text-align: center;
  margin-top: 2.2rem;
  color: var(--text-dim);
  font-size: 0.92rem;
}

/* ---------- testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.95rem; }
.quote-card blockquote {
  color: var(--text);
  font-size: 0.99rem;
  line-height: 1.6;
  flex-grow: 1;
}
.quote-card figcaption {
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: rgba(245, 197, 24, 0.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-dim);
  font-size: 0.98rem;
}

/* ---------- final CTA ---------- */
.final-cta { padding: 5.5rem 0; }
.cta-box {
  background:
    radial-gradient(900px 360px at 50% -40%, rgba(255, 255, 255, 0.28), transparent 60%),
    linear-gradient(135deg, #ffd84d, var(--gold) 55%, #d9a90a);
  color: #131309;
  border-radius: 26px;
  padding: 3.6rem 2.5rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(245, 197, 24, 0.22);
}
.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.cta-box > p {
  font-size: 1.08rem;
  font-weight: 500;
  max-width: 60ch;
  margin: 0 auto 1.9rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.cta-note { font-size: 0.9rem; font-weight: 600; opacity: 0.85; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 3.8rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.8rem;
}
.footer-brand p:last-child {
  color: var(--text-dim);
  font-size: 0.94rem;
  margin-top: 0.9rem;
  max-width: 38ch;
}
.footer-nav { display: grid; gap: 0.55rem; align-content: start; }
.footer-nav h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}
.footer-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  width: fit-content;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .live-dot, .badge-live, .tv-progress-fill { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1280px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 2.5rem; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .hero { padding-top: 3.2rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 540px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: 3rem; }
  .content-grid, .quote-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 0; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .pricing-grid, .feature-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-cta .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .header-inner { gap: 0.8rem; }
  .btn-sm { display: none; }
  .cta-box { padding: 2.6rem 1.4rem; }
}

/* ============================================================
   ADDITIONS — hero image, logo marquees, platforms, devices
   ============================================================ */

/* ---------- hero: real image on the left ---------- */
.hero-figure {
  position: relative;
  margin: 0;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.02);
  transform: rotate(-1.1deg);
  transition: transform 0.45s ease;
}
.hero-figure:hover .hero-img { transform: rotate(0deg) scale(1.01); }
.hero-figure::before {
  content: "";
  position: absolute;
  inset: -14% -10% -10%;
  z-index: -1;
  background: radial-gradient(60% 55% at 50% 40%, rgba(245,197,24,0.20), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-badge-float {
  position: absolute;
  bottom: 8%;
  right: -4%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(17,17,22,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 0.95rem;
  box-shadow: var(--shadow-card);
}
.hero-badge-float strong { display: block; font-family: var(--font-display); font-size: 1.1rem; line-height: 1; color: var(--gold); margin-bottom: 2px; }
.hero-badge-float .hbf-txt { font-size: 0.74rem; color: var(--text-dim); font-weight: 600; }
.hero-badge-float .hbf-ico {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--gold-soft); border: 1px solid rgba(245,197,24,0.3);
  font-size: 1.1rem;
}

@media (min-width: 861px) {
  .hero-grid { grid-template-columns: 1.04fr 0.96fr; }   /* copy left, image RIGHT */
  .hero-visual { order: 0; }                             /* image stays on the RIGHT */
}

/* ---------- logo marquees (channel + platform walls) ---------- */
.logo-wall { padding: 4.5rem 0; }
.wall-head { text-align: center; max-width: 720px; margin: 0 auto 2.4rem; }
.wall-head h2 { font-size: clamp(1.45rem, 2.8vw, 2rem); font-weight: 700; margin-bottom: 0.7rem; }
.wall-head p { color: var(--text-dim); font-size: 1.02rem; }

.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 0.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee + .marquee { margin-top: 1rem; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee var(--dur, 60s) linear infinite;
  will-change: transform;
}
/* per-chip margin (not flex gap) keeps the -50% duplicate loop perfectly seamless */
.marquee .logo-chip { margin-right: 1rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-rev .marquee-track { animation-direction: reverse; }
.mq-set { display: contents; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logo-chip {
  flex: 0 0 auto;
  width: 148px;
  height: 84px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.38);
}
.logo-chip img {
  max-height: 62px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.logo-chip.chip-sm { width: 120px; height: 70px; padding: 6px 10px; }
.logo-chip.chip-sm img { max-height: 52px; }

/* league chips — keep on dark glass since league marks are colourful/bold */
.logo-chip.chip-dark {
  background: linear-gradient(160deg, var(--bg-card-hi), var(--bg-card));
  border: 1px solid var(--line);
}

/* ---------- platforms + VOD split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.split-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.split-copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 1rem; }
.split-copy > p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 1.4rem; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 0.8rem;
}
.platform-grid .logo-chip { width: 100%; height: 70px; }
.platform-grid .logo-chip img { max-height: 34px; }
/* square brand glyphs (svg) read smaller than wide wordmarks – bump them */
.platform-grid .logo-chip img[src$=".svg"] { max-height: 42px; }

/* ---------- devices panel ---------- */
.devices-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  margin-top: 2.6rem;
  box-shadow: var(--shadow-card);
}
.devices-panel img { width: 100%; height: auto; max-width: 980px; margin: 0 auto; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .logo-wall { padding: 3.4rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-img { transform: none; }
}


/* ============================================================
   PORTED CAROUSELS from balkaniptv.de  (scoped under .bx)
   ============================================================ */
.bx{
  --bg-primary: var(--bg);
  --bg-secondary: var(--bg-soft);
  --accent-gold: var(--gold);
  --text-primary: var(--text);
  --text-secondary: var(--text-dim);
  --text-muted: var(--text-dim);
  --border: var(--line);
  --border-hover: rgba(245,197,24,0.30);
  --shadow: var(--shadow-card);
  --shadow-hover: 0 24px 60px rgba(0,0,0,0.55);
}
@keyframes bx-marquee-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

.bx .section-header{text-align:center;max-width:680px;margin:0 auto 44px}
.bx .section-label{display:inline-block;font-size:0.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:0.15em;color:var(--gold);margin-bottom:12px;padding:6px 14px;background:var(--gold-soft);border:1px solid rgba(245,197,24,0.22);border-radius:100px}
.bx .section-title{font-size:clamp(1.6rem,4vw,2.4rem);font-weight:800;line-height:1.2;margin-bottom:14px;letter-spacing:-0.02em;color:var(--text)}
.bx .section-title strong,.bx .section-title .highlight{color:var(--gold)}
.bx .section-desc{font-size:1.0625rem;color:var(--text-dim);line-height:1.6}

/* streaming logo marquee (hero row) */
.bx-logo-marquee{padding:18px 0;overflow:hidden;position:relative}
.bx-logo-marquee::before,.bx-logo-marquee::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none}
.bx-logo-marquee::before{left:0;background:linear-gradient(to right,var(--bg),transparent)}
.bx-logo-marquee::after{right:0;background:linear-gradient(to left,var(--bg),transparent)}
.bx-logo-track{display:flex;align-items:center;gap:48px;width:max-content;animation:bx-marquee-scroll 40s linear infinite}
.bx-logo-marquee:hover .bx-logo-track{animation-play-state:paused}
.bx-logo-track img{height:30px;width:auto;object-fit:contain;opacity:0.72;transition:opacity .3s;filter:brightness(0) invert(1)}
.bx-logo-track img:hover{opacity:1}

/* infinite cover marquees (movies / vod / football) */
.bx .infinite-marquee-container{position:relative;width:100%;overflow:hidden;border-radius:16px}
.bx .infinite-marquee-container::before,.bx .infinite-marquee-container::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none}
.bx .infinite-marquee-container::before{left:0;background:linear-gradient(to right,var(--bg),transparent)}
.bx .infinite-marquee-container::after{right:0;background:linear-gradient(to left,var(--bg),transparent)}
.bx .infinite-marquee-track{display:flex;gap:24px;width:max-content;animation:bx-marquee-scroll var(--dur,55s) linear infinite}
.bx .infinite-marquee-container:hover .infinite-marquee-track{animation-play-state:paused}

/* poster / cover card */
.bx .cover-card{width:45vw;max-width:210px;position:relative;border-radius:14px;overflow:hidden;box-shadow:var(--shadow-card);transition:transform .3s ease;background:var(--bg-card);border:1px solid var(--line);flex:0 0 auto}
@media(min-width:768px){.bx .cover-card{width:200px}}
@media(min-width:1024px){.bx .cover-card{width:210px}}
.bx .cover-card:hover{transform:translateY(-8px);box-shadow:0 24px 60px rgba(0,0,0,0.55);border-color:var(--gold)}
.bx .cover-card img.cover-img{width:100%;height:100%;aspect-ratio:2/3;object-fit:cover;display:block;transition:transform .4s ease}
.bx .cover-card:hover img.cover-img{transform:scale(1.05)}

/* sports category carousel */
.bx .sports-carousel-container{position:relative;width:100%;overflow:hidden;border-radius:16px}
.bx .sports-carousel-container::before,.bx .sports-carousel-container::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none}
.bx .sports-carousel-container::before{left:0;background:linear-gradient(to right,var(--bg),transparent)}
.bx .sports-carousel-container::after{right:0;background:linear-gradient(to left,var(--bg),transparent)}
.bx .sports-carousel{display:flex;gap:24px;width:max-content;animation:bx-marquee-scroll 55s linear infinite}
.bx .sports-carousel-container:hover .sports-carousel{animation-play-state:paused}
.bx .carousel-slide{width:75vw;max-width:300px;position:relative;border-radius:16px;overflow:hidden;box-shadow:var(--shadow-card);flex:0 0 auto}
@media(min-width:640px){.bx .carousel-slide{width:320px}}
@media(min-width:1024px){.bx .carousel-slide{width:380px}}
.bx .carousel-slide img{width:100%;height:300px;object-fit:cover;transition:transform .4s;display:block}
.bx .carousel-slide:hover img{transform:scale(1.05)}
.bx .slide-content{position:absolute;bottom:0;left:0;right:0;padding:34px 22px 22px;background:linear-gradient(to top,rgba(8,8,11,0.96) 0%,rgba(8,8,11,0.72) 50%,transparent 100%)}
.bx .slide-content h3{font-size:1.25rem;font-weight:700;color:#fff;margin-bottom:6px}
.bx .slide-content p{font-size:0.875rem;color:rgba(255,255,255,0.85);line-height:1.5}

/* device support split (images left, copy right) */
.bx .compat-split{display:flex;flex-direction:column;gap:40px;align-items:center}
@media(min-width:900px){.bx .compat-split{flex-direction:row;gap:56px}}
.bx .compat-images{flex:1 1 50%;display:flex;flex-direction:column;gap:22px;align-items:center;min-width:0}
.bx .compat-images img{width:100%;max-width:480px;height:auto;display:block;object-fit:contain;filter:drop-shadow(0 12px 32px rgba(0,0,0,0.5));transition:transform .4s ease}
.bx .compat-images img:hover{transform:scale(1.03)}
.bx .compat-text{flex:1 1 50%;min-width:0}
.bx .compat-subtitle{font-size:1.25rem;font-weight:700;font-style:italic;color:var(--text);margin-bottom:14px}
.bx .compat-desc{font-size:0.975rem;color:var(--text-dim);line-height:1.8;margin-bottom:22px}
.bx .compat-list{list-style:none;padding:0;margin:0 0 28px 0;display:flex;flex-direction:column;gap:12px}
.bx .compat-list li{display:flex;align-items:flex-start;gap:10px;font-size:0.95rem;color:var(--text);line-height:1.5}
.bx .compat-list li::before{content:'✓';color:var(--gold);font-weight:800;font-size:1rem;line-height:1.4}
.bx .compat-list strong{color:var(--text)}
@media(max-width:899px){.bx .compat-text{text-align:center}.bx .compat-list{display:inline-flex;text-align:left;margin:0 auto 28px}.bx .compat-text .btn{margin:0 auto}}

@media(prefers-reduced-motion:reduce){
  .bx-logo-track,.bx .infinite-marquee-track,.bx .sports-carousel{animation:none}
}

/* Pricing section: tighten gap above logo strip, open gap below it */
#preise .section-head{margin-bottom:1.6rem}
#preise .bx-logo-marquee{margin-bottom:2.4rem}


/* ===== network theme override · balkan-iptv-abonnement.de ===== */
:root{
  --gold: #e8b923;
  --gold-soft: rgba(232, 185, 35, 0.12);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;
}

/* ---------- sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 3rem));
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s ease;
  white-space: nowrap;
}
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gold);
  color: #131309;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 99px;
  box-shadow: 0 8px 32px rgba(245,197,24,0.45), 0 2px 12px rgba(0,0,0,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(245,197,24,0.55), 0 2px 12px rgba(0,0,0,0.35);
}
.sticky-cta-label { font-size: 1rem; }
.sticky-cta-sub {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.7;
  border-left: 1px solid rgba(19,19,9,0.3);
  padding-left: 1rem;
}
@media (max-width: 560px) {
  .sticky-cta { bottom: 1rem; }
  .sticky-cta-btn { padding: 0.8rem 1.6rem; gap: 0; }
  .sticky-cta-sub { display: none; }
}