/*
Theme Name: FomeoMove Insurance Hub
Theme URI: https://fomeomove.online
Author: FomeoMove
Description: Complete working WordPress theme for an independent U.S. insurance education website. Auto pages, menu, contact form shortcode, FAQs, responsive layout and animations included.
Version: 2.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: fomeomove
*/

/* ══════════════════════════════════════════
   PLANATWAYINFO.ONLINE — PREMIUM ANIMATED WEBSITE
   UK TELECOM GUIDANCE PLATFORM 2026
══════════════════════════════════════════ */

:root {
  --bg: #04080f;
  --bg2: #060d1a;
  --surface: #0d1b2e;
  --surface2: #102237;
  --border: #1a2f4a;
  --border2: #1f3a58;
  --blue: #0ea5e9;
  --blue2: #38bdf8;
  --purple: #8b5cf6;
  --teal: #14b8a6;
  --gold: #f59e0b;
  --green: #22c55e;
  --red: #ef4444;
  --white: #f0f6ff;
  --white2: #94afc8;
  --muted: #4a6480;
  --glow: rgba(14,165,233,.12);
  --glow2: rgba(139,92,246,.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white2);
  line-height: 1.7;
  overflow-x: hidden;
}
body.loaded { overflow-x: hidden; }

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--purple)); border-radius: 2px; }

/* ══ LOADER ══ */
#loader {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .6s ease, visibility .6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--white);
  margin-bottom: 32px;
  animation: pulse 1.5s ease infinite;
}
.loader-logo span { color: var(--blue); }
.loader-bar {
  width: 200px; height: 3px; background: var(--surface);
  border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 2px; animation: load 2s ease forwards;
}
@keyframes load { 0% { width: 0 } 100% { width: 100% } }
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.5 } }

/* ══ CURSOR ══ */
.cursor {
  width: 12px; height: 12px; background: var(--blue);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998;
  transition: transform .1s ease;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 36px; height: 36px; border: 1.5px solid rgba(14,165,233,.5);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 9997;
  transition: all .2s ease;
}
.cursor-ring.hover { transform: scale(2); border-color: var(--purple); }

/* ══ NOISE OVERLAY ══ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: .4;
}

/* ══ GRID BG ══ */
.grid-bg {
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ══ DISCLAIMER BANNER ══ */
.disc-banner {
  position: relative; z-index: 100;
  background: linear-gradient(90deg, #7f1d1d 0%, #92400e 50%, #7f1d1d 100%);
  background-size: 200% 100%;
  animation: bannerShift 4s ease infinite;
  text-align: center; padding: 10px 20px;
  font-size: 12px; font-weight: 600; color: #fde68a;
  line-height: 1.6; letter-spacing: .3px;
}
.disc-banner a { color: #fff; text-decoration: underline; }
@keyframes bannerShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

/* ══ NAV ══ */
nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(4,8,15,.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: all .3s ease;
}
nav.scrolled {
  background: rgba(4,8,15,.98);
  box-shadow: 0 4px 40px rgba(14,165,233,.08);
}
.nav-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--white);
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .8; }
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  animation: rotateLogo 8s linear infinite;
}
@keyframes rotateLogo { 0%{filter:hue-rotate(0deg)} 100%{filter:hue-rotate(360deg)} }
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--white2); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px;
  transition: all .2s ease; white-space: nowrap;
  border: 1px solid transparent;
}
.nav-links a:hover { color: var(--white); background: var(--surface); border-color: var(--border); }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--purple)) !important;
  color: #fff !important; border: none !important;
  font-weight: 600 !important;
  box-shadow: 0 0 20px rgba(14,165,233,.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(14,165,233,.5) !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--white2); border-radius: 1px; transition: all .3s; }

