/* ─── RESET & VARS ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0a0808;
  --bg-2:       #110d0c;
  --bg-card:    #160f0e;
  --border:     rgba(255,255,255,0.07);
  --accent:     #ff4d00;
  --accent-2:   #ff8040;
  --text:       #f0ece8;
  --muted:      #7a6e6a;
  --r:          16px;
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── NOISE OVERLAY ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── NAV ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 72px;
  background: linear-gradient(180deg, rgba(10,8,8,.98) 0%, rgba(10,8,8,0) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav__logo-dot { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .3px;
  transition: color .2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  transition: all .22s;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 28px rgba(255,77,0,.35);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 0 40px rgba(255,77,0,.55);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}
.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  overflow: hidden;
  padding: 120px 4vw 60px;
  gap: 20px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 8% 50%, rgba(255,77,0,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,0,.1);
  border: 1px solid rgba(255,77,0,.22);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.4rem;
  animation: fadeUp .8s ease both;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,100%{opacity:1} 50%{opacity:.3}
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.8px;
  margin-bottom: 1.1rem;
  animation: fadeUp .8s .1s ease both;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: .93rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2rem;
  animation: fadeUp .8s .2s ease both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}

.hero__note {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: .9rem;
  opacity: .7;
  animation: fadeUp .8s .4s ease both;
}

/* ─── HERO CHANNEL GRID ─────────────────────────────────── */
.hero__grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 408px;
  overflow: hidden;
  mask-image: linear-gradient(90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%);
}

/* Each row scrolls horizontally */
.hero__row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-shrink: 0;
}
.hero__row--a { animation: rowLeft  28s linear infinite; }
.hero__row--b { animation: rowRight 34s linear infinite; }
.hero__row--c { animation: rowLeft  24s linear infinite; }
.hero__row--d { animation: rowRight 30s linear infinite; }

@keyframes rowLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes rowRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.hero__tile {
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 90px;
  padding: 14px 20px;
  transition: border-color .3s, background .3s;
}
.hero__tile:hover {
  border-color: rgba(255,77,0,.4);
  background: rgba(255,77,0,.07);
}

.hero__tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(.7) saturate(.4);
  transition: filter .3s, transform .3s;
  display: block;
}
.hero__tile:hover img {
  filter: brightness(1.05) saturate(1);
  transform: scale(1.06);
}

/* Alert banner */
.alert-banner {
  position: relative;
  z-index: 2;
  background: rgba(255,77,0,.08);
  border: 1px solid rgba(255,77,0,.2);
  border-radius: var(--r);
  padding: 14px 24px;
  margin: 0 4vw;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  line-height: 1.6;
}
.alert-banner__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.alert-banner strong { color: var(--accent-2); }

/* ─── SECTION BASE ─────────────────────────────────── */
.section {
  padding: 100px 4vw;
}
.section--alt { background: var(--bg-2); }

.section-label {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}

/* ─── COUNTDOWN ─────────────────────────────────── */
.countdown-strip {
  background: linear-gradient(90deg, #1a0800, #200e00, #1a0800);
  border-top: 1px solid rgba(255,77,0,.2);
  border-bottom: 1px solid rgba(255,77,0,.2);
  padding: 18px 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
}
.countdown-timer {
  display: flex;
  gap: 6px;
  align-items: center;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.countdown-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ff4d00, #ff8040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 48px;
  text-align: center;
  letter-spacing: -1px;
}
.countdown-lbl {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 600;
}
.countdown-sep {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,77,0,.4);
  margin-top: -8px;
}

/* ─── PLANS ─────────────────────────────────── */
.plans {
  padding: 100px 4vw;
}
.plans__header { margin-bottom: 64px; text-align: center; }
.plans__header .section-desc {
  margin: 0 auto;
  text-align: center;
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* ── base card ── */
.plan {
  background: #130e0d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 44px 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.plan:hover {
  border-color: rgba(255,77,0,.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

/* ── featured card ── */
.plan--featured {
  background: #180f0a;
  border-color: rgba(255,77,0,.35);
  box-shadow: 0 0 0 1px rgba(255,77,0,.15), 0 24px 60px rgba(255,77,0,.08);
}
.plan--featured:hover {
  border-color: rgba(255,77,0,.6);
  box-shadow: 0 0 0 1px rgba(255,77,0,.3), 0 32px 80px rgba(255,77,0,.15);
}

.plan__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

/* ── plan header area ── */
.plan__tier {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.plan--featured .plan__tier { color: var(--accent-2); }

/* ── price block ── */
.plan__price-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.plan__price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}
.plan__brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}
.plan__brand-logo {
  width: 130px;
  opacity: .9;
}
.plan__brand-name {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.plan--featured .plan__brand-name {
  color: var(--accent-2);
}
.plan__price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
  margin-bottom: 6px;
}
.plan__currency {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
.plan__amount {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--text);
  line-height: 1;
}
.plan__decimals {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 8px;
}
.plan__period {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
}
.plan__vat {
  font-size: .7rem;
  color: var(--muted);
  opacity: .5;
  margin-top: 2px;
}

/* ── channel count ── */
.plan__channels-block {
  margin-bottom: 24px;
}
.plan__channels-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent-2);
  line-height: 1;
}
.plan--featured .plan__channels-num { color: var(--accent); }
.plan__channels-text {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── channel logo tiles in plan ── */
.plan__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 28px;
}
.plan__logo-tile {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  transition: background .2s, border-color .2s;
  overflow: hidden;
}
.plan__logo-tile:hover {
  background: rgba(255,77,0,.08);
  border-color: rgba(255,77,0,.2);
}
.plan__logo-tile img {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(.75) saturate(.5);
  transition: filter .2s;
}
.plan__logo-tile:hover img { filter: brightness(1) saturate(1); }
.plan__logo-more {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.15);
  font-size: .65rem;
  font-weight: 800;
  color: var(--accent-2);
  text-align: center;
  line-height: 1.2;
}

