/* ═══════════════════════════════════════════════
   360PLUS TEAM — Premium IPTV
   Brand: #F47A20 / #1B1B1B / #F2E7DC / #FAFAF8 / #D9D9D9
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --orange: #F47A20;
  --orange-light: #FF9240;
  --orange-dark: #C8600F;
  --black: #1B1B1B;
  --black-deep: #0E0E0E;
  --beige: #F2E7DC;
  --white: #FAFAF8;
  --gray: #D9D9D9;
  --gray-mid: #7A7A7A;
  --surface: #242424;
  --surface2: #2D2D2D;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); }
::selection { background: var(--orange); color: var(--black); }

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

.bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.01em; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scan { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ringPulse {
  0% { box-shadow: 0 0 0 0 rgba(244, 122, 32, 0.4); }
  70% { box-shadow: 0 0 0 18px rgba(244, 122, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 122, 32, 0); }
}

.anim-up { animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.float { animation: float 5s ease-in-out infinite; }
.live-dot { animation: pulse 1.6s ease-in-out infinite; }
.ring-pulse { animation: ringPulse 2.4s infinite; }

/* ─── LAYOUT ─────────────────────────────────── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.grid-bg {
  background-image:
    linear-gradient(rgba(244, 122, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 122, 32, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
}

.hero-glow {
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(244, 122, 32, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 70%, rgba(244, 122, 32, 0.12) 0%, transparent 70%);
}

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary {
  background: var(--orange);
  color: var(--black);
  border: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 28px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(244, 122, 32, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 27px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(244, 122, 32, 0.35);
  background: rgba(244, 122, 32, 0.08);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
}

.marker {
  color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card:hover {
  border-color: rgba(244, 122, 32, 0.4);
  transform: translateY(-4px);
}

/* ─── TICKER BAR ─────────────────────────────── */
.ticker {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 0;
  font-size: 12px;
  color: var(--gray-mid);
}
.ticker-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ticker-left { display: flex; align-items: center; gap: 10px; }
.ticker-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.ticker-right { display: flex; gap: 18px; }
.ticker-right a { color: var(--gray); display: flex; align-items: center; gap: 6px; }

/* ─── HEADER ─────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(27, 27, 27, 0.92);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-mark {
  width: 38px; height: 38px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark::before {
  content: ""; position: absolute; inset: 0;
  background: var(--orange); transform: rotate(45deg);
}
.logo-num {
  position: relative; color: var(--black);
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; line-height: 1;
}
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 22px; line-height: 1; letter-spacing: 0.04em; }
.logo-text span { color: var(--orange); }
.logo-sub { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--gray-mid); letter-spacing: 0.25em; margin-top: 2px; }

.nav-desktop { display: flex; gap: 36px; align-items: center; }
.nav-link {
  color: var(--gray);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  padding: 8px 0;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--orange);
}

.header-right { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  position: relative;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 130px;
  z-index: 60;
  display: none;
}
.lang-menu.open { display: block; }
.lang-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lang-menu a:hover, .lang-menu a.active { color: var(--orange); }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ─── HERO ───────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 60px 0 80px; }
.hero-bg-glow, .hero-bg-grid { position: absolute; inset: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-title { font-size: clamp(48px, 7vw, 96px); line-height: 0.92; letter-spacing: -0.005em; margin-bottom: 28px; }
.hero-title .accent { color: var(--orange); }
.hero-sub { color: var(--gray); font-size: 17px; line-height: 1.6; max-width: 540px; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
}
.stat { padding-left: 18px; border-right: 1px solid rgba(255, 255, 255, 0.06); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--orange); line-height: 1; }
.stat-label { font-size: 11px; color: var(--gray-mid); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* HERO right visual */
.hero-visual { position: relative; height: 560px; }
.tv-mock {
  position: absolute; top: 30px; right: 0; width: 100%; height: 340px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--black-deep) 100%);
  border: 1px solid rgba(244, 122, 32, 0.2);
  overflow: hidden;
}
.tv-mock-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(244, 122, 32, 0.2) 0%, transparent 60%);
}
.tv-live-tag {
  position: absolute; top: 14px; left: 14px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0, 0, 0, 0.6); padding: 5px 10px; z-index: 3;
}
.tv-live-tag .ticker-dot { background: #ff3b3b; }
.tv-live-tag span { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.15em; }
.tv-score {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  background: rgba(0, 0, 0, 0.7); padding: 12px;
  display: flex; justify-content: space-between; align-items: center;
  border-left: 3px solid var(--orange); z-index: 3;
}
.tv-score-team { font-size: 13px; font-weight: 700; }
.tv-score-time { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--gray-mid); margin-top: 2px; }
.tv-score-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--orange); }