/* ══ HERO ══ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}
.hero-orbs {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .15; animation: orbFloat linear infinite;
}
.orb1 { width: 600px; height: 600px; background: var(--blue); top: -200px; left: -100px; animation-duration: 20s; }
.orb2 { width: 500px; height: 500px; background: var(--purple); top: 100px; right: -150px; animation-duration: 25s; animation-delay: -8s; }
.orb3 { width: 400px; height: 400px; background: var(--teal); bottom: -100px; left: 30%; animation-duration: 18s; animation-delay: -4s; }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-40px) scale(1.05)} }

.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;
  background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.25);
  color: var(--blue2); padding: 8px 18px; border-radius: 24px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideUp .8s ease .2s both;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue2);
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 700; color: var(--white);
  line-height: 1.02; letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeSlideUp .8s ease .35s both;
}
.hero h1 .word-highlight {
  position: relative; display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  background-size: 200% 200%;
}
@keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

.hero-sub {
  font-size: 18px; color: var(--white2); max-width: 560px;
  line-height: 1.8; margin-bottom: 44px; font-weight: 300;
  animation: fadeSlideUp .8s ease .5s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; animation: fadeSlideUp .8s ease .65s both; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; padding: 15px 34px; border-radius: 12px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(14,165,233,.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(14,165,233,.4); }

.btn-secondary {
  background: var(--surface); color: var(--white);
  border: 1px solid var(--border2); padding: 15px 34px;
  border-radius: 12px; font-weight: 600; font-size: 15px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); background: rgba(14,165,233,.05); }

/* ══ HERO STATS ══ */
.hero-stats {
  display: flex; gap: 0; border-top: 1px solid var(--border);
  padding-top: 48px; flex-wrap: wrap;
  animation: fadeSlideUp .8s ease .8s both;
}
.h-stat { flex: 1; min-width: 140px; padding: 0 40px 0 0; border-right: 1px solid var(--border); }
.h-stat:last-child { border-right: none; }
.h-stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 42px; font-weight: 700; color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.h-stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ══ FLOATING CARDS (HERO DECORATION) ══ */
.hero-cards {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; padding-right: 48px;
  animation: fadeSlideUp .8s ease .6s both;
}
.float-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 22px;
  min-width: 220px; backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.float-card::before {
  content: '';  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}