/* ── features list ── */
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.plan__feature {
  font-size: .85rem;
  color: #a09890;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.plan__feature-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,77,0,.12);
  border: 1px solid rgba(255,77,0,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .6rem;
  color: var(--accent);
}

/* ── CTA ── */
.plan__cta {
  width: 100%;
  justify-content: center;
  padding: 15px;
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .2px;
}

/* old chip (kept for ticker section) */
.chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px 4px 5px;
  font-size: .7rem;
  color: #9a8e8a;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}
.chip:hover {
  background: rgba(255,77,0,.08);
  border-color: rgba(255,77,0,.25);
}
.chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 3px;
}
.chip--more {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.15);
  color: var(--accent-2);
  font-weight: 700;
}

.plan__cta {
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: 12px;
  font-size: .9rem;
}

/* ─── FEATURES 4K ─────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split--rev { direction: rtl; }
.feature-split--rev > * { direction: ltr; }

.feature-split__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #111;
}
.feature-split__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.feature-split__visual:hover img { transform: scale(1.04); }
.feature-split__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  pointer-events: none;
}

.feature-split__badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(10,8,8,.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  backdrop-filter: blur(10px);
}
.feature-split__badge span { color: var(--accent); }

/* ─── DISCOUNT BANNER ─────────────────────────────────── */
.discount-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(120deg, #1e0c04 0%, #160808 60%, #0d0505 100%);
  border: 1px solid rgba(255,77,0,.15);
}
.discount-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,.15) 0%, transparent 70%);
  pointer-events: none;
}
.discount-banner__img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  object-fit: cover;
  opacity: .12;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.8) 40%);
}
.discount-banner__content { position: relative; z-index: 1; }
.discount-banner__pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.discount-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.discount-banner__title em { font-style: normal; color: var(--accent); }
.discount-banner__sub {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 1.5rem;
}
.discount-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── DEVICES ─────────────────────────────────── */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.device-card:hover {
  border-color: rgba(255,77,0,.25);
  background: #160f0e;
}
.device-card__img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 24px;
}
.device-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.device-card__sub {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}
.device-card__app {
  display: inline-block;
  margin-top: 14px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: .3px;
}

/* ─── CHANNELS TICKER ─────────────────────────────────── */
.ticker-section { padding: 60px 0; overflow: hidden; }
.ticker-section__header { text-align: center; padding: 0 4vw; margin-bottom: 40px; }

.ticker-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 108px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: background .2s, border-color .2s;
}
.ticker-item:hover {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.25);
}
.ticker-item img {
  max-width: 80px;
  max-height: 40px;
  object-fit: contain;
  filter: brightness(.75) saturate(.5);
  transition: filter .2s, transform .2s;
}
.ticker-item:hover img {
  filter: brightness(1) saturate(1);
  transform: scale(1.08);
}

/* ─── CTA FINAL ─────────────────────────────────── */
.final-cta {
  padding: 120px 4vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,77,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  position: relative;
}
.final-cta__title em { font-style: normal; color: var(--accent); }
.final-cta__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.final-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
}
.footer__brand span { color: var(--accent); }
.footer__copy { font-size: .78rem; color: var(--muted); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: .78rem; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--text); }

/* ─── KEYFRAMES ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__grid { display: none; }
  .plans__grid { grid-template-columns: 1fr; background: transparent; gap: 16px; }
  .plan { border-radius: 20px; border: 1px solid var(--border); }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split--rev { direction: ltr; }
  .devices-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }

  /* Discount banner */
  .discount-banner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }

  /* 4K */
  .section-4k__channels,
  .section-4k__resolution { display: none; }
  .section-4k__content {
    padding: 40px 24px 36px;
    max-width: 100%;
  }
  .section-4k__title { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  /* Devices */
  .section-devices__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 36px;
  }
  .devices-single-wrap {
    margin-left: 0;
    max-width: 100%;
    margin-top: 0;
  }
  .devices-label { display: none; }
  /* 4K — ascunde logo-urile complet */
.section-4k__channels {
  display: none !important;
}

/* Discount banner — forțează o singură coloană */
.discount-banner {
  display: flex !important;
  flex-direction: column !important;
  padding: 36px 24px !important;
  gap: 32px !important;
}

/* Barele de progres să nu iasă din container */
.months-visual {
  width: 100%;
}
.prog-bar {
  width: 100%;
}
.prog-bar__paid,
.prog-bar__free {
  font-size: .65rem;
}
}

