:root{
  --brand-blue:#01839B;
  --brand-green:#39B54A;
  --ink:#0b1220;
  --muted:#5c6773;
  --bg:#ffffff;
  --bg-soft:#f6f8fb;
  --card:#ffffff;
  --border:rgba(11,18,32,.12);
  --shadow:0 10px 30px rgba(11,18,32,.10);
  --radius:16px;
  --max:1120px;
  --focus: 0 0 0 3px rgba(1,131,155,.25);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink); background:var(--bg); line-height:1.55;
}
img{max-width:100%; height:auto}
a{color:var(--brand-blue); text-decoration:none}
a:hover{text-decoration:underline}
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:none; box-shadow:var(--focus); border-radius:10px;
}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.stack{display:flex; flex-direction:column; gap:18px}

.utility{background:var(--brand-green); color:#fff; font-size:14px}
.utility .container{display:flex; align-items:center; justify-content:space-between; padding:10px 18px; gap:16px}
.utility a{color:#fff; font-weight:600}
.utility .right{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.badge{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; background:rgba(255,255,255,.15)}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(1.2) blur(8px);
  border-bottom:1px solid var(--border);
}
.header .container{display:flex; align-items:center; justify-content:flex-start; padding:14px 18px; gap:14px}

.brand{display:flex; align-items:center; gap:12px; flex:0 0 auto}
.brand img.wordmark{height:22px; width:auto; display:block}
/* Keep desktop nav compact at all widths so the CTA never overlaps */
.nav{display:flex; align-items:center; gap:6px; margin-left:auto; justify-content:flex-end}
.nav a{
  color:var(--ink);
  font-weight:800;
  font-size:16px;
  padding:7px 6px;
  border-radius:10px;
  white-space:nowrap;
}
.nav a[aria-current="page"]{color:var(--brand-blue); background:rgba(1,131,155,.08)}
.nav a:hover{background:rgba(11,18,32,.05); text-decoration:none}
.nav .cta{background:var(--brand-blue); color:#fff}
.nav .cta:hover{background:#026c80}
.menu-btn{display:none; border:1px solid var(--border); background:#fff; border-radius:12px; padding:10px 12px; font-weight:900; margin-left:auto}
.menu-panel{display:none; border-top:1px solid var(--border); padding:10px 0 18px}
.menu-panel a{display:block; padding:12px 18px; font-weight:900; color:var(--ink); white-space:nowrap}
.menu-panel a:hover{background:rgba(11,18,32,.05); text-decoration:none}

.hero{
  position:relative; overflow:hidden; color:#fff;
  background:#07151b;
}
.hero .bg{
  position:absolute; inset:0;
  background-position:center; background-size:cover;
  opacity:.45;
  filter:saturate(1.05) contrast(1.05);
}
.hero:before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(1,131,155,.72), rgba(11,15,22,.62));
}
.hero .container{
  position:relative;
  padding:64px 18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  align-items:flex-start;
  gap:26px;
}

/* Standard hero height across pages */
.hero .container{
  min-height: 420px;
}

.hero h1{margin:0; font-size:clamp(34px, 5vw, 56px); line-height:1.05; letter-spacing:-.6px; text-shadow:0 2px 18px rgba(0,0,0,.35)}
.hero p{margin:14px 0 0; max-width:55ch; font-size:18px; opacity:.98; text-shadow:0 2px 16px rgba(0,0,0,.25)}
.hero .actions{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap}

/* Global actions row (used outside hero sections too) */
.actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:14px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.12);
  color:#fff;
  white-space:nowrap;
}
.btn:hover{text-decoration:none; background:rgba(255,255,255,.18)}
.btn.primary{background:#fff; color:var(--brand-blue); border-color:#fff}
.btn.primary:hover{background:#f2fbff}
.hero .card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  border-radius:var(--radius);
  padding:18px;
  min-height:220px;
}
.hero .card{min-height:230px}
/* Tighten hero card headings */
.hero .card h2{margin-top:0;}


.quicklinks{background:#0b0f16; color:#fff}
.quicklinks .container{display:flex; gap:18px; padding:14px 18px; flex-wrap:wrap; align-items:center}
.quicklinks a{color:#fff; font-weight:900; opacity:.95; white-space:nowrap}
.quicklinks a:hover{opacity:1; text-decoration:none}

.section{padding:56px 0}
.section.alt{background:var(--bg-soft)}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:22px}
.card{background:var(--card); border:1px solid var(--border); border-radius:var(--radius); box-shadow: var(--shadow); padding:18px}
.card h3{margin:0 0 8px}
.kicker{color:var(--muted); font-weight:900; text-transform:uppercase; letter-spacing:.14em; font-size:12px}
.small{font-size:16px; color:#94a3b8}
.feature{display:flex; gap:14px; align-items:flex-start}
.icon{
  width:44px; height:44px; border-radius:14px;
  background:rgba(1,131,155,.10);
  display:grid; place-items:center;
  border:1px solid rgba(1,131,155,.18);
  color:var(--brand-blue);
}
.icon svg{width:22px; height:22px}

hr.sep{border:none; border-top:1px solid rgba(148,163,184,.18); margin:18px 0}

.status-bar{height:82px; border-radius:18px; background:#0a7a1f; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:1000; font-size:32px; letter-spacing:-.5px}

footer{background:#0b0f16; color:#cbd5e1; padding:40px 0; margin-top:56px}
footer a{color:#cbd5e1; font-weight:700}
footer a:hover{color:#fff; text-decoration:none}
.footer-grid{display:grid; grid-template-columns:2fr 1fr; gap:14px}

/* Keep header compact across desktop widths */
.header .container{padding:13px 16px; gap:12px}
.brand img.wordmark{height:36px}

@media (max-width: 920px){
  .hero .container{grid-template-columns:1fr; padding:54px 18px; min-height:360px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .menu-panel.open{display:block}
  .ts-services{grid-template-columns:1fr}
  .ts-video-wrap{width:100%; justify-self:stretch; aspect-ratio:16/9}
}


/* (logo scaling handled above) */
.accent-bar{
  height:6px;
  background:linear-gradient(90deg, var(--brand-green), transparent);
}
.card.feature{
  border-top:4px solid var(--brand-green);
}
.btn.primary{
  box-shadow:0 0 0 3px rgba(57,181,74,.25);
}


/* Structured, condensed footer — lightweight but balanced */
footer {
  padding: 24px 0;
}

.footer-grid {
  gap: 24px;
}

footer .stack {
  gap: 8px;
}

footer h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.85;
}

footer .small,
footer a {
  font-size: 12px;
  line-height: 1.3;
}

footer hr.sep {
  margin: 12px 0;
}


/* Announcement banner (replaces Go to bar) */
.announce{
  background:#0b0f16;
  color:#fff;
  border-top:1px solid rgba(148,163,184,.14);
  border-bottom:1px solid rgba(148,163,184,.14);
}
.announce[hidden]{display:none}
.announce-inner{padding:12px 18px}
.announce-list{display:flex;flex-direction:column;gap:10px}
.announce-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.announce-left{display:flex;align-items:flex-start;gap:10px;min-width:0}
.announce-pill{
  flex:0 0 auto;
  padding:4px 8px;
  border-radius:999px;
  font-weight:1000;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.2;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
}
.announce-title{
  font-weight:1000;
  font-size:16px;
  line-height:1.25;
}
.announce-msg{
  font-size:16px;
  line-height:1.35;
  color:#cbd5e1;
  margin-top:2px;
}
.announce-link{
  flex:0 0 auto;
  white-space:nowrap;
  font-size:16px;
  font-weight:900;
  color:#fff;
  opacity:.95;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
}
.announce-link:hover{opacity:1;text-decoration:none;background:rgba(255,255,255,.12)}

/* Levels */
.announce-pill.info{background:rgba(57,181,74,.18); border-color:rgba(57,181,74,.32)}
.announce-pill.warn{background:rgba(255,178,0,.18); border-color:rgba(255,178,0,.32)}
.announce-pill.outage{background:rgba(255,71,71,.18); border-color:rgba(255,71,71,.32)}

@media (max-width: 720px){
  .announce-item{flex-direction:column;align-items:stretch}
  .announce-link{align-self:flex-start}
}


/* Hero CTA box glow */
.hero-box{
  box-shadow: 0 0 0 1px rgba(57,181,74,.25), 0 0 24px rgba(57,181,74,.22);
}

/* Photo strip */
.photo-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:14px;
}
.photo-card{
  margin:0;
  border-radius:20px;
  overflow:hidden;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(148,163,184,.18);
  box-shadow:0 10px 26px rgba(2,6,23,.06);
}
.photo-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}
.photo-card figcaption{
  padding:10px 12px;
}

/* Guarantee section */
.guarantee{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:22px;
  align-items:start;
}
.guarantee-badge{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border-radius:22px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(255,255,255,.75);
  box-shadow:0 10px 26px rgba(2,6,23,.06);
}
.badge-mark{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-weight:1000;
  font-size:20px;
  color:#062a10;
  background:rgba(57,181,74,.25);
  border:1px solid rgba(57,181,74,.35);
}
.badge-title{
  font-weight:1000;
  font-size:18px;
  letter-spacing:-.2px;
}
.guarantee-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px 26px;
  align-content:start;
}
.guarantee-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:16px;
}
.guarantee-list .check{
  color:var(--brand-green);
  font-weight:1000;
  line-height:1;
  margin-top:2px;
}
@media (max-width: 900px){
  .guarantee{grid-template-columns:1fr}
  .photo-grid{grid-template-columns:1fr}
  .photo-card img{height:200px}
}

/* Billing login boxes */
.billing-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
  margin-top:18px;
}
.billing-card{
  border-top:4px solid var(--brand-green);
  background:rgba(255,255,255,.75);
  box-shadow:0 10px 26px rgba(2,6,23,.06);
}
@media (max-width: 900px){
  .billing-grid{grid-template-columns:1fr}
}

/* Billing helper text under login boxes */
.billing-help{
  margin-top:18px;
  text-align:center;
}
.billing-help-text{
  font-size:16px;
  line-height:1.45;
  font-weight:700;
  color:var(--text);
  opacity:.92;
  max-width:820px;
  margin:0 auto;
}


@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .hero-box{margin-top:14px}
}
.billing-help-text{
  font-size:15px;
  font-weight:800;
}


@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .hero-box{margin-top:14px}
}


/* Billing hero card body text matches Internet page typography */
.hero-card-body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin-top: 8px;
}


