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

:root{
  --ink:#182230;
  --navy:#0B1628;
  --navy-2:#131F32;
  --blue:#2E6DA4;
  --blue-dark:#1F4E78;
  --blue-bright:#3F92D6;
  --cyan:#22D3EE;
  --violet:#7C6CF0;
  --paper:#FFFFFF;
  --paper-2:#F6F7F8;
  --slate:#5B6672;
  --line:#E3E6E9;
  --max:1120px;
  --glow-blue: rgba(63,146,214,.45);
  --glow-violet: rgba(124,108,240,.35);
  --glow-cyan: rgba(34,211,238,.3);
}

*{box-sizing:border-box;}
[hidden]{display:none !important;}
html{scroll-behavior:smooth;}
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:'Inter', -apple-system, sans-serif; font-size:16px; line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Inter', sans-serif; font-weight:700; letter-spacing:-0.01em;
  line-height:1.2; margin:0; color:var(--ink);
}
p{margin:0;}
a{color:inherit; text-decoration:none;}
ul{margin:0; padding:0; list-style:none;}
img,svg{display:block; max-width:100%;}
:focus-visible{outline:2px solid var(--blue); outline-offset:2px;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 28px;}
.section{padding:80px 0;}
.section-head{max-width:600px; margin-bottom:44px;}
.section-head h2{
  font-size:clamp(24px,3vw,32px);
  background:linear-gradient(100deg, var(--ink) 55%, var(--blue) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.section-head .sub{margin-top:12px; font-size:16px; color:var(--slate);}
.bg-alt{background:var(--paper-2);}

.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 22px; font-family:'Inter',sans-serif; font-weight:600; font-size:14.5px;
  border-radius:8px; border:1px solid transparent; cursor:pointer;
  transition:background .15s ease, border-color .15s ease, color .15s ease, transform .12s ease, box-shadow .15s ease;
  position:relative; overflow:hidden;
}
.ripple{
  position:absolute; border-radius:50%; background:rgba(255,255,255,.5);
  transform:scale(0); animation:rippleAnim .6s ease-out forwards; pointer-events:none;
}
@keyframes rippleAnim{ to{ transform:scale(2.4); opacity:0; } }
@media (prefers-reduced-motion: reduce){ .ripple{display:none;} }
.btn-primary{
  background:linear-gradient(135deg, var(--blue-bright), var(--blue));
  color:#fff; box-shadow:0 10px 24px -6px var(--glow-blue);
  position:relative; overflow:hidden;
}
.btn-primary::after{
  content:""; position:absolute; top:0; left:-60%; width:40%; height:100%;
  background:linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform:skewX(-20deg); transition:left .6s ease;
}
.btn-primary:hover::after{left:130%;}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 14px 30px -6px var(--glow-blue);}
.btn-outline{border-color:var(--line); color:var(--ink);}
.btn-outline:hover{border-color:var(--ink);}
.btn-outline-white{border-color:rgba(255,255,255,.35); color:#fff; background:rgba(255,255,255,.06); backdrop-filter:blur(6px);}
.btn-outline-white:hover{border-color:rgba(255,255,255,.7); background:rgba(255,255,255,.12);}

/* ---------- GLASS / 3D SYSTEM ---------- */
.glass{
  background:rgba(255,255,255,.06); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.14);
}
.mesh-bg{position:absolute; inset:0; overflow:hidden; z-index:0;}
.hero-3d .mesh-bg{transition:transform .3s ease-out;}
.orb{position:absolute; border-radius:50%; filter:blur(70px); opacity:.55; animation:orbFloat 12s ease-in-out infinite;}
.orb-1{width:420px; height:420px; background:var(--glow-blue); top:-120px; left:-80px; animation-delay:0s;}
.orb-2{width:360px; height:360px; background:var(--glow-violet); bottom:-140px; right:-60px; animation-delay:-4s;}
.orb-3{width:260px; height:260px; background:var(--glow-cyan); top:35%; right:18%; animation-delay:-8s;}
@keyframes orbFloat{
  0%,100%{transform:translate(0,0) scale(1);}
  50%{transform:translate(30px,-30px) scale(1.08);}
}
.tilt-card{
  transform-style:preserve-3d; transition:transform .12s ease, box-shadow .12s ease;
  will-change:transform;
}
@media (prefers-reduced-motion: reduce){
  .orb{animation:none;}
  .tilt-card{transition:none;}
}

/* ---------- UTILITY BAR ---------- */
.utility-bar{border-bottom:1px solid var(--line); background:var(--paper-2);}
.utility-bar .wrap{
  display:flex; justify-content:space-between; align-items:center;
  padding:8px 28px; gap:20px; flex-wrap:wrap; font-size:13px; color:var(--slate);
}
.utility-bar a{color:var(--slate);}
.utility-bar a:hover{color:var(--ink);}
.utility-links{display:flex; gap:22px; flex-wrap:wrap;}
.utility-links a, .utility-links span{display:inline-flex; align-items:center; gap:6px; font-weight:600;}
.utility-links svg{flex:none; opacity:.75;}
@media (max-width:700px){ .utility-bar{display:none;} }

/* ---------- HEADER ---------- */
header{
  position:sticky; top:0; z-index:100; background:#fff;
  border-bottom:1px solid var(--line);
}
.nav{
  max-width:var(--max); margin:0 auto; padding:0 28px;
  height:80px; display:flex; align-items:center; justify-content:space-between;
}
.logo img{height:42px; width:auto; display:block;}
.nav-links{display:flex; align-items:center; gap:30px;}
.nav-links a{font-size:14.5px; font-weight:500; color:var(--slate); position:relative; padding-bottom:3px;}
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background:linear-gradient(90deg, var(--blue-bright), var(--cyan));
  transition:right .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{right:0;}
.nav-links a:hover, .nav-links a.active{color:var(--ink);}
.nav-links a.active{font-weight:600;}
.caret{display:inline-block; margin-left:3px; vertical-align:1px; transition:transform .18s ease;}

