@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800&display=swap');

:root {
  --bg: #09090b;
  --surface: #18181b;
  --surface-2: #131316;
  --border: #27272a;
  --gold: #c5a059;
  --gold-tint-bg: #1f1a12;
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --radius: 14px;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.header-left { display: flex; align-items: center; gap: 16px; }
.menu-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
}
.menu-btn span, .menu-btn::before, .menu-btn::after { display: none; }
.menu-btn svg { width: 18px; height: 18px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
}
.site-footer .logo img {
  height: 40px;
}

.header-right { display: flex; align-items: center; gap: 18px; }
.lang-select {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
}
.lang-select svg { width: 16px; height: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(197,160,89,0.25); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold-tint-bg); transform: translateY(-2px); }

/* ---------- Legal page content ---------- */
.legal-hero {
  padding: 64px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.legal-updated { color: var(--text-muted); font-size: 0.9rem; margin-top: 14px; }

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}
.legal-body section { margin-bottom: 40px; }
.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.legal-body p { color: var(--text-muted); margin-bottom: 12px; }
.legal-body ul { margin: 0 0 12px 20px; color: var(--text-muted); }
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--text); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-grid h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-grid p { color: var(--text-muted); font-size: 0.9rem; margin-top: 10px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--text-muted); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid a.active { color: var(--text); font-weight: 700; }
.social-icons { display: flex; gap: 10px; list-style: none; }
.social-icons img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-bottom a.active { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-body { padding: 40px 20px 72px; }
}

/* =======================================================
   HOME PAGE COMPONENTS
========================================================= */