.fc-network { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fc-name { font-family: 'Clash Display', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.fc-bar { height: 6px; background: var(--surface2); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.fc-fill { height: 100%; border-radius: 3px; animation: fillBar 2s ease .5s both; }
@keyframes fillBar { from{width:0} }
.fc-fill.o2 { width: 92%; background: linear-gradient(90deg, #0019a5, #003ccc); }
.fc-fill.ee { width: 97%; background: linear-gradient(90deg, #007a4e, #00c27a); }
.fc-fill.three { width: 85%; background: linear-gradient(90deg, #00a3e0, #38bdf8); }
.fc-label { font-size: 11px; color: var(--muted); }
.fc-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.fc-badge.excellent { background: rgba(34,197,94,.15); color: #22c55e; border: 1px solid rgba(34,197,94,.25); }
.fc-badge.good { background: rgba(14,165,233,.15); color: var(--blue2); border: 1px solid rgba(14,165,233,.25); }

.float-card { animation: cardFloat ease infinite; }
.float-card:nth-child(1) { animation-duration: 4s; }
.float-card:nth-child(2) { animation-duration: 5s; animation-delay: -2s; }
.float-card:nth-child(3) { animation-duration: 3.5s; animation-delay: -1s; }
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ══ SCROLL INDICATOR ══ */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; animation: fadeIn 1s ease 1.5s both;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--border2);
  border-radius: 12px; position: relative;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--blue);
  border-radius: 2px; position: absolute; left: 50%; top: 6px;
  transform: translateX(-50%); animation: scrollWheel 1.5s ease infinite;
}
@keyframes scrollWheel { 0%{opacity:1;transform:translateX(-50%) translateY(0)} 100%{opacity:0;transform:translateX(-50%) translateY(16px)} }
.scroll-text { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

/* ══ SECTIONS ══ */
section { position: relative; z-index: 1; padding: 90px 48px; }
.container { max-width: 1140px; margin: 0 auto; }
.sec-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.sec-label::before { content: ''; width: 24px; height: 2px; background: var(--blue); border-radius: 1px; }
.sec-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--white);
  letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 18px;
}
.sec-title span { color: var(--blue); }
.sec-lead { font-size: 17px; color: var(--white2); max-width: 660px; line-height: 1.85; margin-bottom: 56px; font-weight: 300; }

/* ══ CARDS ══ */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 28px; }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .35s ease;
  cursor: default;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(14,165,233,.12); border-color: var(--border2); }
.card:hover::before { opacity: 1; }
.card-glow {
  position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
  border-radius: 50%; opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.card:hover .card-glow { opacity: 1; }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; flex-shrink: 0;
  position: relative; overflow: hidden;
}
.card-icon::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: inherit; filter: blur(10px); opacity: .5; z-index: -1;
}
.card h3 { font-family: 'Clash Display', sans-serif; font-size: 19px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--white2); line-height: 1.75; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-size: 14px; text-decoration: none; margin-top: 18px; transition: gap .2s; }
.card-link:hover { gap: 12px; }

/* ══ NETWORK CARDS ══ */
.network-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.network-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(14,165,233,.1); }
.nc-header { padding: 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 16px; }
.nc-logo {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0;
}
.nc-name { font-family: 'Clash Display', sans-serif; font-size: 19px; font-weight: 600; color: var(--white); }
.nc-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.nc-expand-btn {
  margin-left: auto; width: 32px; height: 32px; border-radius: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--white2); font-size: 16px;
  transition: all .2s; flex-shrink: 0;
}
.nc-expand-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.nc-body { padding: 0 28px 28px; display: none; }
.network-card.expanded .nc-body { display: block; }
.network-card.expanded .nc-expand-btn { transform: rotate(180deg); background: var(--blue); color: #fff; }
.nc-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.nc-row:last-child { border-bottom: none; }
.nc-row .label { color: var(--muted); }
.nc-row .value { font-weight: 600; color: var(--white); }
.nc-badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-g { background: rgba(34,197,94,.12); color: #4ade80; border: 1px solid rgba(34,197,94,.2); }
.badge-b { background: rgba(14,165,233,.12); color: var(--blue2); border: 1px solid rgba(14,165,233,.2); }
.badge-a { background: rgba(245,158,11,.12); color: #fbbf24; border: 1px solid rgba(245,158,11,.2); }
.nc-pros { list-style: none; margin-top: 16px; }
.nc-pros li { font-size: 13.5px; color: var(--white2); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; }
.nc-pros li:last-child { border-bottom: none; }
.nc-pros li::before { content: '→'; color: var(--blue); flex-shrink: 0; margin-top: 1px; }

/* ══ COMPARISON TABLE ══ */
.tbl-scroll { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table thead tr { background: var(--surface2); }
.comp-table th { padding: 16px 20px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white2); white-space: nowrap; }
.comp-table th.hl { color: var(--blue); }
.comp-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--white2); }
.comp-table tr:hover td { background: rgba(14,165,233,.03); }
.comp-table tr:last-child td { border-bottom: none; }
.chk { color: #4ade80; font-weight: 700; }
.crs { color: #f87171; font-weight: 700; }
.prt { color: #fbbf24; font-weight: 700; }

/* ══ FAQ ══ */
.faq-wrap { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-item.open { border-color: rgba(14,165,233,.3); box-shadow: 0 4px 20px rgba(14,165,233,.08); }
.faq-q {
  padding: 20px 26px; font-size: 15px; font-weight: 500; color: var(--white);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  user-select: none; transition: background .2s;
}
.faq-q:hover { background: var(--surface2); }
.faq-q.active { background: linear-gradient(90deg, rgba(14,165,233,.1), transparent); color: var(--blue2); }
.faq-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: all .3s; }
.faq-q.active .faq-icon { background: var(--blue); border-color: var(--blue); transform: rotate(45deg); }
.faq-a { display: none; padding: 20px 26px; font-size: 14.5px; color: var(--white2); line-height: 1.85; border-top: 1px solid var(--border); background: rgba(14,165,233,.02); }
.faq-item.open .faq-a { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }

/* ══ TESTIMONIALS ══ */
.testi-wrap { position: relative; overflow: hidden; }
.testi-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; min-width: 360px; flex-shrink: 0;
  position: relative; overflow: hidden;
}
.testi-card::before { content: '"'; font-family: 'Clash Display', sans-serif; font-size: 80px; color: var(--blue); position: absolute; top: 8px; left: 20px; line-height: 1; opacity: .15; }
.testi-text { font-size: 15px; color: var(--white2); line-height: 1.8; padding-top: 24px; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testi-name { font-family: 'Clash Display', sans-serif; font-size: 15px; font-weight: 600; color: var(--white); }
.testi-loc { font-size: 12px; color: var(--muted); }
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 4px; }
.testi-nav { display: flex; gap: 10px; margin-top: 28px; }
.testi-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--white2); font-size: 18px;
  transition: all .2s;
}
.testi-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ══ PLAN TYPES ══ */
.plan-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.plan-card.featured {
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(139,92,246,.06));
  border-color: rgba(14,165,233,.3);
}
.plan-card.featured::after {
  content: 'MOST FLEXIBLE';
  position: absolute; top: 18px; right: -28px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 36px; transform: rotate(35deg);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(14,165,233,.1); }