@media (max-width: 600px) {
  .hero { padding: 100px 6vw 60px; }
  .section { padding: 70px 6vw; }
  .plans { padding: 70px 6vw; }
  .final-cta { padding: 80px 6vw; }
  .footer { flex-direction: column; text-align: center; }
}
.plan--premium .plan__tier { color: var(--accent); }
/* ─── DISCOUNT BANNER ─────────────────────────────────── */
.discount-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, #1a0a04 0%, #130808 50%, #0e0606 100%);
  border: 1px solid rgba(255,77,0,.15);
}
.discount-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.discount-banner__content { position: relative; z-index: 1; }
.discount-banner__pill {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.discount-banner__title {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.discount-banner__title em { font-style: normal; color: var(--accent-color); }
.discount-banner__sub {
  font-size: .9rem;
  color: #7a6e6a;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 1.8rem;
}
.discount-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── progress bars visual ── */
.months-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prog-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prog-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.prog-item__plan { font-size: .88rem; color: #7a6e6a; }
.prog-item__plan strong { color: #f0ece8; font-weight: 700; }
.prog-item__saving {
  font-size: .72rem;
  font-weight: 700;
  color: #ff8040;
  letter-spacing: .3px;
}
.prog-bar {
  display: flex;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  gap: 3px;
}
.prog-bar__paid {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  color: #f0ece8;
}
.prog-bar__free {
  background: linear-gradient(90deg, #ff4d00, #ff7a30);
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 20px rgba(255,77,0,.4);
  animation: freePulse 2.5s ease-in-out infinite alternate;
}
@keyframes freePulse {
  0%   { box-shadow: 0 0 12px rgba(255,77,0,.3); }
  100% { box-shadow: 0 0 28px rgba(255,77,0,.65); }
}
.prog-item__labels {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  color: #7a6e6a;
  opacity: .7;
}
.months-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 0;
}
.months-saving {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.months-saving__badge {
  background: rgba(255,77,0,.12);
  border: 1px solid rgba(255,77,0,.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: #ff8040;
}
.months-saving__text { font-size: .8rem; color: #7a6e6a; }
/* ─── 4K CINEMATIC ─────────────────────────────────── */
.section-4k {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.section-4k__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-4k__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-4k__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,8,1) 0%, transparent 18%),
    linear-gradient(0deg, rgba(10,8,8,1) 0%, rgba(10,8,8,.7) 35%, rgba(10,8,8,.1) 70%, transparent 100%),
    linear-gradient(90deg, rgba(10,8,8,.6) 0%, transparent 60%);
}
.section-4k__content {
  position: relative;
  z-index: 1;
  padding: 60px 6vw 70px;
  max-width: 700px;
}
.section-4k__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,0,.15);
  border: 1px solid rgba(255,77,0,.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ff8040;
  margin-bottom: 1.2rem;
}
.section-4k__title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}
.section-4k__title em {
  font-style: normal;
  color: #ff4d00;
}
.section-4k__sub {
  font-size: .95rem;
  color: rgba(240,236,232,.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.section-4k__features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.section-4k__feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(240,236,232,.8);
  font-weight: 500;
}
.section-4k__feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4d00;
  flex-shrink: 0;
}
.section-4k__resolution {
  position: absolute;
  top: 36px; right: 5vw;
  z-index: 1;
  text-align: right;
}
.section-4k__res-num {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 1;
  background: linear-gradient(135deg, rgba(255,77,0,.9), rgba(255,128,64,.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-4k__res-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  text-align: right;
  margin-top: -8px;
}
.section-4k__channels {
  position: absolute;
  top: 36px;
  left: 6vw;
  transform: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.section-4k__channels-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.section-4k__channels-logos {
  display: flex;
  gap: 8px;
  align-items: center;
}
.section-4k__ch-tile {
  width: 140px;
  height: 70px;
  background: rgba(10,8,8,.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.section-4k__ch-tile:hover {
  background: rgba(255,77,0,.12);
  border-color: rgba(255,77,0,.3);
  transform: translateY(-2px);
}
.section-4k__ch-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}
/* ─── CHANNELS GRID ─────────────────────────────────── */
.channels-section { padding: 80px 4vw; }
.channels-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.channels-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.channels-tab {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: .78rem;
  font-weight: 600;
  color: #7a6e6a;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  letter-spacing: .3px;
}
.channels-tab:hover {
  background: rgba(255,77,0,.08);
  border-color: rgba(255,77,0,.2);
  color: #f0ece8;
}
.channels-tab.active {
  background: rgba(255,77,0,.12);
  border-color: rgba(255,77,0,.4);
  color: #ff8040;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.channels-grid__panel { display: none; }
.channels-grid__panel.active {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  animation: fadeInGrid .25s ease;
}
@keyframes fadeInGrid {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ch-tile {
  background: #130e0d;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: background .2s, border-color .2s, transform .2s;
}
.ch-tile:hover {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.25);
  transform: translateY(-3px);
}
.ch-tile img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: filter .2s;
}
.ch-tile:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.channels-footer { text-align: center; }
.ch-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  transition: background .2s, border-color .2s, transform .2s;
}
.ch-tile:hover {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.25);
  transform: translateY(-3px);
}
.ch-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: transform .2s;
}
.ch-tile:hover img {
  transform: scale(1.08);
}
/* ─── DEVICES ─────────────────────────────────── */
.devices-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 16px;
  margin-top: 60px;
  align-items: start;
}
.device-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #110d0c;
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.device-card:hover {
  border-color: rgba(255,77,0,.25);
  transform: translateY(-4px);
}
.device-card__visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.device-card__visual::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(255,77,0,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.device-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .4s ease;
}
.device-card:hover .device-card__img {
  transform: translateY(-6px) scale(1.03);
}
.device-card__body {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.device-card__app {
  display: inline-flex;
  align-items: center;
  background: rgba(255,77,0,.1);
  border: 1px solid rgba(255,77,0,.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .65rem;
  font-weight: 700;
  color: #ff8040;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.device-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 6px;
  line-height: 1.2;
}
.device-card__sub {
  font-size: .82rem;
  color: rgba(240,236,232,.55);
  line-height: 1.5;
}
.final-cta__sub {
  text-align: center;
}
/* ── Devices imgs ── */
.section-devices {
  min-height: 580px;
}
.section-devices__content {
  max-width: 860px;
}
.devices-imgs {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 36px;
}
.devices-imgs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.devices-imgs__item img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.5));
  transition: transform .4s ease;
}
.devices-imgs__item:hover img {
  transform: translateY(-8px);
}
.devices-imgs__item--featured img {
  max-width: 340px;
  filter: drop-shadow(0 20px 40px rgba(255,77,0,.2)) drop-shadow(0 16px 32px rgba(0,0,0,.5));
}
.devices-imgs__item span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.devices-imgs__item--featured span {
  color: rgba(255,128,64,.8);
}
/* ── Devices imgs ── */
.section-devices {
  min-height: 560px;
  align-items: center;
}
.section-devices__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
  padding: 80px 6vw;
  width: 100%;
}
.section-devices__content {
  padding: 0 !important;
}
.devices-imgs {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.devices-imgs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.devices-imgs__item img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.5));
  transition: transform .4s ease;
}
.devices-imgs__item:hover img {
  transform: translateY(-8px);
}
.devices-imgs__item--featured img {
  max-width: 340px;
  filter: drop-shadow(0 20px 40px rgba(255,77,0,.2)) drop-shadow(0 16px 32px rgba(0,0,0,.5));
}
.devices-imgs__item span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.devices-imgs__item--featured span {
  color: rgba(255,128,64,.8);
  font-size: 1.2rem;
}
.devices-single-img {
  width: 100%;
  max-width: 720px;       /* mai mare */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.6));
  margin-top: -40px;      /* mai sus */
  margin-left: auto;      /* mai în dreapta */
  display: block;
}
.devices-single-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 720px;
  margin-top: -40px;
  margin-left: auto;
  display: block;
}
.devices-single-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.6));
}
.devices-label {
  position: absolute;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.devices-label--featured {
  color: rgba(255,128,64,.8);
  font-size: .85rem;
}
.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__actions .btn {
  flex: 0 0 auto;
  justify-content: center;
  white-space: nowrap;
  padding: 8px 16px;  /* era 15px 32px din btn-lg */
  font-size: .78rem;   /* era 1rem */
}
/* =========================
   RESET & BASE
   ========================= */
*, *::before, *::after { box-sizing: border-box; }

/* =========================
   HEADER WRAPPER
   ========================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 4vw;
  background: rgba(10, 8, 8, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(10, 8, 8, 0.95);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

/* =========================
   INNER LAYOUT
   ========================= */
.site-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 32px;
}