.float-chip {
  position: absolute; top: 0; left: 30px;
  background: var(--beige); color: var(--black);
  padding: 12px 18px; border-left: 3px solid var(--orange);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.float-chip-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.15em; color: var(--orange-dark); }
.float-chip-text { font-size: 14px; font-weight: 700; margin-top: 4px; }

.float-stamp {
  position: absolute; bottom: 80px; right: 30px;
  background: var(--orange); color: var(--black);
  padding: 18px; width: 130px; height: 130px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  animation-delay: 1s;
}
.float-stamp-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; }
.float-stamp-label { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.15em; margin-top: 2px; }

.float-card {
  position: absolute; bottom: 0; left: 0;
  background: var(--surface); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px; min-width: 220px;
  animation-delay: 2s;
}
.float-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.float-card-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.15em; color: var(--gray-mid); }
.float-card-num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; line-height: 1; }

.scan-line { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.scan-line::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 122, 32, 0.06), transparent);
  animation: scan 6s linear infinite;
}

/* ─── MARQUEE ────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black-deep);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--gray-mid);
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 56px;
}
.marquee-item span { color: var(--orange); opacity: 0.5; }

/* ─── SECTIONS ─────────────────────────────────── */
.section { padding: 120px 0; }
.section-dark { background: var(--black-deep); }
.section-orange { background: var(--orange); color: var(--black); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: end;
}
.section-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 68px); line-height: 1; letter-spacing: -0.005em; }
.section-head p { color: var(--gray); font-size: 17px; line-height: 1.6; max-width: 540px; }

.section-head-center { text-align: center; margin-bottom: 60px; }
.section-head-center h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 68px); line-height: 1; margin-bottom: 16px; }
.section-head-center p { color: var(--gray); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.feature-card {
  padding: 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--surface);
  transition: all 0.3s;
}
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-child(n+4) { border-bottom: none; }
.feature-card:hover { background: var(--surface2); }
.feature-head { margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(244, 122, 32, 0.1);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244, 122, 32, 0.3);
}
.feature-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gray-mid); }
.feature-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; margin-bottom: 12px; line-height: 1.1; }
.feature-text { color: var(--gray-mid); font-size: 14px; line-height: 1.6; }

/* Country grid */
.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.country-card { padding: 28px; position: relative; }
.country-card .marker { position: absolute; top: 18px; right: 18px; }
.country-flag { font-size: 44px; margin-bottom: 16px; }
.country-name { font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 6px; }
.country-channels { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--orange); margin-bottom: 14px; letter-spacing: 0.1em; }
.country-text { color: var(--gray-mid); font-size: 13px; line-height: 1.5; }

/* Apps grid */
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.app-card { padding: 28px; display: flex; align-items: center; gap: 18px; }
.app-icon {
  width: 56px; height: 56px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-weight: 800; font-size: 22px;
  font-family: 'Bebas Neue', sans-serif;
}
.app-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.app-desc { color: var(--gray-mid); font-size: 12px; }

