/* ══════════════════════════════════════════
   ANIA TV — Landing Page Styles
   Theme: Dark Navy + Yellow
   ══════════════════════════════════════════ */

/* ─── Custom Fonts ─────────────────────────── */
@font-face {
  font-family: 'Rabar038';
  src: url('../fonts/Rabar_038.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rabar040';
  src: url('../fonts/Rabar_040.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ─── RTL (Kurdish & Arabic) ────────────────── */
/*
  در RTL، بڕاوزەر بە خۆی flex-row دەگێڕێتەوە.
  تەنها شتە تایبەتەکان دەگۆڕین.
*/
[dir="rtl"] {
  direction: rtl;
  font-family: 'Rabar040', sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: 'Rabar038', sans-serif;
  letter-spacing: 0;
}

/* تێکستی نووسین لای ڕاست */
[dir="rtl"] .hero-sub,
[dir="rtl"] .feature-card p,
[dir="rtl"] .why-text > p,
[dir="rtl"] .step-card p,
[dir="rtl"] .price-desc,
[dir="rtl"] .contact-card p,
[dir="rtl"] .footer-brand p { text-align: right; }

/* هێڵەکانی چەپ ناودەگۆڕن */
[dir="rtl"] .step-arrow       { transform: scaleX(-1); }
[dir="rtl"] .footer-col       { text-align: right; }
[dir="rtl"] .nav-mobile       { text-align: right; }
[dir="rtl"] .why-list li      { text-align: right; }
[dir="rtl"] *                 { letter-spacing: 0 !important; }

/* ─── Lang Switcher ─────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-sec);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: 'Inter', 'Rabar040', sans-serif;
  line-height: 1;
}

.lang-btn:hover {
  background: var(--bg-card-h);
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

.lang-btn.active {
  background: var(--yellow);
  color: #0a0a0a;
  border-color: var(--yellow);
}

.lang-switcher-mobile {
  display: flex;
  gap: 8px;
  padding: 12px 0 4px;
}

[dir="rtl"] .lang-switcher { margin-left: 0; margin-right: 8px; }

:root {
  --bg:          #060912;
  --bg-2:        #0a0f1e;
  --bg-card:     rgba(255,255,255,0.04);
  --bg-card-h:   rgba(255,255,255,0.07);
  --yellow:      #FFD000;
  --yellow-dim:  rgba(255,208,0,0.12);
  --blue:        #1E88E5;
  --blue-dim:    rgba(30,136,229,0.15);
  --red:         #E53935;
  --red-dim:     rgba(229,57,53,0.15);
  --purple:      #9C27B0;
  --purple-dim:  rgba(156,39,176,0.15);
  --teal:        #00897B;
  --teal-dim:    rgba(0,137,123,0.15);
  --gray-dim:    rgba(84,110,122,0.15);
  --text:        #f0f4ff;
  --text-sec:    rgba(240,244,255,0.55);
  --border:      rgba(255,255,255,0.08);
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --transition:  0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-yellow { color: var(--yellow); }

/* ─── SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,208,0,0.3); border-radius: 3px; }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(6,9,18,0.0);
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition), border-bottom var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(6,9,18,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}

.nav-logo img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-sec);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover { color: var(--text); background: var(--bg-card); }

.btn-nav {
  background: var(--yellow) !important;
  color: #0a0a0a !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
}
.btn-nav:hover { background: #ffe033 !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 0 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-sec);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--yellow); }
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(255,208,0,0.3);
}
.btn-primary:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,208,0,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: var(--bg-card-h);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px !important; font-size: 14px !important; }
.btn-large { padding: 16px 32px; font-size: 16px; flex-direction: column; align-items: flex-start; gap: 2px; }
.btn-large svg { margin-bottom: 2px; }
.btn-sub { font-size: 11px; font-weight: 400; opacity: 0.7; line-height: 1; }

/* ══════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: var(--yellow-dim);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,208,0,0.2);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-sec);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,208,0,0.15), transparent 70%);
  top: -200px; left: -100px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,136,229,0.12), transparent 70%);
  top: 100px; right: -150px;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(156,39,176,0.08), transparent 70%);
  bottom: 0; left: 40%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-dim);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,208,0,0.25);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-logo {
  height: 56px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 20px rgba(255,208,0,0.3));
}

.hero-title {
  font-size: clamp(30px, 5.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--text-sec);
  font-size: clamp(15px, 1.8vw, 16px);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 26px; font-weight: 800; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-sec); margin-top: 4px; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ─── TV MOCKUP ─────────────────────────── */
.hero-visual {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  min-width: 0;
}

.tv-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.tv-screen {
  background: #0a0a14;
  border: 3px solid #2a2a3a;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 8px;
  position: relative;
}
.tv-screen::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  background: #2a2a3a;
  border-radius: 0 0 4px 4px;
}

.tv-screen-inner {
  background: radial-gradient(ellipse at 50% 30%, #0D1B3E, #060912);
  border-radius: 12px;
  padding: 14px;
  overflow: hidden;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
}
.mock-time {
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
}

.mock-logo-center {
  text-align: center;
  margin-bottom: 16px;
}
.mock-logo-center img {
  margin: 0 auto;
  filter: drop-shadow(0 2px 12px rgba(255,208,0,0.4));
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.mock-card {
  padding: 12px 6px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
}
.mock-card.blue  { background: linear-gradient(135deg, rgba(30,136,229,0.8), rgba(13,71,161,0.9)); }
.mock-card.red   { background: linear-gradient(135deg, rgba(229,57,53,0.8), rgba(127,0,0,0.9)); }
.mock-card.purple{ background: linear-gradient(135deg, rgba(156,39,176,0.8), rgba(74,20,140,0.9)); }
.mock-card.teal  { background: linear-gradient(135deg, rgba(0,137,123,0.8), rgba(0,77,64,0.9)); }
.mock-card.gray  { background: linear-gradient(135deg, rgba(84,110,122,0.8), rgba(16,32,39,0.9)); }
.mock-icon { font-size: 18px; margin-bottom: 4px; }
.mock-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.9); }

.mock-bottombar {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: monospace;
}

.tv-stand-neck {
  width: 60px; height: 24px;
  background: linear-gradient(to bottom, #2a2a3a, #1a1a28);
  margin: 0 auto;
}
.tv-stand-base {
  width: 140px; height: 12px;
  background: linear-gradient(to bottom, #2a2a3a, #1a1a28);
  border-radius: 0 0 8px 8px;
}

/* ══════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg), var(--bg-2));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  background: var(--bg-card-h);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.feature-main {
  grid-column: span 2;
}
.feature-wide {
  grid-column: span 2;
}

.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-wrap.blue   { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(30,136,229,0.2); }
.feature-icon-wrap.red    { background: var(--red-dim); color: var(--red); border: 1px solid rgba(229,57,53,0.2); }
.feature-icon-wrap.purple { background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(156,39,176,0.2); }
.feature-icon-wrap.teal   { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(0,137,123,0.2); }
.feature-icon-wrap.yellow { background: var(--yellow-dim); color: var(--yellow); border: 1px solid rgba(255,208,0,0.2); }

.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-sec); font-size: 14px; line-height: 1.7; }

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  background: var(--yellow-dim);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   WHY SECTION
   ══════════════════════════════════════════ */
.why-section {
  padding: 100px 0;
  background: var(--bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-text .section-tag { display: inline-block; margin-bottom: 16px; }
.why-text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.why-text > p { color: var(--text-sec); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }

.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--yellow-dim);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255,208,0,0.25);
}
.why-list strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.why-list span { color: var(--text-sec); font-size: 13px; }

.why-visual { display: flex; flex-direction: column; gap: 16px; }

.codec-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.codec-title { font-size: 13px; font-weight: 700; color: var(--text-sec); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.codec-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.codec-tags span {
  background: rgba(255,255,255,0.06);
  color: var(--text-sec);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-family: monospace;
}

.device-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: background var(--transition);
}
.device-box:hover { background: var(--bg-card-h); }
.device-icon { font-size: 28px; }
.device-name { font-size: 14px; font-weight: 700; }
.device-sub { font-size: 12px; color: var(--text-sec); margin-top: 2px; }
.device-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.device-badge.active {
  background: rgba(0,200,83,0.12);
  color: #00c853;
  border: 1px solid rgba(0,200,83,0.3);
}

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.how-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-2), var(--bg));
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
}
.step-card:hover { background: var(--bg-card-h); transform: translateY(-4px); }