/* =========================
   LOGO
   ========================= */
.site-header__logo {
  flex: 0 0 auto;
  line-height: 1;
  text-decoration: none;
}

.site-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* =========================
   NAV
   ========================= */
.site-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav-item {
  position: relative;
}

.site-header__nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(240, 236, 232, 0.75);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  display: block;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
  letter-spacing: .2px;
}

.site-header__nav-link:hover,
.site-header__nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-header__nav-link.active {
  color: #ff8040;
}

/* =========================
   DIVIDER
   ========================= */
.site-header__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 8px;
  flex-shrink: 0;
}

/* =========================
   CTA BUTTONS
   ========================= */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.site-header__btn {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 10px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
  letter-spacing: .2px;
  cursor: pointer;
  border: none;
  background: none;
}

/* Login / Contul meu — ghost */
.site-header__btn--ghost {
  color: rgba(240, 236, 232, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.site-header__btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

/* Abonează-te — primary portocaliu */
.site-header__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #ff4d00, #ff7a30);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(255, 77, 0, 0.3);
}
.site-header__btn--primary:hover {
  background: linear-gradient(135deg, #ff6020, #ff8f50);
  box-shadow: 0 6px 24px rgba(255, 77, 0, 0.45);
  transform: translateY(-1px);
}

/* =========================
   LANG SWITCH
   ========================= */
.site-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.site-header__lang-link {
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: .5px;
  transition: color .2s;
}
.site-header__lang-link:hover,
.site-header__lang-link.is-active {
  color: #fff;
}

.site-header__lang-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: .7rem;
}

/* =========================
   HAMBURGER (mobil)
   ========================= */
.site-header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 991px) {
  .site-header {
    height: 60px;
    padding: 0 20px;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(10, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    display: none;
  }

  .site-header__nav.open {
    display: flex;
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-header__nav-link {
    padding: 12px 14px;
    font-size: .9rem;
  }

  .site-header__divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }

  .site-header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 8px;
  }

  .site-header__btn {
    justify-content: center;
    padding: 12px 18px;
    font-size: .85rem;
  }

  .site-header__lang {
    justify-content: center;
    margin-top: 8px;
  }
}

@media (min-width: 992px) {
  /* Body padding ca să nu fie conținut sub header fix */
  body { padding-top: 68px; }
}
/* =========================
   FOOTER V2 – rearanjat
   ========================= */
.footer.footer--v2{
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 54px 0 36px;
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
}

.footer.footer--v2 .container{ max-width: 1200px; }

.footer-grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 42px;
  align-items: start;
}

/* Brand block */
.footer-brand__logo{ display:inline-block; }
.footer-brand__logo img{ display:block; }

