/* ============================================================
   NR2 Infotech homepage styles
   Direction: dark "Live Network" hero + light "Blueprint" diagram
   ============================================================ */

:root{
  /* brand */
  --ink:#0F0B22;            /* near-black indigo, dark sections */
  --ink-2:#161031;         /* raised dark surface */
  --indigo:#2A1575;        /* brand (from logo) */
  --indigo-700:#3A2493;
  --violet:#6C4FE0;        /* accent */
  --violet-300:#9A88F5;
  --paper:#F7F6FB;         /* light section bg */
  --paper-2:#EFEDF8;

  /* text */
  --on-dark:#ECEAFA;
  --on-dark-muted:#A9A3CF;
  --on-light:#17132E;
  --on-light-muted:#5C5776;

  /* lines */
  --line-dark:rgba(255,255,255,.10);
  --line-dark-2:rgba(255,255,255,.16);
  --line:#E4E1F2;

  /* type */
  --f-display:"Sora",system-ui,-apple-system,"Segoe UI",sans-serif;
  --f-body:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --f-mono:"IBM Plex Mono",ui-monospace,"SF Mono",Menlo,monospace;

  --maxw:1200px;
  --pad:clamp(20px,5vw,64px);
  --radius:12px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; background:var(--ink); color:var(--on-light);
  font-family:var(--f-body); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
h1,h2,h3{font-family:var(--f-display); font-weight:700; line-height:1.05;
  letter-spacing:-.02em; text-wrap:balance; margin:0;}
p{margin:0;}

.wrap{max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad);}
.eyebrow{font-family:var(--f-mono); font-size:12.5px; letter-spacing:.22em;
  text-transform:uppercase; font-weight:500;}

/* buttons */
.btn{display:inline-flex; align-items:center; gap:9px; font-family:var(--f-display);
  font-weight:600; font-size:15.5px; padding:14px 24px; border-radius:999px;
  border:1px solid transparent; cursor:pointer; transition:transform .18s ease, background .2s ease, border-color .2s ease;}