/* ---------- SERVICE PAGE HERO VISUAL (big 3D icon + floating chips) ---------- */
.service-visual{
  position:relative; border-radius:24px; overflow:hidden;
  background:radial-gradient(600px 300px at 80% 20%, rgba(46,109,164,.12), transparent 70%), var(--paper-2);
  border:1px solid var(--line);
  min-height:280px; display:flex; align-items:center; justify-content:center;
  margin-top:8px;
}
.service-visual-icon{
  width:130px; height:130px; border-radius:34px;
  background:linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow:inset 0 2px 2px rgba(255,255,255,.4), 0 30px 60px -14px var(--glow-blue);
  animation:iconFloat 5s ease-in-out infinite;
  position:relative; z-index:2;
}
.service-visual-icon.g-cyan{background:linear-gradient(145deg,#5FE6F5,#0FA6BE); box-shadow:inset 0 2px 2px rgba(255,255,255,.4), 0 30px 60px -14px var(--glow-cyan);}
.service-visual-icon.g-orange{background:linear-gradient(145deg,#FFB87A,#E0793A); box-shadow:inset 0 2px 2px rgba(255,255,255,.4), 0 30px 60px -14px rgba(224,121,58,.35);}
.service-visual-icon.g-violet{background:linear-gradient(145deg,#9C8FF5,#5E4FCB); box-shadow:inset 0 2px 2px rgba(255,255,255,.4), 0 30px 60px -14px var(--glow-violet);}
.service-visual-icon.g-pink{background:linear-gradient(145deg,#F58FC0,#D14D93); box-shadow:inset 0 2px 2px rgba(255,255,255,.4), 0 30px 60px -14px rgba(209,77,147,.35);}
.service-visual-icon.g-teal{background:linear-gradient(145deg,#6BDCB4,#149A6C); box-shadow:inset 0 2px 2px rgba(255,255,255,.4), 0 30px 60px -14px rgba(20,154,108,.35);}
.service-visual-chip{
  position:absolute; z-index:3; background:#fff; border-radius:12px; padding:10px 16px;
  box-shadow:0 16px 34px -10px rgba(11,22,40,.18); border:1px solid var(--line);
  font-size:13px; font-weight:600; color:var(--ink);
  display:flex; align-items:center; gap:8px;
  animation:chipFloat 5s ease-in-out infinite;
}
.service-visual-chip .dot{width:7px; height:7px; border-radius:50%; background:var(--blue); flex:none;}
.chip-a{top:14%; left:8%; animation-delay:-1s;}
.chip-b{bottom:16%; right:9%; animation-delay:-2.6s;}
@keyframes chipFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}
@media (max-width:640px){
  .service-visual{min-height:220px;}
  .service-visual-icon{width:96px; height:96px; border-radius:26px;}
  .service-visual-chip{font-size:12px; padding:8px 12px;}
}
@media (prefers-reduced-motion: reduce){
  .service-visual-icon, .service-visual-chip{animation:none;}
}

/* ---------- ANIMATED VISUALS: phone rings & domain orbit ---------- */
.visual-rings{position:absolute; top:50%; left:50%; width:0; height:0; z-index:1;}
.visual-ring{
  position:absolute; top:50%; left:50%; border-radius:50%;
  border:2px solid var(--blue-bright); opacity:0;
  animation:ringPulse 2.6s ease-out infinite;
}
.visual-ring:nth-child(2){animation-delay:.85s;}
.visual-ring:nth-child(3){animation-delay:1.7s;}
@keyframes ringPulse{
  0%{width:120px; height:120px; margin:-60px 0 0 -60px; opacity:.55;}
  100%{width:280px; height:280px; margin:-140px 0 0 -140px; opacity:0;}
}
.visual-orbit{
  position:absolute; top:50%; left:50%; width:230px; height:230px; margin:-115px 0 0 -115px; z-index:1;
  border:1px dashed rgba(46,109,164,.25); border-radius:50%;
  animation:orbitSpin 14s linear infinite;
}
.visual-orbit.reverse{width:170px; height:170px; margin:-85px 0 0 -85px; animation-duration:10s; animation-direction:reverse; border-color:rgba(124,108,240,.25);}
.visual-orbit-dot{
  position:absolute; top:-6px; left:50%; width:12px; height:12px; border-radius:50%;
  background:var(--cyan); transform:translateX(-50%); box-shadow:0 0 12px var(--cyan);
}
.visual-orbit.reverse .visual-orbit-dot{background:var(--violet); box-shadow:0 0 12px var(--violet);}
@keyframes orbitSpin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion: reduce){
  .visual-ring, .visual-orbit{animation:none; display:none;}
}

/* ---------- SERVICE DETAIL PAGE LAYOUT ---------- */
.service-detail-page .idx{font-size:12.5px; font-weight:700; color:var(--blue); letter-spacing:.04em; text-transform:uppercase;}
.service-detail-page h1{margin-top:10px;}
.service-detail-page .lede{margin-top:14px; color:var(--slate); font-size:16.5px; max-width:62ch;}
.service-detail-page .tag-row{margin-top:20px; display:flex; flex-wrap:wrap; gap:8px;}
.service-detail-page .tag-row span{font-size:13px; color:var(--blue-dark); background:rgba(46,109,164,.08); padding:6px 13px; border-radius:20px;}
.related-services{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px;}
.related-services a{
  font-size:13.5px; font-weight:600; color:var(--ink); background:#fff; border:1px solid var(--line);
  padding:9px 16px; border-radius:20px; transition:border-color .15s ease, color .15s ease;
}
.related-services a:hover{border-color:var(--blue); color:var(--blue);}

/* ---------- HOW IT WORKS (per-service steps) ---------- */
.how-steps{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.how-step{background:#fff; border:1px solid var(--line); border-radius:14px; padding:26px 24px;}
.how-step .bento-icon{width:48px; height:48px; border-radius:13px; margin-bottom:14px;}
.how-step .bento-icon svg{width:20px; height:20px;}
.how-step h4{font-size:16px;}
.how-step p{margin-top:8px; color:var(--slate); font-size:14px;}
@media (max-width:820px){ .how-steps{grid-template-columns:1fr;} }
/* ---------- NETWORK CONNECTIVITY DIAGRAM ---------- */
.net-diagram{
  display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:wrap;
  padding:20px 0;
}
.net-node{display:flex; flex-direction:column; align-items:center; gap:14px; flex:none;}
.net-label{font-size:13px; font-weight:600; color:var(--slate); text-align:center; max-width:14ch;}

/* Phone mockup */
.net-phone-body{
  width:120px; padding:16px 14px; border-radius:20px; background:var(--navy);
  box-shadow:0 20px 40px -14px rgba(11,22,40,.35);
}
.net-phone-screen{
  background:rgba(255,255,255,.08); border-radius:10px; padding:14px 10px;
  display:flex; flex-direction:column; align-items:center; gap:8px; margin-bottom:12px;
}
.net-phone-dot{width:10px; height:10px; border-radius:50%; background:var(--cyan); box-shadow:0 0 10px var(--cyan); animation:hubPulse 1.6s ease-in-out infinite;}
.net-phone-screen span{font-size:10.5px; color:#D7DEE6; font-weight:600;}
.net-phone-wave{display:flex; align-items:flex-end; justify-content:center; gap:3px; height:22px;}
.net-phone-wave span{width:4px; border-radius:2px; background:var(--cyan); animation:waveBar 1.2s ease-in-out infinite;}
.net-phone-wave span:nth-child(1){height:40%; animation-delay:0s;}
.net-phone-wave span:nth-child(2){height:80%; animation-delay:.15s;}
.net-phone-wave span:nth-child(3){height:55%; animation-delay:.3s;}
.net-phone-wave span:nth-child(4){height:95%; animation-delay:.45s;}
.net-phone-wave span:nth-child(5){height:35%; animation-delay:.6s;}
@keyframes waveBar{0%,100%{transform:scaleY(.5);} 50%{transform:scaleY(1);}}

/* Hub */
.net-hub-icon{
  width:74px; height:74px; border-radius:50%;
  background:linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
  display:flex; align-items:center; justify-content:center;
  box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 20px 40px -12px var(--glow-blue);
  animation:iconFloat 4.5s ease-in-out infinite;
}
.net-hub-icon.g-cyan{background:linear-gradient(145deg,#5FE6F5,#0FA6BE); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 20px 40px -12px var(--glow-cyan);}
.net-hub-icon.g-orange{background:linear-gradient(145deg,#FFB87A,#E0793A); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 20px 40px -12px rgba(224,121,58,.4);}
.net-hub-icon.g-violet{background:linear-gradient(145deg,#9C8FF5,#5E4FCB); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 20px 40px -12px var(--glow-violet);}
.net-hub-icon.g-pink{background:linear-gradient(145deg,#F58FC0,#D14D93); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 20px 40px -12px rgba(209,77,147,.4);}
.net-hub-icon.g-teal{background:linear-gradient(145deg,#6BDCB4,#149A6C); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 20px 40px -12px rgba(20,154,108,.4);}

/* Browser mockup */
.net-browser-body{
  width:220px; border-radius:14px; overflow:hidden; background:#fff;
  border:1px solid var(--line); box-shadow:0 20px 40px -14px rgba(11,22,40,.25);
}
.net-browser-bar{display:flex; align-items:center; gap:6px; padding:10px 12px; background:var(--paper-2); border-bottom:1px solid var(--line);}
.net-browser-dot{width:7px; height:7px; border-radius:50%; background:var(--line);}
.net-browser-url{
  margin-left:8px; flex:1; background:#fff; border:1px solid var(--line); border-radius:6px;
  padding:4px 8px; font-size:10.5px; color:var(--slate);
}
.net-browser-page{padding:16px 14px; position:relative;}
.net-browser-line{height:7px; border-radius:4px; background:var(--paper-2); margin-bottom:8px;}
.net-browser-line.l1{width:80%;}
.net-browser-line.l2{width:55%;}
.net-browser-check{
  position:absolute; top:12px; right:12px; width:22px; height:22px; border-radius:50%;
  background:#16A085; display:flex; align-items:center; justify-content:center;
}

/* Links between nodes */
.net-link{width:120px; height:24px; flex:none; margin:0 -6px;}
.net-tag{
  font-size:11px; font-weight:700; color:var(--blue); background:var(--paper-2);
  padding:3px 9px; border-radius:20px; margin:0 -68px; position:relative; z-index:2;
  border:1px solid var(--line);
}
@media (max-width:900px){
  .net-diagram{flex-direction:column; gap:14px;}
  .net-link{width:3px; height:50px; transform:rotate(90deg);}
  .net-tag{margin:0;}
}
@media (prefers-reduced-motion: reduce){
  .net-phone-dot, .net-phone-wave span{animation:none;}
}

.has-dropdown{position:relative;}
.has-dropdown:hover .caret{transform:rotate(180deg);}
.dropdown{
  position:absolute; top:100%; left:0; margin-top:6px; min-width:250px;
  background:#fff; border:1px solid var(--line); border-radius:12px;
  box-shadow:0 24px 48px -14px rgba(11,22,40,.2); padding:8px;
  opacity:0; visibility:hidden; transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
  z-index:110;
}
.has-dropdown:hover .dropdown{opacity:1; visibility:visible; transform:translateY(0);}
.dropdown a{
  display:block; padding:10px 12px; border-radius:7px; font-size:13.5px;
  color:var(--ink); font-weight:500;
  opacity:0; transform:translateX(-6px);
  transition:background .15s ease, color .15s ease, opacity .25s ease, transform .25s ease;
}
.has-dropdown:hover .dropdown a{opacity:1; transform:translateX(0);}
.dropdown a:nth-child(1){transition-delay:.03s;}
.dropdown a:nth-child(2){transition-delay:.07s;}
.dropdown a:nth-child(3){transition-delay:.11s;}
.dropdown a:nth-child(4){transition-delay:.15s;}
.dropdown a:nth-child(5){transition-delay:.19s;}
.dropdown a:nth-child(6){transition-delay:.23s;}
.dropdown a::after{display:none;}
.dropdown a:hover{background:var(--paper-2); color:var(--blue);}
@media (max-width:900px){
  .has-dropdown .dropdown{
    position:static; opacity:1; visibility:visible; transform:none; margin-top:0;
    box-shadow:none; border:none; border-radius:0; padding:0; background:var(--paper-2);
  }
  .dropdown a{padding:12px 28px 12px 44px; border-bottom:1px solid var(--line); font-size:13px; color:var(--slate); opacity:1; transform:none; transition-delay:0s !important;}
  .caret{display:none;}
}
.nav-right{display:flex; align-items:center; gap:10px;}
.icon-btn{
  width:38px; height:38px; border-radius:9px; display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); color:var(--slate);
  transition:transform .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
}
.icon-btn-whatsapp{color:#25D366; border-color:rgba(37,211,102,.3);}
.icon-btn-whatsapp:hover{background:rgba(37,211,102,.08); border-color:#25D366; transform:translateY(-2px);}
.icon-btn-call{color:var(--blue);}
.icon-btn-call:hover{background:rgba(46,109,164,.08); border-color:var(--blue); transform:translateY(-2px);}
@media (max-width:560px){ .icon-btn{width:34px; height:34px;} }
.nav-toggle{
  display:none; background:none; border:none; cursor:pointer; padding:6px;
  width:34px; height:34px; flex-direction:column; align-items:center; justify-content:center; gap:6px;
}
.nav-toggle .bar{
  width:22px; height:2px; background:var(--ink); border-radius:2px;
  transition:transform .3s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1){transform:translateY(8px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

@media (max-width:900px){
  .nav-links{
    position:fixed; top:80px; left:0; right:0; background:#fff;
    flex-direction:column; align-items:flex-start; gap:0;
    border-bottom:1px solid var(--line);
    max-height:0; opacity:0; overflow:hidden;
    transition:max-height .3s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  }
  .nav-links.open{max-height:620px; opacity:1;}
  .nav-links a{padding:14px 28px; width:100%; border-bottom:1px solid var(--line);}
  .nav-toggle{display:flex;}
}

/* ---------- HERO (3D gradient mesh) ---------- */
.hero-3d{
  position:relative; overflow:hidden; min-height:92vh; display:flex; align-items:center;
  background:radial-gradient(ellipse at top left, #14243d 0%, var(--navy) 55%);
  perspective:1400px;
}
.hero-3d .wrap{position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:start;}
.hero-copy{padding:78px 0 100px;}
.hero-copy .kicker{
  display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600;
  color:#B9D6EE; letter-spacing:.05em; text-transform:uppercase;
  padding:7px 14px; border-radius:20px; margin-bottom:24px;
  opacity:0; animation:heroIn .6s ease forwards .1s;
}
.hero-copy .kicker::before{content:""; width:7px; height:7px; border-radius:50%; background:var(--cyan); box-shadow:0 0 10px var(--cyan);}
.hero-copy h1{
  font-size:clamp(32px,4.6vw,50px); font-weight:800; max-width:21ch; line-height:1.12; letter-spacing:-0.02em;
  background:linear-gradient(100deg, #E8F2FA 20%, #ffffff 35%, #B9D6EE 50%, #ffffff 65%, #E8F2FA 80%);
  background-size:250% 100%;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  opacity:0; animation:heroIn .7s ease forwards .22s, shimmerSweep 5s ease-in-out infinite 2.5s;
}
@keyframes shimmerSweep{
  0%{background-position:200% 0;}
  60%{background-position:-60% 0;}
  100%{background-position:-60% 0;}
}
@media (prefers-reduced-motion: reduce){ .hero-copy h1{animation:heroIn .7s ease forwards .22s;} }
.hero-copy .lede{margin-top:22px; font-size:17.5px; color:#AEC0D2; max-width:46ch; line-height:1.65; opacity:0; animation:heroIn .7s ease forwards .36s;}
.hero-ctas{margin-top:32px; display:flex; gap:14px; flex-wrap:wrap; opacity:0; animation:heroIn .7s ease forwards .48s;}
.hero-ctas .btn{padding:13px 26px; font-size:15px;}
.hero-trust{margin-top:38px; display:flex; gap:26px; flex-wrap:wrap; padding-top:26px; border-top:1px solid rgba(255,255,255,.12); opacity:0; animation:heroIn .7s ease forwards .6s;}
.hero-trust li{display:flex; align-items:center; gap:9px; font-size:13.5px; color:#93A8BA; font-weight:500;}
.hero-trust li svg{flex:none; color:var(--cyan);}
@keyframes heroIn{ from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:translateY(0);} }
@media (prefers-reduced-motion: reduce){
  .hero-copy .kicker, .hero-copy h1, .hero-copy .lede, .hero-ctas, .hero-trust{animation:none; opacity:1;}
}

/* Floating 3D mockup panel */
.hero-mock-wrap{position:relative; height:440px; display:flex; align-items:center; justify-content:center; margin-top:78px;}
.hero-mock{
  width:100%; max-width:400px; border-radius:16px; padding:22px;
  transform:rotateY(-14deg) rotateX(7deg) translateZ(0);
  box-shadow:0 40px 80px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
  animation:mockFloat 6s ease-in-out infinite;
}
@keyframes mockFloat{
  0%,100%{transform:rotateY(-14deg) rotateX(7deg) translateY(0);}
  50%{transform:rotateY(-14deg) rotateX(7deg) translateY(-14px);}
}
.hero-mock .dots{display:flex; gap:6px; margin-bottom:18px;}
.hero-mock .dots span{width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.25);}
.hero-mock .mock-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:13px 14px; border-radius:10px; background:rgba(255,255,255,.05); margin-bottom:10px;
}
.hero-mock .mock-row .l{display:flex; align-items:center; gap:10px; font-size:13px; color:#D7E3EC; font-weight:500;}
.hero-mock .mock-dot{width:8px; height:8px; border-radius:50%; background:var(--cyan); box-shadow:0 0 8px var(--cyan);}
.hero-mock .mock-badge{font-size:11px; font-weight:700; padding:3px 9px; border-radius:20px; background:rgba(34,211,238,.15); color:var(--cyan);}
.hero-mock .mock-wave{display:flex; align-items:flex-end; gap:3px; height:36px; margin:16px 0 6px;}
.hero-mock .mock-wave span{width:4px; border-radius:2px; background:linear-gradient(180deg, var(--cyan), var(--blue-bright));}
.hero-mock .mock-chart{margin:14px 0; height:70px;}
.hero-mock .mock-chart svg{width:100%; height:100%; display:block;}
.mock-chart-line{stroke-dasharray:420; stroke-dashoffset:420; animation:drawLine 2.4s ease forwards .3s;}
@keyframes drawLine{ to{ stroke-dashoffset:0; } }
@media (max-width:900px){
  .hero-3d .wrap{grid-template-columns:1fr;}
  .hero-mock-wrap{height:320px;}
  .hero-mock{max-width:320px;}
}
@media (prefers-reduced-motion: reduce){ .hero-mock{animation:none;} .mock-chart-line{animation:none; stroke-dashoffset:0;} }

/* ---------- SERVICE CLUSTER (hero, staggered 3D cards) ---------- */
.service-cluster{position:relative; height:460px; margin-top:58px;}
.cluster-lines{position:absolute; inset:0; width:100%; height:100%; z-index:1;}
.cluster-card{
  position:absolute; z-index:2; width:162px; padding:20px 18px; border-radius:18px;
  box-shadow:0 24px 50px -14px rgba(0,0,0,.4);
  animation:clusterFloat 5.5s ease-in-out infinite;
}
.cluster-icon{
  width:48px; height:48px; border-radius:13px; margin-bottom:12px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
  box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 24px -8px var(--glow-blue);
}
.card-it .cluster-icon{background:linear-gradient(145deg,#FFB87A,#E0793A); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 24px -8px rgba(224,121,58,.4);}
.card-host .cluster-icon{background:linear-gradient(145deg,#6BDCB4,#149A6C); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 24px -8px rgba(20,154,108,.4);}
.card-dns .cluster-icon{background:linear-gradient(145deg,#9C8FF5,#5E4FCB); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 24px -8px var(--glow-violet);}
.cluster-label{font-size:15px; font-weight:700; color:#fff;}
.cluster-sub{font-size:12px; color:#9FB3C4; margin-top:4px;}
.card-voip{top:0; left:10px; animation-delay:0s;}
.card-it{top:150px; left:190px; animation-delay:-1.4s;}
.card-host{top:260px; left:0; animation-delay:-2.8s;}
.card-dns{top:360px; left:210px; animation-delay:-4.2s;}
@keyframes clusterFloat{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-10px) rotate(-1.2deg);}
}
@media (max-width:900px){
  .service-cluster{height:auto; display:flex; flex-direction:column; gap:16px; align-items:flex-start; padding-left:26px; position:relative;}
  .cluster-card{position:static; width:100%; animation:none;}
  .cluster-lines{display:none;}
}
.service-cluster::before, .service-map::before, .converge-diagram::before,
.service-cluster::after, .service-map::after, .converge-diagram::after{content:none;}
@media (max-width:900px){
  .service-cluster::before, .service-map::before, .converge-diagram::before{
    content:""; display:block; position:absolute; left:9px; top:4px; bottom:4px; width:2px; z-index:0;
    background-image:linear-gradient(var(--line) 50%, transparent 0);
    background-size:2px 10px; background-repeat:repeat-y;
  }
  .service-cluster::after, .service-map::after, .converge-diagram::after{
    content:""; display:block; position:absolute; left:5px; width:10px; height:10px; border-radius:50%;
    background:var(--cyan); box-shadow:0 0 10px var(--cyan); z-index:1;
    animation:flowDown 3s linear infinite;
  }
}
@keyframes flowDown{
  0%{top:0%; opacity:0;}
  8%{opacity:1;}
  92%{opacity:1;}
  100%{top:100%; opacity:0;}
}
@media (prefers-reduced-motion: reduce){
  .service-cluster::after, .service-map::after, .converge-diagram::after{animation:none; display:none;}
}
.cluster-hub{
  position:absolute; z-index:2; top:200px; left:130px; width:56px; height:56px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 35% 30%, #fff, #B9D6EE 45%, var(--blue) 100%);
  box-shadow:0 0 0 6px rgba(127,196,232,.12), 0 0 30px 6px rgba(127,196,232,.35), 0 16px 30px -8px rgba(0,0,0,.5);
  animation:hubPulse 3s ease-in-out infinite;
}
.cluster-hub::after{content:""; width:10px; height:10px; border-radius:50%; background:var(--navy);}
@keyframes hubPulse{
  0%,100%{transform:scale(1);}
  50%{transform:scale(1.08);}
}
@media (max-width:900px){
  .cluster-hub{position:static; margin:4px auto 4px; order:99;}
}
@media (prefers-reduced-motion: reduce){ .cluster-hub{animation:none;} }
@media (prefers-reduced-motion: reduce){ .cluster-card{animation:none;} }
.cluster-tag{
  position:absolute; z-index:3; font-size:10.5px; font-weight:700; color:#7FC4E8;
  background:rgba(15,33,56,.85); border:1px solid rgba(127,196,232,.3);
  padding:2px 8px; border-radius:10px; letter-spacing:.02em;
}
@media (max-width:900px){ .cluster-tag{display:none;} }

/* ---------- SERVICES NETWORK MAP ---------- */
.service-map{position:relative; width:100%; max-width:520px; height:520px; margin:0 auto;}
.map-hub{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:3;
  width:96px; height:96px; border-radius:50%;
  background:linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow:inset 0 2px 2px rgba(255,255,255,.4), 0 24px 44px -10px var(--glow-blue);
  animation:iconFloat 5s ease-in-out infinite;
  text-align:center; flex-direction:column; gap:2px;
}
.map-hub span{font-size:11px; font-weight:700;}
.map-node{
  position:absolute; transform:translate(-50%,-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px; width:110px; text-align:center;
}
.map-node-icon{
  width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg, var(--blue-bright), var(--blue-dark)); color:#fff;
  box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 26px -8px var(--glow-blue);
}
.map-node.n-cyan .map-node-icon{background:linear-gradient(145deg,#5FE6F5,#0FA6BE); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 26px -8px var(--glow-cyan);}
.map-node.n-orange .map-node-icon{background:linear-gradient(145deg,#FFB87A,#E0793A); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 26px -8px rgba(224,121,58,.4);}
.map-node.n-violet .map-node-icon{background:linear-gradient(145deg,#9C8FF5,#5E4FCB); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 26px -8px var(--glow-violet);}
.map-node.n-pink .map-node-icon{background:linear-gradient(145deg,#F58FC0,#D14D93); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 26px -8px rgba(209,77,147,.4);}
.map-node.n-teal .map-node-icon{background:linear-gradient(145deg,#6BDCB4,#149A6C); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 14px 26px -8px rgba(20,154,108,.4);}
.map-node-label{font-size:13px; font-weight:600; color:var(--ink);}
.map-node{transition:transform .2s ease;}
.map-node:hover{transform:translate(-50%,-50%) scale(1.08);}
.map-lines{position:absolute; inset:0; width:100%; height:100%; z-index:1;}
@media (max-width:900px){
  .service-map{height:auto; padding-left:26px; position:relative;}
  .map-node{position:static; transform:none; flex-direction:row; width:100%; text-align:left; gap:14px; padding:10px 0; border-bottom:1px solid var(--line);}
  .map-hub{position:static; transform:none; margin:0 auto 16px;}
  .map-lines{display:none;}
}
@media (prefers-reduced-motion: reduce){ .map-hub{animation:none;} }

/* ---------- CONVERGE DIAGRAM (contact page) ---------- */
.converge-diagram{position:relative; height:280px; max-width:520px; margin:0 auto;}
.converge-node{
  position:absolute; left:0; transform:translateY(-50%);
  display:flex; align-items:center; gap:12px; z-index:2;
}
.converge-node .net-hub-icon{width:52px; height:52px; border-radius:14px;}
.converge-node-label{font-size:13.5px; font-weight:600; color:var(--ink);}
.converge-hub{
  position:absolute; right:0; top:50%; transform:translateY(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.converge-hub .net-hub-icon{width:76px; height:76px;}
.converge-lines{position:absolute; inset:0; width:100%; height:100%; z-index:1;}
@media (max-width:900px){
  .converge-diagram{height:auto; display:flex; flex-direction:column; gap:18px; align-items:flex-start; padding-left:26px; position:relative;}
  .converge-node{position:static; transform:none;}
  .converge-hub{position:static; transform:none; align-self:center; margin-top:6px;}
  .converge-lines{display:none;}
}

/* ---------- CTA ANIMATED BACKGROUND LINES ---------- */
.cta-net{position:absolute; inset:0; z-index:1; opacity:.5;}

/* ---------- ABOUT PAGE STAT BAND ---------- */
.about-stats{background:var(--navy); color:#fff;}
.about-stats .wrap{display:grid; grid-template-columns:repeat(4,1fr); padding:34px 28px;}
.about-stat{padding:0 24px; border-left:1px solid rgba(255,255,255,.14); text-align:left;}
.about-stat:first-child{border-left:none; padding-left:0;}
.about-stat .num{font-size:25px; font-weight:800; color:#7FC4E8;}
.about-stat .lbl{font-size:13px; color:#B9C4CE; margin-top:4px;}
@media (max-width:700px){
  .about-stats .wrap{grid-template-columns:1fr 1fr; gap:20px;}
  .about-stat{border-left:none; padding-left:0;}
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%; z-index:300;
  background:linear-gradient(90deg, var(--blue-bright), var(--cyan));
  transition:width .1s ease-out;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top{
  position:fixed; left:22px; bottom:22px; z-index:200;
  width:46px; height:46px; border-radius:50%; background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px -6px rgba(11,22,40,.45);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s;
  border:none; cursor:pointer;
}
.back-to-top.show{opacity:1; visibility:visible; transform:translateY(0);}
.back-to-top:hover{transform:translateY(-3px);}
@media (max-width:600px){ .back-to-top{left:16px; bottom:16px; width:42px; height:42px;} }
/* ---------- SERVICE FINDER WIDGET ---------- */
.finder-widget{max-width:720px; margin:0 auto;}
.finder-options{display:flex; flex-wrap:wrap; gap:10px; justify-content:center;}
.finder-option{
  padding:12px 20px; border-radius:24px; border:1px solid var(--line); background:#fff;
  font-size:14px; font-weight:600; color:var(--ink); cursor:pointer;
  transition:border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}
.finder-option:hover{border-color:var(--blue); color:var(--blue); transform:translateY(-2px);}
.finder-option.active{background:var(--blue); border-color:var(--blue); color:#fff;}
.finder-result{
  margin-top:24px; display:flex; gap:18px; align-items:flex-start;
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px;
  box-shadow:0 20px 44px -18px rgba(11,22,40,.18);
  animation:cardIn .35s ease;
}
.finder-result h4{font-size:18px; margin-bottom:6px;}
.finder-result p{color:var(--slate); font-size:14.5px;}
.finder-result a{display:inline-block; margin-top:10px; font-size:13.5px; font-weight:600; color:var(--blue);}
.finder-result a:hover{color:var(--blue-dark);}

/* ---------- SYSTEM STATUS WIDGET ---------- */
.status-widget{
  max-width:640px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:16px;
  box-shadow:0 20px 50px -20px rgba(11,22,40,.15); overflow:hidden;
}
.status-header{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:18px 24px; background:rgba(22,160,133,.06); border-bottom:1px solid var(--line);
}
.status-badge{display:flex; align-items:center; gap:10px; font-weight:700; font-size:15px; color:#0E7A5F;}
.status-dot-big{
  width:11px; height:11px; border-radius:50%; background:#16A085; flex:none;
  box-shadow:0 0 0 0 rgba(22,160,133,.5); animation:statusPing 1.8s ease-out infinite;
}
@keyframes statusPing{
  0%{box-shadow:0 0 0 0 rgba(22,160,133,.5);}
  70%{box-shadow:0 0 0 9px rgba(22,160,133,0);}
  100%{box-shadow:0 0 0 0 rgba(22,160,133,0);}
}
.status-updated{font-size:12.5px; color:var(--slate);}
.status-rows{padding:6px 24px;}
.status-row{display:flex; align-items:center; gap:12px; padding:14px 0; border-top:1px solid var(--line);}
.status-row:first-child{border-top:none;}
.status-dot{width:8px; height:8px; border-radius:50%; background:#16A085; flex:none;}
.status-name{flex:1; font-size:14.5px; font-weight:500; color:var(--ink);}
.status-state{font-size:13px; font-weight:600; color:#0E7A5F; background:rgba(22,160,133,.1); padding:4px 11px; border-radius:20px;}
@media (prefers-reduced-motion: reduce){ .status-dot-big{animation:none;} }

/* ---------- 404 BROKEN CONNECTION GRAPHIC ---------- */
.broken-diagram{
  display:flex; align-items:center; justify-content:center; gap:0;
  margin-bottom:36px; position:relative;
}
.broken-diagram .net-hub-icon{width:64px; height:64px; border-radius:18px;}
.broken-link{width:130px; height:24px; flex:none;}
.broken-mark{
  width:34px; height:34px; border-radius:50%; background:#D9534F;
  display:flex; align-items:center; justify-content:center; flex:none;
  box-shadow:0 10px 20px -6px rgba(217,83,79,.4);
  animation:brokenPulse 1.8s ease-in-out infinite;
}
@keyframes brokenPulse{
  0%,100%{transform:scale(1); opacity:1;}
  50%{transform:scale(1.12); opacity:.75;}
}
@media (max-width:520px){
  .broken-diagram{transform:scale(.8);}
}
@media (prefers-reduced-motion: reduce){ .broken-mark{animation:none;} }
@media (prefers-reduced-motion: reduce){ .cta-net circle{display:none;} }

/* Overlapping stat cards */
.hero-stats{position:relative; z-index:3; margin-top:-56px; margin-bottom:48px;}
.hero-stats .row{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  background:#fff; border-radius:14px; padding:8px; box-shadow:0 24px 60px -20px rgba(11,22,40,.25); border:1px solid var(--line);
}
.hero-stat{padding:20px 18px; text-align:left;}
.hero-stat .num{font-size:24px; font-weight:800; color:var(--blue);}
.hero-stat .lbl{font-size:12.5px; color:var(--slate); margin-top:4px;}
@media (max-width:820px){ .hero-stats .row{grid-template-columns:1fr 1fr;} }
@media (max-width:520px){ .hero-stats .row{grid-template-columns:1fr;} }

/* ---------- SERVICE INDEX STRIP ---------- */
.service-index{border-bottom:1px solid var(--line);}
.service-index .wrap{display:grid; grid-template-columns:repeat(6,1fr); }
.service-index a{
  display:block; padding:20px 18px; border-left:1px solid var(--line);
  font-size:13px; color:var(--slate);
}
.service-index a:first-child{border-left:none;}
.service-index a:hover{background:var(--paper-2);}
.service-index .idx{font-size:11.5px; font-weight:700; color:var(--blue); display:block; margin-bottom:6px;}
.service-index .lbl{font-weight:600; color:var(--ink); display:block; font-size:13.5px;}
@media (max-width:960px){ .service-index .wrap{grid-template-columns:repeat(3,1fr);} .service-index a:nth-child(3n+1){border-left:none;} }
@media (max-width:600px){ .service-index .wrap{grid-template-columns:repeat(2,1fr);} .service-index a:nth-child(2n+1){border-left:none;} }

/* ---------- QUICK FACTS ---------- */
.facts{display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:8px; overflow:hidden;}
.fact{padding:26px 24px; border-left:1px solid var(--line);}
.fact-icon{
  width:38px; height:38px; border-radius:10px; margin-bottom:12px;
  background:rgba(46,109,164,.08); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
}
.fact:first-child{border-left:none;}
.fact .label{font-size:12px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:.03em;}
.fact p{margin-top:8px; font-size:14px; color:var(--slate);}
@media (max-width:820px){
  .facts{grid-template-columns:1fr 1fr;}
  .fact:nth-child(2n+1){border-left:none;}
  .fact:nth-child(n+3){border-top:1px solid var(--line);}
}
@media (max-width:520px){
  .facts{grid-template-columns:1fr;}
  .fact{border-left:none;}
  .fact:not(:first-child){border-top:1px solid var(--line);}
}

/* ---------- PAGE HEADER (inner pages, light + layered 3D icon) ---------- */
.page-banner{
  position:relative; overflow:hidden;
  background:
    radial-gradient(600px 320px at 85% 10%, rgba(46,109,164,.1), transparent 70%),
    radial-gradient(400px 240px at 8% 100%, rgba(124,108,240,.06), transparent 70%),
    linear-gradient(160deg, #F4F8FC 0%, var(--paper) 55%);
  border-bottom:1px solid var(--line);
  padding:64px 0 54px;
}
.page-banner .wrap{position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:32px;}
.page-banner h1{
  font-size:clamp(27px,3.6vw,38px); font-weight:800; letter-spacing:-0.02em; color:var(--ink);
  opacity:0; animation:heroIn .6s ease forwards .05s;
}
.page-banner .sub{
  margin-top:12px; color:var(--slate); font-size:15.5px; max-width:56ch;
  opacity:0; animation:heroIn .6s ease forwards .18s;
}
.page-banner-accent-wrap{position:relative; flex:none; width:120px; height:100px;}
.page-banner-accent{
  position:absolute; top:6px; right:6px; z-index:2;
  width:82px; height:82px; border-radius:22px;
  background:linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 18px 34px -10px var(--glow-blue);
  animation:iconFloat 4.5s ease-in-out infinite, popIn .5s cubic-bezier(.34,1.56,.64,1) backwards .28s;
}
.page-banner-accent::after{
  content:""; position:absolute; inset:-26px; z-index:-1; border-radius:50%;
  background:radial-gradient(circle, var(--glow-blue), transparent 70%);
  opacity:.5;
}
.page-banner-accent-2{
  position:absolute; bottom:0; left:0; z-index:1;
  width:46px; height:46px; border-radius:14px;
  background:linear-gradient(145deg,#9C8FF5,#5E4FCB);
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 10px 20px -6px var(--glow-violet);
  animation:iconFloat 4.5s ease-in-out infinite reverse; animation-delay:-1.5s;
}
@media (max-width:700px){ .page-banner-accent-wrap{display:none;} }
@keyframes popIn{ from{opacity:0; transform:scale(.6) rotate(-15deg);} to{opacity:1; transform:scale(1) rotate(0deg);} }
@media (prefers-reduced-motion: reduce){
  .page-banner-accent, .page-banner-accent-2{animation:none;}
  .page-banner h1, .page-banner .sub{animation:none; opacity:1;}
}

/* ---------- STATS STRIP ---------- */
.stats{border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.stats .wrap{display:grid; grid-template-columns:repeat(3,1fr); padding:32px 28px;}
.stat{padding:0 24px; border-left:1px solid var(--line);}
.stat:first-child{border-left:none; padding-left:0;}
.stat-num{font-size:24px; font-weight:700; color:var(--blue);}
.stat-label{font-size:13.5px; color:var(--slate); margin-top:4px;}
@media (max-width:700px){
  .stats .wrap{grid-template-columns:1fr; gap:16px;}
  .stat{border-left:none; padding-left:0; border-top:1px solid var(--line); padding-top:16px;}
  .stat:first-child{border-top:none; padding-top:0;}
}

/* ---------- BENTO SERVICES GRID (3D) ---------- */
.bento-grid{display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:auto; gap:18px;}
.bento-card{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:28px 26px;
  display:flex; flex-direction:column; gap:12px; box-shadow:0 2px 8px rgba(11,22,40,.04);
}
.bento-card:hover{box-shadow:0 30px 50px -20px rgba(11,22,40,.18);}
.bento-card.span-2{grid-column:span 2;}
.bento-icon{
  width:52px; height:52px; border-radius:13px; display:flex; align-items:center; justify-content:center;
  color:#fff; background:linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
  box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 10px 18px -6px var(--glow-blue);
  animation:iconFloat 4.5s ease-in-out infinite;
  transition:transform .25s ease;
}
.bento-card:nth-child(2) .bento-icon{animation-delay:-.8s;}
.bento-card:nth-child(3) .bento-icon{animation-delay:-1.6s;}
.bento-card:nth-child(4) .bento-icon{animation-delay:-2.4s;}
.bento-card:nth-child(5) .bento-icon{animation-delay:-3.2s;}
@keyframes iconFloat{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-5px) rotate(-3deg);}
}
.bento-card:hover .bento-icon{animation-play-state:paused; transform:translateY(-6px) rotate(-6deg) scale(1.08);}
.bento-icon.g-violet{background:linear-gradient(145deg,#9C8FF5,#5E4FCB); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 10px 18px -6px var(--glow-violet);}
.bento-icon.g-cyan{background:linear-gradient(145deg,#5FE6F5,#0FA6BE); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 10px 18px -6px var(--glow-cyan);}
.bento-icon.g-orange{background:linear-gradient(145deg,#FFB87A,#E0793A); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 10px 18px -6px rgba(224,121,58,.35);}
.bento-icon.g-pink{background:linear-gradient(145deg,#F58FC0,#D14D93); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 10px 18px -6px rgba(209,77,147,.35);}
.bento-icon.g-teal{background:linear-gradient(145deg,#6BDCB4,#149A6C); box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 10px 18px -6px rgba(20,154,108,.35);}
.bento-card h3{font-size:17.5px; transform:translateZ(10px);}
.bento-card p{color:var(--slate); font-size:14px; transform:translateZ(10px);}
.bento-card .more{margin-top:auto; font-size:13.5px; font-weight:600; color:var(--blue); transform:translateZ(10px);}
@media (max-width:900px){ .bento-grid{grid-template-columns:1fr 1fr;} .bento-card.span-2{grid-column:span 2;} }
@media (max-width:600px){ .bento-grid{grid-template-columns:1fr;} .bento-card.span-2{grid-column:span 1;} }

/* ---------- NUMBERED LIST (icon-free) ---------- */
.num-list{border-top:1px solid var(--line);}
.num-item{
  display:grid; grid-template-columns:64px 1fr 20px; align-items:center; gap:24px;
  padding:24px 4px; border-bottom:1px solid var(--line);
  transition:background .15s ease;
}
.num-item:hover{background:var(--paper-2);}
.num-item .n{font-size:15px; font-weight:700; color:var(--blue);}
.num-item .t{display:flex; flex-direction:column; gap:4px;}
.num-item .t strong{font-size:17px; font-weight:600; color:var(--ink);}
.num-item .t em{font-size:14px; font-style:normal; color:var(--slate);}
.num-item::after{
  content:"→"; grid-column:3; font-size:16px; color:var(--slate);
  transition:transform .15s ease, color .15s ease;
}
.num-item:hover::after{transform:translateX(3px); color:var(--blue);}
@media (max-width:640px){
  .num-item{grid-template-columns:36px 1fr 16px; gap:14px;}
}

/* ---------- SERVICE DETAIL ROWS (expandable) ---------- */
.service-row{border-top:1px solid var(--line);}
.service-row:last-child{border-bottom:1px solid var(--line);}
.service-row summary{
  display:grid; grid-template-columns:56px 1fr 24px; gap:22px; align-items:start;
  padding:26px 4px; cursor:pointer; list-style:none;
}
.service-row summary::-webkit-details-marker{display:none;}
.service-row .idx{font-size:12.5px; font-weight:700; color:var(--blue); letter-spacing:.04em; text-transform:uppercase; display:block; margin-bottom:8px;}
.service-row h3{font-size:19px; margin-bottom:6px;}
.service-row summary p{color:var(--slate); font-size:14.5px; max-width:60ch;}
.service-row .plus{
  justify-self:end; margin-top:6px; width:22px; height:22px; border-radius:50%; background:var(--paper-2);
  display:flex; align-items:center; justify-content:center; color:var(--blue); font-size:16px;
  transition:transform .2s ease;
}
.service-row[open] .plus{transform:rotate(45deg);}
.service-row .sr-detail{padding:0 4px 28px calc(56px + 22px);}
.service-row .sr-detail p{color:var(--slate); font-size:14.5px; margin-bottom:14px;}
.service-row .sr-detail ul{display:flex; flex-wrap:wrap; gap:8px;}
.service-row .sr-detail li{font-size:13px; color:var(--blue-dark); background:rgba(46,109,164,.08); padding:5px 11px; border-radius:20px;}
.service-row .bento-icon{transition:transform .35s cubic-bezier(.34,1.56,.64,1);}
.service-row:hover .bento-icon{animation-play-state:paused; transform:rotate(-8deg) scale(1.1);}
@media (max-width:600px){
  .service-row summary{grid-template-columns:44px 1fr 20px; gap:14px;}
  .service-row .sr-detail{padding-left:58px;}
}

/* ---------- IMAGE FEATURE ROW ---------- */
.img-feature{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;}
.img-feature.reverse .img-feature-media{order:2;}
.img-feature.reverse .img-feature-copy{order:1;}
.img-feature-media img{width:100%; height:300px; object-fit:cover; border-radius:8px; border:1px solid var(--line);}
.img-feature-copy .eyebrow{font-size:13px; font-weight:600; color:var(--blue); margin-bottom:10px;}
.img-feature-copy h3{font-size:clamp(20px,2.4vw,26px);}
.img-feature-copy p{margin-top:12px; color:var(--slate); font-size:15px;}
@media (max-width:860px){
  .img-feature, .img-feature.reverse{grid-template-columns:1fr;}
  .img-feature.reverse .img-feature-media, .img-feature.reverse .img-feature-copy{order:0;}
  .img-feature-media img{height:220px;}
}
.img-feature + .img-feature{margin-top:56px;}

/* ---------- TRIO / VALUES ---------- */
.trio{display:grid; grid-template-columns:repeat(3,1fr); gap:0; border:1px solid var(--line); border-radius:8px; overflow:hidden;}
.trio-item{padding:28px 26px; border-left:1px solid var(--line);}
.trio-item:first-child{border-left:none;}
.trio-item .num{font-size:12.5px; font-weight:700; color:var(--blue); letter-spacing:.02em;}
.trio-icon{
  width:44px; height:44px; border-radius:12px; margin-bottom:14px;
  background:linear-gradient(145deg, var(--blue-bright), var(--blue-dark)); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 10px 18px -6px var(--glow-blue);
}
.trio-item h4{margin-top:12px; font-size:16.5px;}
.trio-item p{margin-top:8px; color:var(--slate); font-size:14px;}
@media (max-width:820px){
  .trio{grid-template-columns:1fr;}
  .trio-item{border-left:none; border-top:1px solid var(--line);}
  .trio-item:first-child{border-top:none;}
}

/* ---------- ABOUT STORY ---------- */
.story{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;}
.story p + p{margin-top:14px;}
@media (max-width:860px){ .story{grid-template-columns:1fr; gap:24px;} }

/* ---------- FAQ ---------- */
.faq-list{max-width:780px; display:flex; flex-direction:column; gap:10px;}
details{background:#fff; border:1px solid var(--line); border-radius:8px; padding:4px 20px;}
summary{
  cursor:pointer; padding:16px 0; font-weight:600; font-size:15.5px;
  list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px;
}
summary::-webkit-details-marker{display:none;}
.faq-icon{
  flex:none; width:34px; height:34px; border-radius:9px; margin-right:2px;
  background:rgba(46,109,164,.08); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
}
.faq-q{flex:1;}
summary .plus{
  flex:none; width:20px; height:20px; border-radius:50%; background:var(--paper-2);
  display:flex; align-items:center; justify-content:center; color:var(--blue); font-size:15px;
  transition:transform .15s ease;
}
details[open] summary .plus{transform:rotate(45deg);}
details p{padding-bottom:18px; color:var(--slate); font-size:14.5px; max-width:66ch;}

/* ---------- CTA BANNER ---------- */
.cta-banner{
  position:relative; overflow:hidden;
  background:radial-gradient(ellipse at top left, #1B3252 0%, var(--navy) 60%);
  color:#fff; border-radius:18px; padding:52px 44px;
  display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
}
.cta-banner .mesh-bg{opacity:.7;}
.cta-banner > div, .cta-banner .cta-actions{position:relative; z-index:2;}
.cta-banner h3{color:#fff; font-size:clamp(21px,2.6vw,28px); max-width:22ch;}
.cta-banner p{color:rgba(255,255,255,.8); margin-top:8px; font-size:14.5px;}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap;}
.cta-icon{
  flex:none; width:64px; height:64px; border-radius:18px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(145deg, var(--blue-bright), var(--cyan)); color:#fff;
  box-shadow:inset 0 1px 1px rgba(255,255,255,.4), 0 18px 34px -10px rgba(34,211,238,.4);
  animation:iconFloat 4.5s ease-in-out infinite;
  margin-right:24px;
}
@media (max-width:700px){ .cta-icon{display:none;} }
@media (prefers-reduced-motion: reduce){ .cta-icon{animation:none;} }

/* ---------- CONTACT ---------- */
.contact-wrap{display:grid; grid-template-columns:.85fr 1.15fr; gap:0; border:1px solid var(--line); border-radius:12px; overflow:hidden;}
.contact-info-card{background:var(--navy); color:#fff; padding:40px 34px;}
.contact-info-card h3{color:#fff; font-size:19px; margin-bottom:6px;}
.contact-info-card .intro{color:#93A1B0; font-size:14px; margin-bottom:28px;}
.contact-info-card .row{display:flex; gap:14px; padding:18px 0; border-top:1px solid rgba(255,255,255,.12);}
.contact-info-card .row:first-of-type{border-top:none;}
.contact-info-card .ic{
  width:38px;height:38px; border-radius:9px; background:rgba(46,109,164,.35);
  display:flex; align-items:center; justify-content:center; color:#7FC4E8; flex:none;
}
.contact-info-card .label{font-size:12px; color:#8493A0;}
.contact-info-card .val{font-size:15px; font-weight:600; margin-top:3px; color:#fff;}
.contact-info-card .val a{color:#fff;}
.contact-form-side{padding:40px 38px; background:#fff;}
.contact-form-side h3{font-size:19px; margin-bottom:6px;}
.contact-form-side .intro{color:var(--slate); font-size:14px; margin-bottom:20px;}
.setup-notice{
  font-size:13px; color:var(--blue-dark); background:rgba(46,109,164,.07);
  border:1px solid rgba(46,109,164,.18); border-radius:8px; padding:12px 14px; margin-bottom:22px; line-height:1.55;
}

form{display:flex; flex-direction:column; gap:16px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
label{font-size:13px; color:var(--slate); margin-bottom:6px; display:block; font-weight:600;}
input, select, textarea{
  width:100%; background:var(--paper-2); border:1px solid var(--line);
  color:var(--ink); padding:12px 14px; border-radius:7px; font-family:inherit; font-size:14.5px;
  transition:border-color .15s ease, background .15s ease;
}
input:focus, select:focus, textarea:focus{border-color:var(--blue); outline:none; background:#fff;}
textarea{resize:vertical; min-height:120px;}
.form-note{font-size:12.5px; color:var(--slate);}
.form-error{
  padding:12px 16px; border-radius:8px; background:rgba(214,69,69,.08); color:#B23A3A; font-size:13.5px;
}
.form-error a{font-weight:600; text-decoration:underline;}
.btn-block{width:100%; justify-content:center; padding:14px 22px; font-size:15px; position:relative;}
.btn.is-loading{opacity:.75; cursor:progress;}
.btn.is-loading #btnText::after{
  content:""; display:inline-block; width:14px; height:14px; margin-left:8px;
  border:2px solid rgba(255,255,255,.4); border-top-color:#fff; border-radius:50%;
  vertical-align:-3px; animation:spin .7s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ---------- SUCCESS MODAL ---------- */
.modal-overlay{
  position:fixed; inset:0; z-index:300; background:rgba(11,22,40,.6); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center; padding:24px;
  animation:modalFade .18s ease;
}
@keyframes modalFade{ from{opacity:0;} to{opacity:1;} }
.modal-box{
  background:#fff; border-radius:16px; padding:36px 32px 32px; max-width:380px; width:100%;
  text-align:center; box-shadow:0 30px 70px -20px rgba(11,22,40,.4);
  animation:modalPop .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalPop{ from{opacity:0; transform:scale(.92) translateY(8px);} to{opacity:1; transform:scale(1) translateY(0);} }
.modal-icon{
  width:56px; height:56px; border-radius:50%; margin:0 auto 18px;
  background:linear-gradient(135deg,#22C48E,#16A085);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 22px -6px rgba(22,160,133,.45);
}
.modal-icon path{
  stroke-dasharray:24; stroke-dashoffset:24;
  animation:checkDraw .5s ease forwards .35s;
}
@keyframes checkDraw{ to{ stroke-dashoffset:0; } }
@media (prefers-reduced-motion: reduce){ .modal-icon path{animation:none; stroke-dashoffset:0;} }
.modal-box h3{font-size:19px; margin-bottom:10px;}
.modal-box p{font-size:14.5px; color:var(--slate); line-height:1.6;}
.modal-box .btn-block{margin-top:22px;}
.modal-box{position:relative; overflow:visible;}
.confetti-piece{
  position:absolute; width:8px; height:8px; border-radius:2px; z-index:10;
  animation:confettiBurst .9s ease-out forwards; pointer-events:none;
}
@keyframes confettiBurst{
  to{ transform:translate(var(--dx), var(--dy)) rotate(360deg); opacity:0; }
}
@media (prefers-reduced-motion: reduce){ .confetti-piece{display:none;} }

/* ---------- SCROLL REVEAL ---------- */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease;}
.reveal-in{opacity:1; transform:translateY(0);}
.reveal-in.bento-grid .bento-card,
.reveal-in.trio .trio-item,
.reveal-in.process-list .process-item,
.reveal-in.facts .fact{
  animation:cardIn .5s ease backwards;
}
.reveal-in.bento-grid .bento-card:nth-child(1),.reveal-in.trio .trio-item:nth-child(1),.reveal-in.process-list .process-item:nth-child(1),.reveal-in.facts .fact:nth-child(1){animation-delay:.05s;}
.reveal-in.bento-grid .bento-card:nth-child(2),.reveal-in.trio .trio-item:nth-child(2),.reveal-in.process-list .process-item:nth-child(2),.reveal-in.facts .fact:nth-child(2){animation-delay:.14s;}
.reveal-in.bento-grid .bento-card:nth-child(3),.reveal-in.trio .trio-item:nth-child(3),.reveal-in.process-list .process-item:nth-child(3),.reveal-in.facts .fact:nth-child(3){animation-delay:.23s;}
.reveal-in.bento-grid .bento-card:nth-child(4),.reveal-in.process-list .process-item:nth-child(4),.reveal-in.facts .fact:nth-child(4){animation-delay:.32s;}
.reveal-in.bento-grid .bento-card:nth-child(5){animation-delay:.41s;}
@keyframes cardIn{ from{opacity:0; transform:translateY(18px);} to{opacity:1; transform:translateY(0);} }
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  .reveal-in .bento-card, .reveal-in .trio-item, .reveal-in .process-item, .reveal-in .fact{animation:none;}
}
@media (max-width:860px){ .contact-wrap{grid-template-columns:1fr;} }
@media (max-width:560px){ .form-row{grid-template-columns:1fr;} }

/* ---------- PROCESS STEPS ---------- */
.process-list{display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--line); border-radius:8px; overflow:hidden;}
.process-item{padding:26px 24px; border-left:1px solid var(--line);}
.process-item:first-child{border-left:none;}
.process-item .num{font-size:22px; font-weight:700; color:var(--blue);}
.process-item h4{margin-top:10px; font-size:16px;}
.process-item p{margin-top:8px; color:var(--slate); font-size:13.5px;}
@media (max-width:820px){
  .process-list{grid-template-columns:1fr 1fr;}
  .process-item:nth-child(2n+1){border-left:none;}
  .process-item:nth-child(n+3){border-top:1px solid var(--line);}
}
@media (max-width:520px){
  .process-list{grid-template-columns:1fr;}
  .process-item{border-left:none;}
  .process-item:not(:first-child){border-top:1px solid var(--line);}
}

/* ---------- SOCIAL ICONS ---------- */
.social-row{display:flex; gap:10px; margin-top:18px;}
.social-row a{
  width:36px; height:36px; border-radius:8px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); color:#93A1B0;
  transition:background .15s ease, color .15s ease, border-color .15s ease;
}
.social-row a:hover{background:rgba(63,146,214,.18); color:#fff; border-color:rgba(63,146,214,.4);}

/* ---------- WHATSAPP FLOAT BUTTON ---------- */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:200;
  width:56px; height:56px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px -4px rgba(37,211,102,.55);
  transition:transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float::before{
  content:""; position:absolute; inset:-6px; border-radius:50%; border:2px solid #25D366;
  opacity:.6; animation:wappPulse 2.4s ease-out infinite;
}
@keyframes wappPulse{
  0%{transform:scale(.9); opacity:.6;}
  100%{transform:scale(1.35); opacity:0;}
}
.whatsapp-float:hover{transform:translateY(-3px) scale(1.05); box-shadow:0 16px 32px -4px rgba(37,211,102,.6);}
.whatsapp-float svg{width:28px; height:28px; position:relative;}
@media (prefers-reduced-motion: reduce){ .whatsapp-float::before{animation:none; display:none;} }
@media (prefers-reduced-motion: reduce){ .bento-icon{animation:none;} }
@media (max-width:600px){ .whatsapp-float{right:16px; bottom:16px; width:50px; height:50px;} }
/* ---------- COOKIE CONSENT ---------- */
.cookie-banner{
  position:fixed; left:20px; right:20px; bottom:20px; z-index:250;
  max-width:560px; margin:0 auto;
  background:var(--navy); color:#D7DEE6; border-radius:14px; padding:20px 22px;
  box-shadow:0 24px 60px -14px rgba(0,0,0,.4);
  display:flex; flex-direction:column; gap:14px;
  transform:translateY(140%); transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show{transform:translateY(0);}
.cookie-banner p{font-size:13.5px; line-height:1.6; color:#B9C4CE;}
.cookie-banner p a{color:#7FC4E8; font-weight:600;}
.cookie-banner-actions{display:flex; gap:10px; flex-wrap:wrap;}
.cookie-banner .btn{padding:9px 18px; font-size:13.5px;}
.cookie-banner .btn-decline{background:transparent; border:1px solid rgba(255,255,255,.2); color:#B9C4CE;}
.cookie-banner .btn-decline:hover{border-color:rgba(255,255,255,.4); color:#fff;}
@media (max-width:600px){ .cookie-banner{left:12px; right:12px; bottom:12px; padding:16px 18px;} }
/* ---------- LEGAL PAGES ---------- */
.legal-block{margin-bottom:36px;}
.legal-block h2{font-size:19px; margin-bottom:12px;}
.legal-block p{color:var(--slate); font-size:15px; line-height:1.7;}
.legal-block ul{margin-top:10px; padding-left:20px; list-style:disc;}
.legal-block li{color:var(--slate); font-size:15px; line-height:1.7; margin-bottom:8px;}
.legal-block a{color:var(--blue); font-weight:600;}
/* ---------- FOOTER (dark) ---------- */
footer{background:var(--navy); border-top:none; padding:56px 0 26px; color:#93A1B0;}
.footer-wordmark{font-size:19px; font-weight:700; color:#fff; letter-spacing:-.01em;}
.footer-logo-img{height:34px; width:auto; margin-bottom:14px;}
.footer-top{display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:28px; padding-bottom:32px; border-bottom:1px solid rgba(255,255,255,.1);}
.footer-about{color:#8493A0; font-size:13.5px; max-width:34ch; margin-top:12px;}
.footer-col h5{font-size:12.5px; color:#fff; margin-bottom:14px; text-transform:uppercase; letter-spacing:.03em;}
.footer-col ul{display:flex; flex-direction:column; gap:10px;}
.footer-col a{font-size:13.5px; color:#93A1B0;}
.footer-col a:hover{color:#fff;}
.footer-bottom{
  padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:12.5px; color:#6E7C8A;
}
@media (max-width:820px){ .footer-top{grid-template-columns:1fr 1fr; row-gap:24px;} }
@media (max-width:560px){ .footer-top{grid-template-columns:1fr;} }