.footer-brand__desc{
  margin: 14px 0 18px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

/* =========================
   QUICK CONTACT (lipsea)
   ========================= */
.footer-quick{
  margin: 14px 0 18px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.footer-quick__title{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  opacity: .9;
  margin-bottom: 12px;
}

.footer-quick__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 10px;
  border-radius:14px;
  text-decoration:none;
  color: rgba(255,255,255,0.82);
  transition: background .2s ease, transform .2s ease, color .2s ease;
}

.footer-quick__item + .footer-quick__item{ margin-top: 10px; }

.footer-quick__item:hover{
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
  color:#ffb347;
}

.footer-quick__icon{
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  color: rgba(255,255,255,0.85);
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.footer-quick__item:hover .footer-quick__icon{
  border-color: rgba(255,179,71,0.45);
  box-shadow: 0 0 0 6px rgba(255,179,71,0.10);
  color:#ffb347;
}

.footer-quick__text{ display:grid; gap:2px; }
.footer-quick__label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25px;
  opacity: .75;
}
.footer-quick__value{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
}

/* Social */
.footer-social{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 6px 0 18px;
}

.footer-social__label{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .35px;
  text-transform: uppercase;
  opacity: .65;
  margin-right: 6px;
}

.footer-social__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.footer-social__btn:hover{
  transform: translateY(-1px);
  color: #ffb347;
  border-color: rgba(255,179,71,0.45);
  box-shadow: 0 0 0 6px rgba(255,179,71,0.10);
}

/* ISO badge */
.footer-iso{
  display:inline-block;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 10px 12px;
}
.footer-iso img{
  display:block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

/* Link columns */
.footer-title{
  margin: 6px 0 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  opacity: .9;
}

.footer-col{
  position: relative;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.footer-links{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap: 14px;
}

/* Link style – premium underline */
.footer-links a{
  position:relative;
  display:inline-block;
  font-size: 15px;
  font-weight: 650;
  color: rgba(255,255,255,0.84);
  text-decoration:none;
  padding: 2px 0;
  transition: color .25s ease, text-shadow .25s ease;
}

.footer-links a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  width:0;
  height:2px;
  background: linear-gradient(90deg,#ff8a00,#ffb347);
  transform: translateX(-50%);
  transition: width .35s ease;
  border-radius: 2px;
}

.footer-links a:hover{
  color:#ffb347;
  text-shadow: 0 0 8px rgba(255,179,71,.22);
}
.footer-links a:hover::after{ width:100%; }

/* Responsive */
@media (max-width: 991px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-col{
    border-left: none;
    padding-left: 0;
  }
  .footer-title{ margin-top: 10px; }
}

/* =========================
   SUB-FOOTER V2
   ========================= */
.sub-footer.sub-footer--v2{
  background: rgba(0,0,0,0.68);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 5;
}

.sub-footer.sub-footer--v2 .container{ max-width: 1200px; }

.sub-footer__content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
}

.sub-footer__left strong{
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.sub-footer__right{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.sub-footer__right a{
  color: rgba(255,255,255,0.78);
  text-decoration:none;
  font-weight: 700;
  transition: color .25s ease, text-shadow .25s ease;
  position: relative;
  z-index: 10;
}
.sub-footer__right a:hover{
  color:#ffb347;
  text-shadow: 0 0 6px rgba(255,179,71,.22);
}

.sub-footer__sep{
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}

.sub-footer__sep--spaced{ margin: 0 4px; }

/* Language pill */
.sub-footer__lang{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  position: relative;
  z-index: 11;
}

.sub-footer__lang-link{
  color: rgba(255,255,255,0.78);
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .3px;
  transition: color .25s ease, text-shadow .25s ease;
  position: relative;
  z-index: 12;
}
.sub-footer__lang-link:hover{
  color:#ffb347;
  text-shadow: 0 0 6px rgba(255,179,71,.20);
}

.sub-footer__lang-active{
  color: rgba(255,255,255,0.95);
  font-weight: 900;
  letter-spacing: .3px;
}

/* Responsive */
@media (max-width: 768px){
  .sub-footer__content{
    flex-direction: column;
    text-align:center;
    gap: 8px;
  }
  .sub-footer__right{ justify-content:center; }
}
.footer-iso{
  display:inline-block;
  text-decoration:none;
  padding: 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  max-width: 260px;
}

.footer-iso:hover{
  transform: translateY(-1px);
  border-color: rgba(255,179,71,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 0 6px rgba(255,179,71,0.08);
}

.footer-iso__label{
  display:block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  opacity: .85;
  margin-bottom: 10px;
}

.footer-iso img{
  display:block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
  padding: 10px;
}

.footer-iso__hint{
  display:block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}
/* =========================
   ISO BADGE – SUB FOOTER
   ========================= */

.sub-footer__iso{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;                     /* IDENTIC cu language pill */
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  overflow: hidden;                 /* CROP MAGIC */
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.sub-footer__iso img{
  height: 52px;                     /* mai mare decât containerul */
  width: auto;
  object-fit: cover;
  transform: translateY(-6px);      /* mutăm crop-ul în sus */
  filter: contrast(1.05) saturate(0.9);
}

/* Hover premium */
.sub-footer__iso:hover{
  transform: translateY(-1px);
  border-color: rgba(255,179,71,0.45);
  box-shadow: 0 0 0 6px rgba(255,179,71,0.08);
}

/* Responsive – pe mobil mai mic */
@media (max-width: 768px){
  .sub-footer__iso{
    height: 32px;
  }
  .sub-footer__iso img{
    height: 46px;
    transform: translateY(-5px);
  }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0a0808;
  --bg-2:       #110d0c;
  --bg-card:    #160f0e;
  --border:     rgba(255,255,255,0.07);
  --accent:     #ff4d00;
  --accent-2:   #ff8040;
  --text:       #f0ece8;
  --muted:      #7a6e6a;
  --r:          16px;
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── NOISE OVERLAY ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── NAV ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 72px;
  background: linear-gradient(180deg, rgba(10,8,8,.98) 0%, rgba(10,8,8,0) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.nav__logo-dot { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .3px;
  transition: color .2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  transition: all .22s;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 28px rgba(255,77,0,.35);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 0 40px rgba(255,77,0,.55);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}
.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  overflow: hidden;
  padding: 120px 4vw 60px;
  gap: 20px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 8% 50%, rgba(255,77,0,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,0,.1);
  border: 1px solid rgba(255,77,0,.22);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.4rem;
  animation: fadeUp .8s ease both;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,100%{opacity:1} 50%{opacity:.3}
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.8px;
  margin-bottom: 1.1rem;
  animation: fadeUp .8s .1s ease both;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: .93rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2rem;
  animation: fadeUp .8s .2s ease both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}

.hero__note {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: .9rem;
  opacity: .7;
  animation: fadeUp .8s .4s ease both;
}

/* ─── HERO CHANNEL GRID ─────────────────────────────────── */
.hero__grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 408px;
  overflow: hidden;
  mask-image: linear-gradient(90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%);
}

/* Each row scrolls horizontally */
.hero__row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-shrink: 0;
}
.hero__row--a { animation: rowLeft  28s linear infinite; }
.hero__row--b { animation: rowRight 34s linear infinite; }
.hero__row--c { animation: rowLeft  24s linear infinite; }
.hero__row--d { animation: rowRight 30s linear infinite; }

@keyframes rowLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes rowRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.hero__tile {
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 90px;
  padding: 14px 20px;
  transition: border-color .3s, background .3s;
}
.hero__tile:hover {
  border-color: rgba(255,77,0,.4);
  background: rgba(255,77,0,.07);
}

.hero__tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(.7) saturate(.4);
  transition: filter .3s, transform .3s;
  display: block;
}
.hero__tile:hover img {
  filter: brightness(1.05) saturate(1);
  transform: scale(1.06);
}

/* Alert banner */
.alert-banner {
  position: relative;
  z-index: 2;
  background: rgba(255,77,0,.08);
  border: 1px solid rgba(255,77,0,.2);
  border-radius: var(--r);
  padding: 14px 24px;
  margin: 0 4vw;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  line-height: 1.6;
}
.alert-banner__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.alert-banner strong { color: var(--accent-2); }

/* ─── SECTION BASE ─────────────────────────────────── */
.section {
  padding: 100px 4vw;
}
.section--alt { background: var(--bg-2); }

.section-label {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}

/* ─── COUNTDOWN ─────────────────────────────────── */
.countdown-strip {
  background: linear-gradient(90deg, #1a0800, #200e00, #1a0800);
  border-top: 1px solid rgba(255,77,0,.2);
  border-bottom: 1px solid rgba(255,77,0,.2);
  padding: 18px 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
}
.countdown-timer {
  display: flex;
  gap: 6px;
  align-items: center;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.countdown-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ff4d00, #ff8040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 48px;
  text-align: center;
  letter-spacing: -1px;
}
.countdown-lbl {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 600;
}
.countdown-sep {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,77,0,.4);
  margin-top: -8px;
}

/* ─── PLANS ─────────────────────────────────── */
.plans {
  padding: 100px 4vw;
}
.plans__header { margin-bottom: 64px; text-align: center; }
.plans__header .section-desc {
  margin: 0 auto;
  text-align: center;
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* ── base card ── */
.plan {
  background: #130e0d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 44px 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.plan:hover {
  border-color: rgba(255,77,0,.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

/* ── featured card ── */
.plan--featured {
  background: #180f0a;
  border-color: rgba(255,77,0,.35);
  box-shadow: 0 0 0 1px rgba(255,77,0,.15), 0 24px 60px rgba(255,77,0,.08);
}
.plan--featured:hover {
  border-color: rgba(255,77,0,.6);
  box-shadow: 0 0 0 1px rgba(255,77,0,.3), 0 32px 80px rgba(255,77,0,.15);
}

.plan__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

/* ── plan header area ── */
.plan__tier {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.plan--featured .plan__tier { color: var(--accent-2); }

/* ── price block ── */
.plan__price-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.plan__price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}
.plan__brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}
.plan__brand-logo {
  width: 130px;
  opacity: .9;
}
.plan__brand-name {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.plan--featured .plan__brand-name {
  color: var(--accent-2);
}
.plan__price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
  margin-bottom: 6px;
}
.plan__currency {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
.plan__amount {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--text);
  line-height: 1;
}
.plan__decimals {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 8px;
}
.plan__period {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
}
.plan__vat {
  font-size: .7rem;
  color: var(--muted);
  opacity: .5;
  margin-top: 2px;
}

/* ── channel count ── */
.plan__channels-block {
  margin-bottom: 24px;
}
.plan__channels-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent-2);
  line-height: 1;
}
.plan--featured .plan__channels-num { color: var(--accent); }
.plan__channels-text {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── channel logo tiles in plan ── */
.plan__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 28px;
}
.plan__logo-tile {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  transition: background .2s, border-color .2s;
  overflow: hidden;
}
.plan__logo-tile:hover {
  background: rgba(255,77,0,.08);
  border-color: rgba(255,77,0,.2);
}
.plan__logo-tile img {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(.75) saturate(.5);
  transition: filter .2s;
}
.plan__logo-tile:hover img { filter: brightness(1) saturate(1); }
.plan__logo-more {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.15);
  font-size: .65rem;
  font-weight: 800;
  color: var(--accent-2);
  text-align: center;
  line-height: 1.2;
}

/* ── features list ── */
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.plan__feature {
  font-size: .85rem;
  color: #a09890;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.plan__feature-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,77,0,.12);
  border: 1px solid rgba(255,77,0,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .6rem;
  color: var(--accent);
}

/* ── CTA ── */
.plan__cta {
  width: 100%;
  justify-content: center;
  padding: 15px;
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .2px;
}

/* old chip (kept for ticker section) */
.chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px 4px 5px;
  font-size: .7rem;
  color: #9a8e8a;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}
.chip:hover {
  background: rgba(255,77,0,.08);
  border-color: rgba(255,77,0,.25);
}
.chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 3px;
}
.chip--more {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.15);
  color: var(--accent-2);
  font-weight: 700;
}

.plan__cta {
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: 12px;
  font-size: .9rem;
}

/* ─── FEATURES 4K ─────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split--rev { direction: rtl; }
.feature-split--rev > * { direction: ltr; }

.feature-split__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #111;
}
.feature-split__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.feature-split__visual:hover img { transform: scale(1.04); }
.feature-split__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  pointer-events: none;
}

.feature-split__badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(10,8,8,.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  backdrop-filter: blur(10px);
}
.feature-split__badge span { color: var(--accent); }

/* ─── DISCOUNT BANNER ─────────────────────────────────── */
.discount-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(120deg, #1e0c04 0%, #160808 60%, #0d0505 100%);
  border: 1px solid rgba(255,77,0,.15);
}
.discount-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,.15) 0%, transparent 70%);
  pointer-events: none;
}
.discount-banner__img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  object-fit: cover;
  opacity: .12;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.8) 40%);
}
.discount-banner__content { position: relative; z-index: 1; }
.discount-banner__pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.discount-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.discount-banner__title em { font-style: normal; color: var(--accent); }
.discount-banner__sub {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 1.5rem;
}
.discount-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── DEVICES ─────────────────────────────────── */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.device-card:hover {
  border-color: rgba(255,77,0,.25);
  background: #160f0e;
}
.device-card__img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 24px;
}
.device-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.device-card__sub {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}
.device-card__app {
  display: inline-block;
  margin-top: 14px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: .3px;
}