.step-num {
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,208,0,0.06);
  line-height: 1;
  position: absolute;
  top: 10px; right: 16px;
}
.step-icon {
  width: 60px; height: 60px;
  background: var(--yellow-dim);
  border: 1px solid rgba(255,208,0,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 20px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--text-sec); font-size: 14px; line-height: 1.7; }

.step-arrow {
  font-size: 28px;
  color: rgba(255,208,0,0.3);
  flex-shrink: 0;
  margin: 0 4px;
}

.trial-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--yellow-dim);
  border: 1px solid rgba(255,208,0,0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  flex-wrap: wrap;
}
.trial-icon { font-size: 32px; }
.trial-text { flex: 1; min-width: 200px; }
.trial-text strong { display: block; font-size: 17px; font-weight: 700; color: var(--yellow); margin-bottom: 4px; }
.trial-text span { font-size: 14px; color: var(--text-sec); }

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
.pricing-section {
  padding: 100px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }

.price-popular {
  border-color: var(--yellow);
  background: var(--yellow-dim);
  transform: translateY(-8px);
}
.price-popular:hover { transform: translateY(-12px); }

.lifetime-card { border-color: rgba(156,39,176,0.4); background: rgba(156,39,176,0.06); }
.trial-card { border-color: rgba(30,136,229,0.3); background: var(--blue-dim); }

