/* site-styles.css */

/* ============================================================
   Varayo — Premium Enterprise Dark Theme
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:       #07080f;
  --bg-2:     #0c0e1a;
  --panel:    #0f1222;
  --panel-2:  #13172c;
  --border:   rgba(148, 163, 184, 0.1);
  --border-2: rgba(148, 163, 184, 0.18);
  --text:     #f0f4ff;
  --muted:    rgba(200, 210, 240, 0.65);
  --dim:      rgba(148, 163, 184, 0.4);
  --accent:   #38bdf8;
  --accent-2: #818cf8;
  --accent-3: #f472b6;
  --radius:   6px;
  --radius-lg: 6px;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --max-width: 1180px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Noise grain overlay */
body::before {
  content: '';
  position: fixed; inset: 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.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity: 0.4;
}

/* ============================================================
   Base / Global
============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

/* ============================================================
   Layout
============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 86px 0; }
.section-tight { padding: 58px 0; }

.section-title {
  font-size: clamp(1.7rem, 1.2rem + 1.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px 0;
}
.accent-dot { color: var(--accent); }

.section-subtitle {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 860px;
  margin: 0 auto;
}

.section-divider {
  border-top: 1px solid rgba(148, 163, 184, 0.10);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

/* ============================================================
   Utility Bar
============================================================ */
.utility-bar {
  background: rgba(4, 6, 16, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.10);
  font-size: 0.92rem;
}

.utility-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.utility-left, .utility-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(226, 232, 240, 0.70);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.10);
  background: rgba(255,255,255,0.02);
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.utility-item:hover {
  background: rgba(59, 130, 246, 0.10);
  border-color: rgba(34, 211, 238, 0.18);
  color: rgba(241, 245, 249, 0.92);
}

.utility-item i { color: rgba(34, 211, 238, 0.80); }

/* ============================================================
   Header
============================================================ */
header {
  /* Default (mobile): NOT sticky */
  position: relative;
  z-index: 1000;
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

/* Sticky header ONLY on tablet + desktop */
@media (min-width: 768px){
  header{ position: sticky; top: 0; }
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.site-logo img {
  height: 90px;
  display: block;
}

/* ✅ Only top-level UL should be flex */
nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.92);
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.18s ease, color 0.18s ease;
}

nav a:hover {
  background: rgba(59, 130, 246, 0.10);
  color: #fff;
}

/* ============================================================
   Dropdown Menu
============================================================ */
.dropdown { position: relative; }

.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  top: 100%;
}

.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  /* Keep the INITIAL dropdown panel dark + solid for contrast */
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 12px;
  z-index: 2000;
  list-style: none;
  margin: 0;
}

.sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.82);
}

.sub-menu a:hover {
  background: rgba(59, 130, 246, 0.10);
  color: #fff;
}

.dropdown:hover .sub-menu,
.dropdown:focus-within .sub-menu,
.sub-menu:hover {
  display: block;
}

/* CTA */
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 3px !important;
  font-weight: 700 !important;
}

.nav-cta:hover { filter: brightness(1.05); }

/* ============================================================
   Buttons
============================================================ */
.btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  user-select: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #07080f;
  font-weight: 700;
}

.btn-secondary {
  background: transparent;
  border-color: var(--border-2);
  color: rgba(240, 244, 255, 0.88);
}