/* CTA strip */
.cta-strip {
  padding: 100px 0;
  background: var(--orange);
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(45deg, var(--black) 0, var(--black) 1px, transparent 1px, transparent 30px);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 72px); line-height: 0.95; margin-bottom: 18px; }
.cta-sub { font-size: 17px; opacity: 0.8; max-width: 560px; }
.cta-channels { display: flex; flex-direction: column; gap: 12px; }
.cta-channel {
  background: var(--black);
  color: var(--white);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600;
}
.cta-channel:nth-child(2) { background: rgba(0, 0, 0, 0.85); }
.cta-channel:nth-child(3) { background: rgba(0, 0, 0, 0.7); }

/* ─── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--black-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 80px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "360PLUS";
  position: absolute;
  bottom: -30px; left: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: min(20vw, 280px);
  color: rgba(244, 122, 32, 0.025);
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
}
.footer-brand p { color: var(--gray-mid); font-size: 13px; line-height: 1.6; margin-bottom: 24px; max-width: 320px; }
.footer-brand .domain { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--orange); letter-spacing: 0.15em; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-mid); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 20px; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--gray); font-size: 14px; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: var(--orange); }
.footer-contact a { display: flex; align-items: center; gap: 10px; color: var(--gray); font-size: 13px; margin-bottom: 12px; }
.footer-support {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-mid); letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  position: relative;
}
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-mid); letter-spacing: 0.1em;
}
.footer-payment { display: flex; gap: 18px; align-items: center; }
.footer-payment span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--gray-mid); letter-spacing: 0.15em;
}

/* ─── FLOATING WHATSAPP ───────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px rgba(244, 122, 32, 0.5);
  z-index: 100;
}

/* ─── PAGE HEADERS (for sub-pages) ────────────── */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.page-header-grid { position: absolute; inset: 0; }
.page-header-inner { max-width: 800px; margin: 0 auto; position: relative; padding: 0 24px; }
.page-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 7vw, 96px); line-height: 0.95; margin-bottom: 18px; }
.page-header p { color: var(--gray); font-size: 17px; }

.breadcrumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.breadcrumbs a { transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .current { color: var(--orange); }

/* ─── PRICING ─────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-card {
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}
.price-card:hover { border-color: rgba(244, 122, 32, 0.4); transform: translateY(-4px); }
.price-card.best {
  background: linear-gradient(160deg, #2a1d08 0%, #1f1505 100%);
  border: 1px solid var(--orange);
  box-shadow: 0 30px 80px rgba(244, 122, 32, 0.18);
}
.price-badge {
  position: absolute; top: -12px; left: 36px;
  padding: 5px 12px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.price-badge.popular { background: var(--surface2); color: var(--orange); border: 1px solid var(--orange); }
.price-badge.best { background: var(--orange); color: var(--black); }
.price-marker { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 18px; }
.price-name { font-family: 'Bebas Neue', sans-serif; font-size: 32px; margin-bottom: 18px; line-height: 1; }
.price-eur { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; margin-bottom: 24px; display: flex; align-items: baseline; gap: 8px; }
.price-card.best .price-eur { color: var(--orange); }
.price-permonth {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--gray-mid); letter-spacing: 0.1em;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.price-features { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; font-size: 13px; color: var(--gray);
}
.price-cta { width: 100%; justify-content: center; font-size: 12px; }

/* Payment notice */
.notice {
  background: linear-gradient(135deg, rgba(244, 122, 32, 0.08), rgba(244, 122, 32, 0.02));
  border: 1px solid var(--orange);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.notice-icon {
  width: 60px; height: 60px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.notice-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--orange); letter-spacing: 0.15em; margin-bottom: 8px; }
.notice h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 12px; line-height: 1.1; }
.notice p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ─── DEVICES ─────────────────────────────────── */
.devices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.device-card { padding: 30px; position: relative; }
.device-card .marker { position: absolute; top: 16px; right: 16px; }
.device-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(244, 122, 32, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(244, 122, 32, 0.3);
}
.device-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin-bottom: 8px; }
.device-brands { color: var(--gray-mid); font-size: 12px; line-height: 1.5; }
.device-link {
  display: flex; align-items: center; gap: 6px;
  margin-top: 18px; color: var(--orange);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
}