.price-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(255,208,0,0.2);
  color: var(--yellow);
  border: 1px solid rgba(255,208,0,0.3);
}
.popular-badge { background: rgba(255,208,0,0.2); color: var(--yellow); }
.lifetime-badge { background: rgba(156,39,176,0.2); color: #ce93d8; border-color: rgba(156,39,176,0.3); }

.price-period { font-size: 13px; font-weight: 600; color: var(--text-sec); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }

.price-amount { margin-bottom: 12px; }
.price-num { font-size: 42px; font-weight: 900; line-height: 1; }
.price-unit { font-size: 16px; font-weight: 600; color: var(--text-sec); }

.price-desc { font-size: 13px; color: var(--text-sec); line-height: 1.6; margin-bottom: 20px; }

.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-sec); }
.pf-check { color: #00c853; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.btn-price-outline {
  display: block;
  text-align: center;
  padding: 11px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
}
.btn-price-outline:hover { background: var(--bg-card-h); border-color: rgba(255,255,255,0.2); }

.btn-price-primary {
  display: block;
  text-align: center;
  padding: 12px 0;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
  transition: background var(--transition), transform var(--transition);
}
.btn-price-primary:hover { background: #ffe033; transform: translateY(-1px); }

/* ══════════════════════════════════════════
   DOWNLOAD
   ══════════════════════════════════════════ */
.download-section { padding: 80px 0; }

.download-box {
  background: linear-gradient(135deg, #0D1B3E, #060912);
  border: 1px solid rgba(255,208,0,0.15);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-orb {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,208,0,0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.download-content { position: relative; z-index: 1; }
.dl-logo { margin: 0 auto 24px; filter: drop-shadow(0 4px 20px rgba(255,208,0,0.4)); }

.download-box h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.download-box p { color: var(--text-sec); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }

.dl-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.dl-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-sec);
  background: rgba(255,255,255,0.04);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: var(--bg-2); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.contact-card:hover { background: var(--bg-card-h); transform: translateY(-4px); }
.contact-icon { font-size: 40px; margin-bottom: 16px; }
.contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.contact-card p { color: var(--text-sec); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

.btn-contact {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-contact:hover { background: var(--yellow); border-color: var(--yellow); color: #0a0a0a; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand { flex: 1; min-width: 200px; }
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { color: var(--text-sec); font-size: 14px; line-height: 1.7; }

.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.footer-col a { color: var(--text-sec); font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-sec);
}
.footer-version {
  background: var(--bg-card);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 12px;
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* ─── Tablet (max 1024px) ─── */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .tv-screen { max-width: 420px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-main { grid-column: span 2; }
  .feature-wide { grid-column: span 2; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }

  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-popular { transform: none; }

  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Mobile (max 768px) ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding-top: 90px; padding-bottom: 60px; }
  .tv-screen { max-width: 320px; }
  .mock-cards { grid-template-columns: repeat(5, 1fr); gap: 5px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-main { grid-column: span 1; }
  .feature-wide { grid-column: span 1; }

  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }

  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-popular { transform: none; }

  .contact-grid { grid-template-columns: 1fr; }

  .download-box { padding: 36px 20px; }
  .dl-buttons { flex-direction: column; align-items: center; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 24px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section-header { margin-bottom: 40px; }

  .trial-banner { flex-direction: column; text-align: center; align-items: flex-start; }
}

/* ─── Small Mobile (max 480px) ─── */
@media (max-width: 480px) {
  .hero-inner { padding: 0 16px; }
  .tv-mockup { display: none; }
  .hero-visual { display: none; }

  .pricing-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 16px; }
  .stat-num { font-size: 22px; }

  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
