/* =============================================
   WOLVERHAMPTON FIBRE — MAIN STYLESHEET
   Telexico Communications Ltd
   ============================================= */

:root {
  --bg:      #050710;
  --bg2:     #0A0D1A;
  --bg3:     #0F1220;
  --blue:    #0052FF;
  --blue2:   #3D7FFF;
  --cyan:    #00C6FF;
  --green:   #00E5A0;
  --orange:  #FF6B2B;
  --red:     #FF2D55;
  --white:   #FFFFFF;
  --w90: rgba(255,255,255,0.90);
  --w80: rgba(255,255,255,0.80);
  --w60: rgba(255,255,255,0.60);
  --w50: rgba(255,255,255,0.50);
  --w30: rgba(255,255,255,0.30);
  --w20: rgba(255,255,255,0.20);
  --w10: rgba(255,255,255,0.10);
  --w06: rgba(255,255,255,0.06);
  --w04: rgba(255,255,255,0.04);
  --border:  rgba(255,255,255,0.08);
  --border2: rgba(0,82,255,0.30);
  --shadow:  0 20px 60px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
}

/* ── NAVIGATION ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(5,7,16,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#nav.scrolled { background: rgba(5,7,16,0.98); }

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 900; letter-spacing: 0.02em;
  text-transform: uppercase; flex-shrink: 0;
}
.nav-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 900;
}

.nav-links {
  display: none;
  list-style: none; gap: 4px;
}
@media(min-width:900px){ .nav-links { display: flex; } }

.nav-links a {
  text-decoration: none; color: var(--w80);
  font-size: 0.82rem; font-weight: 600;
  padding: 6px 12px; border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: var(--w06); }
.nav-links a.active { color: var(--cyan); }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop > a { cursor: pointer; }
.nav-drop > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.6; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px; min-width: 200px;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 100;
}
.nav-drop:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 0.82rem; color: var(--w80); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--w06); color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-tel {
  font-size: 0.8rem; font-weight: 700;
  color: var(--w80); text-decoration: none;
  display: none; white-space: nowrap;
}
@media(min-width:640px){ .nav-tel { display: block; } }

.nav-cta {
  background: var(--blue); color: var(--white);
  padding: 9px 20px; border-radius: 9px;
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,82,255,0.4); }

/* Mobile menu */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none;
  background: transparent; margin-left: 8px;
}
@media(min-width:900px){ .hamburger { display: none; } }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.25s;
}

.mobile-menu {
  position: fixed; top: 62px; left: 0; right: 0;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 16px 5% 24px; z-index: 499;
  transform: translateY(-100%); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  display: block; padding: 12px 0; font-size: 1rem; font-weight: 600;
  color: var(--w80); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 90px 5% 60px;
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 60% 10%, rgba(0,82,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,198,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 90% 90%, rgba(0,229,160,0.06) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,82,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,82,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr;
  gap: 52px; align-items: center;
}
@media(min-width:960px){ .hero-inner { grid-template-columns: 1fr 460px; } }

/* Page hero (interior pages) */
.page-hero {
  padding: 110px 5% 70px;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(0,82,255,0.12) 0%, transparent 70%),
    var(--bg2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero-inner { max-width: 760px; margin: 0 auto; }

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,160,0.10); border: 1px solid rgba(0,229,160,0.20);
  color: var(--green); padding: 5px 14px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.eyebrow-blue {
  background: rgba(0,82,255,0.10); border-color: rgba(0,82,255,0.2);
  color: var(--blue2);
}

h1.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  margin-bottom: 22px;
}
h1.hero-title .c1 { color: var(--cyan); }
h1.hero-title .c2 { color: var(--green); }
h1.hero-title .c3 { color: var(--orange); }

h2.hero-title {
  font-size: clamp(2.2rem,5vw,4rem);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--w80); line-height: 1.78;
  font-weight: 400; max-width: 560px;
  margin-bottom: 30px;
}

/* ── SECTIONS ── */
section { padding: 80px 5%; position: relative; z-index: 1; }
.max { max-width: 1280px; margin: 0 auto; }
.max-md { max-width: 860px; margin: 0 auto; }

