:root {
  --bg: #0d0f0e;
  --bg2: #111413;
  --bg3: #161918;
  --surface: #1c1f1e;
  --surface2: #232726;
  --border: #2a2e2d;
  --border2: #333837;
  --green: #39d98a;
  --green2: #2ab874;
  --green-dim: rgba(57,217,138,.12);
  --green-glow: rgba(57,217,138,.06);
  --white: #f0f4f2;
  --white2: #c8d4ce;
  --muted: #7a8c84;
  --muted2: #5a6860;
  --o2-c: #3a6ee8;
  --three-c: #00c4f0;
  --ee-c: #00c27a;
  --tesco-c: #f03c5a;
  --voda-c: #f03c3c;
  --bt-c: #a855f7;
  --sky-c: #f0a030;
  --vm-c: #e8403a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--bg);
  color: var(--white2);
  line-height: 1.7;
  cursor: default;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green2); border-radius: 2px; }

/* ─── TOP ALERT BAR ─── */
.alert-bar {
  background: var(--green);
  color: #0a1a10;
  text-align: center;
  padding: 9px 20px;
  font-family: 'Syne', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,15,14,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.nav-pill {
  background: var(--green) !important;
  color: #0a1a10 !important;
  padding: 7px 16px;
  border-radius: 4px;
}
.nav-pill:hover { background: var(--green2) !important; }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .18;
}
.hero-glow {
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(57,217,138,.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(57,217,138,.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green);
}
.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  color: var(--white);
  line-height: .95;
  letter-spacing: -3px;
  margin-bottom: 32px;
}
.hero-h1 em {
  color: transparent;
  -webkit-text-stroke: 1px var(--green);
  font-style: normal;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-g {
  background: var(--green);
  color: #0a1a10;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-g:hover { background: var(--green2); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--border2);
  color: var(--white2);
  padding: 14px 30px;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--green); }
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ─── SECTION BASE ─── */
section { padding: 96px 48px; }
.container { max-width: 1100px; margin: 0 auto; }
.sec-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.sec-tag::after { content:''; flex:1; height:1px; background:var(--border); max-width:80px; }
.sec-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.sec-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 56px;
  font-weight: 300;
}

/* ─── HOW IT WORKS ─── */
#how-it-works { background: var(--bg2); }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; }
.how-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  transition: background .25s;
}
.how-card:hover { background: var(--surface2); }
.how-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 24px;
  transition: color .25s;
}
.how-card:hover .how-num { color: var(--green-dim); }
.how-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.3px;
}
.how-card p { font-size: 15px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.how-accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--green);
  transition: height .3s;
}
.how-card:hover .how-accent { height: 100%; }