.plan-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.plan-title { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.plan-desc { font-size: 14px; color: var(--white2); line-height: 1.75; margin-bottom: 24px; }
.plan-list { list-style: none; }
.plan-list li { font-size: 14px; color: var(--white2); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; }
.plan-list li:last-child { border-bottom: none; }
.plan-list li .tick { color: var(--green); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.plan-contract { margin-top: 20px; padding: 12px 16px; background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; font-size: 13px; color: var(--muted); }

/* ══ BROADBAND SECTION ══ */
.bb-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 30px 24px;
  transition: all .3s ease;
}
.bb-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(14,165,233,.1); border-color: var(--border2); }
.bb-speed { display: inline-block; margin-top: 12px; font-family: 'Clash Display', sans-serif; font-size: 13px; font-weight: 600; color: var(--blue); background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.2); padding: 4px 12px; border-radius: 8px; }

/* ══ COVERAGE PROGRESS BARS ══ */
.coverage-bars { display: flex; flex-direction: column; gap: 16px; }
.cov-bar-row { display: flex; flex-direction: column; gap: 8px; }
.cov-bar-label { display: flex; justify-content: space-between; font-size: 13.5px; }
.cov-bar-name { color: var(--white); font-weight: 500; }
.cov-bar-val { color: var(--blue); font-weight: 700; }
.cov-bar-track { height: 8px; background: var(--surface2); border-radius: 4px; overflow: hidden; }
.cov-bar-fill { height: 100%; border-radius: 4px; transition: width 1.5s cubic-bezier(.4,0,.2,1); }

/* ══ STEPS ══ */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 4px; position: relative; }
.step-card {
  background: var(--surface); padding: 40px 28px;
  position: relative; transition: background .2s;
}
.step-card:hover { background: var(--surface2); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(14,165,233,.3);
}
.step-accent { position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(var(--blue), var(--purple)); transition: height .3s; }
.step-card:hover .step-accent { height: 100%; }
.step-card h3 { font-family: 'Clash Display', sans-serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--white2); line-height: 1.7; }