.sec-label {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--cyan); margin-bottom: 12px;
  display: block;
}
.sec-label.green { color: var(--green); }
.sec-label.orange { color: var(--orange); }

.sec-title {
  font-size: clamp(1.9rem, 3.8vw, 3.0rem);
  margin-bottom: 14px; line-height: 1.02;
}
.sec-title .a { color: var(--cyan); }
.sec-title .b { color: var(--green); }
.sec-title .c { color: var(--orange); }

.sec-body {
  font-size: 0.95rem; color: var(--w50);
  line-height: 1.78; max-width: 560px; font-weight: 400;
}

.hr { height: 1px; background: var(--border); margin: 0 5%; }
.hr-full { height: 1px; background: var(--border); }
section.bg2 { background: var(--bg2); }
section.bg3 { background: var(--bg3); }

/* ── GRID PATTERNS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 16px; }
@media(max-width:700px){ .grid-2 { grid-template-columns: 1fr; } }

/* ── CARDS ── */
.card {
  background: var(--w04); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.card:hover { border-color: var(--border2); transform: translateY(-4px); background: rgba(0,82,255,0.04); }

.card-sm { border-radius: 12px; padding: 20px 18px; }

.card-top-line { position: relative; overflow: hidden; }
.card-top-line::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.card-top-line.blue::before { background: var(--blue); }
.card-top-line.cyan::before { background: var(--cyan); }
.card-top-line.green::before { background: var(--green); }
.card-top-line.orange::before { background: var(--orange); }

/* ── PROVIDER CARD ── */
.prov-card { text-align: center; }
.prov-logo {
  width: 52px; height: 52px; border-radius: 13px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 0.72rem; letter-spacing: 0.04em; line-height: 1;
}
.prov-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 4px;
}
.prov-desc { font-size: 0.72rem; color: var(--w50); margin-bottom: 8px; line-height: 1.5; }
.speed-tag {
  display: inline-block;
  background: rgba(0,229,160,0.10); border: 1px solid rgba(0,229,160,0.20);
  color: var(--green); padding: 3px 9px; border-radius: 100px;
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.04em;
}
.net-tag {
  display: inline-block; margin-top: 5px;
  background: var(--w06); color: var(--w50);
  padding: 2px 8px; border-radius: 100px;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.04em;
}