/* ─── CHANNELS TICKER ─────────────────────────────────── */
.ticker-section { padding: 60px 0; overflow: hidden; }
.ticker-section__header { text-align: center; padding: 0 4vw; margin-bottom: 40px; }

.ticker-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 108px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: background .2s, border-color .2s;
}
.ticker-item:hover {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.25);
}
.ticker-item img {
  max-width: 80px;
  max-height: 40px;
  object-fit: contain;
  filter: brightness(.75) saturate(.5);
  transition: filter .2s, transform .2s;
}
.ticker-item:hover img {
  filter: brightness(1) saturate(1);
  transform: scale(1.08);
}

/* ─── CTA FINAL ─────────────────────────────────── */
.final-cta {
  padding: 120px 4vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,77,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  position: relative;
}
.final-cta__title em { font-style: normal; color: var(--accent); }
.final-cta__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.final-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
}
.footer__brand span { color: var(--accent); }
.footer__copy { font-size: .78rem; color: var(--muted); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: .78rem; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--text); }

/* ─── KEYFRAMES ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__grid { display: none; }
  .plans__grid { grid-template-columns: 1fr; background: transparent; gap: 16px; }
  .plan { border-radius: 20px; border: 1px solid var(--border); }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split--rev { direction: ltr; }
  .devices-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }

  /* Discount banner */
  .discount-banner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }

  /* 4K */
  .section-4k__channels,
  .section-4k__resolution { display: none; }
  .section-4k__content {
    padding: 40px 24px 36px;
    max-width: 100%;
  }
  .section-4k__title { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  /* Devices */
  .section-devices__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 36px;
  }
  .devices-single-wrap {
    margin-left: 0;
    max-width: 100%;
    margin-top: 0;
  }
  .devices-label { display: none; }
  /* 4K — ascunde logo-urile complet */