/* ---------- shared section heading ---------- */
.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; }
.section-head p { color: var(--text-muted); margin-top: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 60px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9,9,11,0.55) 0%, rgba(9,9,11,0.75) 55%, var(--bg) 100%),
    url('../img/hero-bg.jpg') center 30% / cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(197,160,89,0.10), transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(197,160,89,0.06), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 20px;
}
.hero p.lead {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.02rem;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.trust-pill img { width: 18px; height: 18px; object-fit: contain; }

/* ---------- feature / device / app cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-devices { display: grid; grid-template-columns: repeat(9, 1fr); gap: 14px; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.feature-card img.icon { width: 44px; height: 44px; object-fit: contain; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

.device-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
}
.device-card img { width: 32px; height: 32px; object-fit: contain; margin-bottom: 6px; }
.device-card span { font-size: 0.74rem; color: var(--text-muted); white-space: nowrap; }

/* ---------- pricing cards ---------- */
.pricing-wrap { position: relative; }
.pricing-badge {
  position: absolute;
  top: -34px; left: 50%;
  transform: translateX(-50%);
  width: 92px;
  z-index: 2;
}
.price-card {
  background: var(--surface);
  border: 1px solid rgba(197,160,89,0.35);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-card.featured {
  background: var(--gold-tint-bg);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 20px 50px rgba(197,160,89,0.15);
}
.price-card .tier { color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.price-card .plan-name { font-size: 1.4rem; font-weight: 800; margin: 8px 0 14px; }
.price-card .price { font-size: 2rem; font-weight: 800; }
.price-card .price small { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.price-card ul { list-style: none; margin: 20px 0; flex-grow: 1; }
.price-card li { display: flex; align-items: center; padding: 6px 0; font-size: 0.9rem; color: var(--text-muted); }
.price-card ul.simple li { justify-content: space-between; }
.price-card ul.simple li > span::before { content: "✓"; color: var(--gold); font-weight: 700; margin-inline-end: 8px; }
.price-card hr { border: none; border-top: 1px solid var(--border); margin: 14px 0; }
.btn-block { width: 100%; text-align: center; }
.btn-gradient {
  background: linear-gradient(180deg, #e0b96b, #b98f42);
  color: #0a0a0a;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(197,160,89,0.3); }
.center { text-align: center; }

/* ---------- how it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}
.step { display: flex; gap: 18px; }
.step-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- IPTV app cards ---------- */
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.app-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.app-card img.app-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  box-sizing: border-box;
}
.app-tag { font-size: 0.72rem; background: var(--surface-2); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px; color: var(--text-muted); }
.app-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.app-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; flex-grow: 1; }

/* ---------- CTA band ---------- */
.cta-band {
  background: radial-gradient(ellipse at 30% 0%, rgba(197,160,89,0.18), transparent 60%), var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 32px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: var(--text-muted); margin-bottom: 26px; }
.check-row { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 26px; font-size: 0.85rem; color: var(--text-muted); }
.check-row span::before { content: "✓ "; color: var(--gold); font-weight: 700; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: start;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  font-family: inherit;
}
.faq-chevron {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.faq-chevron svg { width: 16px; height: 16px; stroke: #0a0a0a; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { padding-bottom: 22px; }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-devices { grid-template-columns: repeat(5, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-devices { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- mobile / off-canvas nav (triggered by hamburger) ---------- */
.mobile-nav {
  position: fixed;
  top: 0; inset-inline-start: 0;
  width: 280px;
  max-width: 82vw;
  height: 100vh;
  background: var(--surface-2);
  border-inline-end: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 199;
}
.mobile-nav.open ~ .mobile-nav-overlay { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.4rem; cursor: pointer; margin-bottom: 12px;
}

/* =======================================================
   PACKAGES PAGE COMPONENTS
========================================================= */

.grid-devices-7 { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }

.price-card ul.detailed li { justify-content: space-between; }
.price-card ul.detailed li::before { content: none; }

.comparison-table-wrap { overflow-x: auto; }
table.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
table.comparison-table thead th {
  text-align: start;
  padding: 18px 20px;
  background: var(--surface-2);
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
table.comparison-table thead th:last-child { color: var(--gold); text-align: end; }
table.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}
table.comparison-table td:first-child { color: var(--text); font-weight: 600; }
table.comparison-table td:last-child { text-align: end; }
table.comparison-table tr:last-child td { border-bottom: none; }
table.comparison-table tr.highlight-row { background: var(--gold-tint-bg); }
table.comparison-table tr.highlight-row td:first-child { color: var(--gold); }
.muted-label { color: var(--gold); font-weight: 500; font-size: 0.85rem; }

.steps-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.step-card .step-num { border-radius: 50%; width: 42px; height: 42px; margin-bottom: 16px; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 0.88rem; }

@media (max-width: 992px) {
  .grid-devices-7 { grid-template-columns: repeat(4, 1fr); }
  .steps-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-devices-7 { grid-template-columns: repeat(3, 1fr); }
  .steps-grid-5 { grid-template-columns: 1fr; }
}

/* =======================================================
   FREE TRIAL PAGE COMPONENTS
========================================================= */

.btn img.btn-icon-img { width: 26px; height: 26px; object-fit: contain; margin-inline-end: 8px; vertical-align: middle; }

.help-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 32px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.help-card img.help-icon { width: 56px; height: 56px; object-fit: contain; margin-bottom: 20px; }
.help-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.help-card p.lead-help { color: var(--text-muted); max-width: 620px; margin: 0 auto 28px; }
.help-card .fine-print { color: var(--text-muted); font-size: 0.82rem; margin-top: 22px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* =======================================================
   ABOUT PAGE COMPONENTS
========================================================= */

.story-wrap { max-width: 760px; margin: 0 auto; }
.story-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.story-wrap p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.story-divider { width: 40px; height: 1px; background: var(--border); margin: 40px 0; }
.story-emphasis { color: var(--text); font-size: 1.15rem; font-weight: 600; margin-top: 4px; }
.story-closing { text-align: center; margin-top: 8px; }
.story-closing p { color: var(--text); font-size: 1.15rem; max-width: 660px; margin: 0 auto; line-height: 1.7; }
.story-tagline { color: var(--gold); font-weight: 800; font-size: 1.5rem; margin-top: 24px; text-align: center; }

.principle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.principle-card img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 18px; }
.principle-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.principle-card p { color: var(--text-muted); font-size: 0.9rem; }

/* =======================================================
   CONTACT PAGE COMPONENTS
========================================================= */

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-card img.icon { width: 44px; height: 44px; object-fit: contain; margin-bottom: 16px; }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.contact-card .tagline { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; flex-grow: 1; }

.promise-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.promise-item { display: flex; align-items: center; gap: 12px; }
.promise-item img { width: 34px; height: 34px; object-fit: contain; }
.promise-item span { color: var(--text-muted); font-size: 0.95rem; }

.community-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.community-card img.community-icon { width: 52px; height: 52px; object-fit: contain; margin-bottom: 18px; border-radius: 12px; }
.community-card h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.community-card p { color: var(--text-muted); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }

@media (max-width: 640px) {
  .promise-row { gap: 22px; flex-direction: column; align-items: center; }
}

/* =======================================================
   HELP CENTER PAGE COMPONENTS
========================================================= */

.help-category { max-width: 860px; margin: 0 auto 72px; }
.help-category:last-child { margin-bottom: 0; }
.help-category .section-head { margin-bottom: 32px; }

/* Card-style accordion item (distinct from the flat-divider FAQ style elsewhere) */
.help-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px 26px;
  margin-bottom: 16px;
}
.help-item .faq-question {
  border-bottom: 1px solid var(--border);
}
.help-item.open .faq-question { border-bottom-color: var(--border); }
.help-item .faq-answer p { margin-bottom: 14px; }
.help-item .faq-answer p:last-child { margin-bottom: 0; }
.help-item .faq-answer ul { margin: 6px 0 14px 20px; }
.help-item .faq-answer li { margin-bottom: 4px; }

/* =======================================================
   RTL SUPPORT (Arabic)
   Most of the layout already auto-mirrors via Flexbox/Grid
   under dir="rtl" — these are the few things that genuinely
   need an explicit override (CSS transforms have no logical
   direction equivalent).
========================================================= */
[dir="rtl"] .mobile-nav { transform: translateX(100%); }
[dir="rtl"] .mobile-nav.open { transform: translateX(0); }

/* Arabic eyebrow labels: bigger (Arabic reads smaller than Latin
   at the same font-size), no letter-spacing (breaks how Arabic
   letters connect to each other), no uppercase (meaningless —
   Arabic has no case) */
[dir="rtl"] .eyebrow {
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
}

/* Arabic gets a proper Arabic-native font instead of falling
   back to whatever the browser's default happens to be */
[dir="rtl"] body { font-family: 'Tajawal', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif; }

/* =======================================================
   LANGUAGE SWITCHER DROPDOWN
========================================================= */
.lang-select { position: relative; cursor: pointer; }
.lang-select-btn {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: none; border: none; cursor: pointer;
  font-family: inherit;
}
.lang-select-btn svg { width: 16px; height: 16px; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 150;
}
.lang-select.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.lang-dropdown a:hover { background: var(--surface); color: var(--text); }
.lang-dropdown a.active { color: var(--gold); font-weight: 700; }