/* ── STAT BAR ── */
.stat-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-row {
  display: grid; grid-template-columns: repeat(2,1fr);
  max-width: 1280px; margin: 0 auto;
}
@media(min-width:700px){ .stat-row { grid-template-columns: repeat(4,1fr); } }
.stat-block {
  padding: 30px 20px; border-right: 1px solid var(--border); text-align: center;
}
.stat-block:last-child { border-right: none; }
.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 2.8rem; line-height: 1; letter-spacing: -0.02em;
}
.stat-n .u { color: var(--cyan); }
.stat-l { font-size: 0.72rem; font-weight: 700; color: var(--w50); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); }
table.comp { width: 100%; border-collapse: collapse; }
table.comp th {
  background: rgba(0,82,255,0.08); padding: 13px 16px;
  text-align: left; font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 800; color: var(--w50);
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
table.comp td {
  padding: 14px 16px; font-size: 0.87rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
table.comp tr:last-child td { border-bottom: none; }
table.comp tr:hover td { background: rgba(0,82,255,0.04); }
.badge-rec { background: var(--green); color: #050710; font-size: 0.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 7px; border-radius: 4px; margin-left: 6px; }
.badge-pop { background: var(--orange); color: #fff; font-size: 0.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 7px; border-radius: 4px; margin-left: 6px; }
.bar-wrap { display: flex; align-items: center; gap: 8px; }
.bar { height: 5px; border-radius: 100px; background: var(--blue); transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.tag-ded { color: var(--green); font-weight: 700; font-size: 0.82rem; }
.tag-sh { color: var(--w50); font-size: 0.82rem; }
.chk { color: var(--green); }
.crs { color: rgba(255,255,255,0.25); }

/* ── FORM ── */
.form-card {
  position: relative; background: var(--w04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 34px 30px;
  backdrop-filter: blur(24px);
  overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 4px;
}
.form-sub { font-size: 0.8rem; color: var(--w50); margin-bottom: 22px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media(max-width:480px){ .frow { grid-template-columns: 1fr; } }
.fg { margin-bottom: 12px; }
.fg label { display: block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--w50); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px; padding: 10px 14px;
  color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.22); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); background: rgba(0,82,255,0.07); }
.fg select option { background: #0a0d1a; color: #fff; }
.fg textarea { resize: vertical; min-height: 70px; }
.form-btn {
  width: 100%; padding: 15px; border: none; border-radius: 12px; cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.15rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--white); margin-top: 4px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.form-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,82,255,0.45); }
.form-foot { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 13px; font-size: 0.72rem; color: var(--w30); }
.success-box { display: none; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 20px 0; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(0,229,160,0.12); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; font-size: 2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 11px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1rem; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none; cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue2)); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,82,255,0.45); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--w50); background: var(--w04); }
.btn-green { background: linear-gradient(135deg, #00b87a, var(--green)); color: #050710; }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,229,160,0.35); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── TICKER ── */
.ticker { background: var(--blue); overflow: hidden; white-space: nowrap; padding: 9px 0; }
.ticker-track { display: inline-flex; animation: ticker 45s linear infinite; }
.ticker-item { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 22px; }
.ticker-sep { color: var(--cyan); padding: 0 4px; opacity: 0.7; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── POSTCODE CARDS ── */
.pc-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 18px;
  transition: border-color 0.2s, background 0.2s; cursor: default;
}
.pc-card:hover { border-color: rgba(0,198,255,0.3); background: rgba(0,198,255,0.04); }
.pc-code { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.25rem; color: var(--cyan); margin-bottom: 3px; }
.pc-area { font-weight: 700; font-size: 0.88rem; margin-bottom: 3px; }
.pc-hoods { font-size: 0.72rem; color: var(--w50); line-height: 1.5; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 9px; }
.pc-tag { background: rgba(0,82,255,0.10); border: 1px solid rgba(0,82,255,0.20); color: var(--blue2); padding: 2px 7px; border-radius: 4px; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.pc-tag.g { background: rgba(0,229,160,0.08); border-color: rgba(0,229,160,0.2); color: var(--green); }

/* ── CHECKER ── */
.checker {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px; max-width: 640px;
}
.checker-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.checker-input {
  flex: 1; min-width: 140px; background: var(--w06);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 16px; color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s;
}
.checker-input:focus { border-color: var(--blue); }
.checker-input::placeholder { color: rgba(255,255,255,0.25); }
.checker-btn {
  background: var(--blue); color: var(--white); border: none;
  border-radius: 10px; padding: 12px 22px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.04em; transition: transform 0.15s, box-shadow 0.15s;
}
.checker-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,82,255,0.4); }
.checker-result {
  display: none; margin-top: 14px;
  background: rgba(0,229,160,0.08); border: 1px solid rgba(0,229,160,0.2);
  border-radius: 10px; padding: 14px 16px;
  font-size: 0.87rem; color: var(--w80); line-height: 1.65;
}

/* ── FAQ ── */
.faq-list { margin-top: 24px; }
details { border-bottom: 1px solid var(--border); padding: 18px 0; cursor: pointer; }
details summary {
  font-weight: 700; font-size: 0.95rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; color: var(--w90); user-select: none;
}
details summary::-webkit-details-marker { display: none; }
.faq-ico { color: var(--cyan); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
details[open] .faq-ico { transform: rotate(45deg); }
details p { font-size: 0.88rem; color: var(--w60); line-height: 1.75; margin-top: 12px; }

/* ── TESTIMONIALS ── */
.testi-card { background: var(--w04); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.testi-stars { color: #FFB800; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-q { font-size: 0.9rem; color: var(--w80); line-height: 1.72; font-style: italic; font-weight: 300; margin-bottom: 18px; }
.testi-auth { display: flex; align-items: center; gap: 11px; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 0.9rem; flex-shrink: 0; }
.testi-nm { font-weight: 700; font-size: 0.87rem; }
.testi-biz { font-size: 0.72rem; color: var(--w50); }

/* ── CTA SECTION ── */
.cta-section { padding: 100px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,82,255,0.13) 0%, transparent 70%); }
.cta-section h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); margin-bottom: 18px; position: relative; }
.cta-section p { font-size: 1rem; color: var(--w60); margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 10px 5%; background: var(--bg2); border-bottom: 1px solid var(--border);
  font-size: 0.78rem; color: var(--w50); margin-top: 62px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--w60); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 7px; opacity: 0.4; }