/* Pricing plan table (pricing/index.html) */
.pricing-plans .pricing-group h2{
  font-size:26px;
  letter-spacing:-.3px;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.pricing-card{
  position:relative;
  overflow:visible;
}
.pricing-card.featured{
  border-color: rgba(57,181,74,.55);
  box-shadow: 0 10px 30px rgba(11,18,32,.10), 0 0 0 3px rgba(57,181,74,.16);
}
.pricing-card.featured:before{
  content:"Most Popular";
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:var(--brand-green);
  color:#fff;
  font-size:16px;
  font-weight:1000;
  padding:6px 10px;
  border-radius:999px;
  box-shadow: 0 10px 24px rgba(11,18,32,.18);
}

.plan-name{font-weight:1000; font-size:18px; margin:0}
.plan-price{
  margin:10px 0 0;
  font-weight:1000;
  font-size:40px;
  letter-spacing:-.8px;
}
.plan-price span{
  font-size:16px;
  color:var(--muted);
  font-weight:900;
  letter-spacing:0;
}
.plan-features{
  list-style:none;
  padding:0;
  margin:14px 0 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.plan-features li{
  color:var(--muted);
  font-weight:700;
}

.plan-btn{
  display:inline-flex;
  width:100%;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:1000;
  text-decoration:none;
  background:var(--brand-green);
  color:#fff;
  border:1px solid var(--brand-green);
  box-shadow:0 0 0 3px rgba(57,181,74,.18);
}
.plan-btn:hover{
  text-decoration:none;
  filter:brightness(1.03);
}
.plan-btn.secondary{
  background:#fff;
  color:var(--brand-green);
  border-color: rgba(57,181,74,.55);
  box-shadow:none;
}
.plan-btn.secondary:hover{
  background:rgba(57,181,74,.08);
}

@media (max-width: 920px){
  .pricing-grid{grid-template-columns:1fr}
}


/* Availability form (pricing/index.html) */
.availability-form .field{display:block}
.field-label{display:block; font-weight:900; color:var(--ink); margin:12px 0 6px}
.input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:800;
  color:var(--ink);
}
.input::placeholder{color:rgba(11,18,32,.45); font-weight:800}
.suggestions{
  display:none;
  margin-top:10px;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.suggestion{
  appearance:none;
  border:0;
  background:#fff;
  width:100%;
  text-align:left;
  padding:12px 14px;
  font-weight:900;
  color:var(--ink);
  cursor:pointer;
}
.suggestion + .suggestion{border-top:1px solid rgba(11,18,32,.08)}
.suggestion:hover{background:rgba(1,131,155,.06)}
/* Network health badge states */
.status-bar.is-warn {
  background: #f59e0b;   /* orange */
  color: #0b1220;
}

.status-bar.is-bad {
  background: #ef4444;   /* red */
  color: #ffffff;
}


/* Technical Services page helpers */
.prose p{max-width: 70ch}

/* Wide containers where appropriate (keeps global rhythm but reduces "squeezed" layouts) */
.container.wide{max-width:1280px}

/* Technical Services — full-width split blocks (matches reference layout) */
.media-split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:center;
  margin-top:18px;
}
.media-split + .media-split{margin-top:22px}
.media-figure img,
.media-figure video{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(148,163,184,.18);
  box-shadow:0 10px 26px rgba(2,6,23,.06);
  display:block;
  background:#000;
}
@media (max-width: 900px){
  .media-split{grid-template-columns:1fr}
}

/* Homepage Guarantee split + promo image */
.guarantee-split{align-items:stretch}
.promo-media{
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(243,251,246,1) 0%, rgba(255,255,255,1) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.promo-media img{display:block; width:100%; max-width:720px; height:auto}
.float-media{
  width:36%;
  max-width:300px;
  height:auto;
  border-radius:18px;
  border:1px solid rgba(148,163,184,.18);
  box-shadow:0 10px 26px rgba(2,6,23,.06);
}
.float-media.right{float:right; margin:0 0 12px 18px}
.float-media.left{float:left; margin:0 18px 12px 0}
@media (max-width: 900px){
  .float-media{float:none !important; width:100%; max-width:520px; margin:12px 0}
}

/* Accordion (details/summary) */
.accordion{display:flex; flex-direction:column; gap:12px}
.accordion-item{
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  background:rgba(255,255,255,.75);
  box-shadow:0 10px 26px rgba(2,6,23,.06);
  overflow:hidden;
}
.accordion-item summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  font-weight:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.accordion-item summary::-webkit-details-marker{display:none}
.accordion-item summary::after{
  content:"›";
  font-size:20px;
  line-height:1;
  opacity:.9;
  transform:rotate(0deg);
  transition:transform .15s ease;
}
.accordion-item[open] summary::after{transform:rotate(90deg)}
.accordion-content{
  padding:0 18px 16px;
  border-top:1px solid rgba(148,163,184,.18);
}
.accordion-content p{margin:12px 0 0}


/* Technical Services layout */
.ts-intro{padding:22px}
.ts-services{display:grid;grid-template-columns:minmax(0,1fr) 480px;gap:22px;align-items:start;margin-top:18px}
.ts-video-wrap{width:480px;max-width:100%;aspect-ratio:9/16;justify-self:end;overflow:hidden;display:flex;align-items:stretch}
.ts-video{width:100%;height:100%;object-fit:cover;border-radius:18px;background:#000;box-shadow:0 10px 26px rgba(2,6,23,.06)}
 (max-width:900px){
  .ts-services{grid-template-columns:1fr}
  .ts-video-wrap{width:480px;max-width:100%;aspect-ratio:9/16;justify-self:end;overflow:hidden;display:flex;align-items:stretch}
}

/* Technical Services layout *//
.ts-intro{padding:22px}
.ts-services{display:grid;grid-template-columns:minmax(0,1fr) 480px;gap:22px;align-items:start;margin-top:18px}
.ts-video-wrap{width:480px;max-width:100%;aspect-ratio:9/16;justify-self:end;overflow:hidden;display:flex;align-items:stretch}
.ts-video{width:100%;height:100%;object-fit:cover;border-radius:18px;background:#000;box-shadow:0 10px 26px rgba(2,6,23,.06)}
@media (max-width:900px){
  .ts-services{grid-template-columns:1fr}
  .ts-video-wrap{width:480px;max-width:100%;aspect-ratio:9/16;justify-self:end;overflow:hidden;display:flex;align-items:stretch}
}

/* Homepage Guarantee card */
.guarantee-card{border-top:4px solid var(--brand-green)}
.guarantee-header{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:6px;
  margin-bottom:14px;
}

/* --- Fix: Technical Services mobile sizing consistency (accordion + video) --- */
.ts-services{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,480px);
  gap:22px;
  align-items:start;
  margin-top:18px;
}
.ts-video-wrap{
  width:100%;
  max-width:480px;
  justify-self:end;
  overflow:hidden;
  display:flex;
  align-items:stretch;
  border-radius:18px;
}
.ts-video{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  background:#000;
}
@media (max-width:900px){
  .ts-services{grid-template-columns:1fr; gap:16px;}
  .ts-video-wrap{
    max-width:100%;
    width:100%;
    justify-self:stretch;
    aspect-ratio:16/9;
  }
  .ts-video{height:100%; object-fit:cover;}
}


.footer-links{display:grid; grid-template-columns:1fr 1fr; gap:8px 14px}
@media (max-width: 520px){.footer-links{grid-template-columns:1fr}}

.price-duo{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:12px}
.price-item{border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.03); border-radius:16px; padding:12px}
.price-item .label{color:var(--muted); font-weight:900; font-size:16px; letter-spacing:.3px; text-transform:uppercase}
.price-item .amount{font-weight:1000; font-size:28px; letter-spacing:-.6px; margin-top:4px}
.price-item .amount span{font-size:16px; color:var(--muted); font-weight:900; letter-spacing:0}
@media (max-width: 520px){.price-duo{grid-template-columns:1fr}}

/* Desktop: slightly larger top-nav text to better use available space */
@media (min-width: 921px){
  .nav a{font-size:16px; padding:8px 8px}
}