.section-4k__channels {
  display: none !important;
}

/* Discount banner — forțează o singură coloană */
.discount-banner {
  display: flex !important;
  flex-direction: column !important;
  padding: 36px 24px !important;
  gap: 32px !important;
}

/* Barele de progres să nu iasă din container */
.months-visual {
  width: 100%;
}
.prog-bar {
  width: 100%;
}
.prog-bar__paid,
.prog-bar__free {
  font-size: .65rem;
}
.promo-discount-visual {
  flex-direction: column;
  gap: 10px;
}
.promo-pkg {
  width: 100%;
}
}

@media (max-width: 600px) {
  .hero { padding: 100px 6vw 60px; }
  .section { padding: 70px 6vw; }
  .plans { padding: 70px 6vw; }
  .final-cta { padding: 80px 6vw; }
  .footer { flex-direction: column; text-align: center; }
}
.plan--premium .plan__tier { color: var(--accent); }
/* ─── DISCOUNT BANNER ─────────────────────────────────── */
.discount-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, #1a0a04 0%, #130808 50%, #0e0606 100%);
  border: 1px solid rgba(255,77,0,.15);
}
.discount-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.discount-banner__content { position: relative; z-index: 1; }
.discount-banner__pill {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.discount-banner__title {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.discount-banner__title em { font-style: normal; color: var(--accent-color); }
.discount-banner__sub {
  font-size: 1.2rem;
  color: #7a6e6a;
  line-height: 1.4;
  max-width: 400px;
  margin-bottom: 1.8rem;
}
.discount-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── progress bars visual ── */
.months-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prog-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prog-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.prog-item__plan { font-size: .88rem; color: #7a6e6a; }
.prog-item__plan strong { color: #f0ece8; font-weight: 700; }
.prog-item__saving {
  font-size: .72rem;
  font-weight: 700;
  color: #ff8040;
  letter-spacing: .3px;
}
.prog-bar {
  display: flex;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  gap: 3px;
}
.prog-bar__paid {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  color: #f0ece8;
}
.prog-bar__free {
  background: linear-gradient(90deg, #ff4d00, #ff7a30);
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 20px rgba(255,77,0,.4);
  animation: freePulse 2.5s ease-in-out infinite alternate;
}
@keyframes freePulse {
  0%   { box-shadow: 0 0 12px rgba(255,77,0,.3); }
  100% { box-shadow: 0 0 28px rgba(255,77,0,.65); }
}
.prog-item__labels {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  color: #7a6e6a;
  opacity: .7;
}
.months-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 0;
}
.months-saving {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.months-saving__badge {
  background: rgba(255,77,0,.12);
  border: 1px solid rgba(255,77,0,.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: #ff8040;
}
.months-saving__text { font-size: .8rem; color: #7a6e6a; }
/* ─── 4K CINEMATIC ─────────────────────────────────── */
.section-4k {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.section-4k__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-4k__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-4k__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,8,1) 0%, transparent 18%),
    linear-gradient(0deg, rgba(10,8,8,1) 0%, rgba(10,8,8,.7) 35%, rgba(10,8,8,.1) 70%, transparent 100%),
    linear-gradient(90deg, rgba(10,8,8,.6) 0%, transparent 60%);
}
.section-4k__content {
  position: relative;
  z-index: 1;
  padding: 60px 6vw 70px;
  max-width: 700px;
}
.section-4k__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,0,.15);
  border: 1px solid rgba(255,77,0,.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ff8040;
  margin-bottom: 1.2rem;
}
.section-4k__title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}
.section-4k__title em {
  font-style: normal;
  color: #ff4d00;
}
.section-4k__sub {
  font-size: .95rem;
  color: rgba(240,236,232,.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.section-4k__features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.section-4k__feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(240,236,232,.8);
  font-weight: 500;
}
.section-4k__feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4d00;
  flex-shrink: 0;
}
.section-4k__resolution {
  position: absolute;
  top: 36px; right: 5vw;
  z-index: 1;
  text-align: right;
}
.section-4k__res-num {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 1;
  background: linear-gradient(135deg, rgba(255,77,0,.9), rgba(255,128,64,.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-4k__res-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  text-align: right;
  margin-top: -8px;
}
.section-4k__channels {
  position: absolute;
  top: 36px;
  left: 6vw;
  transform: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.section-4k__channels-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.section-4k__channels-logos {
  display: flex;
  gap: 8px;
  align-items: center;
}
.section-4k__ch-tile {
  width: 140px;
  height: 70px;
  background: rgba(10,8,8,.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.section-4k__ch-tile:hover {
  background: rgba(255,77,0,.12);
  border-color: rgba(255,77,0,.3);
  transform: translateY(-2px);
}
.section-4k__ch-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}
/* ─── CHANNELS GRID ─────────────────────────────────── */
.channels-section { padding: 80px 4vw; }
.channels-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.channels-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.channels-tab {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: .78rem;
  font-weight: 600;
  color: #7a6e6a;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  letter-spacing: .3px;
}
.channels-tab:hover {
  background: rgba(255,77,0,.08);
  border-color: rgba(255,77,0,.2);
  color: #f0ece8;
}
.channels-tab.active {
  background: rgba(255,77,0,.12);
  border-color: rgba(255,77,0,.4);
  color: #ff8040;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.channels-grid__panel { display: none; }
.channels-grid__panel.active {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  animation: fadeInGrid .25s ease;
}
@keyframes fadeInGrid {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ch-tile {
  background: #130e0d;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: background .2s, border-color .2s, transform .2s;
}
.ch-tile:hover {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.25);
  transform: translateY(-3px);
}
.ch-tile img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: filter .2s;
}
.ch-tile:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.channels-footer { text-align: center; }
.ch-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  transition: background .2s, border-color .2s, transform .2s;
}
.ch-tile:hover {
  background: rgba(255,77,0,.07);
  border-color: rgba(255,77,0,.25);
  transform: translateY(-3px);
}
.ch-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: transform .2s;
}
.ch-tile:hover img {
  transform: scale(1.08);
}
/* ─── DEVICES ─────────────────────────────────── */
.devices-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 16px;
  margin-top: 60px;
  align-items: start;
}
.device-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #110d0c;
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.device-card:hover {
  border-color: rgba(255,77,0,.25);
  transform: translateY(-4px);
}
.device-card__visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.device-card__visual::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(255,77,0,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.device-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .4s ease;
}
.device-card:hover .device-card__img {
  transform: translateY(-6px) scale(1.03);
}
.device-card__body {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.device-card__app {
  display: inline-flex;
  align-items: center;
  background: rgba(255,77,0,.1);
  border: 1px solid rgba(255,77,0,.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .65rem;
  font-weight: 700;
  color: #ff8040;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.device-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 6px;
  line-height: 1.2;
}
.device-card__sub {
  font-size: .82rem;
  color: rgba(240,236,232,.55);
  line-height: 1.5;
}
.final-cta__sub {
  text-align: center;
}
/* ── Devices imgs ── */
.section-devices {
  min-height: 580px;
}
.section-devices__content {
  max-width: 860px;
}
.devices-imgs {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 36px;
}
.devices-imgs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.devices-imgs__item img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.5));
  transition: transform .4s ease;
}
.devices-imgs__item:hover img {
  transform: translateY(-8px);
}
.devices-imgs__item--featured img {
  max-width: 340px;
  filter: drop-shadow(0 20px 40px rgba(255,77,0,.2)) drop-shadow(0 16px 32px rgba(0,0,0,.5));
}
.devices-imgs__item span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.devices-imgs__item--featured span {
  color: rgba(255,128,64,.8);
}
/* ── Devices imgs ── */
.section-devices {
  min-height: 560px;
  align-items: center;
}
.section-devices__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
  padding: 80px 6vw;
  width: 100%;
}
.section-devices__content {
  padding: 0 !important;
}
.devices-imgs {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.devices-imgs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.devices-imgs__item img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.5));
  transition: transform .4s ease;
}
.devices-imgs__item:hover img {
  transform: translateY(-8px);
}
.devices-imgs__item--featured img {
  max-width: 340px;
  filter: drop-shadow(0 20px 40px rgba(255,77,0,.2)) drop-shadow(0 16px 32px rgba(0,0,0,.5));
}
.devices-imgs__item span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.devices-imgs__item--featured span {
  color: rgba(255,128,64,.8);
  font-size: 1.2rem;
}
.devices-single-img {
  width: 100%;
  max-width: 720px;       /* mai mare */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.6));
  margin-top: -40px;      /* mai sus */
  margin-left: auto;      /* mai în dreapta */
  display: block;
}
.devices-single-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 720px;
  margin-top: -40px;
  margin-left: auto;
  display: block;
}
.devices-single-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.6));
}
.devices-label {
  position: absolute;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.devices-label--featured {
  color: rgba(255,128,64,.8);
  font-size: .85rem;
}
.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__actions .btn {
  flex: 0 0 auto;
  justify-content: center;
  white-space: nowrap;
  padding: 8px 16px;  /* era 15px 32px din btn-lg */
  font-size: .78rem;   /* era 1rem */
}
.promo-discount-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0 8px;
}
.promo-discount-visual__before,
.promo-discount-visual__after {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.promo-discount-visual__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.promo-discount-visual__price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.promo-discount-visual__price span {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255,255,255,.5);
}
.promo-discount-visual__price--crossed {
  color: rgba(255,255,255,.25);
  text-decoration: line-through;
  text-decoration-color: rgba(255,77,0,.5);
}
.promo-discount-visual__price--promo {
  color: #ff8040;
}
.promo-discount-visual__arrow {
  font-size: 1.4rem;
  color: rgba(255,77,0,.5);
  margin-top: 16px;
}
#promoBarLeftLabel {
  white-space: nowrap;
  overflow: visible;
  font-size: .68rem;
}
.promo-discount-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0 8px;
}
.promo-pkg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
.promo-pkg--featured {
  background: rgba(255,77,0,.08);
  border-color: rgba(255,77,0,.25);
}
.promo-pkg__name {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}
.promo-pkg--featured .promo-pkg__name {
  color: rgba(255,128,64,.7);
}
.promo-pkg {
  background: rgba(10,8,8,.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 16px 20px;
}
.promo-pkg--featured {
  background: rgba(255,77,0,.12);
  border-color: rgba(255,77,0,.3);
}
.promo-discount-visual__price--promo {
  font-size: 3.4rem;  /* mărește după gust */
}