/* ─── NETWORK COMPARE ─── */
#compare { background: var(--bg); }
.networks-list { display: flex; flex-direction: column; gap: 2px; }
.net-row {
  background: var(--surface);
  border-left: 3px solid transparent;
  transition: border-color .2s, background .2s;
  overflow: hidden;
}
.net-row:hover { border-left-color: var(--green); background: var(--surface2); }
.net-header {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  gap: 16px;
}
.net-brand { display: flex; align-items: center; gap: 14px; }
.net-dot {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.net-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.net-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.net-col { font-size: 14px; color: var(--white2); }
.net-col .label { font-size: 10px; font-family:'Syne',sans-serif; letter-spacing:1px; text-transform:uppercase; color:var(--muted2); margin-bottom:4px; }
.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.pill-g { background: var(--green-dim); color: var(--green); border: 1px solid rgba(57,217,138,.2); }
.pill-b { background: rgba(58,110,232,.12); color: #7aa4f8; border: 1px solid rgba(58,110,232,.2); }
.pill-a { background: rgba(240,160,48,.1); color: #f0c060; border: 1px solid rgba(240,160,48,.2); }
.net-body {
  display: none;
  padding: 0 32px 32px;
  border-top: 1px solid var(--border);
  margin: 0 32px;
}
.net-row.open .net-body { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; padding-top: 28px; }
.net-detail-block h4 { font-family:'Syne',sans-serif; font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--green); margin-bottom:12px; }
.net-detail-block ul { list-style:none; }
.net-detail-block li { font-size:14px; color:var(--white2); padding:6px 0; border-bottom:1px solid var(--border); display:flex; align-items:flex-start; gap:8px; font-weight:300; }
.net-detail-block li:last-child { border-bottom:none; }
.net-detail-block li::before { content:'→'; color:var(--green); font-size:12px; margin-top:2px; flex-shrink:0; }
.toggle-arrow { margin-left:auto; color:var(--muted); font-size:18px; transition:transform .3s; flex-shrink:0; }
.net-row.open .toggle-arrow { transform:rotate(180deg); color:var(--green); }

/* ─── MOBILE PLANS ─── */
#mobile-plans { background: var(--bg2); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; }
.plan-card {
  background: var(--surface);
  padding: 36px 28px;
  position: relative;
  transition: background .2s;
}
.plan-card:hover { background: var(--surface2); }
.plan-card.featured {
  background: var(--green-dim);
  border: 1px solid rgba(57,217,138,.2);
}
.plan-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.plan-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.plan-desc { font-size: 15px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 24px; }
.plan-features { list-style: none; }
.plan-features li {
  font-size: 14px;
  color: var(--white2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  font-weight: 300;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .tick { color: var(--green); font-size: 14px; flex-shrink:0; }
.plan-contract {
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  letter-spacing: .3px;
}

/* ─── BROADBAND ─── */
#broadband { background: var(--bg); }
.bb-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.bb-main { background: var(--surface); padding: 48px 40px; }
.bb-aside { display: flex; flex-direction: column; gap: 2px; }
.bb-mini { background: var(--surface); padding: 28px 28px; flex: 1; transition: background .2s; }
.bb-mini:hover { background: var(--surface2); }
.bb-icon { font-size: 28px; margin-bottom: 14px; }
.bb-mini h3 { font-family:'Syne',sans-serif; font-size:15px; font-weight:700; color:var(--white); margin-bottom:8px; letter-spacing:-.3px; }
.bb-mini p { font-size:14px; color:var(--muted); line-height:1.65; font-weight:300; }
.speed-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green);
  border: 1px solid rgba(57,217,138,.25);
  padding: 4px 10px;
  border-radius: 3px;
  margin-top: 10px;
}
.bb-main h3 { font-family:'Syne',sans-serif; font-size:24px; font-weight:800; color:var(--white); letter-spacing:-.8px; margin-bottom:16px; }
.bb-main p { font-size:16px; color:var(--muted); line-height:1.8; font-weight:300; margin-bottom:20px; }
.bb-checklist { list-style:none; margin-top:8px; }
.bb-checklist li { font-size:15px; color:var(--white2); padding:10px 0; border-bottom:1px solid var(--border); display:flex; gap:12px; font-weight:300; }
.bb-checklist li:last-child { border-bottom:none; }
.bb-checklist li span { color:var(--green); font-weight:700; }

/* ─── PROVIDERS TABLE ─── */
#providers { background: var(--bg2); }
.providers-table-wrap { overflow-x: auto; }
.providers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.providers-table thead tr { background: var(--surface2); border-bottom: 1px solid var(--green); }
.providers-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}
.providers-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); color: var(--white2); vertical-align: middle; }
.providers-table tr:hover td { background: var(--surface); }
.providers-table tr:last-child td { border-bottom: none; }
.brand-cell { display:flex; align-items:center; gap:10px; }
.bdot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }

/* ─── GUIDANCE TIPS ─── */
#guidance { background: var(--bg); }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2px; }
.guide-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.guide-card:hover { background: var(--surface2); }
.guide-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.guide-card:hover::after { transform: scaleX(1); }
.guide-icon {
  width: 48px; height: 48px;
  background: var(--green-dim);
  border: 1px solid rgba(57,217,138,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.guide-card h3 { font-family:'Syne',sans-serif; font-size:17px; font-weight:700; color:var(--white); letter-spacing:-.3px; margin-bottom:12px; }
.guide-card p { font-size:15px; color:var(--muted); line-height:1.75; font-weight:300; }
.guide-card ul { list-style:none; margin-top:14px; }
.guide-card ul li { font-size:14px; color:var(--white2); padding:6px 0; border-bottom:1px solid var(--border); font-weight:300; }
.guide-card ul li:last-child { border-bottom:none; }
.guide-card ul li::before { content:'— '; color:var(--green); }

/* ─── FAQ ─── */
#faq { background: var(--bg2); }
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 800px; }
.faq-item { background: var(--surface); }
.faq-q {
  padding: 22px 28px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: var(--surface2); }
.faq-q.open { color: var(--green); background: var(--surface2); }
.faq-arrow { font-size: 18px; flex-shrink: 0; transition: transform .3s; color: var(--muted); }
.faq-q.open .faq-arrow { transform: rotate(180deg); color: var(--green); }
.faq-a {
  display: none;
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.faq-item.open .faq-a { display: block; }

/* ─── GLOSSARY ─── */
#glossary { background: var(--bg); }
.glossary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px; }
.gloss-card { background: var(--surface); padding: 28px 24px; transition: background .2s; }
.gloss-card:hover { background: var(--surface2); }
.gloss-term { font-family:'Syne',sans-serif; font-size:14px; font-weight:700; color:var(--green); letter-spacing:.5px; margin-bottom:8px; }
.gloss-def { font-size:14px; color:var(--muted); line-height:1.65; font-weight:300; }

/* ─── ABOUT ─── */
#about { background: var(--bg2); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { font-size:16px; color:var(--muted); line-height:1.85; font-weight:300; margin-bottom:20px; }
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 2px; }
.val-row {
  background: var(--surface);
  padding: 18px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background .2s;
}
.val-row:hover { background: var(--surface2); }
.val-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.val-row h4 { font-family:'Syne',sans-serif; font-size:13px; font-weight:700; color:var(--white); margin-bottom:4px; }
.val-row p { font-size:13.5px; color:var(--muted); font-weight:300; line-height:1.6; }
.about-visual { position: relative; }
.about-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.abox {
  background: var(--surface);
  padding: 32px 24px;
  text-align: center;
}
.abox-num { font-family:'Syne',sans-serif; font-size:40px; font-weight:800; color:var(--green); line-height:1; }
.abox-label { font-size:13px; color:var(--muted); margin-top:8px; font-weight:300; }

/* ─── DISCLAIMER ─── */
#disclaimer { background: var(--bg); border-top: 2px solid var(--green); }
.disclaimer-box {
  background: var(--green-dim);
  border: 1px solid rgba(57,217,138,.2);
  padding: 48px;
  border-radius: 4px;
}
.disclaimer-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.disclaimer-box p {
  font-size: 15px;
  color: var(--white2);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}
.disclaimer-box p:last-child { margin-bottom: 0; }
.disclaimer-box strong { color: var(--green); font-weight: 600; }
.disclaimer-highlight {
  background: rgba(57,217,138,.08);
  border-left: 3px solid var(--green);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--white2);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── PRIVACY & TERMS ─── */
#privacy, #terms { background: var(--bg2); }
.policy-wrap { max-width: 780px; }
.policy-section { margin-bottom: 36px; }
.policy-section h3 { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; color:var(--white); margin-bottom:12px; display:flex; align-items:center; gap:10px; }
.policy-section h3::before { content:''; display:block; width:16px; height:2px; background:var(--green); flex-shrink:0; }
.policy-section p, .policy-section li { font-size:15px; color:var(--muted); line-height:1.85; font-weight:300; margin-bottom:10px; }
.policy-section ul { padding-left: 20px; }
.policy-section li { list-style: disc; }