.btn .ar{transition:transform .22s ease;}
.btn:hover .ar{transform:translateX(4px);}
.btn-primary{background:var(--violet); color:#fff;}
.btn-primary:hover{background:#7d63ef; transform:translateY(-1px);}
.btn-ghost{background:transparent; border-color:var(--line-dark-2); color:var(--on-dark);}
.btn-ghost:hover{border-color:var(--violet-300); background:rgba(108,79,224,.10);}
.btn-dark{background:var(--indigo); color:#fff;}
.btn-dark:hover{background:var(--indigo-700); transform:translateY(-1px);}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{position:sticky; top:0; z-index:50; background:rgba(15,11,34,0);
  border-bottom:1px solid transparent; transition:background .3s ease, border-color .3s ease;}
.site-header.scrolled{background:rgba(15,11,34,.86); backdrop-filter:blur(10px);
  border-bottom-color:var(--line-dark);}
.nav{display:flex; align-items:center; justify-content:space-between; height:72px;}
.brand{display:flex; align-items:baseline; gap:2px; font-family:var(--f-display);
  font-weight:800; font-size:21px; letter-spacing:-.02em; color:var(--on-dark);}
.brand b{color:var(--violet-300); font-weight:800;}
.brand span{font-weight:600; margin-left:6px; color:var(--on-dark);}
.nav-links{display:flex; align-items:center; gap:30px;}
.nav-links a{font-size:15px; color:var(--on-dark-muted); transition:color .2s ease; position:relative;}
.nav-links a:hover{color:var(--on-dark);}
.nav-links .btn{padding:10px 18px; font-size:14.5px;}
.nav-toggle{display:none; background:none; border:0; color:var(--on-dark); cursor:pointer; padding:6px;}
.nav-toggle svg{width:26px; height:26px;}

/* ============================================================
   HERO dark live network
   ============================================================ */
.hero{position:relative; background:
    radial-gradient(120% 90% at 82% 8%, #211a4d 0%, #140f31 46%, #0d0920 100%);
  color:var(--on-dark); overflow:hidden; isolation:isolate;}
.hero canvas{position:absolute; inset:0; width:100%; height:100%; z-index:0; opacity:.9;}
.hero::after{content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(120% 100% at 50% 55%, rgba(13,9,32,.30) 0%, rgba(13,9,32,.66) 70%, rgba(13,9,32,.82) 100%);}
.hero .wrap{position:relative; z-index:2; padding-top:clamp(56px,9vw,110px); padding-bottom:clamp(56px,9vw,104px);}
.hero .eyebrow{color:var(--violet-300); margin-bottom:20px;}
.hero h1{font-size:clamp(31px,6.4vw,74px); font-weight:800; max-width:15ch; color:#F8F7FF;}
.hero h1 em{font-style:normal; color:var(--violet-300);}
.hero .lede{margin-top:22px; font-size:clamp(17px,2.1vw,20px); color:var(--on-dark-muted);
  max-width:54ch;}
.hero .cta-row{display:flex; flex-wrap:wrap; gap:14px; margin-top:34px;}
.hero .chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:44px;}
.chip{font-family:var(--f-mono); font-size:12.5px; letter-spacing:.04em; color:#CFC9F2;
  border:1px solid var(--line-dark-2); background:rgba(108,79,224,.07);
  padding:8px 14px; border-radius:30px;}
.chip b{color:#fff; font-weight:600;}

/* ============================================================
   BLUEPRINT DIAGRAM light, self-drawing
   ============================================================ */
.section{padding-block:clamp(64px,9vw,120px);}
.section.light{background:var(--paper); color:var(--on-light);}
.section.paper2{background:var(--paper-2); color:var(--on-light);}
.section.dark{background:var(--ink); color:var(--on-dark);}
.sec-head{max-width:62ch; margin-bottom:clamp(34px,5vw,56px);}
.sec-head .eyebrow{color:var(--violet); margin-bottom:14px;}
.section.dark .sec-head .eyebrow{color:var(--violet-300);}
.sec-head h2{font-size:clamp(28px,4vw,44px); font-weight:700;}
.sec-head p{margin-top:16px; font-size:clamp(16px,1.9vw,19px); color:var(--on-light-muted);}
.section.dark .sec-head p{color:var(--on-dark-muted);}

.blueprint{background:
    linear-gradient(var(--line) 1px,transparent 1px),
    linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:32px 32px;}
.flow{display:grid; grid-template-columns:repeat(4,1fr); gap:0; align-items:start;
  position:relative;}
.flow svg.wires{position:absolute; inset:0; width:100%; height:100%; z-index:0; pointer-events:none;}
.node{position:relative; z-index:1; text-align:center; padding:0 10px;}
.node .box{width:84px; height:84px; margin:0 auto 16px; border-radius:16px;
  background:#fff; border:1.5px solid var(--indigo); display:flex; align-items:center;
  justify-content:center; color:var(--indigo); transition:box-shadow .3s ease, border-color .3s ease, transform .3s ease;}
.node .box svg{width:36px; height:36px;}
.node.lit .box{border-color:var(--violet); color:var(--violet);
  box-shadow:0 0 0 5px rgba(108,79,224,.12); transform:translateY(-2px);}
.node h3{font-size:18px; font-weight:600; margin-bottom:6px;}
.node p{font-size:14.5px; color:var(--on-light-muted); max-width:22ch; margin-inline:auto;}
.node .step{font-family:var(--f-mono); font-size:11.5px; color:var(--violet);
  letter-spacing:.14em; display:block; margin-bottom:12px;}

/* ============================================================
   SERVICES
   ============================================================ */
.grid-services{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.svc{background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 24px; transition:border-color .25s ease, transform .25s ease;}
.svc:hover{border-color:var(--violet); transform:translateY(-3px);}
.svc .ic{width:46px; height:46px; border-radius:11px; background:var(--paper-2);
  display:flex; align-items:center; justify-content:center; color:var(--indigo); margin-bottom:18px;}
.svc:hover .ic{background:rgba(108,79,224,.12); color:var(--violet);}
.svc .ic svg{width:24px; height:24px;}
.svc h3{font-size:19px; font-weight:600; margin-bottom:9px;}
.svc p{font-size:15px; color:var(--on-light-muted); line-height:1.55;}
.svc .tags{margin-top:14px; font-family:var(--f-mono); font-size:12px;
  color:var(--indigo); letter-spacing:.02em; opacity:.75;}

/* ============================================================
   WHY / STATS  (dark band)
   ============================================================ */
.why-grid{display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(32px,6vw,80px); align-items:center;}
.why-list{display:flex; flex-direction:column; gap:22px;}
.why-item{display:flex; gap:16px; align-items:flex-start;}
.why-item .dot{flex:0 0 auto; width:38px; height:38px; border-radius:10px;
  background:rgba(108,79,224,.14); color:var(--violet-300); display:flex;
  align-items:center; justify-content:center;}
.why-item .dot svg{width:20px; height:20px;}
.why-item h3{font-size:18px; font-weight:600; color:#fff; margin-bottom:4px;}
.why-item p{font-size:15px; color:var(--on-dark-muted);}
.stats{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line-dark);
  border:1px solid var(--line-dark); border-radius:var(--radius); overflow:hidden;}
.stat{background:var(--ink-2); padding:30px 26px;}
.stat b{font-family:var(--f-display); font-size:clamp(34px,5vw,48px); font-weight:800;
  color:#fff; letter-spacing:-.03em; display:block; line-height:1;}
.stat span{display:block; margin-top:10px; font-size:14px; color:var(--on-dark-muted);}

/* ============================================================
   CLIENTS + PARTNERS
   ============================================================ */
.proof-block{display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,64px);}
.proof-col h3{font-size:14px; font-family:var(--f-mono); letter-spacing:.16em;
  text-transform:uppercase; color:var(--on-light-muted); font-weight:500; margin-bottom:22px;}
.logo-wall{display:flex; flex-wrap:wrap; gap:12px;}
.logo-pill{border:1px solid var(--line); background:#fff; border-radius:9px;
  padding:12px 16px; font-weight:600; font-size:15px; color:var(--indigo);
  transition:border-color .2s ease, color .2s ease;}
.logo-pill:hover{border-color:var(--violet); color:var(--violet);}
.brand-wall .logo-pill{font-family:var(--f-display); font-weight:700; color:var(--on-light);}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
.ind{border:1px solid var(--line-dark); border-radius:var(--radius); padding:24px 22px;
  background:var(--ink-2); transition:border-color .25s ease, transform .25s ease;}
.ind:hover{border-color:var(--violet); transform:translateY(-3px);}
.ind .ic{color:var(--violet-300); margin-bottom:16px;}
.ind .ic svg{width:26px; height:26px;}
.ind h3{font-size:17px; font-weight:600; color:#fff; margin-bottom:6px;}
.ind p{font-size:14px; color:var(--on-dark-muted);}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{background:linear-gradient(120% 140% at 80% 0%, #2A1575 0%, #1a1150 60%, #120c33 100%);
  border-radius:20px; padding:clamp(40px,6vw,72px); text-align:center; position:relative; overflow:hidden;}
.cta-band canvas{position:absolute; inset:0; width:100%; height:100%; z-index:0; opacity:.6;}
.cta-band > *{position:relative; z-index:1;}
.cta-band h2{font-size:clamp(28px,4.4vw,46px); color:#fff; max-width:20ch; margin-inline:auto;}
.cta-band p{margin-top:16px; color:#C7C0EC; font-size:18px; max-width:52ch; margin-inline:auto;}
.cta-band .cta-row{display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:32px;}
.cta-band .phone{margin-top:22px; font-family:var(--f-mono); font-size:14px; color:#A79FD4;}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:#0b0819; color:var(--on-dark); padding-block:clamp(48px,7vw,80px) 30px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:36px;}
.footer .brand{margin-bottom:16px;}
.footer .about{font-size:14.5px; color:var(--on-dark-muted); max-width:34ch;}
.footer h4{font-family:var(--f-mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  color:#7a74a6; font-weight:500; margin:0 0 16px;}
.footer ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px;}
.footer li a, .footer .line{font-size:14.5px; color:var(--on-dark-muted); transition:color .2s ease;}
.footer li a:hover{color:#fff;}
.footer .office{font-size:14px; color:var(--on-dark-muted); line-height:1.5; margin-bottom:16px;}
.footer .office b{color:#fff; font-weight:600; display:block; margin-bottom:3px; font-size:12.5px;
  font-family:var(--f-mono); letter-spacing:.08em; text-transform:uppercase;}
.footer-bottom{margin-top:44px; padding-top:22px; border-top:1px solid var(--line-dark);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:13px; color:#6f6a97;}
.footer-bottom .iso{display:flex; gap:14px; font-family:var(--f-mono); letter-spacing:.04em;}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1; transform:none;}
.reveal.d1{transition-delay:.08s;} .reveal.d2{transition-delay:.16s;}
.reveal.d3{transition-delay:.24s;} .reveal.d4{transition-delay:.32s;}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:960px){
  .grid-services{grid-template-columns:repeat(2,1fr);}
  .ind-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  body{font-size:16px;}
  .nav-links{position:fixed; inset:72px 0 auto 0; flex-direction:column; align-items:stretch;
    gap:0; background:rgba(15,11,34,.98); border-bottom:1px solid var(--line-dark);
    padding:10px var(--pad) 22px; transform:translateY(-140%); transition:transform .3s ease; z-index:40;}
  .nav-links.open{transform:none;}
  .nav-links a{padding:14px 0; border-bottom:1px solid var(--line-dark);}
  .nav-links .btn{margin-top:14px; justify-content:center;}
  .nav-toggle{display:inline-flex;}
  .grid-services,.ind-grid,.proof-block,.stats,.footer-grid{grid-template-columns:1fr;}
  .flow{grid-template-columns:1fr 1fr; gap:28px 0;}
  .flow svg.wires{display:none;}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  .reveal{opacity:1; transform:none; transition:none;}
  *{animation-duration:.001ms !important; transition-duration:.001ms !important;}
}

/* ============================================================
   ADDED: logo, buttons w/ icons, floating WhatsApp, logo marquees, ISO badges
   ============================================================ */

/* --- logo mark (recolored via CSS mask) --- */
.brand-logo{display:block; width:94px; height:auto; flex:0 0 auto; margin-left:-3px;
  filter:brightness(0) invert(1);}        /* render the indigo logo white on dark */
.footer .brand-logo{width:124px; margin-left:-4px;}

/* --- button icons + variants --- */
.btn svg{width:18px; height:18px; flex:0 0 auto;}
.btn.wa{background:#5FC369; color:#08260f;}
.btn.wa:hover{background:#54ba5f; transform:translateY(-1px);}
/* email = low-emphasis tertiary link so it doesn't fight the primary */
.btn.mail{background:transparent; color:#CFC9F2; padding:14px 12px; border:0;}
.btn.mail svg{opacity:.8;}
.btn.mail:hover{color:#fff; text-decoration:underline; text-underline-offset:4px; transform:none;}

/* --- floating WhatsApp --- */
.wa-float{position:fixed; right:20px; bottom:20px; z-index:60; width:56px; height:56px;
  border-radius:50%; background:#5FC369; color:#08260f; display:flex; align-items:center;
  justify-content:center; box-shadow:0 10px 26px rgba(0,0,0,.30); transition:transform .2s ease;}
.wa-float:hover{transform:scale(1.07);}
.wa-float svg{width:30px; height:30px;}
.wa-float::after{content:""; position:absolute; inset:0; border-radius:50%;
  border:2px solid #5FC369; animation:waPulse 2.4s ease-out infinite;}

/* floating WhatsApp removed */
.wa-float{display:none !important;}

/* reorder: surface Clients/Govt-departments right after the hero (home only) */
body{display:flex; flex-direction:column;}
.site-header{order:0;} .hero{order:1;} #clients{order:2;} #how{order:3;}
#services{order:4;} #why{order:5;} #industries{order:6;} #contact{order:7;} .footer{order:8;}

/* footer ISO badges below description (left aligned) */
.footer-bottom .iso{display:none;}
.footer-iso{display:flex; gap:16px; margin-top:22px; flex-wrap:wrap;}
.footer-iso .fb{display:flex; align-items:center; gap:10px; text-align:left;}
.footer-iso img{width:38px; height:38px; background:#fff; border-radius:7px; padding:3px;
  object-fit:contain; flex:0 0 auto;}
.footer-iso .ft b{display:block; font-family:var(--f-display); font-weight:600; font-size:13.5px;
  color:#fff; line-height:1.15;}
.footer-iso .ft span{font-family:var(--f-mono); font-size:10px; letter-spacing:.06em;
  color:var(--on-dark-muted); text-transform:uppercase;}
@keyframes waPulse{0%{transform:scale(1);opacity:.65}100%{transform:scale(1.55);opacity:0}}

/* --- horizontal logo marquees --- */
.marquee{overflow:hidden; padding:6px 0;
  -webkit-mask:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);}
.marquee + .marquee{margin-top:16px;}
.marquee-track{display:flex; gap:14px; width:max-content; animation:scrollX 40s linear infinite;}
.marquee.rev .marquee-track{animation-direction:reverse; animation-duration:52s;}
.marquee:hover .marquee-track{animation-play-state:paused;}
@keyframes scrollX{to{transform:translateX(-50%);}}
.mlogo{flex:0 0 auto; display:flex; align-items:center; gap:10px; height:66px; padding:0 24px;
  border:1px solid var(--line); border-radius:12px; background:#fff;
  font-family:var(--f-display); font-weight:700; font-size:18px; color:var(--indigo);
  white-space:nowrap; letter-spacing:-.01em;}
.mlogo.client{font-size:15px; color:var(--on-light); font-weight:600; letter-spacing:0;}
.mlogo .mk{width:30px; height:30px; flex:0 0 auto; color:var(--indigo);}
.marquee-label{font-family:var(--f-mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--on-light-muted); margin-bottom:14px;}

/* --- ISO certification badges --- */
.iso-badges{display:flex; gap:12px; flex-wrap:wrap;}
.iso-badge{display:flex; align-items:center; gap:11px; padding:9px 15px 9px 11px;
  border:1px solid var(--line-dark-2); background:rgba(255,255,255,.05); border-radius:11px;}
.iso-badge .seal{width:38px; height:38px; flex:0 0 auto;}
.iso-badge .t b{display:block; font-family:var(--f-display); font-weight:700; font-size:15px; color:#fff; line-height:1.1;}
.iso-badge .t span{font-family:var(--f-mono); font-size:10px; letter-spacing:.14em; color:var(--on-dark-muted); text-transform:uppercase;}
.section.light .iso-badge, .section.paper2 .iso-badge{border-color:var(--line); background:#fff;}
.section.light .iso-badge .t b, .section.paper2 .iso-badge .t b{color:var(--on-light);}
.section.light .iso-badge .t span, .section.paper2 .iso-badge .t span{color:var(--on-light-muted);}

/* --- service icon container: cleaner 2026 look --- */
.svc .ic{border-radius:12px;}
.svc:hover .ic svg{transform:scale(1.06);}
.svc .ic svg{transition:transform .25s ease;}

@media (prefers-reduced-motion:reduce){
  .wa-float::after{display:none;}
  .marquee-track{animation:none; width:auto; flex-wrap:wrap;}
}
@media (max-width:640px){
  .wa-float{width:52px; height:52px; right:16px; bottom:16px;}
}

/* ============================================================
   INTERIOR PAGES: page hero + legal/prose
   ============================================================ */
.page-hero{background:radial-gradient(120% 120% at 82% 0%, #211a4d 0%, #140f31 55%, #0d0920 100%);
  color:var(--on-dark); padding:clamp(90px,13vw,150px) 0 clamp(44px,6vw,72px);}
.page-hero .crumb{font-family:var(--f-mono); font-size:12.5px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--violet-300); margin-bottom:14px;}
.page-hero .crumb a{color:var(--on-dark-muted);}
.page-hero h1{font-size:clamp(32px,5.4vw,56px); font-weight:800; color:#F8F7FF; max-width:20ch;}
.page-hero p{margin-top:16px; font-size:clamp(16px,2vw,19px); color:var(--on-dark-muted); max-width:60ch;}

.prose{max-width:74ch;}
.prose h2{font-size:clamp(22px,3vw,30px); font-weight:700; margin:38px 0 12px;}
.prose h3{font-size:18px; font-weight:600; margin:26px 0 8px;}
.prose p, .prose li{font-size:16px; color:var(--on-light-muted); line-height:1.7;}
.prose p{margin:10px 0;}
.prose ul{margin:10px 0; padding-left:22px;}
.prose li{margin:6px 0;}
.prose a{color:var(--violet); text-decoration:underline; text-underline-offset:2px;}
.prose .updated{font-family:var(--f-mono); font-size:12.5px; color:var(--on-light-muted); letter-spacing:.04em;}

.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:8px;}
.vm{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px;}
.vm h3{font-size:19px; font-weight:700; color:var(--indigo); margin-bottom:8px;}
.vm p{font-size:15.5px; color:var(--on-light-muted); line-height:1.6;}
.office-cards{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:8px;}
.office-card{background:var(--ink-2); border:1px solid var(--line-dark); border-radius:var(--radius); padding:24px;}
.office-card b{display:block; font-family:var(--f-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--violet-300); margin-bottom:10px;}
.office-card p{font-size:15px; color:var(--on-dark-muted); line-height:1.6;}
@media (max-width:640px){ .about-grid,.office-cards{grid-template-columns:1fr;} }

/* ============================================================
   ADDED v3: centered hero, marquee logos, ISO marks, phone line
   ============================================================ */

/* --- centered hero --- */
.hero .wrap{display:flex; flex-direction:column; align-items:center; text-align:center;}
.hero h1{margin-inline:auto;}
.hero .lede{margin-inline:auto;}
.hero .cta-row{justify-content:center;}
.hero .chips{justify-content:center;}
.hero .iso-badges{justify-content:center;}

/* --- logos inside marquee --- */
.mlogo-img{width:auto; object-fit:contain; display:block;}
.mlogo{gap:12px;}
/* brand pills: logo only, no text label */
.mlogo:not(.client){padding:0 32px;}
.mlogo:not(.client) .mlogo-img{height:30px; max-width:118px;}
/* client pills: real logo + text */
.mlogo.client .mlogo-img{height:34px; max-width:44px; flex:0 0 auto;}

/* --- ISO certification marks: muted + fixed shimmer --- */
.iso-badge{position:relative; overflow:hidden;}
.iso-badge::after{content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(120deg, transparent 38%, rgba(255,255,255,.14) 50%, transparent 62%);}
.iso-mark{width:46px; height:46px; flex:0 0 auto; object-fit:contain;
  background:#fff; border-radius:7px; padding:3px; box-sizing:border-box; opacity:.97;}
.section .iso-mark, .footer .iso-mark{opacity:.95;}

/* --- CTA phone: hours on its own line; numbers wrap on small screens --- */
.cta-band .phone{display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:4px 10px;}
.cta-band .phone a{color:#D9D2F5;}
.cta-band .phone .ph-hours{flex-basis:100%; margin-top:6px; color:#A79FD4;}

/* ============================================================
   v4: hero height/centering + optically balanced brand logos
   ============================================================ */
.hero{min-height:92vh; display:flex; flex-direction:column; justify-content:center;}
.hero .wrap{padding-top:48px; padding-bottom:56px;}
.hero .chips{margin-top:0; margin-bottom:32px;}

/* Optical sizing. Every logo canvas is trimmed to its ink, so height == ink height.
   Heights follow h = 34 / aspect^0.3 equal visual mass, so round marks don't
   dwarf wordmarks and wide wordmarks don't overpower the row. */
.mlogo:not(.client) .mlogo-img{width:auto; max-width:118px;}
.mlogo:not(.client) .mlogo-img[src$="hp.svg"]{height:35px;}       /* round mark */
.mlogo:not(.client) .mlogo-img[src$="dell.svg"]{height:35px;}     /* round mark, matched to HP */
.mlogo:not(.client) .mlogo-img[src$="cisco.svg"]{height:31px;}
.mlogo:not(.client) .mlogo-img[src$="poly.png"]{height:29px;}
.mlogo:not(.client) .mlogo-img[src$="lg.svg"]{height:26px;}
.mlogo:not(.client) .mlogo-img[src$="acer.svg"]{height:20px;}
.mlogo:not(.client) .mlogo-img[src$="fortinet.png"]{height:13px;} /* very wide wordmark */
