/* 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:   8px;
  --radius-lg: 16px;
  --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;
}

.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: 10px;
  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: 10px;
  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: 12px;
  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: 10px;
  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: 6px !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: 12px;
  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: 14px;
  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: 14px;
  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: 14px;
  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: 14px;
  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;
}

/* ============================================================
/* ============================================================
   Footer (Minimal)
============================================================ */
.site-footer {
  background: #040610;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 0.95rem;
}

.site-footer .footer-top {
  padding: 26px 0 14px;
}

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

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

.site-footer .footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 10px;
}

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

.site-footer .footer-links--row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

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

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

.site-footer .footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 14px 0;
}

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

.site-footer .footer-legal {
  color: rgba(226, 232, 240, 0.55);
}

.site-footer .footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.site-footer .footer-social a {
  color: rgba(226, 232, 240, 0.70);
  text-decoration: none;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.site-footer .footer-social a:hover {
  transform: translateY(-1px);
  color: rgba(241, 245, 249, 0.95);
  border-color: rgba(148, 163, 184, 0.28);
}

@media (max-width: 980px) {
  .site-footer .footer-brand img {
    height: 52px;
  }
}
   Compact CTA Strip (replaces large quote blocks)
============================================================ */
.cta-strip {
  margin-top: 44px;
  padding: 20px 0;
  background: rgba(11, 16, 38, 0.65);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  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: 14px;
  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); }
}

/* ============================================================
   COVERAGE CHECKER (below trust stats)
============================================================ */
.coverage-checker {
  margin-top: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(11,16,38,0.85);
  border: 1px solid rgba(34,211,238,0.25);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.coverage-checker-text {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 600;
  color: rgba(226,232,240,0.85);
  font-size: 0.95rem;
}

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

.coverage-checker-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.coverage-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(148,163,184,0.28);
  background: rgba(15,23,42,0.78);
  color: rgba(241,245,249,0.94);
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.coverage-input::placeholder {
  color: rgba(148,163,184,0.65);
}

.coverage-input:focus {
  border-color: rgba(34,211,238,0.45);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.12);
}

.coverage-btn {
  white-space: nowrap;
  padding: 12px 24px;
}

@media (max-width: 640px) {
  .coverage-checker {
    padding: 18px 16px;
  }
  
  .coverage-checker-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .coverage-input {
    width: 100%;
  }
  
  .coverage-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   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: 12px;
  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: 12px;
  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: 14px;
  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: 14px;
  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: 14px;
  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: 12px;
  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: 12px;
  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: 16px;
    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: 12px;
    /* 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: 14px;
  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: 14px;
  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: 14px;
  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: 20px;
  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: 14px;
  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: 12px;
  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: 20px;
  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:14px;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:16px;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:16px;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:14px;
  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:16px;
  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:12px;
  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: 14px;
  /* 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:12px;
  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 {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.v-footer-top {
  border-bottom: 1px solid var(--border);
}
.v-footer-top-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 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;
}