.policy-box {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.policy-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--orange);
}

/* ─── CHANNELS ────────────────────────────────── */
.search-wrap { max-width: 580px; margin: 0 auto; position: relative; }
.search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--orange); }
.search-icon {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
}

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}
.tab {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 16px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.tab.active { color: var(--orange); border-bottom-color: var(--orange); }

.ch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ch-card {
  padding: 22px;
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s;
}
.ch-card:hover { border-color: rgba(244, 122, 32, 0.4); }
.ch-flag { font-size: 32px; }
.ch-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.ch-count { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--orange); letter-spacing: 0.1em; }

.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pack-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s;
}
.pack-card:hover { border-color: rgba(244, 122, 32, 0.4); transform: translateY(-4px); }
.pack-stripe {
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
}
.pack-name { font-family: 'Bebas Neue', sans-serif; font-size: 30px; margin-bottom: 6px; }

/* ─── BLOG ────────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 9px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active { background: var(--orange); color: var(--black); border-color: var(--orange); }

.blog-featured {
  margin-bottom: 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.blog-featured-img {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-featured-img::before {
  content: "360+";
  position: absolute;
  top: 30px; left: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(0, 0, 0, 0.18);
  line-height: 1;
}
.blog-featured-body { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-tags { display: flex; gap: 12px; margin-bottom: 18px; align-items: center; }
.blog-featured-tags .meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gray-mid); letter-spacing: 0.1em; }
.blog-featured h2 { font-family: 'Bebas Neue', sans-serif; font-size: 38px; line-height: 1.05; margin-bottom: 16px; }
.blog-featured p { color: var(--gray); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.blog-featured-foot { display: flex; align-items: center; justify-content: space-between; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card {
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s;
}
.blog-card:hover { border-color: rgba(244, 122, 32, 0.4); transform: translateY(-4px); }
.blog-card-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.blog-card-img.v1 { background: linear-gradient(135deg, var(--surface), var(--black-deep)); }
.blog-card-img.v2 { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.blog-card-img.v3 { background: linear-gradient(135deg, var(--surface2), var(--black)); }
.blog-card-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.blog-card-cat {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange);
}
.blog-card-body { padding: 24px; }
.blog-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; line-height: 1.15; margin-bottom: 10px; }
.blog-card-excerpt { color: var(--gray-mid); font-size: 13px; line-height: 1.55; margin-bottom: 18px; }
.blog-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}
.blog-card-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gray-mid); }

/* ─── FAQ ─────────────────────────────────────── */
.faq-list { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5px 8px;
  transition: background 0.2s;
}
.faq-item:hover { background: rgba(244, 122, 32, 0.05); }
.faq-summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-weight: 500;
  font-size: 16px;
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary span {
  color: var(--orange);
  font-size: 22px;
  transition: transform 0.3s;
}
details[open] .faq-summary span { transform: rotate(45deg); }
.faq-item p { padding: 0 0 18px 0; color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ─── HIDE MOBILE / DESKTOP UTILITIES ──────── */
.hide-mobile-init { display: none; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .ch-grid { grid-template-columns: repeat(3, 1fr); }
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3n) { border-right: 1px solid rgba(255, 255, 255, 0.06); }
  .feature-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 900px) {
  .hide-mobile { display: none !important; }
  .menu-toggle { display: flex !important; }
  .hide-mobile-init { display: flex !important; }

  .nav-desktop { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .ch-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .notice { grid-template-columns: 1fr; }
  .policy-box { padding: 30px; }
  .page-header h1 { font-size: 48px; }
}

@media (max-width: 600px) {
  .country-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: 1fr; }
  .ch-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 14px 0; }
  .container { padding: 0 16px; }
  .ticker-right { display: none; }
}
