/* ==========================================================
   Elsa-Tech — Global Stylesheet
   ========================================================== */

:root{
  --dark-1: #000000;
  --dark-2: #151515;
  --dark-3: #262626;
  --accent: #FC560E;
  --accent-2: #FF7E3D;
  --accent-soft: rgba(252, 86, 14, 0.14);
  --text-light: #ffffff;
  --text-muted-light: #b7b7b8;
  --text-dark: #1a1a1a;
  --text-muted: #5b5b5b;
  --bg-light: #f7f7f7;
  --white: #ffffff;
  --border-soft: #e6e6e6;
  --shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --max-width: 1160px;
  font-size: 16px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

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

ul{ list-style: none; margin: 0; padding: 0; }

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

h1, h2, h3, h4{
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

p{ margin: 0 0 16px; }

.section{ padding: 88px 0; }
.section--tight{ padding: 64px 0; }

.section-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head{
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2{ font-size: clamp(28px, 3.4vw, 38px); }
.section-head p{ color: var(--text-muted); font-size: 17px; margin: 0; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn--primary{
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #ffffff;
  box-shadow: 0 14px 30px -12px rgba(242, 96, 28, 0.55);
}
.btn--primary:hover{ box-shadow: 0 18px 36px -12px rgba(242, 96, 28, 0.65); }

.btn--ghost{
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-light);
}
.btn--ghost:hover{ border-color: var(--accent-2); color: var(--accent-2); }

.btn--dark{
  background: var(--dark-2);
  color: var(--text-light);
}
.btn--dark:hover{ background: var(--dark-1); }

.btn--block{ width: 100%; }
.btn--sm{ padding: 10px 20px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
}
.brand .dot{ color: var(--accent-2); }
.brand-logo{
  height: 42px;
  width: auto;
  display: block;
}
.footer-grid .brand-logo{ height: 34px; margin-bottom: 4px; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a{
  color: var(--text-muted-light);
  font-weight: 600;
  font-size: 15px;
  transition: color .15s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active{ color: var(--text-light); }
.nav-links a.active::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--accent-2);
}

.header-actions{ display: flex; align-items: center; gap: 14px; }
.header-phone{
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-weight: 700;
  font-size: 14px;
}
.header-phone svg{ width: 18px; height: 18px; color: var(--accent-2); }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg{ width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(242,96,28,0.16), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(255,122,46,0.12), transparent 50%),
    linear-gradient(160deg, var(--dark-1), var(--dark-2) 55%, var(--dark-3));
  background-size: 160% 160%, 160% 160%, 100% 100%;
  animation: heroGlowDrift 22s ease-in-out infinite alternate;
  color: var(--text-light);
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at top right, black, transparent 70%);
  pointer-events: none;
}
.hero::after{
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -140px;
  right: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,46,0.4), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite alternate;
}
@keyframes heroGlowDrift{
  0%   { background-position: 10% 15%, 90% 0%,  0 0; }
  50%  { background-position: 32% 42%, 62% 28%, 0 0; }
  100% { background-position: 4%  6%,  96% 46%, 0 0; }
}
@keyframes orbFloat{
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-70px, 90px) scale(1.18); }
}
.hero .container{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}
.hero h1{
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 20px;
}
.hero h1 span{ color: var(--accent-2); }
.hero p.lead{
  font-size: 18px;
  color: var(--text-muted-light);
  max-width: 480px;
}
.hero-cta{ display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-stats{
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat b{
  display: block;
  font-size: 26px;
  color: var(--accent-2);
}
.hero-stat span{
  font-size: 13px;
  color: var(--text-muted-light);
}

.hero-panel{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(6px);
}
.hero-panel h3{ color: var(--text-light); font-size: 18px; margin-bottom: 20px; }
.hero-feature{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-feature:last-child{ border-bottom: none; }
.hero-feature .icon{
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-feature .icon svg{ width: 20px; height: 20px; color: var(--accent-2); }
.hero-feature h4{ margin: 0 0 4px; font-size: 15px; color: var(--text-light); }
.hero-feature p{ margin: 0; font-size: 13.5px; color: var(--text-muted-light); }

/* ---------- Breadcrumb / page hero (inner pages) ---------- */
.page-hero{
  position: relative;
  background: linear-gradient(160deg, var(--dark-1), var(--dark-2) 60%, var(--dark-3));
  color: var(--text-light);
  padding: 64px 0 56px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before{
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: -160px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,46,0.32), transparent 70%);
  filter: blur(65px);
  pointer-events: none;
  animation: orbFloat 16s ease-in-out infinite alternate;
}
.page-hero .container{ position: relative; }
.page-hero .section-tag{ margin-bottom: 14px; }
.page-hero h1{ font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.page-hero p{ color: var(--text-muted-light); max-width: 560px; margin: 0 auto; }
.breadcrumb{
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted-light);
}
.breadcrumb a{ color: var(--accent-2); }

/* ---------- Cards / grids ---------- */
.grid{ display: grid; gap: 24px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon svg{ width: 26px; height: 26px; color: var(--accent); }
.card h3{ font-size: 19px; margin-bottom: 10px; }
.card p{ color: var(--text-muted); font-size: 15px; margin: 0; }

/* ---------- Pricing ---------- */
.pricing-section{
  background: linear-gradient(160deg, var(--dark-1), var(--dark-2) 55%, var(--dark-3));
  position: relative;
  overflow: hidden;
}
.pricing-section::before{
  content:"";
  position:absolute; inset:-10%;
  background: radial-gradient(circle at 80% 10%, rgba(242,96,28,0.18), transparent 45%);
  pointer-events:none;
  animation: pricingGlowDrift 20s ease-in-out infinite alternate;
}
.pricing-section::after{
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,46,0.32), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  animation: orbFloat 17s ease-in-out infinite alternate-reverse;
}
@keyframes pricingGlowDrift{
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-9%, 8%); }
}
.pricing-section .section-head h2, .pricing-section .section-head p{ color: var(--text-light); }
.pricing-section .section-head p{ color: var(--text-muted-light); }

.price-card{
  position: relative;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(6px);
}
.price-card.featured{
  border-color: var(--accent-2);
  background: linear-gradient(180deg, rgba(242,96,28,0.14), rgba(255,255,255,0.045));
}
.price-badge{
  position: absolute;
  top: -13px; right: 24px;
  background: var(--accent-2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card .plan-name{
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text-light);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 10px;
  text-transform: uppercase;
}
.price-card .price{
  color: var(--text-light);
  font-size: 40px;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-card .price small{ font-size: 15px; font-weight: 600; color: var(--text-muted-light); }
.price-card .annual{ font-size: 13px; color: var(--text-muted-light); margin-top: -12px; }
.price-card .annual b{ color: var(--accent-2); font-weight: 700; }

.price-specs{
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  color: var(--text-dark);
  font-size: 14px;
  flex: 1;
}
.price-specs .spec{ margin-bottom: 10px; }
.price-specs .spec b{ display: block; font-size: 15px; }
.price-specs .spec.channels{ margin-bottom: 10px; }
.price-specs .spec.sport{ color: var(--dark-3); font-weight: 700; margin-bottom: 8px; }
.price-specs .spec.extras{ color: var(--text-muted); font-size: 13px; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #ffffff;
}
.cta-banner h3{ font-size: 26px; margin-bottom: 8px; color: #ffffff; }
.cta-banner p{ margin: 0; color: rgba(255,255,255,0.85); }

/* ---------- Steps ---------- */
.steps{ counter-reset: step; }
.step{
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
}
.step:last-child{ border-bottom: none; }
.step .num{
  counter-increment: step;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-2);
  color: var(--accent-2);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step .num::before{ content: counter(step); }
.step h4{ margin: 0 0 6px; font-size: 17px; }
.step p{ margin: 0; color: var(--text-muted); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info{
  background: var(--dark-2);
  color: var(--text-light);
  border-radius: 20px;
  padding: 36px;
}
.contact-info h3{ font-size: 20px; margin-bottom: 22px; color: var(--text-light); }
.contact-line{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-line:last-child{ border-bottom: none; }
.contact-line .icon{
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-line .icon svg{ width: 18px; height: 18px; color: var(--accent-2); }
.contact-line b{ display: block; font-size: 14px; color: var(--text-muted-light); font-weight: 600; }
.contact-line span, .contact-line a{ font-size: 15.5px; font-weight: 600; }

.contact-form{
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 36px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field{ margin-bottom: 18px; }
.field label{ display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--bg-light);
  color: var(--text-dark);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--accent-2);
  background: var(--white);
}
.field textarea{ resize: vertical; min-height: 110px; }

.map-embed{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  height: 340px;
}
.map-embed iframe{ width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--dark-1);
  color: var(--text-muted-light);
  padding: 64px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid .brand{ margin-bottom: 14px; }
.footer-grid p{ font-size: 14px; color: var(--text-muted-light); }
.footer-grid h4{ color: var(--text-light); font-size: 15px; margin-bottom: 16px; }
.footer-grid ul li{ margin-bottom: 10px; }
.footer-grid ul li a{ font-size: 14px; color: var(--text-muted-light); transition: color .15s ease; }
.footer-grid ul li a:hover{ color: var(--accent-2); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a{ color: var(--text-muted-light); }
.footer-bottom a:hover{ color: var(--accent-2); }

/* ---------- FAQ ---------- */
.faq-list{
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item{
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 4px 20px;
}
.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 16px 28px 16px 0;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text-dark);
  position: relative;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform .15s ease;
}
.faq-item[open] summary::after{ content: "\2212"; }
.faq-item p{
  color: var(--text-muted);
  font-size: 14.5px;
  padding-bottom: 18px;
  margin: 0;
}

/* ---------- Table (compare) ---------- */
.compare-table{
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th, .compare-table td{
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14.5px;
}
.compare-table th{
  background: var(--dark-2);
  color: var(--text-light);
  font-weight: 700;
}
.compare-table tr:last-child td{ border-bottom: none; }
.compare-table tr:nth-child(even) td{ background: var(--bg-light); }

/* ---------- Utilities ---------- */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.badge-list{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.badge{
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1150px){
  .header-phone{ display: none; }
}

@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .grid--3{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav-links, .header-phone, .header-pay-btn{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .grid--4, .grid--3, .grid--2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .cta-banner{ flex-direction: column; text-align: center; }
  .section{ padding: 64px 0; }
}

/* ---------- Cookie consent popup (SweetAlert2 theming) ---------- */
.cookie-popup{
  border-radius: 20px !important;
  background: var(--dark-2) !important;
  padding: 28px !important;
}
.cookie-popup-title{
  color: var(--text-light) !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  text-align: left !important;
  padding: 0 0 10px !important;
}
.cookie-popup-text{
  color: var(--text-muted-light) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  text-align: left !important;
}
.cookie-popup-text a{ color: var(--accent-2); font-weight: 600; }
.cookie-popup-actions{
  width: 100%;
  margin-top: 12px !important;
}
.cookie-popup-confirm{
  background: linear-gradient(135deg, var(--accent-2), var(--accent)) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  padding: 11px 26px !important;
  font-size: 14.5px !important;
  box-shadow: none !important;
}
.cookie-popup-icon{
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

/* ---------- Floating contact buttons (WhatsApp / Viber) ---------- */
.floating-contacts{
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.floating-contacts a{
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.35));
  transition: transform .15s ease;
  opacity: 0;
  transform: translateY(14px);
  animation: fcFadeIn .5s ease forwards;
}
.floating-contacts a:hover{ transform: translateY(-3px) scale(1.08); }
.floating-contacts a svg{ width: 34px; height: 34px; }
.floating-contacts .fc-whatsapp{ color: #25D366; animation-delay: .3s; }
.floating-contacts .fc-viber{ color: #7360F2; animation-delay: .5s; }

@keyframes fcFadeIn{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px){
  .floating-contacts{ right: 12px; bottom: 86px; gap: 10px; }
  .floating-contacts a{ width: 30px; height: 30px; }
  .floating-contacts a svg{ width: 30px; height: 30px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  .hero, .hero::after,
  .pricing-section::before, .pricing-section::after,
  .page-hero::before,
  .floating-contacts a{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav{
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--dark-1);
  padding: 12px 24px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open{ display: flex; }
.mobile-nav a{
  padding: 12px 0;
  color: var(--text-muted-light);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a.active{ color: var(--accent-2); }