.btn-primary:hover {
  background: #7dd3fc;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.25);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full { width: 100%; }

/* ============================================================
   HERO
============================================================ */
.hero-enterprise {
  padding: 100px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-enterprise::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-enterprise::after {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(34,211,238,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-centered {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 1.6rem + 2.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 18px 0 16px;
  line-height: 1.05;
  color: var(--text);
}

.hero-copy h1 span { color: var(--accent); }

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.75;
}

/* ============================================================
   HERO PROOF
============================================================ */
.hero-proof {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.proof-item {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.proof-value {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.proof-label {
  margin-top: 2px;
  color: rgba(226, 232, 240, 0.68);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================================
   WHAT WE DELIVER
============================================================ */
.service-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.service-tile {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;

  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255,255,255,0.02);
  box-shadow: var(--shadow-sm);

  transition: transform 0.16s ease, border-color 0.16s ease;
}

.service-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.22);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.service-icon i {
  color: rgba(34,211,238,0.92);
  font-size: 1.12rem;
}

.service-name {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.service-desc {
  margin-top: 4px;
  color: rgba(226,232,240,0.70);
  font-weight: 600;
  font-size: 0.98rem;
}

.panel-cta {
  margin-top: 14px;
}

/* ============================================================
   SOLUTIONS PRODUCT ROWS
============================================================ */
.product-rows {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  max-width: 1060px;
}

.product-row {
  display: grid;
  grid-template-columns: 52px 1fr 36px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(11,16,38,0.92), rgba(11,16,38,0.82));
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.product-row:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.22);
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.product-icon i {
  color: rgba(34,211,238,0.92);
  font-size: 1.18rem;
}

.product-title {
  font-weight: 800;
  font-size: 1.05rem;
}

.product-desc {
  margin-top: 4px;
  color: rgba(226,232,240,0.70);
  font-weight: 600;
}

.product-meta {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(226,232,240,0.72);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.product-arrow {
  display: flex;
  justify-content: flex-end;
  color: rgba(226,232,240,0.70);
}

/* ============================================================
   HOW WE DELIVER
============================================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.how-card {
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255,255,255,0.02);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.how-icon i {
  font-size: 1.35rem;
  color: rgba(34,211,238,0.92);
}

.how-title {
  margin-top: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}

.how-desc {
  margin-top: 6px;
  color: rgba(226,232,240,0.70);
  font-weight: 600;
}

/* ============================================================
   Compact CTA Strip (replaces large quote blocks)
============================================================ */
.cta-strip {
  margin-top: 44px;
  padding: 36px 0;
  background: rgba(11, 16, 38, 0.65);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-strip h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.cta-strip p {
  margin: 6px 0 0;
  color: rgba(226, 232, 240, 0.68);
}

.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ============================================================
   TABLES
============================================================ */
.table-wrap{
  overflow-x:auto;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.14);
  background: rgba(11,16,38,0.75);
}
.table-wrap table{ width:100%; border-collapse:collapse; min-width: 760px; }
.table-wrap th, .table-wrap td{ text-align:left; padding:14px; }
.table-wrap tbody tr td{ border-top: 1px solid rgba(148,163,184,0.10); }


/* ============================================================
   CARDS (Used across Homepage + Solutions + Service Hubs)
============================================================ */
.card-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 22px;
}
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid--1 { grid-template-columns: 1fr; }

@media (max-width: 860px){
  .card-grid,
  .card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px){
  .card-grid,
  .card-grid--2,
  .card-grid--4 { grid-template-columns: 1fr; }
}

.card-link{
  text-decoration:none;
  color:inherit;
  display:block;
  height: 100%;
}
.card{
  background: var(--bg-2);
  padding: 20px;
  display:grid;
  grid-template-columns: 44px 1fr 16px;
  gap: 12px;
  align-items:start;
  height: 100%;
  position: relative;
  transition: background 0.18s ease;
}
.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--dim);
  transition: background 0.18s ease;
}
.card-link:hover .card { background: var(--panel); }
.card-link:hover .card::before { background: var(--accent); }

.card .card-arrow{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  color: var(--dim);
  padding-top: 2px;
  font-size: 0.75rem;
}
@media (max-width: 600px){
  .card{ grid-template-columns: 44px 1fr; }
  .card .card-arrow{ display:none; }
}
.card-icon{
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.16);
  flex-shrink: 0;
}
.card-icon i{ color: var(--accent); font-size: 1rem; }
.card-title{ font-weight: 700; letter-spacing: -0.01em; font-size: 0.95rem; }
.card-desc{ margin-top: 5px; color: var(--muted); font-weight: 400; line-height: 1.55; font-size: 0.88rem; }
.card-pricing{ 
  margin-top: 10px; 
  font-size: 0.78rem; 
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-pricing i { font-size: 0.85rem; opacity: 0.9; }

/* ============================================================
   SECTION HELPERS
============================================================ */
.section-pad{ padding: 64px 0; }
.section-head{ max-width: 860px; margin: 0 auto; text-align: center; }
.kicker{
  display: inline-block;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ============================================================
   PROOF PILLS
============================================================ */
.hero-proof{
  margin-top: 20px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px 12px;
  justify-content:center;
}
.hero-proof .proof-item{
  display:flex;
  align-items:center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(34,211,238,0.04);
  color: rgba(240,244,255,0.78);
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
}
.hero-proof .proof-item i{
  color: var(--accent);
  font-size: 0.8rem;
}
@media (max-width: 520px){
  .hero-proof{ justify-content:flex-start; }
}

/* ============================================================
   TRUST STATS BAR
============================================================ */
.trust-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
  background: var(--border);
}

.trust-stat {
  text-align: center;
  padding: 20px 16px;
  background: var(--bg-2);
}

.trust-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-stat-value { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CREDIBILITY STATS (What We Do section)
============================================================ */
.credibility-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.cred-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.14);
  background: rgba(255,255,255,0.02);
}

.cred-stat i {
  font-size: 1.5rem;
  color: rgba(34,211,238,0.85);
  flex-shrink: 0;
}

.cred-stat-text {
  flex: 1;
}

.cred-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(226,232,240,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.cred-stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(241,245,249,0.92);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .credibility-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .credibility-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOW IT WORKS - PROCESS STEPS
============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(34,211,238,0.25));
  border: 2px solid rgba(34,211,238,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(34,211,238,0.95);
  flex-shrink: 0;
}

.process-content {
  flex: 1;
}

.process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(241,245,249,0.92);
  margin-bottom: 6px;
}

.process-desc {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(226,232,240,0.70);
  line-height: 1.4;
}

.process-time {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(34,211,238,0.92);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-arrow {
  color: rgba(148,163,184,0.45);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.timeline-note {
  margin-top: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 6px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.20);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  color: rgba(226,232,240,0.82);
  font-weight: 600;
}

.timeline-note i {
  color: rgba(34,211,238,0.92);
  font-size: 1.1rem;
}

.timeline-note strong {
  color: rgba(241,245,249,0.92);
}

@media (max-width: 980px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
  
  .process-content {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .timeline-note {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}

/* ============================================================
   COMPACT FAQ (Homepage)
============================================================ */
.faq-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  padding: 18px;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.14);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(34,211,238,0.25);
  background: rgba(255,255,255,0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(241,245,249,0.92);
  margin-bottom: 10px;
}

.faq-question i {
  color: rgba(34,211,238,0.85);
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(226,232,240,0.72);
  line-height: 1.5;
}

.faq-answer a {
  color: rgba(34,211,238,0.92);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: rgba(34,211,238,1);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-compact {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ============================================================
   COMPARISON TABLE
============================================================ */
.comparison-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.14);
  background: rgba(11,16,38,0.75);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table thead {
  background: rgba(15,23,42,0.85);
  border-bottom: 2px solid rgba(148,163,184,0.20);
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(241,245,249,0.92);
}

.comparison-table th.comparison-varayo {
  background: rgba(34,211,238,0.08);
  color: rgba(34,211,238,0.95);
  text-align: center;
  font-weight: 800;
}

.comparison-table th.comparison-competitor {
  text-align: center;
  color: rgba(226,232,240,0.75);
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(148,163,184,0.10);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.comparison-table td.comparison-feature {
  color: rgba(241,245,249,0.88);
  font-weight: 700;
}

.comparison-table td.comparison-varayo {
  text-align: center;
  color: rgba(34,211,238,0.92);
  background: rgba(34,211,238,0.04);
}

.comparison-table td.comparison-competitor {
  text-align: center;
  color: rgba(226,232,240,0.65);
}

.comparison-table .fa-check {
  color: rgba(34,211,238,0.95);
  margin-right: 8px;
}

.comparison-table .fa-xmark {
  color: rgba(239,68,68,0.75);
  margin-right: 8px;
}

.comparison-table .fa-minus {
  color: rgba(251,191,36,0.75);
  margin-right: 8px;
}

@media (max-width: 768px) {
  .comparison-table {
    min-width: 640px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
}

/* ============================================================
   STICKY FLOATING CTA
============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(59,130,246,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,130,246,0.45);
}

.sticky-cta-btn i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  
  .sticky-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}


/* ============================================================
   HERO DETAILS (Homepage)
============================================================ */
.hero.hero-enterprise{
  padding: 96px 0 64px;
}
@media (max-width: 900px){
  .hero.hero-enterprise{ padding: 68px 0 48px; }
}

.hero-features{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin-left:auto;
  margin-right:auto;
}
@media (max-width: 900px){
  .hero-features{ grid-template-columns: 1fr; }
}
.hero-feature{
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.14);
  background: rgba(255,255,255,0.02);
  padding: 14px 14px;
  display:grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items:start;
  box-shadow: var(--shadow-sm);
}
.hero-feature i{
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(59,130,246,0.14);
  border: 1px solid rgba(59,130,246,0.22);
  color: rgba(34,211,238,0.92);
}
.hero-feature span{
  color: rgba(226,232,240,0.78);
  font-weight: 600;
  line-height: 1.35;
}
.hero-feature strong{ color: rgba(241,245,249,0.96); }


/* ============================================================
   HEADING UNDERLINE (Standardized)
   Goal: underline sits under the first word (left edge of the heading),
   while the heading itself can be centered by its container.
============================================================ */
/* If a section head is centered, the title stays centered as an inline-block, underline stays under first word */
.section-head{
  text-align: center;
}
/* Ensure non-section-head headings can still use the underline cleanly */
h1.section-title, h2.section-title, h3
/* ============================================================
   HEADING UNDERLINE (Standardized)
   Underline sits under the first word.
============================================================ */
.section-title{
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  text-align: left;
}
.section-title::after{
  content:"";
  display:block;
  width: 64px;
  height: 4px;
  margin: 12px 0 0;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(34,211,238,0.85), rgba(59,130,246,0.85));
  box-shadow: 0 10px 26px rgba(34,211,238,0.12);
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1100px) {
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .how-grid { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 52px 1fr; }
  .product-arrow { display: none; }
  .product-rows { max-width: 100%; }
}

@media (max-width: 900px) {
  .utility-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .header-inner { flex-direction: column; align-items: center; }
  nav > ul { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .sub-menu { left: 50%; transform: translateX(-50%); }
  .site-logo img { height: 70px; }
}

/* ============================================================
   MOBILE NAV + PHONE POLISH
============================================================ */

/* Hamburger button (hidden on desktop) */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(255,255,255,0.03);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding: 10px;
}
.nav-toggle:hover{
  background: rgba(59,130,246,0.10);
  border-color: rgba(34,211,238,0.22);
}
.nav-toggle-bar{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(241,245,249,0.92);
  border-radius: 6px;
  margin: 3px 0;
}

/* Phone/tablet nav behavior */
@media (max-width: 900px){
  .header-inner{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .nav-toggle{ display:flex; }

  /* nav becomes a collapsible panel */
  #site-nav{
    width: 100%;
  }
  nav > ul{
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    margin: 10px 0 0;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(148,163,184,0.14);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  body.nav-open nav > ul{ display:flex; }

  nav a{
    padding: 12px 12px;
  }

  /* Make dropdown sub-menus readable on touch (always visible when menu is open) */
  .sub-menu{
  max-height: 70vh;
  overflow:auto;

    position: static;
    transform: none !important;
    top: auto;
    left: auto;
    min-width: 0;
    padding: 8px 0 0;
    margin: 6px 0 0;
    border-radius: 6px;
    /* Lighter expanded menu on mobile (keep it translucent but not white) */
    background: rgba(148,163,184,0.12);
    border: 1px solid rgba(148,163,184,0.14);
    box-shadow: none;
    display: none;
  }
  /* Accordion: only show the submenu you expanded */
  .dropdown.open > .sub-menu{ display:block; }
  .dropdown::after{ content:none; }
  .menu-heading{
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(226,232,240,0.55);
    padding: 10px 12px 6px;
  }
  .menu-divider{
    height: 1px;
    background: rgba(148,163,184,0.10);
    margin: 8px 0;
    list-style: none;
  }
}

/* Small-phone improvements */
@media (max-width: 640px){
  .container{ padding-left: 16px; padding-right: 16px; }

  .hero-enterprise{ padding: 74px 0 56px; }

  .hero-copy h1{ font-size: 2.25rem; }
  .lead{ font-size: 1rem; }

  .hero-proof{ grid-template-columns: 1fr; }

  .btn-row{ width: 100%; }
  .btn-row .btn{ width: 100%; }

  .service-grid{ grid-template-columns: 1fr; }

  .product-row{ grid-template-columns: 52px 1fr; }
  .product-arrow{ display:none; }
}

/* Extra-small phones: tighten nav logo a bit */
@media (max-width: 420px){
  .site-logo img{ height: 58px; }
}

/* ============================================================
   SUPPORT CENTER (Support Page)
============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .support-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .support-grid { grid-template-columns: 1fr; }
}

.support-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.support-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 230px;
  height: 100%;
}

.support-icon {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.support-icon i {
  color: rgba(34,211,238,0.92);
  font-size: 1.25rem;
}

.support-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.support-title {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.support-desc {
  margin-top: 6px;
  color: rgba(226,232,240,0.70);
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.support-cta {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: rgba(241, 245, 249, 0.92);
}

.support-cta i {
  color: rgba(34,211,238,0.92);
}

/* ============================================================
   OVERRIDES — What we deliver sizing + alignment
============================================================ */
.service-grid{
  grid-template-columns: repeat(2,minmax(0,1fr));
  max-width: 920px;
  margin-left:auto;
  margin-right:auto;
}
@media (max-width: 900px){
  .service-grid{grid-template-columns:1fr;}
}
.service-tile{
  padding: 16px 18px;
}
.panel-cta{
  max-width: 920px;
  margin-left:auto;
  margin-right:auto;
}
.panel-cta .btn,
.panel-cta a.btn{
  width: fit-content;
  min-width: 260px;
}


/* ============================================================
   FINAL POLISH — Section labels + Partner list + Width harmony
============================================================ */

/* Section eyebrow / label like "What we deliver" */
.section-eyebrow,
.what-we-deliver-title,
.deliver-title {
  display: block;
  margin: 18px auto 10px;
  max-width: 920px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.62);
}

/* If the title is just plain text directly above .service-grid, target common patterns */
.service-grid-title,
.service-grid + .panel-cta,
.service-grid {
  max-width: 920px;
}

/* Partner / certifications plain text block under Explore Business Solutions */
.partners-block,
.trusted-block,
.trusted-infra,
.trusted-infrastructure,
.partners-panel {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.partner-list,
.trusted-list,
.cert-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-list li,
.trusted-list li,
.cert-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(226,232,240,0.72);
  font-weight: 700;
  font-size: 0.92rem;
}

/* Make sure any bare <ul> inside a trusted panel gets pill styling */
.trusted-panel ul,
.trusted-block ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trusted-panel ul li,
.trusted-block ul li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(226,232,240,0.72);
  font-weight: 700;
  font-size: 0.92rem;
}

/* Width harmony — Solutions built for reliability should not stretch wider than the rhythm above */
.product-rows {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Keep service grid aligned to same width */
.service-grid {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure the CTA under deliver doesn't become full-width */
.panel-cta {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   TWEAKS — Eyebrow + Trust band spacing
============================================================ */
.section-eyebrow{
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(226,232,240,0.55);
}

/* ============================================================
   TRUST BAND (Homepage)
   Ensure pills render correctly and align with left copy
============================================================ */
.trust-band{
  padding: 24px 0;
}
.trust-inner{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-left{
  min-width: 280px;
}
.trust-right{
  display:flex;
  justify-content: flex-end;
  flex: 1;
}

/* Force trusted list pills inside trust band (prevents Safari/default list bullets) */
.trust-band .trusted-list{
  margin: 0;
  padding: 0;
  list-style: none !important;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.trust-band .trusted-list li{
  list-style: none !important;
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(226,232,240,0.72);
  font-weight: 700;
  font-size: 0.92rem;
}



/* ============================================================
   ENHANCEMENTS — Headings + Eyebrow Pop
============================================================ */

/* Big section headings: add subtle gradient + glow + tighter rhythm */
/* Eyebrow labels like "What we deliver" */
.section-eyebrow{
  position: relative;
  padding-left: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: rgba(226,232,240,0.62);
  text-transform: uppercase;
}
.section-eyebrow::before{
  content:"";
  position:absolute;
  left:0;
  top: 0.25em;
  width: 4px;
  height: 1.05em;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(34,211,238,0.95), rgba(59,130,246,0.95));
  box-shadow: 0 12px 24px rgba(34,211,238,0.14);
}

/* Support page primary headings */
.support-hero h1,
.support-hero .section-title,
.page-title{
  text-shadow: 0 12px 34px rgba(0,0,0,0.6);
}


/* ============================================================
   FIX — Eyebrow style to match underline system (no left marker)
============================================================ */
.section-eyebrow{
  padding-left: 0 !important;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: rgba(226,232,240,0.60);
  margin: 22px auto 12px;
  max-width: 920px;
}
.section-eyebrow::before{
  content:none !important;
}
.section-eyebrow::after{
  content:"";
  display:block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(34,211,238,0.85), rgba(59,130,246,0.85));
  box-shadow: 0 10px 26px rgba(34,211,238,0.10);
}


/* ============================================================
   SUPPORT PAGE — Card consistency + NOC meta (no overflow)
============================================================ */

/* Support page subtitle should follow global rhythm */
.section-subtitle{
  margin: 0;
  max-width: 860px;
}

/* Support cards: consistent height + spacing */
.support-card{
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.14);
  background: linear-gradient(180deg, rgba(11,16,38,0.92), rgba(11,16,38,0.82));
  box-shadow: var(--shadow-sm);
  padding: 18px;
  min-height: 260px;
}

/* Link wrapper should not introduce extra height weirdness */
.support-link{ display:block; height:100%; }
.support-link .support-card{ height:100%; }

/* NOC card meta pills */
.support-noc-meta{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
}

.support-noc-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  border: 1px solid rgba(148,163,184,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(226,232,240,0.72);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.support-noc-pill i{ color: rgba(34,211,238,0.92); }

/* NOC actions: prevent long strings from overflowing */
.support-noc-actions{
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.support-noc-action{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(241,245,249,0.92);
  font-weight: 700;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.support-noc-action i{ color: rgba(34,211,238,0.92); }

/* Ensure support descriptions don't force card growth */
.support-desc{
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

/* Responsive */
@media (max-width: 700px){
  .support-card{ min-height: 0; }
}


/* ============================================================
   SPACING FIX — Add breathing room before first section title
============================================================ */
.hero-panel .section-title:first-child,
.hero-panel-wide .section-title:first-child{
  margin-top: 18px;
}


/* ============================================================
   SPACING TUNE — Consistent vertical rhythm across sections
============================================================ */

/* Slightly reduce default section padding so gaps don't feel huge */
.section{ padding: 74px 0; }
.section-tight{ padding: 54px 0; }

/* Trust band should breathe, but not push the next section too far */
.trust-band{ padding: 26px 0; }

/* After Trust band, add a touch more top space for the next major heading */
.trust-band + .section{ padding-top: 86px; }

/* Keep dividers from adding extra vertical space */
.section-divider{ margin: 0; }


/* ============================================================
   SPACING REQUEST — Match key gaps consistently
============================================================ */

/* 1) More space between hero proof cards and "What we deliver" */
.hero-proof{ margin-bottom: 28px; }

/* If "What we deliver" is the first section title inside the hero panel, push it down more */
.hero-panel .section-title:first-child,
.hero-panel-wide .section-title:first-child{
  margin-top: 28px;
}

/* 2) Match spacing from Trust subtext to next major section title */
.trust-band{
  padding-bottom: 34px;
}
.trust-band + .section{
  padding-top: 74px; /* matches standard section rhythm */
}

/* 3) Match spacing from last product card ("Phone & Unified Communications") to "How we deliver" */
.product-rows{
  margin-bottom: 22px;
}


/* ============================================================
   MATCH GAPS — Use hero-proof → What we deliver spacing as baseline
   Baseline gap ≈ 56px (28px + 28px)
============================================================ */

/* Reduce Trust → next section gap to match baseline */
.trust-band{
  padding-bottom: 18px; /* slightly tighter */
}
.trust-band + .section{
  padding-top: 56px !important;
}

/* Reduce Product rows → next section gap to match baseline */
.product-rows{
  margin-bottom: 56px !important;
}


/* ============================================================
   FIX — Adjacent spacing when a .section-divider sits between sections
============================================================ */

/* Trust band is followed by a divider, then the next .section */
.trust-band + .section-divider + .section{
  padding-top: 56px !important;
}

/* Product section is followed by a divider, then the next .section */
.section + .section-divider + .section{
  padding-top: 56px;
}

/*
  IMPORTANT:
  .section-divider is used in TWO ways across the site:
    1) As a standalone divider element between sections
    2) As a modifier on a real <section> (e.g. class="section section-divider")

  A previous rule set a fixed height on .section-divider, which accidentally
  collapsed any real section using the modifier and caused content to overflow
  into (and visually overlap) the footer.

  Fix: Only apply the "1px divider line" styles when .section-divider is NOT
  also a .section.
*/
.section-divider:not(.section){
  height: 1px;
  background: rgba(148,163,184,0.10);
}

/* For real sections that also have the modifier, keep it as a simple top border */
.section.section-divider{
  border-top: 1px solid rgba(148, 163, 184, 0.10);
}


/* ============================================================
   PATCH — Tighten divider → section gap globally (fixes How we deliver)
============================================================ */

/* Any time a divider precedes a section, use the baseline gap */
.section-divider + .section{
  padding-top: 56px !important;
}


/* ============================================================
   SECTION-SPECIFIC RHYTHM — Match "What we deliver" spacing
============================================================ */

/* Products section: reduce bottom padding so next heading isn't pushed down */
.section-products{ padding-bottom: 56px !important; }

/* How section: reduce top padding so it sits closer to previous section */
.section-how{ padding-top: 56px !important; }


/* ===== Business Solutions Interactive Enhancements (safe additions) ===== */
.bs-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  margin: 18px 0 24px;
}
.bs-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.bs-segment{
  display:inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px;
  gap: 6px;
}
.bs-segment button{
  appearance:none;
  border:0;
  background: transparent;
  color: rgba(255,255,255,0.78);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
  cursor:pointer;
  transition: background .2s ease, color .2s ease;
}
.bs-segment button.active{
  background: rgba(0, 194, 255, 0.14);
  color: #EAFBFF;
  box-shadow: 0 0 0 1px rgba(0,194,255,0.22) inset;
}
.bs-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
  font-weight: 600;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.bs-pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.08); }
.bs-pill input{ accent-color: #00C2FF; }
.bs-compare{
  display:flex;
  gap:10px;
  align-items:center;
}
.bs-compare .btn{
  padding: 10px 14px;
}
.bs-grid{
  display:grid;
  grid-template-columns: repeat(12,1fr);
  gap: 18px;
}
.bs-card{
  grid-column: span 6;
  position: relative;
  border-radius: 18px;
  background: radial-gradient(120% 120% at 0% 0%, rgba(0,194,255,0.10) 0%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  padding: 18px 18px 16px;
  overflow:hidden;
  transition: transform .18s ease, border-color .2s ease, background .2s ease;
}
.bs-card:hover{
  transform: translateY(-2px);
  border-color: rgba(0,194,255,0.30);
  background: radial-gradient(120% 120% at 0% 0%, rgba(0,194,255,0.16) 0%, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.02) 100%);
}
.bs-card-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.bs-card-title{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.bs-icon{
  width: 46px;
  height: 46px;
  border-radius: 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,194,255,0.10);
  border: 1px solid rgba(0,194,255,0.18);
  flex: 0 0 auto;
}
.bs-card h3{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}
.bs-card p{
  margin: 6px 0 0;
  color: rgba(255,255,255,0.70);
}
.bs-meta{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.bs-chip{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.76);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.bs-expand{
  margin-top: 14px;
  display:none;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}
.bs-card.expanded .bs-expand{ display:block; }
.bs-expand ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.74);
}
.bs-expand li{ margin: 6px 0; }
.bs-actions{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.bs-actions a{
  text-decoration:none;
}
.bs-link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 800;
  color: #DFFBFF;
  opacity: 0.92;
}
.bs-link:hover{ opacity: 1; }
.bs-toggle{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  cursor:pointer;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 800;
}
.bs-toggle:hover{ border-color: rgba(0,194,255,0.30); }
.bs-compare-table{
  margin-top: 18px;
  display:none;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow:hidden;
}
.bs-compare-table.active{ display:block; }
.bs-compare-table table{
  width:100%;
  border-collapse: collapse;
}
.bs-compare-table th, .bs-compare-table td{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align:left;
}
.bs-compare-table th{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72);
  background: rgba(0,0,0,0.15);
}
.bs-compare-table td{
  color: rgba(255,255,255,0.78);
}
.bs-compare-table tr:last-child td{ border-bottom: 0; }

.bs-wizard{
  margin-top: 34px;
  border-radius: 6px;
  padding: 22px;
  background: radial-gradient(120% 120% at 0% 0%, rgba(0,194,255,0.12) 0%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
}
.bs-wizard-steps{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 12px 0 18px;
}
.bs-step{
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.bs-step.active{
  color:#EAFBFF;
  background: rgba(0,194,255,0.12);
  border-color: rgba(0,194,255,0.22);
}
.bs-wizard-panel{ display:none; }
.bs-wizard-panel.active{ display:block; }
.bs-option-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bs-option{
  grid-column: span 6;
  padding: 16px;
  border-radius: 18px;
  cursor:pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .16s ease, border-color .2s ease, background .2s ease;
}
.bs-option:hover{
  transform: translateY(-2px);
  border-color: rgba(0,194,255,0.28);
  background: rgba(0,194,255,0.08);
}
.bs-option h4{ margin:0 0 6px; }
.bs-option p{ margin:0; color: rgba(255,255,255,0.72); }
.bs-wizard-actions{
  margin-top: 18px;
  display:flex;
  justify-content:space-between;
  gap: 10px;
}
.bs-wizard-actions .btn{
  padding: 10px 14px;
}
@media (max-width: 900px){
  .bs-card{ grid-column: span 12; }
  .bs-option{ grid-column: span 12; }
  .bs-toolbar{ flex-direction: column; align-items:flex-start; }
}


/* ============================================================
   SUPPORT PAGE — OVERLAP / BLEED FIX (SAFE)
   Prevent any inner content from overflowing the support cards
============================================================ */
.support-card{
  overflow: hidden;              /* contains pills/links */
  align-content: start;          /* keeps grid content from stretching strangely */
}
.support-body{
  min-height: 0;                 /* allows flex child to shrink */
}
.support-desc{
  overflow: hidden;              /* prevents bleed */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;         /* consistent card height */
}
.support-noc-actions,
.support-noc-meta{
  max-width: 100%;
}
.support-noc-pill,
.support-noc-action{
  min-width: 0;
}
/* ============================================================
   TRUST SECTION ENHANCEMENTS
============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-2, #38bdf8);
  transform: translateY(-2px);
}

.trust-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
}

.trust-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.trust-card p {
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.trust-badge {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-2, #38bdf8);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  font-weight: 700;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}



/* ============================================================
   New pages helpers (Coverage / Quote / Status / Tables)
============================================================ */
.map-shell{border-radius:18px;border:1px solid rgba(148,163,184,0.14);background:rgba(255,255,255,0.02);box-shadow:var(--shadow-sm);overflow:hidden;}
.map-toolbar{display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:14px;border-bottom:1px solid rgba(148,163,184,0.12);}
.map-toolbar .field{display:flex;gap:10px;flex-wrap:wrap;align-items:center;}
.input{background:rgba(2,6,23,0.35);border:1px solid rgba(148,163,184,0.18);color:rgba(241,245,249,0.92);border-radius: 6px;padding:10px 12px;min-width:240px;outline:none;}
.input:focus{border-color:rgba(34,211,238,0.45);box-shadow:0 0 0 4px rgba(34,211,238,0.10);}
.badge{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius: 6px;border:1px solid rgba(148,163,184,0.16);background:rgba(255,255,255,0.02);color:rgba(226,232,240,0.82);font-weight:800;font-size:0.88rem;}
.table{width:100%;border-collapse:separate;border-spacing:0;overflow:hidden;border-radius: 6px;border:1px solid rgba(148,163,184,0.14);background:rgba(255,255,255,0.02);}
.table th,.table td{padding:12px;border-bottom:1px solid rgba(148,163,184,0.12);vertical-align:top;}
.table th{color:rgba(241,245,249,0.90);text-align:left;font-weight: 700;letter-spacing:-0.01em;background:rgba(2,6,23,0.35);}
.table td{color:rgba(226,232,240,0.78);font-weight:750;}
.table tr:last-child td{border-bottom:none;}
.status-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
@media (max-width: 980px){.status-grid{grid-template-columns:1fr;}.input{min-width:100%;width:100%;}}
.status-item{border-radius: 6px;border:1px solid rgba(148,163,184,0.14);background:rgba(255,255,255,0.02);padding:14px;}
.status-item .row{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.pill{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius: 6px;font-weight: 700;font-size:0.85rem;border:1px solid rgba(148,163,184,0.18);background:rgba(2,6,23,0.35);color:rgba(226,232,240,0.84);}
.pill.ok{border-color:rgba(34,211,238,0.28);}
.pill.maint{border-color:rgba(59,130,246,0.28);}
.pill.inc{border-color:rgba(239,68,68,0.35);}
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
@media (max-width: 980px){.form-grid{grid-template-columns:1fr;}}
.form-grid .full{grid-column:1/-1;}
.help{color:rgba(226,232,240,0.62);font-weight:750;margin-top:6px;line-height:1.45;}

/* Nav CTA hover: keep bright */
.nav-cta .btn-primary:hover,
.header-cta .btn-primary:hover,
a.btn-primary:hover{
  filter: none;
  opacity: 1;
}

/* Business wizard expand/collapse buttons (More/Less) */
.need-help-chooser button,
.need-help-chooser .btn,
.need-help-chooser .toggle,
.need-help-chooser .toggle-btn{
  color: rgba(241,245,249,0.92) !important;
}
.need-help-chooser button:hover,
.need-help-chooser .btn:hover,
.need-help-chooser .toggle:hover,
.need-help-chooser .toggle-btn:hover{
  color: rgba(241,245,249,0.95) !important;
}

/* Section headings: left aligned + consistent underline */
.section-head{ text-align:left; }
.section-head .section-title{ text-align:left; }
.section-head .kicker{ text-align:left; }
.section-underline,
.section-head .underline,
.section-head .title-underline{
  width: 56px;
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(34,211,238,1) 0%, rgba(59,130,246,1) 100%);
  margin: 12px 0 0 0;
}

/* Coverage page: prevent clipping/overlap on small viewports */
.coverage-grid, .coverage-cards, .coverage-results{
  width:100%;
}
.coverage-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
@media (max-width: 980px){.coverage-grid{grid-template-columns:1fr;}}
.coverage-card, .coverage-result-card{min-height: 100%; }
.coverage-page .map-shell{overflow:visible;}

/* Business chooser step 3 actions: left = talk to architect, right = view details */
.need-help-chooser .recommendation-actions{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.need-help-chooser .recommendation-actions .left{
  margin-right:auto;
}
.need-help-chooser .recommendation-actions .right{
  margin-left:auto;
}


/* ============================================================
   Imported content support (feature grids / stats / devices / channels)
============================================================ */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
@media (max-width: 980px){ .feature-grid{grid-template-columns:1fr;} }

.feature-card{
  border-radius:18px;
  border:1px solid rgba(148,163,184,0.14);
  background:rgba(255,255,255,0.02);
  padding:16px;
  box-shadow:var(--shadow-sm);
}
.feature-icon{
  width:44px;height:44px;border-radius: 6px;
  display:grid;place-items:center;
  background:rgba(2,6,23,0.35);
  border:1px solid rgba(148,163,184,0.16);
  color:rgba(34,211,238,0.95);
  margin-bottom:10px;
}
.feature-title{color:rgba(241,245,249,0.92);font-weight: 700;margin:0 0 6px 0;}
.feature-desc{color:rgba(226,232,240,0.72);font-weight:650;margin:0;line-height:1.5;}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
@media (max-width: 980px){ .stats-grid{grid-template-columns:1fr;} }
.stat-item{
  border-radius:18px;
  border:1px solid rgba(148,163,184,0.14);
  background:rgba(255,255,255,0.02);
  padding:16px;
}
.stat-value{color:rgba(241,245,249,0.92);font-weight:950;font-size:1.25rem;letter-spacing:-0.02em;}
.stat-label{color:rgba(226,232,240,0.72);font-weight:700;margin-top:6px;}

.three-col{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
@media (max-width: 980px){ .three-col{grid-template-columns:1fr;} }

.device-grid, .channel-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
@media (max-width: 980px){ .device-grid, .channel-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width: 560px){ .device-grid, .channel-grid{grid-template-columns:1fr;} }

.device-item, .channel-item{
  border-radius: 6px;
  border:1px solid rgba(148,163,184,0.14);
  background:rgba(255,255,255,0.02);
  padding:12px;
  display:flex;
  gap:10px;
  align-items:center;
}
.device-icon, .channel-icon{
  width:38px;height:38px;border-radius: 6px;
  display:grid;place-items:center;
  background:rgba(2,6,23,0.35);
  border:1px solid rgba(148,163,184,0.16);
  color:rgba(34,211,238,0.95);
  flex:0 0 auto;
}
.device-label, .channel-label{
  color:rgba(241,245,249,0.88);
  font-weight:850;
  line-height:1.2;
}

/* keep btn rows centered when imported pages use it */
.btn-row-center{justify-content:center;}

/* Forms: ensure inputs fill grid and don't stretch oddly */
.form-grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px;}
.form-grid .full{grid-column:1 / -1;}
.form-field label{display:block; margin-bottom:8px; font-weight:600; color: rgba(241,245,249,0.9);}
.form-field .help{margin-top:8px; color: rgba(148,163,184,0.95); font-size: 0.95rem;}
input.input, select.input, textarea.input,
.form-field input, .form-field select, .form-field textarea{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
@media (max-width: 900px){ .form-grid{grid-template-columns:1fr;} }
.btn-row .btn, .btn-row button{max-width:100%;}

/* Tables */
.table-wrap{overflow-x:auto; -webkit-overflow-scrolling:touch;}
.table{width:100%; border-collapse:separate; border-spacing:0; min-width:720px;}
.table th, .table td{padding:14px 16px; border-bottom:1px solid rgba(148,163,184,0.18); text-align:left; vertical-align:top;}
.table th{font-size:0.9rem; letter-spacing:0.02em; text-transform:none; color: rgba(226,232,240,0.9); background: rgba(15,23,42,0.55); position:sticky; top:0;}
.table td{color: rgba(226,232,240,0.86);}
@media (max-width: 780px){ .table{min-width: 640px;} }

/* Dropdown menu spacing */
.sub-menu .menu-divider{margin: 10px 0;}
.sub-menu .menu-heading{margin-top: 6px;}

/* Subscribe form alignment (Network Status) */
.subscribe-form{display:flex;gap:12px;align-items:flex-end;flex-wrap:wrap;}
.subscribe-form .input{flex:1;min-width:260px;}
.subscribe-form .btn{white-space:nowrap;}
@media (max-width: 640px){
  .subscribe-form{align-items:stretch;}
  .subscribe-form .input{min-width:100%;width:100%;}
  .subscribe-form .btn{width:100%;justify-content:center;}
}

/* Multi-level dropdown flyouts */
.sub-menu .flyout{position:relative;}
.sub-menu .flyout > .flyout-trigger{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
.sub-menu .flyout-menu{
  position:absolute;
  top:-10px;
  left: calc(100% + 10px);
  min-width: 220px;
  padding: 10px;
  border-radius: 6px;
  /* Flyouts should be LIGHTER + translucent for better contrast on dark pages */
  background: rgba(51, 65, 85, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  display:none;
}
.sub-menu .flyout:hover > .flyout-menu{display:block;}
.sub-menu .flyout-menu li a{
  display:block;
  padding:10px 12px;
  border-radius: 6px;
  color: rgba(241, 245, 249, 0.92);
}
.sub-menu .flyout-menu li a:hover{
  background: rgba(59, 130, 246, 0.20);
  color: rgba(255, 255, 255, 0.98);
}

/* Mobile: flyouts become inline */
@media (max-width: 980px){
  .sub-menu .flyout-menu{
    position:static;
    display:none;
    margin-top:8px;
    padding:8px;
    background: rgba(51, 65, 85, 0.78);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
  .sub-menu .flyout.open > .flyout-menu{display:block;}
}

/* Table wrap: ensure visible and scrollable */
.table-wrap{overflow-x:auto; -webkit-overflow-scrolling: touch;}
.table-wrap table{min-width: 860px;}
@media (max-width: 980px){ .table-wrap table{min-width: 720px;} }


/* JS-assisted menus */
.dropdown.open .sub-menu{ display:block; }
.sub-menu .flyout.open > .flyout-menu{ display:block; }

/* Make diagonal travel easier */
.sub-menu .flyout::after{
  content:"";
  position:absolute;
  top:-10px;
  right:-14px;
  width:14px;
  height:calc(100% + 20px);
}



/* Dropdown spacing */
.sub-menu{ padding: 10px; }
.sub-menu .menu-heading{ margin-top: 6px; margin-bottom: 6px; padding: 6px 10px; }
.sub-menu li a{ padding: 9px 10px; }
.menu-divider{ margin: 8px 0; }



/* Tables: consistent, readable */
.table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrap .data-table{
  width:100%;
  border-collapse:collapse;
  min-width: 860px;
}
.table-wrap .data-table th{
  color: rgba(241,245,249,0.92);
  font-weight: 800;
  background: rgba(15,23,42,0.35);
}
.table-wrap .data-table td{
  color: rgba(241,245,249,0.86);
}
.table-wrap .data-table th,
.table-wrap .data-table td{
  padding: 14px 16px;
  border-top: 1px solid rgba(148,163,184,0.10);
}


/* Nav CTA container */
li.nav-cta{ margin-left: 10px; }
li.nav-cta a{ padding: 10px 12px; }
@media (max-width: 980px){
  li.nav-cta{ margin-left: 0; }
  li.nav-cta a{ width:100%; justify-content:center; display:flex; }
}


/* ============================================================
   FIX PASS (Round 28): nav spacing + flyouts + table/cards + forms
============================================================ */

/* Top nav: slightly tighter spacing (desktop) */
@media (min-width: 981px){
  .header-inner{ gap: 14px; }
  nav > ul{ gap: 6px; }
  nav a{ padding: 10px 10px; }
}

/* Align-right dropdown (use on last items like Company) */
.dropdown.align-right > .sub-menu{
  left: auto;
  right: 0;
}
.dropdown.align-right .flyout-menu{
  left: auto;
  right: calc(100% + 10px);
}

/* Company: keep the dropdown panel aligned to the left edge of the viewport (align-right),
   but allow its flyouts to open to the right so they don't bleed off-screen */
.dropdown.company-dropdown.align-right .flyout-menu{
  right: auto;
  left: calc(100% + 10px);
}

/* Card variants: prevent grid layout from breaking tables/forms */
.card.form-card,
.card.table-card,
.card.subscribe-card{
  display: block !important;
  grid-template-columns: none !important;
  min-height: auto !important;
  height: auto !important;
}
.card.table-card{ padding: 0 !important; }
.card.form-card{ padding: 18px !important; }
.card.subscribe-card{ padding: 18px !important; }

/* Tables: ensure full table is visible inside wrappers */
.table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrap table,
.table-wrap .data-table,
.table-wrap .table{
  width: 100% !important;
  min-width: 860px;
  border-collapse: collapse !important;
  table-layout: auto !important;
}
.table-wrap th, .table-wrap td{
  white-space: nowrap;
}
@media (max-width: 720px){
  .table-wrap table,
  .table-wrap .data-table,
  .table-wrap .table{ min-width: 760px; }
}

/* Quote form: keep fields readable and prevent label/input overlap */
.form-field label{
  display:block;
  margin: 0 0 6px 0;
  font-weight: 800;
  color: rgba(226,232,240,0.75);
}
.form-field{ margin-top: 0 !important; }
.form-field .input{ width: 100%; min-width: 0; }

/* Network status subscribe: keep button inside card */
.subscribe-form{
  display:flex;
  gap:12px;
  align-items:flex-end;
  flex-wrap:wrap;
}
.subscribe-form .form-field{ flex: 1; min-width: 260px; }
.subscribe-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.subscribe-actions .btn{ margin-top: 0; }

/* Header CTA: match other buttons (remove inner outlines) */
.nav-cta{
  border: 0 !important;
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.18) !important;
  outline: none !important;
}
.nav-cta:focus-visible{
  box-shadow: 0 0 0 4px rgba(34,211,238,0.18), 0 10px 28px rgba(59,130,246,0.18) !important;
}

/* ============================================================
   Footer overrides (simplified row links)
============================================================ */
.site-footer--minimal .footer-top {
  padding: 16px 0 10px;
}

.site-footer--minimal .footer-top-inner--minimal {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.site-footer--minimal .footer-brand--minimal {
  max-width: 640px;
}

.site-footer--minimal .footer-brand--minimal p {
  margin: 0;
  color: rgba(226, 232, 240, 0.68);
  line-height: 1.55;
}

.site-footer--minimal .footer-links--row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 0;
  justify-content: flex-end;
}

.site-footer--minimal .footer-top-actions{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.site-footer--minimal .footer-links--row a {
  color: rgba(226, 232, 240, 0.70);
  text-decoration: none;
  transition: color 0.16s ease;
  font-weight: 600;
  white-space: nowrap;
}

.site-footer--minimal .footer-links--row a:hover {
  color: rgba(241, 245, 249, 0.95);
}

.site-footer--minimal .footer-bottom {
  padding: 12px 0;
}

@media (max-width: 920px) {
  .site-footer--minimal .footer-top-inner--minimal{
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer--minimal .footer-top-actions{
    width: 100%;
  }

  .site-footer--minimal .footer-links--row{
    justify-content: flex-start;
    margin-top: 12px;
  }

  .site-footer--minimal .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FAQ: category headings should not use the standard section underline */
.faq-category .section-title{ display:block; width:auto; }
.faq-category .section-title::after{ display:none !important; }

/* ============================================================
   VARAYO FOOTER
============================================================ */
.v-footer {
  background: var(--bg-2);
}

.v-footer-top {
  /* border removed for cleaner look */
}
.v-footer-top-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.v-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v-footer-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(240,244,255,0.92);
  letter-spacing: -0.01em;
}
.v-footer-sub {
  font-size: 0.72rem;
  color: var(--dim);
  font-weight: 400;
}

.v-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.v-footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(200,210,240,0.55);
  text-decoration: none;
  transition: color 0.14s;
}
.v-footer-links a:hover { color: rgba(240,244,255,0.9); }

.v-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--dim);
  letter-spacing: 0.01em;
}

.v-footer-phone {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(200,210,240,0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.14s;
}
.v-footer-phone:hover { color: var(--accent); }

.v-footer-social {
  display: flex;
  gap: 8px;
}
.v-footer-social a {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(148,163,184,0.4);
  font-size: 0.72rem;
  transition: all 0.16s ease;
  text-decoration: none;
}
.v-footer-social a:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 640px) {
  .v-footer-top-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .v-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   HERO BADGE (redesigned)
============================================================ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(34,211,238,0.2);
  background: rgba(34,211,238,0.06);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-badge i { font-size: 0.75rem; }

/* ============================================================
   HERO FEATURES STRIP
============================================================ */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 28px auto 0;
  max-width: 780px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-2);
  font-size: 0.85rem;
  line-height: 1.45;
}
.hero-feature i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.hero-feature strong { font-weight: 700; display: block; font-size: 0.88rem; }

@media (max-width: 600px) {
  .hero-features { grid-template-columns: 1fr; }
}

/* ============================================================
   COVERAGE CHECKER
============================================================ */
.coverage-checker {
  margin-top: 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.coverage-checker-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.coverage-checker-text i { color: var(--accent); }
.coverage-checker-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.coverage-input {
  padding: 9px 14px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-size: 0.88rem;
  border-radius: var(--radius);
  outline: none;
  font-family: inherit;
  transition: border-color 0.16s;
}
.coverage-input:focus { border-color: var(--accent); }
.coverage-btn { white-space: nowrap; }

@media (max-width: 520px) {
  .coverage-checker-form { grid-template-columns: 1fr; }
}

/* ============================================================
   CREDIBILITY STATS
============================================================ */
.credibility-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.cred-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  background: var(--bg-2);
}
.cred-stat i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.cred-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}
.cred-stat-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .credibility-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .credibility-stats { grid-template-columns: 1fr; }
}

/* Section title refinement */
.section-title {
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}

/* ============================================================
   FEATURE CARDS (Service pages — consistent design)
============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 22px;
}
.feature-grid.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .feature-grid,
  .feature-grid.three-col { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--bg-2);
  padding: 22px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
  transition: background 0.18s ease;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--dim);
  transition: background 0.18s ease;
}
.feature-card:hover { background: var(--panel); }
.feature-card:hover::before { background: var(--accent); }

.feature-card > .feature-title,
.feature-card > .feature-desc { grid-column: 2; }
.feature-card > .feature-icon { grid-row: 1 / span 2; }

.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.16);
  flex-shrink: 0;
}
.feature-icon i { color: var(--accent); font-size: 1rem; }

.feature-title {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.feature-desc {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.55;
}
.feature-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / -1;
}
.feature-tags .tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: 3px;
  color: var(--dim);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE-SPECIFIC & TEMPLATE CSS (consolidated from inline styles)
   Extracted 2026-04-15
═══════════════════════════════════════════════════════════════ */

/* ============================================================
   CTA BAND (bottom call-to-action)
============================================================ */

.cta-band{
  max-width: 980px;
  margin: 28px auto 0;
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT / SOLUTIONS TEMPLATE
============================================================ */

    .about-wrap{
      max-width: 980px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .about-quote{
      max-width: 900px;
      margin: 24px auto 0;
      padding: 18px 18px;
      border-radius: 6px;
      border: 1px solid rgba(148,163,184,0.14);
      background: rgba(255,255,255,0.03);
      color: rgba(200,210,240,0.75);
      font-weight: 700;
      font-style: italic;
      line-height: 1.65;
      text-align: center;
    }

    .about-intro{
      margin-top: 22px;
      display: grid;
      gap: 16px;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.75;
      font-size: 1.05rem;
    }

    .stats-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 26px;
    }
    @media (max-width: 900px){
      .stats-grid{ grid-template-columns: 1fr; }
    }
    .stat-card{
      border-radius: 6px;
      border: 1px solid rgba(148,163,184,0.14);
      background: #0c0e1a;
      
      padding: 18px;
      text-align: center;
    }
    .stat-number{
      font-size: 2.35rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      color: rgba(56,189,248,0.92);
      line-height: 1.1;
    }
    .stat-label{
      margin-top: 8px;
      color: rgba(200,210,240,0.65);
      font-weight: 700;
    }

    .core-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }
    @media (max-width: 980px){
      .core-grid{ grid-template-columns: 1fr; }
    }
    .core-card{
      border-radius: 6px;
      border: 1px solid rgba(148,163,184,0.14);
      background: #0c0e1a;
      
      padding: 18px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .core-card:hover{
      transform: translateY(-3px);
      border-color: rgba(56,189,248,0.18);
      
    }
    .core-icon{
      width: 52px;
      height: 52px;
      border-radius: 6px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: rgba(56,189,248, 0.08);
      border: 1px solid rgba(56,189,248, 0.16);
      margin-bottom: 12px;
    }
    .core-icon i{
      color: rgba(56,189,248,0.92);
      font-size: 1.2rem;
    }
    .core-title{
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: -0.02em;
      margin: 0 0 6px;
    }
    .core-desc{
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.65;
      margin: 0;
    }

    .cta-card{
      max-width: 920px;
      margin: 26px auto 0;
      border-radius: 6px;
      border: 1px solid rgba(148,163,184,0.14);
      background: rgba(255,255,255,0.03);
      padding: 22px;
      text-align: center;
    }
    .cta-card p{
      margin: 0 0 12px;
      color: rgba(200,210,240,0.65);
      font-weight: 700;
      line-height: 1.7;
      font-size: 1.08rem;
    }
    .cta-card p strong{ color: rgba(241,245,249,0.95); }
    .cta-actions{
      display:flex;
      justify-content:center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 14px;
    }

/* ============================================================
   POLICY / LEGAL TEMPLATE
============================================================ */

    .policy-wrap{
      max-width: 920px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .policy-topnote{
      margin: 16px auto 0;
      max-width: 840px;
      text-align: center;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      font-style: italic;
      line-height: 1.6;
    }

    .policy-actions{
      margin-top: 18px;
      display:flex;
      justify-content:center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .doc-chip{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 3px;
      border: 1px solid rgba(148,163,184,0.16);
      background: rgba(255,255,255,0.04);
      color: rgba(226,232,240,0.80);
      font-weight: 700;
      text-decoration: none;
    }
    .doc-chip i{ color: rgba(56,189,248,0.92); }
    .doc-chip:hover{ border-color: rgba(56,189,248,0.22); background: rgba(56,189,248,0.06); }

    /* Contact callout */
    .policy-contact{
      max-width: 920px;
      margin: 26px auto 0;
      border-radius: 6px;
      border: 1px solid rgba(148,163,184,0.14);
      background: #0c0e1a;
      
      padding: 18px;
    }
    .policy-contact-title{
      display:flex;
      align-items:center;
      gap: 10px;
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      margin: 0 0 10px;
    }
    .policy-contact-title i{ color: rgba(56,189,248,0.92); }
    .policy-contact-sub{
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      margin: 0;
      line-height: 1.65;
    }
    .policy-contact-details{
      display:flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 14px;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
    }
    .policy-contact-details a{
      color: rgba(56,189,248,0.92);
      text-decoration: none;
      font-weight: 700;
    }
    .policy-contact-details a:hover{ text-decoration: underline; }

    /* Accordions */
    .policy-rows{
      margin-top: 22px;
      display: grid;
      gap: 12px;
    }
    details.policy-row{
      border-radius: 6px;
      border: 1px solid rgba(148,163,184,0.14);
      background: rgba(255,255,255,0.03);
      overflow: hidden;
    }
    details.policy-row[open]{
      border-color: rgba(56,189,248,0.18);
      background: rgba(56,189,248,0.06);
    }

    summary.policy-q{
      list-style: none;
      cursor: pointer;
      padding: 16px 16px;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      font-weight: 700;
      font-size: 1.02rem;
      color: rgba(241,245,249,0.92);
    }
    summary.policy-q::-webkit-details-marker{ display:none; }
    summary.policy-q::marker{ display:none; }

    .policy-toggle{
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background: rgba(56,189,248,0.12);
      border: 1px solid rgba(56,189,248,0.18);
      color: rgba(56,189,248,0.92);
      font-weight: 700;
      font-size: 1.2rem;
      line-height: 1;
      flex: 0 0 auto;
    }
    details[open] .policy-toggle{
      background: rgba(56,189,248,0.12);
      border-color: rgba(56,189,248,0.22);
      color: rgba(241,245,249,0.92);
    }

    .policy-a{
      padding: 0 16px 16px;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.75;
      font-size: 0.98rem;
    }

    .policy-a ul{
      margin: 10px 0 0 18px;
      padding: 0;
      display:grid;
      gap: 6px;
    }

    .policy-foot{
      margin-top: 14px;
      color: rgba(226,232,240,0.55);
      font-weight: 700;
      text-align:center;
      font-size: 0.92rem;
    }

/* ============================================================
   PAGE: 404
============================================================ */

  :root {
    --bg: #050814;
    --panel: #0b1026;
    --border: rgba(148, 163, 184, 0.16);
    --text: #f1f5f9;
    --muted: rgba(226, 232, 240, 0.72);
    --accent: #3b82f6;
    --accent-cyan: #38bdf8;
    --radius: 12px;
  }

  /* ── Canvas Background ── */
  #network-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  /* ── Page Layout ── */
  .page-404 {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
  }

  /* ── Signal Lost Badge ── */
  .signal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f87171;
    margin-bottom: 2rem;
    animation: fadeSlideDown 0.6s ease both;
  }

  .signal-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f87171;
    animation: pulse-red 1.4s ease-in-out infinite;
  }

  @keyframes pulse-red {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
  }

  /* ── 404 Glitch Number ── */
  .error-code {
    font-size: clamp(7rem, 20vw, 14rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    position: relative;
    animation: fadeSlideDown 0.7s ease 0.1s both;

    /* layered text fills */
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Glitch layers */
  .error-code::before,
  .error-code::after {
    content: '404';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 4s infinite;
  }

  .error-code::before {
    color: #38bdf8;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-3px, 0);
    animation: glitch-top 4s infinite;
    opacity: 0.7;
  }

  .error-code::after {
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(3px, 0);
    animation: glitch-bot 4s 0.5s infinite;
    opacity: 0.7;
  }

  @keyframes glitch-top {
    0%, 92%, 100% { transform: translate(0); opacity: 0; }
    93%           { transform: translate(-4px, -2px); opacity: 0.7; }
    94%           { transform: translate(4px, 0);     opacity: 0.7; }
    95%           { transform: translate(-2px, 1px);  opacity: 0.7; }
    96%           { transform: translate(0);           opacity: 0; }
  }

  @keyframes glitch-bot {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    91%           { transform: translate(4px, 2px);  opacity: 0.7; }
    92%           { transform: translate(-4px, 0);   opacity: 0.7; }
    93%           { transform: translate(2px, -1px); opacity: 0.7; }
    94%           { transform: translate(0);          opacity: 0; }
  }

  /* ── Headline & Subtext ── */
  .error-headline {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    animation: fadeSlideDown 0.7s ease 0.2s both;
  }

  .error-sub {
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--muted);
    animation: fadeSlideDown 0.7s ease 0.3s both;
  }

  /* ── Terminal Traceroute Block ── */
  .terminal-block {
    background: rgba(5, 8, 20, 0.9);
    border: 1px solid rgba(56,189,248, 0.2);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto 2.5rem;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    animation: fadeSlideDown 0.7s ease 0.4s both;
    box-shadow: 0 0 30px rgba(56,189,248, 0.06), inset 0 0 30px rgba(0,0,0,0.4);
  }

  .terminal-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.9rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  }

  .t-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }
  .t-dot.red    { background: #ef4444; }
  .t-dot.yellow { background: #f59e0b; }
  .t-dot.green  { background: #22c55e; }

  .terminal-bar span {
    margin-left: auto;
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.72rem;
  }

  .t-line {
    display: grid;
    grid-template-columns: 1.2rem 6rem 1fr;
    gap: 0.5rem;
    line-height: 1.9;
    color: rgba(226, 232, 240, 0.5);
  }

  .t-line.active { color: #38bdf8; }
  .t-line.fail   { color: #f87171; }

  .t-hop { color: rgba(148,163,184,0.4); font-size: 0.72rem; }
  .t-ms  { color: rgba(148,163,184,0.5); font-size: 0.72rem; }

  .t-cursor {
    display: inline-block;
    width: 7px; height: 1em;
    background: #38bdf8;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
    margin-left: 4px;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; } 50% { opacity: 0; }
  }

  /* ── CTA Buttons ── */
  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeSlideDown 0.7s ease 0.5s both;
  }

  .btn-primary-404 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.75rem;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  }

  .btn-primary-404:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56,189,248, 0.35);
    color: white;
  }

  .btn-outline-404 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.75rem;
    background: transparent;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, transform 0.18s;
  }

  .btn-outline-404:hover {
    background: rgba(148, 163, 184, 0.08);
    border-color: var(--accent);
    color: var(--text);
    transform: translateY(-2px);
  }

  /* ── Quick Links Grid ── */
  .quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 0.85rem;
    max-width: 780px;
    width: 100%;
    animation: fadeSlideDown 0.7s ease 0.6s both;
  }

  .quick-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: background 0.18s, border-color 0.18s, transform 0.18s;
  }

  .quick-card:hover {
    background: rgba(56,189,248,0.06);
    border-color: rgba(56,189,248, 0.35);
    transform: translateY(-3px);
    color: inherit;
  }

  .quick-card i {
    color: var(--accent-cyan);
    font-size: 1rem;
    margin-bottom: 0.1rem;
  }

  .quick-card .qc-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(148,163,184,0.55);
  }

  .quick-card .qc-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
  }

  /* ── Animations ── */
  @keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── Mobile ── */
  @media (max-width: 600px) {
    .quick-grid { grid-template-columns: 1fr 1fr; }
    .terminal-block { font-size: 0.72rem; }
    .t-line { grid-template-columns: 1rem 5rem 1fr; }
  }

/* ============================================================
   PAGE: advisory
============================================================ */

    .adv-hero{
      padding: 92px 0 54px;
      background: radial-gradient(900px 480px at 18% 20%, rgba(56, 189, 248, .18), transparent 60%),
                  radial-gradient(900px 480px at 82% 0%, rgba(99, 102, 241, .18), transparent 55%),
                  linear-gradient(180deg, rgba(2, 6, 23, 1) 0%, rgba(11, 18, 32, 1) 65%, rgba(2, 6, 23, 1) 100%);
      border-bottom: 1px solid rgba(148,163,184,.12);
    }
    .adv-hero h1{ font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 14px; }
    .adv-hero p{ max-width: 64ch; margin: 0 auto 20px; opacity: .88; }
    .adv-badges{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top: 18px; }
    .adv-badge{
      border: 1px solid rgba(148,163,184,.18);
      background: rgba(15,23,42,.45);
      padding: 8px 10px;
      border-radius: 3px;
      font-size: 13px;
      color: rgba(241,245,249,.9);
      display:flex; align-items:center; gap:8px;
    }
    .adv-section{ padding: 58px 0; }
    .adv-kicker{ color: rgba(148,163,184,.92); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin-bottom: 10px; }
    .adv-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 16px;
    }
    .adv-card{
      border: 1px solid rgba(148,163,184,.12);
      background: rgba(15,23,42,.55);
      border-radius: 4px;
      padding: 18px 18px 16px;
      box-shadow: 0 10px 28px rgba(0,0,0,.25);
      height: 100%;
    }
    .adv-card h3{ margin: 10px 0 8px; font-size: 16px; }
    .adv-card p{ margin: 0; opacity: .86; font-size: 14.5px; line-height: 1.55; }
    .adv-icon{
      width: 42px; height: 42px; border-radius: 4px;
      display:flex; align-items:center; justify-content:center;
      border: 1px solid rgba(148,163,184,.18);
      background: rgba(2,6,23,.35);
    }

    .adv-steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }
    .adv-step{
      border: 1px solid rgba(148,163,184,.12);
      background: rgba(15,23,42,.45);
      border-radius: 4px;
      padding: 16px;
      position: relative;
      overflow: hidden;
    }
    .adv-step .n{
      font-weight: 700;
      font-size: 12px;
      letter-spacing: .12em;
      opacity: .75;
    }
    .adv-step h3{ margin: 10px 0 8px; font-size: 15px; }
    .adv-step p{ margin: 0; opacity: .86; font-size: 14px; line-height: 1.55; }
    .adv-split{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
      align-items: start;
      margin-top: 18px;
    }
    .adv-list{
      margin: 0;
      padding-left: 18px;
      opacity: .9;
      line-height: 1.7;
    }
    .adv-aside{
      border: 1px solid rgba(148,163,184,.12);
      background: rgba(15,23,42,.45);
      border-radius: 4px;
      padding: 18px;
    }
    .adv-aside h3{ margin: 0 0 10px; font-size: 16px; }
    .adv-aside .stat{
      display:flex; gap: 10px; align-items: baseline;
      padding: 10px 0;
      border-top: 1px solid rgba(148,163,184,.10);
    }
    .adv-aside .stat:first-of-type{ border-top: none; padding-top: 0; }
    .adv-aside .stat b{ font-size: 18px; }
    .adv-aside .stat span{ opacity: .8; font-size: 13px; }

    .adv-cta{
      padding: 44px 0 64px;
      border-top: 1px solid rgba(148,163,184,.12);
      background: linear-gradient(180deg, rgba(11,18,32,1) 0%, rgba(2,6,23,1) 100%);
    }
    .adv-cta-inner{
      border: 1px solid rgba(148,163,184,.14);
      background: rgba(15,23,42,.55);
      border-radius: 4px;
      padding: 22px;
      display:flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .adv-cta-inner h2{ margin:0; font-size: 20px; }
    .adv-cta-inner p{ margin: 6px 0 0; opacity:.86; max-width: 62ch; }
    .adv-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

    @media (max-width: 980px){
      .adv-grid{ grid-template-columns: 1fr; }
      .adv-steps{ grid-template-columns: 1fr; }
      .adv-split{ grid-template-columns: 1fr; }
      .adv-cta-inner{ align-items: flex-start; }
    }

/* ============================================================
   PAGE: careers
============================================================ */

    .careers-toolbar{
      display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:space-between;
      margin: 18px 0 10px;
    }
    .careers-filters{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
    .careers-chip{
      display:inline-flex; align-items:center; gap:8px;
      padding: 10px 14px; border-radius: 3px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      color: rgba(241,245,249,0.88);
      font-weight: 600;
      cursor:pointer;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
      user-select:none;
      text-decoration:none;
      white-space:nowrap;
    }
    .careers-chip:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.08); border-color: rgba(56,189,248,0.2); }
    .careers-chip.active{
      background: rgba(56,189,248,0.08);
      border-color: rgba(56,189,248,0.25);
    }

    .roles-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
      margin-top: 14px;
    }
    .role-card{
      grid-column: span 6;
      border-radius: 0;
      border: 1px solid rgba(148,163,184,0.1);
      background: rgba(255,255,255,0.03);
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
    }
    .role-card:hover{
      
      border-color: rgba(56,189,248,0.2);
      background: rgba(56,189,248,0.04);
      
    }
    .role-head{
      padding: 16px 16px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap: 14px;
      cursor:pointer;
    }
    .role-title{ display:flex; align-items:flex-start; gap: 12px; }
    .role-icon{
      width: 44px; height: 44px; border-radius: 6px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(56,189,248,0.08);
      border: 1px solid rgba(56,189,248,0.16);
      flex: 0 0 auto;
    }
    .role-icon i{ color: #38bdf8; }
    .role-head h3{
      margin:0 0 4px;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: 1.05rem;
      color: rgba(241,245,249,0.92);
    }
    .role-head p{
      margin:0;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.6;
    }
    .role-badges{ display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px; align-items:flex-start; }
    .badge{
      display:inline-flex; align-items:center; gap:6px;
      padding: 8px 10px; border-radius: 3px;
      font-size: 12px; font-weight: 700;
      color: rgba(241,245,249,0.80);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      white-space:nowrap;
    }
    .role-body{
      display:none;
      padding: 0 16px 16px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .role-card.open .role-body{ display:block; }
    .role-body ul{
      margin: 12px 0 0;
      padding-left: 18px;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.7;
    }
    .role-body li{ margin: 6px 0; }
    .role-actions{
      margin-top: 14px;
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      align-items:center;
    }

    @media (max-width: 980px){
      .role-card{ grid-column: span 12; }
      .careers-toolbar{ align-items:flex-start; }
    }

/* ============================================================
   PAGE: contact
============================================================ */

    .contact-grid{
      max-width: 920px;
      margin: 0 auto;
      display:grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 18px;
      align-items: start;
    }
    @media (max-width: 980px){
      .contact-grid{ grid-template-columns: 1fr; }
    }

    .contact-card{
      border-radius: 6px;
      border: 1px solid rgba(148,163,184,0.14);
      background: #0c0e1a;
      
      padding: 18px;
    }

    .contact-title{
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      margin: 0 0 10px;
      display:flex;
      align-items:center;
      gap: 10px;
    }
    .contact-title i{ color: rgba(56,189,248,0.92); }

    .contact-text{
      margin: 0 0 14px;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.65;
    }

    .contact-details{
      display:grid;
      gap: 12px;
      margin-top: 12px;
    }
    .contact-detail{
      display:grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
      padding: 12px;
      border-radius: 4px;
      border: 1px solid rgba(148,163,184,0.12);
      background: rgba(255,255,255,0.03);
      color: rgba(200,210,240,0.65);
      font-weight: 600;
    }
    .contact-detail i{
      margin-top: 2px;
      color: rgba(56,189,248,0.92);
      font-size: 1.05rem;
    }
    .contact-detail a{
      color: rgba(56,189,248,0.92);
      text-decoration: none;
      font-weight: 700;
    }
    .contact-detail a:hover{ text-decoration: underline; }

    /* Form styling */
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    @media (max-width: 640px){
      .form-grid{ grid-template-columns: 1fr; }
    }

    .form-field{ margin-top: 12px; }
    .form-field label{
      display:block;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.78rem;
      color: rgba(200,210,240,0.65);
      margin-bottom: 8px;
    }
    .form-field input,
    .form-field textarea,
    .form-field select{
      width: 100%;
      background: rgba(15,23,42,0.78);
      border: 1px solid rgba(148,163,184,0.28);
      color: rgba(241,245,249,0.94);
      padding: 14px 14px;
      border-radius: 4px;
      outline: none;
      font-weight: 600;
      font-family: inherit;
    }
    .form-field textarea{
      min-height: 160px;
      resize: vertical;
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus{
      border-color: rgba(56,189,248,0.35);
      box-shadow: 0 0 0 3px rgba(56,189,248,0.10);
    }

    .form-actions{
      margin-top: 16px;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    .form-note{
      text-align:center;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      font-style: italic;
      margin: 0;
    }

    /* Make the submit look like your primary button system */
    .btn-submit{
      width: 100%;
      justify-content: center;
    }

/* ============================================================
   PAGE: coverage
============================================================ */

    .coverage-section {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 32px;
      margin-bottom: 40px;
    }
    
    .coverage-section h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0 0 8px 0;
      letter-spacing: -0.02em;
    }
    
    .coverage-section p {
      color: var(--muted);
      margin: 0 0 24px 0;
      font-size: 1.05rem;
    }
    
    .address-form {
      background: rgba(5, 8, 20, 0.6);
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 6px;
      padding: 24px;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 12px 16px;
      background: rgba(12,14,26, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 8px;
      color: var(--text);
      font-size: 1rem;
      transition: all 0.2s;
    }
    
    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(12,14,26, 0.95);
    }
    
    .form-group small {
      display: block;
      color: rgba(226, 232, 240, 0.6);
      font-size: 0.85rem;
      margin-top: 6px;
    }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    
    @media (max-width: 768px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }
    
    .submit-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 8px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s;
    }
    
    .submit-btn:hover {
      background: #2563eb;
      transform: translateY(-2px);
    }
    
    .metro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 24px;
    }
    
    .metro-card {
      background: rgba(12,14,26, 0.6);
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 6px;
      padding: 24px;
      transition: all 0.3s;
    }
    
    .metro-card:hover {
      border-color: rgba(56,189,248, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }
    
    .metro-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin: 0 0 12px 0;
      color: var(--text);
    }
    
    .metro-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .metro-card li {
      color: var(--muted);
      font-size: 0.95rem;
      padding: 6px 0;
      padding-left: 20px;
      position: relative;
    }
    
    .metro-card li:before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--accent-2);
      font-weight: 700;
    }