/* ─── CONTACT ─── */
#contact { background: var(--bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info-box { background: var(--surface); padding: 40px; }
.contact-info-box h3 { font-family:'Syne',sans-serif; font-size:18px; font-weight:700; color:var(--white); letter-spacing:-.3px; margin-bottom:28px; }
.c-item { padding: 16px 0; border-bottom: 1px solid var(--border); display:flex; gap:14px; align-items:flex-start; }
.c-item:last-of-type { border-bottom: none; }
.c-emoji { font-size:20px; flex-shrink:0; margin-top:2px; }
.c-label { font-family:'Syne',sans-serif; font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted2); margin-bottom:4px; }
.c-value { font-size:15px; color:var(--white); font-weight:400; }
.contact-warning {
  background: rgba(240,160,48,.06);
  border: 1px solid rgba(240,160,48,.2);
  padding: 18px 20px;
  margin-top: 24px;
  font-size:13.5px;
  color: #c8a060;
  line-height: 1.7;
  font-weight: 300;
}
.contact-warning strong { color: #f0c060; font-weight: 600; }
.contact-form-box { background: var(--surface); padding: 40px; }
.contact-form-box h3 { font-family:'Syne',sans-serif; font-size:18px; font-weight:700; color:var(--white); letter-spacing:-.3px; margin-bottom:28px; }
.f-group { margin-bottom: 18px; }
.f-label { font-family:'Syne',sans-serif; font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted2); display:block; margin-bottom:8px; }
.f-input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  outline: none;
  border-radius: 3px;
  transition: border-color .2s;
}
.f-input:focus { border-color: var(--green); }
.f-input::placeholder { color: var(--muted2); }
.f-textarea { resize: vertical; min-height: 120px; }
.f-submit {
  width: 100%;
  background: var(--green);
  color: #0a1a10;
  border: none;
  padding: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  border-radius: 3px;
  transition: background .2s;
  margin-top: 8px;
}
.f-submit:hover { background: var(--green2); }

/* ─── FOOTER ─── */
footer {
  background: #080a09;
  padding: 64px 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.f-brand .nav-logo { display:block; margin-bottom:16px; font-size:22px; }
.f-brand p { font-size:14px; color:var(--muted); line-height:1.75; font-weight:300; max-width:280px; }
.f-col h4 { font-family:'Syne',sans-serif; font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--green); margin-bottom:18px; }
.f-col ul { list-style:none; }
.f-col li { margin-bottom:10px; }
.f-col a { color:var(--muted); font-size:14px; text-decoration:none; transition:color .2s; font-weight:300; }
.f-col a:hover { color:var(--white2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted2);
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  letter-spacing: .3px;
}
.footer-bottom a { color: var(--green); text-decoration: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
.fade-up { opacity:0; transform:translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity:1; transform:none; }

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {
  nav { padding:0 20px; flex-wrap:wrap; height:auto; padding:14px 20px; gap:12px; }
  .nav-links { gap:16px; flex-wrap:wrap; font-size:11px; }
  section { padding:60px 24px; }
  .hero-h1 { letter-spacing:-2px; }
  #home { padding:100px 24px 60px; }
  .net-header { grid-template-columns:1fr; gap:10px; }
  .bb-layout { grid-template-columns:1fr; }
  .about-layout { grid-template-columns:1fr; gap:40px; }
  .contact-layout { grid-template-columns:1fr; gap:24px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .hero-stats { gap:28px; }
  .provider-table td, .providers-table th { padding:12px 14px; font-size:13px; }
}
@media(max-width:600px) {
  .footer-top { grid-template-columns:1fr; }
  .about-boxes { grid-template-columns:1fr 1fr; }
  .net-header { padding:18px 20px; }
  .net-body { margin:0 20px; }
}

/* WP adjustments */
.site-wrap{min-height:100vh;}
.section-page-wrap section:first-of-type{padding-top:120px;}