/* ── PROSE (blog/content) ── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem,2.5vw,2rem); margin: 36px 0 14px; }
.prose h3 { font-size: clamp(1.15rem,1.8vw,1.4rem); margin: 28px 0 10px; }
.prose p { font-size: 0.95rem; color: var(--w80); line-height: 1.85; margin-bottom: 16px; font-weight: 400; }
.prose ul { margin: 12px 0 20px 20px; }
.prose ul li { font-size: 0.93rem; color: var(--w80); line-height: 1.75; margin-bottom: 8px; }
.prose strong { color: var(--white); font-weight: 700; }
.prose a { color: var(--cyan); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose blockquote {
  border-left: 3px solid var(--blue); padding: 14px 20px;
  background: rgba(0,82,255,0.06); border-radius: 0 10px 10px 0;
  margin: 24px 0; font-style: italic; color: var(--w80); font-size: 0.95rem;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 56px 5% 36px; position: relative; z-index: 1;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 40px;
}
@media(min-width:640px){ .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; text-transform: uppercase; margin-bottom: 10px; }
.footer-desc { font-size: 0.82rem; color: var(--w50); line-height: 1.7; }
.footer-heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--w50); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.82rem; color: var(--w60); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px; margin: 36px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer-legal { font-size: 0.72rem; color: var(--w30); line-height: 1.6; }
.footer-seo { font-size: 0.65rem; color: rgba(255,255,255,0.15); line-height: 1.6; margin-top: 12px; max-width: 1280px; margin-left: auto; margin-right: auto; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── TRUST STRIP ── */
.trust-strip { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 32px; }
.trust-pill { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 700; color: var(--w80); }
.trust-pill .chk { font-size: 0.9rem; }

/* ── MINI BADGES ── */
.mini-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.mini-badge { background: var(--w06); border: 1px solid var(--border); border-radius: 6px; padding: 5px 11px; font-size: 0.72rem; font-weight: 700; color: var(--w80); }

/* ── WHY CARD ── */
.why-ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,82,255,0.14); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.why-h { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; }
.why-p { font-size: 0.87rem; color: var(--w50); line-height: 1.72; }

/* ── INFO BOX ── */
.info-box { background: rgba(0,82,255,0.08); border: 1px solid rgba(0,82,255,0.2); border-radius: 12px; padding: 20px 22px; margin: 24px 0; }
.info-box p { font-size: 0.88rem; color: var(--w80); line-height: 1.7; margin: 0; }

/* ── PAGE NAV (area pages) ── */
.page-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.page-nav a { background: var(--w06); border: 1px solid var(--border); color: var(--w80); padding: 7px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 700; text-decoration: none; transition: border-color 0.15s, background 0.15s; }
.page-nav a:hover { border-color: var(--border2); background: rgba(0,82,255,0.08); color: var(--white); }

/* ── BLOG CARD ── */
.blog-card { background: var(--w04); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.blog-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.blog-img { height: 180px; background: linear-gradient(135deg, rgba(0,82,255,0.3), rgba(0,198,255,0.2)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 22px 22px; }
.blog-cat { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 8px; }
.blog-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.1; margin-bottom: 8px; }
.blog-excerpt { font-size: 0.82rem; color: var(--w50); line-height: 1.65; margin-bottom: 14px; }
.blog-meta { font-size: 0.72rem; color: var(--w30); }

/* ── RESPONSIVE ── */
@media(max-width:640px){
  section { padding: 60px 5%; }
  .hero { padding: 80px 5% 50px; }
  .cta-section { padding: 70px 5%; }
  table.comp th, table.comp td { padding: 10px 12px; font-size: 0.8rem; }
}