/* ══ STATS COUNTER ══ */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.stat-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  transition: all .3s ease;
}
.stat-box:hover { transform: translateY(-3px); border-color: var(--border2); box-shadow: 0 8px 32px rgba(14,165,233,.08); }
.stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 44px; font-weight: 700; color: var(--white); line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ══ DISCLAIMER SECTION ══ */
.disc-section { background: linear-gradient(135deg, rgba(127,29,29,.2), rgba(146,64,14,.15)); border: 1px solid rgba(245,158,11,.2); border-radius: 20px; padding: 40px 44px; }
.disc-section h3 { font-family: 'Clash Display', sans-serif; font-size: 22px; color: #fde68a; margin-bottom: 16px; }
.disc-section p { font-size: 15px; color: #fcd34d; line-height: 1.85; }
.disc-section p + p { margin-top: 12px; }
.disc-section strong { color: #fef08a; }

/* ══ INFO BOX ══ */
.info-box { background: rgba(14,165,233,.06); border: 1px solid rgba(14,165,233,.2); border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; padding: 18px 24px; margin: 20px 0; }
.info-box p { font-size: 14.5px; color: var(--white2); line-height: 1.8; }

/* ══ CONTACT FORM ══ */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.form-input {
  width: 100%; background: var(--surface2); border: 1.5px solid var(--border);
  color: var(--white); padding: 14px 18px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 15px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(14,165,233,.1); }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { resize: vertical; min-height: 130px; }
select.form-input { cursor: pointer; }
.form-submit {
  width: 100%; background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; border: none; padding: 16px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: transform .15s, box-shadow .2s;
  letter-spacing: .3px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(14,165,233,.3); }

/* ══ CONTACT INFO ══ */
.contact-info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ci-value { font-size: 15px; font-weight: 600; color: var(--white); }

/* ══ POLICY PAGES ══ */
.policy-section { margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.policy-section:last-child { border-bottom: none; }
.policy-section h3 { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.policy-section h3::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 1px; }
.policy-section p, .policy-section li { font-size: 15px; color: var(--white2); line-height: 1.9; margin-bottom: 12px; }
.policy-section ul { padding-left: 22px; }
.policy-section li { list-style: disc; }

/* ══ GLOSSARY ══ */
.gloss-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.gloss-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px 22px; transition: all .2s; }
.gloss-card:hover { border-color: rgba(14,165,233,.3); transform: translateY(-2px); }
.gloss-term { font-family: 'Clash Display', sans-serif; font-size: 15px; font-weight: 600; color: var(--blue2); margin-bottom: 8px; }
.gloss-def { font-size: 13.5px; color: var(--white2); line-height: 1.7; }

/* ══ FLOATING PHONE CTA ══ */
.phone-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 400;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 30px rgba(14,165,233,.4);
  animation: phonePulse 2s ease infinite;
  transition: transform .2s;
}
.phone-cta:hover { transform: scale(1.1); }
@keyframes phonePulse { 0%,100%{box-shadow:0 8px 30px rgba(14,165,233,.4)} 50%{box-shadow:0 8px 50px rgba(139,92,246,.6)} }

/* ══ FOOTER ══ */
footer {
  background: #020609; border-top: 1px solid var(--border);
  padding: 64px 48px 32px; position: relative; z-index: 1;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-logo { font-family: 'Clash Display', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo span { color: var(--blue); }
.footer-brand p { font-size: 13.5px; color: var(--muted); line-height: 1.8; max-width: 280px; margin-bottom: 20px; }
.footer-col h4 { font-family: 'Clash Display', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 13.5px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-disc { background: rgba(127,29,29,.15); border: 1px solid rgba(245,158,11,.12); border-radius: 12px; padding: 20px 24px; margin-bottom: 28px; font-size: 12.5px; color: var(--muted); line-height: 1.75; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--blue); text-decoration: none; }

/* ══ BREADCRUMB ══ */
.breadcrumb { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 14px 48px; font-size: 13px; color: var(--muted); position: relative; z-index: 1; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb span { margin: 0 10px; opacity: .4; }

/* ══ PAGE HERO (inner pages) ══ */
.page-hero { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 80px 48px 70px; position: relative; z-index: 1; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(14,165,233,.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; }

/* ══ SCROLL ANIMATIONS ══ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

@keyframes fadeSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }

/* ══ COUNTER ANIMATION ══ */
.counter { transition: all .1s; }

/* ══ MOBILE NAV ══ */
.mobile-nav {
  display: none; position: fixed; inset: 0; background: rgba(4,8,15,.97);
  backdrop-filter: blur(20px); z-index: 499; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Clash Display', sans-serif; font-size: 28px; font-weight: 600; color: var(--white); text-decoration: none; transition: color .2s; }
.mobile-nav a:hover { color: var(--blue); }
.mobile-close { position: absolute; top: 24px; right: 28px; font-size: 28px; color: var(--white2); cursor: pointer; background: none; border: none; }

/* ══ RESPONSIVE ══ */
@media(max-width:1100px) {
  .hero-cards { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 20px; }
  .hero { padding: 100px 20px 70px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { gap: 24px; }
  .h-stat { border-right: none; padding-right: 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .breadcrumb, .page-hero { padding-left: 20px; padding-right: 20px; }
  footer { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .cursor, .cursor-ring { display: none; }
  .scroll-indicator { display: none; }
}
@media(max-width:480px) {
  .comp-table th, .comp-table td { padding: 12px 14px; font-size: 13px; }
  .hero h1 { font-size: 38px; letter-spacing: -0.5px; }
}

/* Fixed packaging: floating contact icon now links to contact page */
