/* ===== ROOT & VARIABLES ===== */
:root {
  --gold: hsl(43, 96%, 56%);
  --gold-dark: hsl(38, 90%, 45%);
  --gold-light: hsl(48, 100%, 70%);
  --bg-primary: hsl(220, 20%, 8%);
  --bg-secondary: hsl(220, 18%, 11%);
  --bg-card: hsl(220, 16%, 14%);
  --bg-card-hover: hsl(220, 16%, 17%);
  --text-primary: hsl(45, 20%, 95%);
  --text-secondary: hsl(220, 10%, 65%);
  --text-muted: hsl(220, 10%, 45%);
  --border: hsl(220, 15%, 20%);
  --border-gold: hsla(43, 96%, 56%, 0.3);
  --glow-gold: hsla(43, 96%, 56%, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 30px hsla(43, 96%, 56%, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Cairo', 'Tajawal', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: hsl(220, 20%, 8%);
  box-shadow: 0 4px 20px hsla(43, 96%, 56%, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsla(43, 96%, 56%, 0.55);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--border-gold);
}
.btn-outline:hover {
  background: var(--glow-gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-glass {
  background: hsla(220, 20%, 100%, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: hsla(220, 20%, 100%, 0.13);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

.mt-2 { margin-top: 16px; }

/* Pulse animation */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 hsla(43,96%,56%,0.5); }
  70% { box-shadow: 0 0 0 16px hsla(43,96%,56%,0); }
  100% { box-shadow: 0 0 0 0 hsla(43,96%,56%,0); }
}
.pulse-glow {
  animation: pulse-ring 2.5s ease-out infinite;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: hsla(220, 20%, 8%, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: hsla(220, 20%, 6%, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 8px var(--gold));
}
.logo-text {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--glow-gold);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3px;
  border-radius: var(--radius-sm);
  margin-inline-start: 8px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover {
  color: var(--text-primary);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--bg-primary);
}
.navbar-actions .btn {
  padding: 9px 18px;
  font-size: 13px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-right: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-orb.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(43,96%,56%,0.3), transparent);
  top: -200px;
  right: -100px;
}
.hero-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(220,80%,60%,0.2), transparent);
  bottom: 0;
  left: -100px;
}
.hero-orb.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, hsla(280,80%,60%,0.15), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsla(43,96%,56%,0.04) 1px, transparent 1px),
    linear-gradient(90deg, hsla(43,96%,56%,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hsla(0,90%,50%,0.1);
  border: 1px solid hsla(0,90%,50%,0.3);
  color: hsl(0,90%,70%);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: hsl(0,90%,60%);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInDown 0.7s ease 0.1s both;
}

.hero-desc {
  font-size: clamp(15px, 2.2vw, 19px);
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInDown 0.7s ease 0.2s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  animation: fadeInDown 0.7s ease 0.3s both;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInDown 0.7s ease 0.4s both;
}

.hero-devices {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 0.7s ease 0.5s both;
}
.device-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.device-tag:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 4px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
  margin: 0 auto;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TICKER ===== */
.ticker-bar {
  background: linear-gradient(135deg, hsla(43,96%,56%,0.12), hsla(43,96%,56%,0.05));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
}
.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker-content span {
  display: inline-block;
  padding: 0 48px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  background: hsla(43,96%,56%,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features-section {
  background: var(--bg-secondary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  animation: none;
}
.feature-card.visible {
  animation: fadeInUp 0.6s ease forwards;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: hsla(43,96%,56%,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: hsla(43,96%,56%,0.2);
  box-shadow: 0 0 20px hsla(43,96%,56%,0.3);
}
.feature-icon {
  font-size: 28px;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CHANNELS ===== */
.channels-section {
  background: var(--bg-primary);
}
.channels-categories {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cat-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cat-btn:hover, .cat-btn.active {
  background: hsla(43,96%,56%,0.1);
  border-color: var(--border-gold);
  color: var(--gold);
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}
.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.channel-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.channel-emoji {
  font-size: 32px;
  margin-bottom: 10px;
}
.channel-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.channel-cat {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing-section {
  background: var(--bg-secondary);
}
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.toggle-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}
.toggle-label.active-label {
  color: var(--text-primary);
}
.save-badge {
  background: linear-gradient(135deg, hsl(140,60%,40%), hsl(140,60%,50%));
  color: white;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 12px;
  margin-right: 6px;
}
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 4px;
  right: 4px;
  transition: var(--transition);
}
.toggle-switch input:checked + .slider {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.toggle-switch input:checked + .slider::before {
  right: auto;
  left: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}
.pricing-card.featured {
  background: linear-gradient(145deg, hsl(220,18%,15%), hsl(220,18%,12%));
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
}
.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.plan-icon {
  font-size: 42px;
  margin-bottom: 12px;
}
.plan-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}
.plan-price {
  margin-bottom: 28px;
}
.price-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.price-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  vertical-align: super;
}
.price-period {
  font-size: 15px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}
.plan-features {
  list-style: none;
  text-align: right;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-secondary);
}
.plan-features li:last-child { border-bottom: none; }
.check { color: hsl(140,60%,50%); font-size: 16px; flex-shrink: 0; }
.x { color: var(--text-muted); flex-shrink: 0; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== DEVICES ===== */
.devices-section {
  background: var(--bg-primary);
}
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}
.device-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.device-emoji {
  font-size: 40px;
  margin-bottom: 12px;
}
.device-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.device-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-secondary);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.stars {
  font-size: 18px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--bg-primary);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-primary);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--border-gold);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: right;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
}
.faq-answer.open {
  display: block;
  animation: fadeInDown 0.3s ease;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== CTA ===== */
.cta-section {
  padding: 90px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(43,96%,56%,0.15), transparent);
  top: -100px;
  right: -100px;
}
.cta-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, hsla(220,80%,60%,0.1), transparent);
  bottom: -100px;
  left: -50px;
}
.cta-content {
  position: relative;
}
.cta-section h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: hsl(220, 22%, 6%);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--border-gold);
  background: var(--glow-gold);
  transform: translateY(-2px);
}
.footer-links h4, .footer-contact h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-right: 6px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .navbar-actions { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 70px 0 0;
    background: var(--bg-primary);
    padding: 24px;
    gap: 8px;
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-links.open .nav-link {
    font-size: 18px;
    padding: 14px 20px;
  }
  .hamburger { display: flex; }
  .navbar-inner { flex-wrap: wrap; }

  .hero-stats {
    gap: 12px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .channels-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .hero-title { font-size: 32px; }
  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
