/* site-styles.css */

/* ============================================================
   Carrier Enterprise Dark Theme (High Readability)
============================================================ */
:root {
  --bg: #050814;
  --bg-2: #070b1c;
  --panel: #0b1026;
  --panel-2: #0e1633;
  --border: rgba(148, 163, 184, 0.16);
  --text: #f1f5f9;
  --muted: rgba(226, 232, 240, 0.72);
  --accent: #3b82f6;
  --accent-2: #22d3ee;
  --radius: 12px;
  --shadow-sm: 0 8px 18px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.45);
  --max-width: 1180px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.65;
}

a { color: inherit; }

/* ============================================================
   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: 900;
  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: 750;
  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 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.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;
  background: var(--panel);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 320px;
  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: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #051024 !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  font-weight: 950 !important;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, border-color 0.14s ease;
  user-select: none;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #051024;
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.18);
}

.btn-secondary {
  background: rgba(226, 232, 240, 0.06);
  border-color: rgba(226, 232, 240, 0.14);
  color: rgba(241, 245, 249, 0.92);
}

.btn-full { width: 100%; }

/* ============================================================
   HERO
============================================================ */
.hero-enterprise {
  padding: 96px 0 72px;
  background:
    radial-gradient(900px 520px at 38% -50px, rgba(59,130,246,0.16), transparent 60%),
    radial-gradient(700px 520px at 90% 100px, rgba(34,211,238,0.10), transparent 60%),
    var(--bg);
}

.hero-centered {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.55rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  margin: 18px 0 14px;
  line-height: 1.06;
}

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

.lead {
  color: rgba(226, 232, 240, 0.78);
  font-size: 1.12rem;
  margin: 0 auto;
  max-width: 780px;
}

/* ============================================================
   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: 950;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.proof-label {
  margin-top: 2px;
  color: rgba(226, 232, 240, 0.68);
  font-weight: 850;
  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: 950;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.service-desc {
  margin-top: 4px;
  color: rgba(226,232,240,0.70);
  font-weight: 750;
  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: 950;
  font-size: 1.05rem;
}

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

.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: 999px;
  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: 850;
  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: 950;
  font-size: 1.05rem;
}

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

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

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 42px;
}

.footer-column {
  min-width: 210px;
  max-width: 340px;
}

.footer-column h4 {
  color: rgba(241, 245, 249, 0.92);
  font-weight: 950;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-column p,
.footer-column li {
  margin: 0 0 10px 0;
  color: rgba(226, 232, 240, 0.68);
}

.footer-column ul { list-style: none; padding: 0; margin: 0; }

.footer-column a {
  color: rgba(226, 232, 240, 0.68);
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-column a:hover { color: var(--accent-2); }

.footer-brand img { height: 54px; margin-bottom: 14px; }

.footer-divider {
  max-width: var(--max-width);
  margin: 44px auto 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.copyright {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  color: rgba(226, 232, 240, 0.55);
  font-size: 0.9rem;
  padding: 6px 0 14px;
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1100px) {
  .hero-proof { grid-template-columns: 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; }
}

/* ============================================================
   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: 950;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.support-desc {
  margin-top: 6px;
  color: rgba(226,232,240,0.70);
  font-weight: 750;
  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: 950;
  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: 950;
  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: 999px;
  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: 850;
  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: 999px;
  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: 850;
  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: 999px;
  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: 850;
  font-size: 0.92rem;
}



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

/* Big section headings: add subtle gradient + glow + tighter rhythm */
.section-title{
  position: relative;
  display: inline-block;
  line-height: 1.12;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}
.section-title::after{
  content:"";
  display:block;
  width: 64px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  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);
}

/* Eyebrow labels like "What we deliver" */
.section-eyebrow{
  position: relative;
  padding-left: 12px;
  font-weight: 950;
  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: 999px;
  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: 950;
  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: 999px;
  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: 999px;
  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: 850;
  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: 850;
  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;
}

/* Ensure the divider itself doesn't add vertical space */
.section-divider{
  height: 1px;
  background: 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: 999px;
  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: 999px;
  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: 999px;
  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: 999px;
  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: 999px;
  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: 999px;
  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;
}
