/* ============================================================
   StarlinkPrice.com — Global Stylesheet
   Professional dark space theme · AdSense + SEO optimised
   ============================================================ */

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

:root {
  --bg:       #07090f;
  --bg2:      #0a0e18;
  --surface:  #0d1117;
  --card:     #111827;
  --card2:    #141e2e;
  --border:   #1a2640;
  --border2:  #243347;

  --accent:   #00d4ff;
  --accent2:  #7c3aed;
  --green:    #22c55e;
  --orange:   #f59e0b;
  --red:      #ef4444;
  --yellow:   #eab308;

  --text:     #e2e8f0;
  --text2:    #cbd5e1;
  --muted:    #7f8fa6;
  --muted2:   #5a6a80;

  --font:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', 'Helvetica Neue', sans-serif;
  --radius:   14px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
  --max-w:    1200px;
  --transition: 0.2s ease;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
}
h1 { font-size: clamp(28px, 5vw, 56px); letter-spacing: -1.5px; }
h2 { font-size: clamp(22px, 3.5vw, 38px); letter-spacing: -1px; }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 16px; }
p  { color: var(--text2); line-height: 1.75; }

.gradient-text {
  background: linear-gradient(90deg, var(--accent) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: none; }

.section-head { margin-bottom: 40px; }
.section-head .kicker {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 10px; }
.section-head p  { color: var(--muted); font-size: 15px; max-width: 620px; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(7,9,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 24px; gap: 16px;
}
.nav-logo {
  font-size: 18px; font-weight: 900; color: #fff;
  letter-spacing: -0.5px; text-decoration: none; flex-shrink: 0;
}
.nav-logo .acc { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  color: var(--muted); font-size: 13.5px; font-weight: 500;
  padding: 7px 13px; border-radius: 8px;
  transition: all var(--transition); white-space: nowrap;
  text-decoration: none;
}
.nav-menu a:hover, .nav-menu a.active {
  background: rgba(0,212,255,0.1); color: var(--accent);
}
.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 7px 18px !important;
}
.nav-cta:hover { opacity: 0.85; background: var(--accent) !important; }

/* hamburger */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 6px; color: var(--text);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor; margin: 5px 0;
  transition: var(--transition);
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0;
  font-size: 12px; color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 130% 70% at 50% -30%, rgba(0,100,200,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 80% 60%, rgba(124,58,237,0.08) 0%, transparent 60%),
    var(--bg);
  padding: 88px 24px 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent); font-size: 11px; font-weight: 700;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 28px; letter-spacing: 1.5px; text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--muted);
  max-width: 600px; margin: 0 auto 44px; line-height: 1.7;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex; justify-content: center;
  gap: clamp(24px, 5vw, 64px); flex-wrap: wrap;
  padding: 32px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  max-width: 700px; margin: 0 auto;
}
.hero-stat .val {
  font-size: clamp(26px, 4vw, 40px); font-weight: 900;
  color: var(--accent); display: block; line-height: 1;
}
.hero-stat .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; padding: 13px 28px;
  border-radius: 50px; text-decoration: none; transition: all var(--transition);
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary   { background: var(--accent); color: #000; }
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,255,0.3); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.btn-ghost     { background: rgba(0,212,255,0.08); color: var(--accent); border: 1px solid rgba(0,212,255,0.2); }
.btn-ghost:hover { background: rgba(0,212,255,0.15); text-decoration: none; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-accent { border-color: rgba(0,212,255,0.35); background: linear-gradient(160deg, #0d1f38, #111827); }

/* ── PLAN CARDS ──────────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }

.plan-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px;
  position: relative; transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--accent); background: linear-gradient(155deg, #0c1e36 0%, #111827 100%); }
.plan-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000;
  font-size: 10px; font-weight: 800; padding: 4px 14px;
  border-radius: 50px; letter-spacing: 0.5px; white-space: nowrap;
}
.plan-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 8px; }
.plan-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 22px; flex: 1; min-height: 40px; }
.plan-price { display: flex; align-items: flex-end; gap: 3px; margin-bottom: 6px; }
.plan-price .curr { font-size: 22px; font-weight: 700; color: var(--accent); padding-bottom: 7px; }
.plan-price .amt  { font-size: 52px; font-weight: 900; color: var(--accent); line-height: 1; }
.plan-price .per  { font-size: 14px; color: var(--muted); padding-bottom: 10px; }
.plan-hw { font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.plan-hw strong { color: var(--text2); }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.plan-features li {
  font-size: 13.5px; color: var(--muted);
  display: flex; align-items: flex-start; gap: 9px;
}
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-features li.no::before { content: '✗'; color: var(--red); }
.plan-features li span { flex: 1; }

/* ── TABLES ──────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
thead th {
  background: var(--surface); padding: 14px 20px;
  text-align: left; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody td { padding: 14px 20px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.02); }
.td-name  { font-weight: 700; color: var(--text); }
.td-good  { color: var(--green); font-weight: 600; }
.td-warn  { color: var(--orange); font-weight: 600; }
.td-muted { color: var(--muted); font-size: 13px; }
.td-center { text-align: center; }

/* ── COMPARE CARDS ───────────────────────────────────────── */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.compare-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.compare-card.highlight { border-color: rgba(0,212,255,0.4); }
.compare-card .cname { font-weight: 800; font-size: 15px; margin-bottom: 16px; }
.compare-card .cname.acc { color: var(--accent); }
.compare-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.compare-row:last-child { border-bottom: none; }
.compare-row .cl { color: var(--muted); }
.compare-row .cv { font-weight: 600; color: var(--text2); }
.compare-row .cv.g { color: var(--green); }
.compare-row .cv.o { color: var(--orange); }
.compare-row .cv.r { color: var(--red); }

/* ── ARTICLE / BLOG CARDS ────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  text-decoration: none; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); text-decoration: none; }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, #0d1f38 0%, #1a0e3d 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  background: rgba(0,212,255,0.1); color: var(--accent);
  border: 1px solid rgba(0,212,255,0.2); padding: 3px 10px;
  border-radius: 50px; margin-bottom: 12px;
}
.blog-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--text); line-height: 1.4; }
.blog-card:hover h3 { color: var(--accent); }
.blog-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; font-size: 12px; color: var(--muted2); }
.read-more { color: var(--accent); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; }

/* ── ARTICLE CONTENT ─────────────────────────────────────── */
.article-wrap { max-width: 800px; margin: 0 auto; }
.article-header { padding: 56px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.article-header .blog-tag { margin-bottom: 16px; }
.article-header h1 { margin-bottom: 16px; }
.article-subtitle { font-size: 18px; color: var(--muted); line-height: 1.6; margin-bottom: 8px; }
.article-header .article-meta { display: flex; gap: 20px; font-size: 13px; color: var(--muted); flex-wrap: wrap; margin-top: 20px; }
.article-header .article-meta span { display: flex; align-items: center; gap: 5px; }
.article-date::before { content: "📅 "; }
.article-read-time::before { content: "🕐 "; }

.article-body { font-size: 16px; line-height: 1.8; }
.article-body h2 { font-size: clamp(20px,2.5vw,28px); margin: 44px 0 16px; color: var(--text); }
.article-body h3 { font-size: 19px; margin: 32px 0 12px; color: var(--text); }
.article-body p  { color: var(--text2); margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { color: var(--text2); margin-bottom: 8px; line-height: 1.7; }
.article-body strong { color: var(--text); }
.article-body a { color: var(--accent); }
.article-body table { font-size: 14px; }

.toc {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px; margin-bottom: 36px;
}
.toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 14px; }
.toc ol { padding-left: 18px; }
.toc li { font-size: 14px; margin-bottom: 6px; }
.toc a { color: var(--text2); }
.toc a:hover { color: var(--accent); }

/* ── HIGHLIGHT / CALLOUT ─────────────────────────────────── */
.callout {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; font-size: 14.5px;
  color: var(--text2); margin: 24px 0; line-height: 1.7;
}
.callout strong { color: var(--accent); }
.callout.warning { border-left-color: var(--orange); background: rgba(245,158,11,0.05); }
.callout.warning strong { color: var(--orange); }
.callout.success { border-left-color: var(--green); background: rgba(34,197,94,0.05); }
.callout.success strong { color: var(--green); }

/* ── PROS / CONS ─────────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros-box, .cons-box { background: var(--card); border-radius: var(--radius); padding: 22px; }
.pros-box { border: 1px solid rgba(34,197,94,0.25); }
.cons-box { border: 1px solid rgba(239,68,68,0.2); }
.pc-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.pros-box .pc-title { color: var(--green); }
.cons-box .pc-title { color: var(--red); }
.pc-list { list-style: none; }
.pc-list li { font-size: 13.5px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.pc-list li:last-child { border-bottom: none; }
.pros-box .pc-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons-box .pc-list li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
details[open] { border-color: var(--border2); }
summary {
  padding: 18px 22px; font-weight: 600; font-size: 15px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color var(--transition);
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--accent); }
summary::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform var(--transition); }
details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); line-height: 1.8; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--text2); }

/* ── NEWS CARDS ──────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.news-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  text-decoration: none; display: block;
  transition: border-color var(--transition);
}
.news-card:hover { border-color: rgba(0,212,255,0.35); text-decoration: none; }
.news-source { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.news-source::before { content:''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 1.5s infinite; }
.news-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.news-card:hover .news-title { color: var(--accent); }
.news-date { font-size: 11px; color: var(--muted); }

/* ── COUNTRY CARDS ───────────────────────────────────────── */
.countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.country-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  text-decoration: none; display: block;
  transition: all var(--transition);
}
.country-card:hover { border-color: rgba(0,212,255,0.35); transform: translateY(-2px); text-decoration: none; }
.country-flag { font-size: 32px; margin-bottom: 10px; }
.country-name { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.country-price { font-size: 14px; color: var(--accent); font-weight: 600; }
.country-note { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── STEPS ───────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 18px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--accent);
}
.step-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.step-body p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── AD SLOTS ────────────────────────────────────────────── */
.ad-slot {
  width: 100%; text-align: center;
  background: var(--surface); border: 1px dashed var(--border2);
  border-radius: var(--radius); padding: 20px;
  color: var(--muted2); font-size: 11px; letter-spacing: 0.5px;
}
.ad-slot-top    { margin: 28px 0; }
.ad-slot-mid    { margin: 36px 0; }
.ad-slot-bottom { margin: 36px 0 0; }

/* ── BADGE / CHIP ────────────────────────────────────────── */
.badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 2px 9px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px; vertical-align: middle; margin-left: 6px;
}
.badge-new  { background: rgba(34,197,94,0.15);  color: var(--green); }
.badge-hot  { background: rgba(239,68,68,0.15);   color: var(--red); }
.badge-live { background: rgba(0,212,255,0.12);   color: var(--accent); }

/* ── CTA BOX ─────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, #0b1829 0%, #120e28 100%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-lg); padding: 56px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { margin-bottom: 14px; }
.cta-box p  { color: var(--muted); font-size: 16px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand .nav-logo { font-size: 20px; display: inline-block; margin-bottom: 12px; text-decoration: none; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted2); margin-bottom: 16px; }
.footer-col a  { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 9px; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ── MOBILE NAV DRAWER ───────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(7,9,15,0.98);
  backdrop-filter: blur(20px);
  z-index: 490; padding: 24px;
  flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text); font-size: 17px; font-weight: 600;
  padding: 14px 18px; border-radius: 10px; text-decoration: none;
  border: 1px solid var(--border); transition: all var(--transition);
}
.mobile-nav a:hover { border-color: var(--accent); color: var(--accent); }
.mobile-nav .btn { text-align: center; justify-content: center; margin-top: 8px; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.animate-in { animation: fadeUp 0.5s ease forwards; }
.bounce { animation: bounce 2s infinite; display: inline-block; }

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-green   { color: var(--green); }
.text-orange  { color: var(--orange); }
.text-muted   { color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gap-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

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

@media (max-width: 768px) {
  .nav-menu   { display: none; }
  .nav-toggle { display: block; }
  .hero       { padding: 56px 20px 48px; }
  .section    { padding: 48px 0; }
  .plans-grid { grid-template-columns: 1fr; }
  .pros-cons  { grid-template-columns: 1fr; }
  .gap-grid-2 { grid-template-columns: 1fr; }
  .gap-grid-3 { grid-template-columns: 1fr; }
  .cta-box    { padding: 36px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; padding: 20px; }
  .countries-grid { grid-template-columns: 1fr 1fr; }
}

/* ── CALCULATOR SELECT STYLING ───────────────────────────── */
select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,255,0.15); }
select option { background: var(--card); color: var(--text); }