/* ============================================================
   PAGE: faq
============================================================ */

    .faq-wrap{
      max-width: 920px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .faq-intro{
      margin-top: 18px;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      font-size: 1.06rem;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .faq-callout{
      margin: 22px auto 0;
      max-width: 920px;
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .faq-grid{
      display: grid;
      gap: 18px;
      margin-top: 28px;
    }

    .faq-category{
      border-radius: 6px;
      border: 1px solid rgba(148,163,184,0.14);
      background: #0c0e1a;
      
      padding: 18px;
    }

    .faq-category h3{
      margin: 0 0 10px 0;
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .faq-category h3 i{
      color: rgba(56,189,248,0.92);
    }
    .faq-category p.category-desc{
      margin: 0 0 14px 0;
      color: rgba(226,232,240,0.68);
      font-weight: 600;
      font-size: 0.98rem;
    }

    details.faq-item{
      border-radius: 4px;
      border: 1px solid rgba(148,163,184,0.12);
      background: rgba(255,255,255,0.03);
      padding: 14px 14px;
      margin-top: 10px;
      overflow: hidden;
    }

    details.faq-item[open]{
      border-color: rgba(56,189,248,0.18);
      background: rgba(56,189,248,0.06);
    }

    summary.faq-q{
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-weight: 700;
      font-size: 1.02rem;
      color: rgba(241,245,249,0.92);
    }

    summary.faq-q::-webkit-details-marker{ display: none; }

    .faq-toggle{
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(56,189,248,0.12);
      border: 1px solid rgba(56,189,248,0.18);
      flex: 0 0 auto;
      color: rgba(56,189,248,0.92);
      font-weight: 700;
      font-size: 1.2rem;
      line-height: 1;
    }

    details[open] .faq-toggle{
      background: rgba(56,189,248,0.12);
      border-color: rgba(56,189,248,0.22);
    }

    .faq-a{
      margin-top: 12px;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.75;
      font-size: 0.98rem;
    }

    .faq-a ul{
      margin: 12px 0 0 18px;
      padding: 0;
      display: grid;
      gap: 8px;
    }
    .faq-a li{ margin: 0; }

    .faq-cta{
      margin-top: 20px;
      text-align: center;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
    }

    .faq-cta strong a{
      color: rgba(56,189,248,0.92);
      text-decoration: none;
    }
    .faq-cta strong a:hover{ text-decoration: underline; }

    @media (max-width: 700px){
      .faq-category{ padding: 16px; }
      summary.faq-q{ font-size: 0.98rem; }
    }

/* ============================================================
   PAGE: footprint
============================================================ */

    .city-selector {
      margin-bottom: 32px;
    }
    
    .city-selector label {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .city-selector select {
      width: 100%;
      max-width: 500px;
      padding: 14px 18px;
      background: rgba(12,14,26, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 8px;
      color: var(--text);
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.2s;
      cursor: pointer;
    }
    
    .city-selector select:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(12,14,26, 0.95);
    }
    
    .city-info-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 32px;
      display: none;
    }
    
    .city-info-card.active {
      display: block;
      animation: fadeIn 0.3s ease-in;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .city-info-header {
      border-bottom: 1px solid var(--border);
      padding-bottom: 20px;
      margin-bottom: 24px;
    }
    
    .city-info-header h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin: 0 0 8px 0;
      letter-spacing: -0.02em;
    }
    
    .city-info-header .state-badge {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(56,189,248, 0.15);
      border: 1px solid rgba(56,189,248, 0.3);
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .datacenter-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
      margin-top: 16px;
    }
    
    .datacenter-badge {
      padding: 10px 16px;
      background: rgba(56,189,248, 0.08);
      border: 1px solid rgba(56,189,248, 0.2);
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.9rem;
      text-align: center;
      color: var(--accent-2);
    }
    
    .datacenter-badge.primary {
      background: rgba(56,189,248, 0.12);
      border-color: rgba(56,189,248, 0.3);
      color: var(--accent);
    }
    
    .info-section {
      margin-top: 24px;
    }
    
    .info-section h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 12px 0;
      color: var(--text);
    }
    
    .info-section p {
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }
    
    .all-cities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
      margin-top: 24px;
    }
    
    .city-pill {
      padding: 12px 16px;
      background: rgba(12,14,26, 0.6);
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--muted);
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
    }
    
    .city-pill:hover {
      border-color: var(--accent);
      background: rgba(56,189,248,0.06);
      color: var(--text);
      transform: translateY(-2px);
    }
  
    /* Map selector */
    .map-panel{ margin: 22px 0 18px; }
    .map-sub{ text-align:center; color: var(--muted); margin: -6px 0 14px; }
    .us-map{ position:relative; border-radius: 4px; border: 1px solid rgba(148,163,184,0.1); background: #0c0e1a; overflow: visible; }
    .us-map-svg{ width:100%; height:auto; display:block; }
    .map-dots { 
      position: absolute; 
      inset: 0; 
    }
    
    .map-dot { 
      position: absolute; 
      width: 12px; 
      height: 12px; 
      border-radius: 50%; 
      border: 2px solid rgba(56,189,248,0.95); 
      background: rgba(56,189,248,0.7); 
      box-shadow: 0 0 0 4px rgba(56,189,248,0.2), 0 4px 12px rgba(56,189,248,0.3); 
      cursor: pointer; 
      transform: translate(-50%, -50%);
      transition: all 0.2s ease;
      z-index: 10;
    }
    
    .map-dot:hover { 
      transform: translate(-50%, -50%) scale(1.3); 
      background: rgba(56,189,248,0.95); 
      box-shadow: 0 0 0 6px rgba(56,189,248,0.3), 0 6px 20px rgba(56,189,248,0.5);
    }
    
    .map-dot:focus { 
      outline: 2px solid rgba(56,189,248,0.85); 
      outline-offset: 3px; 
    }
    .map-legend{ display:flex; justify-content:center; gap: 10px; flex-wrap:wrap; margin-top: 10px; color: rgba(200,210,240,0.65); font-weight: 700; }
    .legend-pill{ display:inline-flex; align-items:center; gap: 8px; padding: 6px 10px; border-radius: 3px; border: 1px solid rgba(148,163,184,0.14); background: rgba(255,255,255,0.02); }
    .legend-dot{ width:10px; height:10px; border-radius:999px; background: rgba(56,189,248,0.95); box-shadow: 0 0 0 4px rgba(56,189,248,0.14); }
    .city-close{ margin-left:auto; background: transparent; border: 1px solid rgba(148,163,184,0.18); color: rgba(226,232,240,0.78); border-radius: 10px; padding: 6px 10px; cursor:pointer; }
    .city-close:hover{ border-color: rgba(56,189,248,0.35); color: rgba(226,232,240,0.92); }

    /* Host for dot overlay */
    #mapDots{ position:absolute; inset: 0; }

/* ============================================================
   PAGE: know-it-all
============================================================ */

    .kb-wrap{
      max-width: 980px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Search area (premium) */
    .kb-search{
      max-width: 980px;
      margin: 28px auto 0;
      border-radius: 4px;
      border: 1px solid rgba(148,163,184,0.14);
      background: #0c0e1a;
      
      padding: 22px;
      text-align: center;
    }
    .kb-search h2{
      margin: 0 0 8px;
      font-weight: 700;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
    }
    .kb-search p{
      margin: 0;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.7;
    }

    .kb-searchbar{
      margin-top: 14px;
      display:flex;
      align-items:center;
      gap: 10px;
      justify-content:center;
      flex-wrap: wrap;
    }

    .kb-input{
      width: min(720px, 100%);
      padding: 14px 18px;
      border-radius: 3px;
      border: 1px solid rgba(148,163,184,0.18);
      background: rgba(15,23,42,0.55);
      color: rgba(241,245,249,0.95);
      font-weight: 700;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .kb-input::placeholder{
      color: rgba(148,163,184,0.75);
      font-weight: 600;
    }
    .kb-input:focus{
      border-color: rgba(56,189,248,0.28);
      box-shadow: 0 0 0 4px rgba(56,189,248,0.10);
    }

    .kb-hint{
      margin-top: 12px;
      color: rgba(226,232,240,0.62);
      font-weight: 600;
      font-size: 0.95rem;
    }

    /* Category cards */
    .kb-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }
    @media (max-width: 980px){
      .kb-grid{ grid-template-columns: 1fr; }
    }

    .kb-card-link{
      text-decoration: none;
      color: inherit;
      display:block;
      border-radius: 4px;
      height: 100%;
    }
    .kb-card-link:focus-visible{
      outline: 3px solid rgba(56,189,248,0.35);
      outline-offset: 4px;
    }

    .kb-card{
      border-radius: 4px;
      border: 1px solid rgba(148,163,184,0.14);
      background: rgba(255,255,255,0.03);
      
      padding: 18px;
      display:flex;
      flex-direction: column;
      gap: 10px;
      height: 100%;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .kb-card-link:hover .kb-card{
      transform: translateY(-3px);
      border-color: rgba(56,189,248,0.18);
      
      background: rgba(56,189,248,0.06);
    }

    .kb-icon{
      width: 54px;
      height: 54px;
      border-radius: 4px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: rgba(56,189,248,0.08);
      border: 1px solid rgba(56,189,248,0.16);
    }
    .kb-icon i{
      color: rgba(56,189,248,0.92);
      font-size: 1.22rem;
    }
    .kb-title{
      margin: 0;
      font-weight: 700;
      font-size: 1.08rem;
      letter-spacing: -0.02em;
      color: rgba(241,245,249,0.95);
    }
    .kb-desc{
      margin: 0;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.7;
      font-size: 0.98rem;
    }
    .kb-meta{
      margin-top: auto;
      display:flex;
      gap: 8px;
      flex-wrap: wrap;
      padding-top: 6px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 3px;
      border: 1px solid rgba(148,163,184,0.16);
      background: rgba(15,23,42,0.55);
      color: rgba(200,210,240,0.65);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }
    .pill i{
      color: rgba(56,189,248,0.92);
      font-size: 0.85rem;
    }

    /* Direct support */
    .direct{
      max-width: 980px;
      margin: 28px auto 0;
      border-radius: 4px;
      border: 1px solid rgba(148,163,184,0.14);
      background: rgba(255,255,255,0.03);
      padding: 22px;
      text-align:center;
    }
    .direct h3{
      margin: 0 0 10px;
      font-weight: 700;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
    }
    .direct p{
      margin: 0;
      color: rgba(200,210,240,0.65);
      font-weight: 700;
      line-height: 1.7;
      font-size: 1.05rem;
    }
    .direct-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
      text-align:left;
    }
    @media (max-width: 980px){
      .direct-grid{ grid-template-columns: 1fr; }
    }
    .direct-card{
      border-radius: 6px;
      border: 1px solid rgba(148,163,184,0.14);
      background: #0c0e1a;
      
      padding: 18px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .direct-card:hover{
      transform: translateY(-3px);
      border-color: rgba(56,189,248,0.18);
      
    }
    .direct-card h4{
      margin: 0 0 8px;
      font-weight: 700;
      letter-spacing: -0.02em;
      display:flex;
      align-items:center;
      gap: 10px;
      font-size: 1.05rem;
    }
    .direct-card h4 i{ color: rgba(56,189,248,0.92); }
    .direct-card p{
      margin: 0;
      color: rgba(200,210,240,0.65);
      font-weight: 600;
      line-height: 1.65;
      font-size: 0.98rem;
      text-align:left;
    }
    .direct-card a{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      margin-top: 12px;
      color: rgba(56,189,248,0.92);
      text-decoration: none;
      font-weight: 700;
    }
    .direct-card a:hover{ text-decoration: underline; }

/* ============================================================
   PAGE: locations
============================================================ */

    .city-selector {
      margin-bottom: 32px;
    }

    .city-selector label {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .city-selector select {
      width: 100%;
      max-width: 500px;
      padding: 14px 18px;
      background: rgba(12,14,26, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 8px;
      color: var(--text);
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.2s;
      cursor: pointer;
    }

    .city-selector select:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(12,14,26, 0.95);
    }

    .city-info-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 32px;
      display: none;
    }

    .city-info-card.active {
      display: block;
      animation: fadeIn 0.3s ease-in;
    }

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

    .city-info-header {
      border-bottom: 1px solid var(--border);
      padding-bottom: 20px;
      margin-bottom: 24px;
    }

    .map-panel {
      margin-top: 24px;
    }

    .us-map {
      position: relative;
      margin-top: 14px;
      border-radius: 4px;
      border: 1px solid rgba(148,163,184,0.14);
      background: linear-gradient(180deg, #0c0e1a, rgba(11,16,38,0.80));
      
      overflow: hidden;
    }

    .us-map-svg {
      width: 100%;
      height: auto;
      display: block;
    }

    .map-dots {
      position: absolute;
      inset: 0;
    }

    .map-dot {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid rgba(56,189,248,0.95);
      background: rgba(56,189,248,0.7);
      box-shadow: 0 0 0 4px rgba(56,189,248,0.2), 0 4px 12px rgba(56,189,248,0.3);
      cursor: pointer;
      transform: translate(-50%, -50%);
      transition: all 0.2s ease;
      z-index: 10;
    }

    .map-dot:hover {
      transform: translate(-50%, -50%) scale(1.3);
      background: rgba(56,189,248,0.95);
      box-shadow: 0 0 0 6px rgba(56,189,248,0.3), 0 6px 20px rgba(56,189,248,0.5);
    }

    .city-close {
      margin-left: auto;
      background: transparent;
      border: 1px solid rgba(148,163,184,0.28);
      color: rgba(200,210,240,0.75);
      border-radius: 10px;
      padding: 6px 10px;
      font-weight: 700;
      cursor: pointer;
    }

    .city-close:hover {
      border-color: rgba(56,189,248,0.55);
      color: #fff;
    }

    .city-info-header {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .city-info-header h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin: 0 0 8px 0;
      letter-spacing: -0.02em;
    }

    .city-info-header .state-badge {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(56,189,248, 0.15);
      border: 1px solid rgba(56,189,248, 0.3);
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .datacenter-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .datacenter-badge {
      padding: 10px 16px;
      background: rgba(56,189,248, 0.08);
      border: 1px solid rgba(56,189,248, 0.2);
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.9rem;
      text-align: center;
      color: var(--accent-2);
    }

    .datacenter-badge.primary {
      background: rgba(56,189,248, 0.12);
      border-color: rgba(56,189,248, 0.3);
      color: var(--accent);
    }

    .info-section {
      margin-top: 24px;
    }

    .info-section h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 12px 0;
      color: var(--text);
    }

    .info-section p {
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    .all-cities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
      margin-top: 24px;
    }

    .city-pill {
      padding: 12px 16px;
      background: rgba(12,14,26, 0.6);
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--muted);
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
    }

    .city-pill:hover {
      border-color: var(--accent);
      background: rgba(56,189,248,0.06);
      color: var(--text);
      transform: translateY(-2px);
    }

/* ============================================================
   PAGE: network-map
============================================================ */

    .city-selector {
      margin-bottom: 32px;
    }
    
    .city-selector label {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .city-selector select {
      width: 100%;
      max-width: 500px;
      padding: 14px 18px;
      background: rgba(12,14,26, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 8px;
      color: var(--text);
      font-size: 1.1rem;
      font-weight: 600;
      transition: all 0.2s;
      cursor: pointer;
    }
    
    .city-selector select:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(12,14,26, 0.95);
    }
    
    .city-info-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 32px;
      display: none;
    }
    
    .city-info-card.active {
      display: block;
      animation: fadeIn 0.3s ease-in;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .city-info-header {
      border-bottom: 1px solid var(--border);
      padding-bottom: 20px;
      margin-bottom: 24px;
    }
    
    .city-info-header h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin: 0 0 8px 0;
      letter-spacing: -0.02em;
    }
    
    .city-info-header .state-badge {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(56,189,248, 0.15);
      border: 1px solid rgba(56,189,248, 0.3);
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .datacenter-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
      margin-top: 16px;
    }
    
    .datacenter-badge {
      padding: 10px 16px;
      background: rgba(56,189,248, 0.08);
      border: 1px solid rgba(56,189,248, 0.2);
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.9rem;
      text-align: center;
      color: var(--accent-2);
    }
    
    .datacenter-badge.primary {
      background: rgba(56,189,248, 0.12);
      border-color: rgba(56,189,248, 0.3);
      color: var(--accent);
    }
    
    .info-section {
      margin-top: 24px;
    }
    
    .info-section h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 12px 0;
      color: var(--text);
    }
    
    .info-section p {
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }
    
    .all-cities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
      margin-top: 24px;
    }
    
    .city-pill {
      padding: 12px 16px;
      background: rgba(12,14,26, 0.6);
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--muted);
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
    }
    
    .city-pill:hover {
      border-color: var(--accent);
      background: rgba(56,189,248,0.06);
      color: var(--text);
      transform: translateY(-2px);
    }
  
    /* Map selector */
    .map-panel{ margin: 22px 0 18px; }
    .map-sub{ text-align:center; color: var(--muted); margin: -6px 0 14px; }
    .us-map{ position:relative; border-radius: 4px; border: 1px solid rgba(148,163,184,0.1); background: #0c0e1a; overflow: visible; }
    .us-map-svg{ width:100%; height:auto; display:block; }
    .map-dots { 
      position: absolute; 
      inset: 0; 
    }
    
    .map-dot { 
      position: absolute; 
      width: 12px; 
      height: 12px; 
      border-radius: 50%; 
      border: 2px solid rgba(56,189,248,0.95); 
      background: rgba(56,189,248,0.7); 
      box-shadow: 0 0 0 4px rgba(56,189,248,0.2), 0 4px 12px rgba(56,189,248,0.3); 
      cursor: pointer; 
      transform: translate(-50%, -50%);
      transition: all 0.2s ease;
      z-index: 10;
    }
    
    .map-dot:hover { 
      transform: translate(-50%, -50%) scale(1.3); 
      background: rgba(56,189,248,0.95); 
      box-shadow: 0 0 0 6px rgba(56,189,248,0.3), 0 6px 20px rgba(56,189,248,0.5);
    }
    
    .map-dot:focus { 
      outline: 2px solid rgba(56,189,248,0.85); 
      outline-offset: 3px; 
    }
    .map-legend{ display:flex; justify-content:center; gap: 10px; flex-wrap:wrap; margin-top: 10px; color: rgba(200,210,240,0.65); font-weight: 700; }
    .legend-pill{ display:inline-flex; align-items:center; gap: 8px; padding: 6px 10px; border-radius: 3px; border: 1px solid rgba(148,163,184,0.14); background: rgba(255,255,255,0.02); }
    .legend-dot{ width:10px; height:10px; border-radius:999px; background: rgba(56,189,248,0.95); box-shadow: 0 0 0 4px rgba(56,189,248,0.14); }
    .city-close{ margin-left:auto; background: transparent; border: 1px solid rgba(148,163,184,0.18); color: rgba(226,232,240,0.78); border-radius: 10px; padding: 6px 10px; cursor:pointer; }
    .city-close:hover{ border-color: rgba(56,189,248,0.35); color: rgba(226,232,240,0.92); }

    /* Host for dot overlay */
    #mapDots{ position:absolute; inset: 0; }

  

    /* Fiber overlay */
    .fiber-legend{
      margin: 14px auto 0;
      max-width: 920px;
      border-radius: 4px;
      border: 1px solid rgba(148,163,184,0.14);
      background: rgba(11,16,38,0.55);
      padding: 14px 16px;
      
    }
    .legend-title{
      font-weight: 700;
      letter-spacing: .02em;
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom: 10px;
    }
    .legend-items{
      display:flex;
      flex-wrap:wrap;
      gap: 12px 16px;
      color: var(--muted);
      font-weight: 700;
      font-size: .92rem;
    }
    .legend-item{ display:flex; align-items:center; gap:8px; }
    .swatch{ width: 16px; height: 4px; border-radius: 3px; display:inline-block; }
    .swatch-zayo{ background: rgba(56,189,248,0.9); }
    .swatch-lumen{ background: rgba(56,189,248,0.9); }
    .swatch-crown{ background: rgba(167,139,250,0.9); }
    .swatch-cogent{ background: rgba(34,197,94,0.9); }
    .swatch-multi{ background: rgba(244,114,182,0.9); }
    .legend-note{ margin-top: 8px; color: var(--muted); font-size:.9rem; line-height:1.55; }

/* ============================================================
   PAGE: support
============================================================ */

    /* page-specific tweaks (safe + scoped) */
    :root{
      --support-card-radius: 18px;
    }

    body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

    .support-hero {
      padding: 84px 0 30px;
      position: relative;
      overflow: hidden;
    }
    .support-hero::before{
      content:"";
      position:absolute;
      inset:-200px -120px auto -120px;
      height:520px;
      background:
        radial-gradient(closest-side at 22% 40%, rgba(56,189,248,.14), rgba(0,0,0,0) 60%),
        radial-gradient(closest-side at 70% 20%, rgba(55,165,255,.10), rgba(0,0,0,0) 55%),
        radial-gradient(closest-side at 55% 80%, rgba(96,255,207,.06), rgba(0,0,0,0) 55%);
      pointer-events:none;
      filter: blur(2px);
    }
    .support-hero .inner{
      position:relative;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .support-hero h1{
      font-size: clamp(38px, 5vw, 56px);
      line-height: 1.05;
      margin: 0 0 14px;
      letter-spacing: -0.03em;
    }
    .support-hero p{
      margin: 0;
      max-width: 820px;
      color: rgba(255,255,255,.75);
      font-size: 18px;
      line-height: 1.6;
    }

    .support-hero-actions{
      margin-top: 22px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
    }

    .support-highlights{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .support-highlights{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .support-highlights{ grid-template-columns: 1fr; }
}
    @media (max-width: 860px){
      .support-highlights{ grid-template-columns: 1fr; }
    }
    .support-highlight{
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      border-radius: 6px;
      padding: 14px 16px;
      display:flex;
      gap:12px;
      align-items:flex-start;
    }

.support-highlight--status{
  border-color: rgba(34,197,94,.18);
  background: rgba(34,197,94,.06);
}
.support-highlight--status .icon{
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.22);
}
    .support-highlight .icon{
      width: 38px;
      height: 38px;
      border-radius: 4px;
      display:grid;
      place-items:center;
      background: rgba(56,189,248,.12);
      border: 1px solid rgba(56,189,248,.22);
      color: rgba(155,240,255,1);
      flex: 0 0 auto;
    }
    .support-highlight .label{
      font-weight: 700;
      color: rgba(255,255,255,.95);
      font-size: 14px;
      margin: 0 0 2px;
    }
    .support-highlight .value{
      margin:0;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.4;
    }

    .support-section{
      padding: 36px 0 90px;
    }
    .support-section .inner{
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .support-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items:start;
    }
    @media (max-width: 980px){
      .support-grid{ grid-template-columns: 1fr; }
    }

    .support-panel{
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      border-radius: 4px;
      padding: 22px;
      
    }

    .support-panel-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      padding-bottom: 12px;
      margin-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .support-panel-head h2{
      margin:0;
      font-size: 28px;
      letter-spacing:-0.02em;
    }
    .support-panel-head p{
      margin: 6px 0 0;
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height: 1.5;
      max-width: 560px;
    }

    /* priority cards */
    .priority-cards{
      display:grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .priority-card{
      position: relative;
      border: 1px solid rgba(255,255,255,.09);
      background: #0c0e1a;
      border-radius: var(--support-card-radius);
      padding: 18px 18px 16px;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .priority-card::before{
      content:"";
      position:absolute;
      inset:0;
      background: radial-gradient(1200px 200px at 0% 0%, rgba(56,189,248,.11), rgba(0,0,0,0) 45%);
      pointer-events:none;
    }
    .priority-card:hover{
      transform: translateY(-2px);
      border-color: rgba(56,189,248,.18);
      
    }
    .priority-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      position:relative;
    }
    .priority-left{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .priority-icon{
      width: 44px;
      height: 44px;
      border-radius: 6px;
      display:grid;
      place-items:center;
      background: rgba(56,189,248,.12);
      border: 1px solid rgba(56,189,248,.22);
      color: rgba(155,240,255,1);
      flex: 0 0 auto;
      margin-top:2px;
    }
    .priority-title{
      margin:0;
      font-size: 18px;
      font-weight: 700;
      letter-spacing:-0.01em;
    }
    .priority-desc{
      margin: 6px 0 0;
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height:1.55;
      max-width: 620px;
    }
    .priority-arrow{
      width: 34px;
      height: 34px;
      border-radius: 3px;
      display:grid;
      place-items:center;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.18);
      color: rgba(255,255,255,.7);
      flex: 0 0 auto;
    }

    .priority-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top: 12px;
      position:relative;
    }
    .pill{
      display:inline-flex;
      gap:8px;
      align-items:center;
      padding: 7px 10px;
      border-radius: 3px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.18);
      color: rgba(255,255,255,.72);
      font-size: 12px;
      font-weight: 600;
    }
    .pill strong{
      color: rgba(255,255,255,.9);
      font-weight: 700;
    }

    .priority-actions{
      margin-top: 14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      position:relative;
    }
    .btn-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 12px 14px;
      border-radius: 3px;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.22);
      color: rgba(255,255,255,.92);
      text-decoration:none;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .btn-cta:hover{
      transform: translateY(-1px);
      border-color: rgba(56,189,248,.22);
      background: rgba(56,189,248,.10);
    }
    .btn-cta.primary{
      background: linear-gradient(135deg, rgba(55,165,255,.95), rgba(56,189,248,.90));
      color: #00131d;
      border-color: rgba(56,189,248,.35);
    }
    .btn-cta.primary:hover{
      background: linear-gradient(135deg, rgba(75,175,255,.98), rgba(75,230,255,.92));
    }

    /* right column quick panel */
    .quick-stack{
      display:grid;
      gap: 14px;
    }
    .quick-card{
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      border-radius: 4px;
      padding: 16px;
    }
    .quick-card h3{
      margin:0 0 6px;
      font-size: 15px;
      font-weight: 700;
    }
    .quick-card p{
      margin:0;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height:1.55;
    }
    .quick-card a{
      color: rgba(155,240,255,1);
      text-decoration:none;
      font-weight:800;
    }
    .quick-card a:hover{ text-decoration: underline; }

    /* small helper */
    .muted{ color: rgba(255,255,255,.72); }

  
/* Status banner */
.status-banner{margin:24px auto 0;max-width:1100px;display:flex;align-items:center;justify-content:space-between;padding:14px 18px;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:linear-gradient(180deg, rgba(0,153,255,.10), rgba(255,255,255,.02));backdrop-filter: blur(10px);}
.status-left{display:flex;gap:12px;align-items:center;}
.status-dot{width:10px;height:10px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 6px rgba(34,197,94,.12);}
.status-title{font-weight:800;letter-spacing:.02em;}
.status-sub{color:rgba(255,255,255,.72);font-size:13px;margin-top:2px;}
.status-link{color:rgba(255,255,255,.9);text-decoration:none;font-weight:700;}
.status-link:hover{text-decoration:underline;}
/* Priority stripe + accordion */
.priority-card{position:relative;overflow:hidden;}
.priority-card::before{content:"";position:absolute;inset:0 0 auto 0;height:4px;background:linear-gradient(90deg, rgba(0,153,255,.9), rgba(34,197,94,.7));opacity:.9;}
.priority-card:nth-of-type(2)::before{background:linear-gradient(90deg, rgba(0,153,255,.8), rgba(255,255,255,.15));}
.priority-card:nth-of-type(3)::before{background:linear-gradient(90deg, rgba(0,153,255,.65), rgba(255,255,255,.10));}
.priority-accordion{margin-top:14px;border-top:1px solid rgba(255,255,255,.08);padding-top:12px;}
.priority-accordion summary{cursor:pointer;list-style:none;font-weight:700;color:rgba(255,255,255,.9);display:flex;align-items:center;gap:10px;}
.priority-accordion summary::-webkit-details-marker{display:none;}
.priority-accordion summary::after{content:"+";margin-left:auto;font-size:18px;opacity:.8;transition:transform .2s ease;}
.priority-accordion[open] summary::after{content:"–";}
.priority-accordion-body{margin-top:12px;}
/* Subtle icon animations */
.priority-icon{transition:transform .25s ease, filter .25s ease;}
.priority-card:hover .priority-icon{transform:translateY(-1px) scale(1.05);filter:drop-shadow(0 8px 18px rgba(0,153,255,.25));}

/* Compact network status banner */
.status-banner--compact{
  width: auto;
  max-width: 560px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
@media (max-width: 1024px){
  .status-banner--compact{ max-width: 92%; }
}

    /* Center status pill under hero proof cards */
    .status-pill-wrap{
      display:block;
      width:100%;
      text-align:center;
      margin-top: 14px;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
    }

  
    /* Match status pill width to hero proof cards */
    .status-pill-wrap{
      max-width: 920px;
      margin: 14px auto 0;
      padding: 0 10px;
    }
    .status-pill{
      width: 100%;
      justify-content: center;
    }

/* Active nav highlighting */
.v-drop-link.v-active {
  background: rgba(34,211,238,0.1);
  color: #38bdf8;
}
.v-drop-link.v-active i {
  color: #38bdf8;
}
.v-nav-link.v-active-parent {
  color: rgba(240, 244, 255, 0.95);
}


/* ============================================================
   VARAYO HEADER — Premium Enterprise (moved from header partial)
============================================================ */
/* ============================================================
   VARAYO HEADER — Premium Enterprise
============================================================ */
.v-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(7, 8, 15, 0.96);
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.v-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; margin-right: 16px; }
.v-logo img { height: 40px; width: auto; }

.v-nav { display: flex; align-items: center; gap: 2px; flex: 1; position: relative; }

.v-nav-item { position: relative; }
.v-nav-item::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }

