/* ============================================================
   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;
}
@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-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  color: var(--text-dim);
  font-size: 0.94rem;
  font-weight: 500;
}

/* 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, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--bg-soft);
  padding: 1.6rem 1.2rem;
  text-align: center;
}
.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.85rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 0.35rem;
}
.stat { display: flex; flex-direction: column; }

/* ---------- 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, 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;
  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 1.4rem;
}

.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%; }
.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: 1080px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .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, .stats-bar { grid-template-columns: 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; }
}