/* ── SPEED BAR ANIMATION ─────────────────────────────────── */
.speed-bar-fill { will-change: width; }

/* ── SATELLITE CANVAS ────────────────────────────────────── */
#satelliteCanvas { will-change: contents; }

/* ── HERO LAYERING ───────────────────────────────────────── */
.hero > [style*="z-index:2"] { position: relative; }

/* ── DATA-COUNTER pulse after counting ───────────────────── */
[data-counter] { display: inline-block; }

/* ── PLAN COMPARE TRAY ───────────────────────────────────── */
#compareTray { will-change: transform; }
@media (max-width: 768px) {
  #compareTray { flex-direction: column; align-items: flex-start; padding: 16px; }
}

/* ── NEWS TICKER ─────────────────────────────────────────── */
#newsTicker {
  display: none; /* shown by JS when feed loads */
  align-items: center;
  background: rgba(0,212,255,0.05);
  border-bottom: 1px solid rgba(0,212,255,0.12);
  overflow: hidden;
  height: 38px;
  position: relative;
  width: 100%;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 2;
}
.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}
#newsTickerTrack {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  will-change: transform;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
}
.ticker-source {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  opacity: 0.8;
  flex-shrink: 0;
}
.ticker-link {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  transition: color var(--transition);
}
.ticker-link:hover { color: var(--accent); text-decoration: none; }
.ticker-sep {
  color: var(--border2);
  font-size: 16px;
}

/* ── NEWS LOADING SPINNER ────────────────────────────────── */
.news-loading-spinner {
  width: 32px; height: 32px;
  border: 3px solid rgba(0,212,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TICKER RESPONSIVE ───────────────────────────────────── */
@media (max-width: 600px) {
  #newsTicker { height: 34px; }
  .ticker-label { font-size: 9px; padding: 0 10px; }
  .ticker-link { font-size: 12px; }
  #newsTickerTrack { animation-duration: 45s; }
}