.v-nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  color: rgba(240, 244, 255, 0.68);
  text-decoration: none; font-size: 0.84rem; font-weight: 500;
  border-radius: 6px; transition: all 0.15s ease; white-space: nowrap;
  cursor: pointer; background: none; border: none; font-family: inherit;
}
.v-nav-link i { font-size: 0.6rem; opacity: 0.5; transition: transform 0.2s; }
.v-nav-link:hover { color: #f0f4ff; background: rgba(34,211,238,0.07); }
.v-nav-item:hover > .v-nav-link { color: #f0f4ff; }
.v-nav-item:hover > .v-nav-link i { transform: rotate(180deg); }

.v-dropdown {
  position: absolute;
  top: calc(100% + 10px); left: 0;
  background: #0b0d1c;
  border: 1px solid rgba(34,211,238,0.12);
  border-radius: 10px;
  padding: 8px;
  min-width: 210px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
}
.v-dropdown--wide {
  min-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 16px;
  left: 0;
  transform: translateY(-6px);
}
.v-nav-item:hover > .v-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.v-nav-item:hover > .v-dropdown--wide {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.v-col-label {
  display: block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(34,211,238,0.65);
  padding: 6px 8px 6px;
  border-bottom: 1px solid rgba(148,163,184,0.08);
  margin-bottom: 4px;
}
.v-col-label + .v-col-label,
.v-drop-link + .v-col-label { margin-top: 10px; }

.v-drop-link {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  color: rgba(200,210,240,0.68);
  text-decoration: none; font-size: 0.82rem; font-weight: 500;
  border-radius: 5px; transition: all 0.13s ease; white-space: nowrap;
}
.v-drop-link i { font-size: 0.75rem; color: rgba(34,211,238,0.45); width: 14px; text-align: center; flex-shrink: 0; }
.v-drop-link:hover { background: rgba(34,211,238,0.07); color: #f0f4ff; }
.v-drop-link:hover i { color: #38bdf8; }

.v-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.v-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 600;
  border-radius: 3px; text-decoration: none; transition: all 0.16s ease;
  white-space: nowrap; font-family: inherit; cursor: pointer; border: 1px solid transparent;
}
.v-btn-ghost { background: transparent; border-color: rgba(148,163,184,0.2); color: rgba(240,244,255,0.65); }
.v-btn-ghost:hover { border-color: rgba(34,211,238,0.3); color: #f0f4ff; }
.v-btn-primary { background: #38bdf8; color: #07080f; font-weight: 700; }
.v-btn-primary:hover { background: #7dd3fc; box-shadow: 0 0 20px rgba(34,211,238,0.25); }

.v-toggle {
  display: none; background: none; border: none;
  color: rgba(240,244,255,0.65); font-size: 1.15rem;
  cursor: pointer; padding: 8px; margin-left: auto;
}

@media (max-width: 1020px) {
  .v-nav { display: none; }
  .v-actions .v-btn-ghost { display: none; }
  .v-toggle { display: block; }
  .v-nav.v-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 66px; left: 0; right: 0;
    background: #07080f; border-bottom: 1px solid rgba(34,211,238,0.1);
    padding: 10px; max-height: calc(100vh - 66px); overflow-y: auto; gap: 2px;
  }
  .v-dropdown, .v-dropdown--wide {
    position: static; opacity: 1; visibility: visible;
    transform: none !important; background: rgba(34,211,238,0.04);
    border: none; border-radius: 6px; box-shadow: none;
    display: none; padding: 6px 0 6px 10px; min-width: auto;
    grid-template-columns: 1fr;
  }
  .v-dropdown.v-open { display: block; }
  .v-nav-link { width: 100%; justify-content: space-between; padding: 10px 12px; }
  .v-drop-link { padding: 7px 10px; }
}
@media (max-width: 480px) {
  .v-header-inner { padding: 0 16px; }
  .v-logo img { height: 34px; }
}
