/* ============ TOKENS ============ */
:root{
  --bg:#050806;
  --bg-2:#0a0f0b;
  --panel:#0e140f;
  --panel-2:#121a14;
  --line:rgba(255,255,255,.08);
  --text:#e7f3ea;
  --muted:#90a596;
  --accent:#1fe06a;       /* electric green */
  --accent-2:#59ffb0;     /* mint green    */
  --accent-glow:rgba(31,224,106,.45);
  --blue-glow:rgba(89,255,176,.35);
  --radius:18px;
  --shadow:0 20px 50px -20px rgba(0,0,0,.7);
  --maxw:1180px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
/* fixed, composited ambient backdrop (cheaper than background-attachment:fixed) */
body::before{
  content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(1100px 760px at 82% -5%, rgba(31,224,106,.06), transparent 60%),
    radial-gradient(1000px 720px at -10% 38%, rgba(89,255,176,.04), transparent 55%),
    radial-gradient(1200px 820px at 60% 102%, rgba(31,224,106,.05), transparent 60%),
    var(--bg);
}
body.loading{overflow:hidden;height:100vh}
h1,h2,h3,.nav__logo{font-family:'Sora',sans-serif;line-height:1.1}
a{color:inherit;text-decoration:none}
img{max-width:100%}
section{padding:clamp(64px,9vw,130px) clamp(20px,5vw,40px)}

/* ============ LOADER ============ */
.loader{
  position:fixed;inset:0;z-index:9999;
  background:radial-gradient(circle at 50% 40%,var(--bg-2),var(--bg) 70%);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:26px;
  transition:opacity .7s ease,visibility .7s ease;
}
.loader.is-done{opacity:0;visibility:hidden}
.loader__core{position:relative;width:120px;height:200px;display:grid;place-items:center}
.bolt{overflow:visible}
.bolt__path{
  fill:none;
  stroke:var(--accent);
  stroke-width:4;
  stroke-linejoin:round;
  stroke-linecap:round;
  stroke-dasharray:520;
  stroke-dashoffset:520;
  filter:drop-shadow(0 0 10px var(--accent-glow));
  animation:bolt-draw 2.4s cubic-bezier(.6,.05,.2,1) forwards, bolt-fill 1s ease 2.4s forwards;
}
@keyframes bolt-draw{to{stroke-dashoffset:0}}
@keyframes bolt-fill{to{fill:var(--accent);filter:drop-shadow(0 0 26px var(--accent-glow))}}
.loader__spark{
  position:absolute;width:14px;height:14px;border-radius:50%;
  background:#fff;box-shadow:0 0 18px 6px var(--accent-glow);
  offset-path:path('M70 10 L25 110 L58 110 L40 190 L100 80 L65 80 Z');
  animation:spark-run 2.4s ease forwards;
  opacity:0;
}
@keyframes spark-run{
  0%{opacity:1;offset-distance:0%}
  90%{opacity:1}
  100%{opacity:0;offset-distance:100%}
}
.loader__brand{
  font-family:'Sora',sans-serif;font-weight:800;letter-spacing:.32em;
  font-size:clamp(13px,2.4vw,18px);color:var(--text);
  opacity:0;animation:fade-up .8s ease 1.6s forwards;
}
.loader__bar{
  width:min(260px,70vw);height:4px;border-radius:99px;
  background:rgba(255,255,255,.08);overflow:hidden;
  opacity:0;animation:fade-up .8s ease 1.8s forwards;
}
.loader__fill{display:block;height:100%;width:0;border-radius:99px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  box-shadow:0 0 12px var(--accent-glow);transition:width .2s ease}
.loader__pct{font-size:12px;color:var(--muted);letter-spacing:.2em;
  opacity:0;animation:fade-up .8s ease 2s forwards}
@keyframes fade-up{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}

/* ============ NAV ============ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px clamp(20px,5vw,40px);
  transition:background .3s ease,padding .3s ease,box-shadow .3s ease;
}
.nav.scrolled{
  background:rgba(5,8,6,.72);backdrop-filter:blur(16px);
  padding:12px clamp(20px,5vw,40px);
  box-shadow:0 10px 40px -18px rgba(0,0,0,.8);
}
.nav__logo{display:flex;align-items:center;gap:10px;font-weight:700;font-size:19px}
.nav__logo strong{color:var(--accent);font-weight:800;margin-left:4px}
.nav__logo-mark{filter:drop-shadow(0 0 8px var(--accent-glow))}
.nav__links{display:flex;align-items:center;gap:28px}
.nav__links a{color:var(--muted);font-weight:500;font-size:15px;transition:color .2s}
.nav__links a:hover{color:var(--text)}
.nav__cta{
  background:var(--accent);color:#0a0e1a !important;font-weight:700 !important;
  padding:10px 18px;border-radius:99px;transition:transform .2s,box-shadow .2s;
}
.nav__cta:hover{transform:translateY(-2px);box-shadow:0 10px 24px -8px var(--accent-glow)}
.nav__burger{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:6px}
.nav__burger span{width:26px;height:2px;background:var(--text);border-radius:2px;transition:.3s}
.nav__burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav__burger.open span:nth-child(2){opacity:0}
.nav__burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 26px;border-radius:99px;font-weight:600;font-size:15px;
  cursor:pointer;border:0;transition:transform .2s,box-shadow .2s,background .2s;
}
.btn--primary{background:linear-gradient(135deg,var(--accent),#0bbf5e);color:#0a0e1a}
.btn--primary:hover{transform:translateY(-3px);box-shadow:0 14px 30px -10px var(--accent-glow)}
.btn--ghost{background:rgba(255,255,255,.06);color:var(--text);border:1px solid var(--line)}
.btn--ghost:hover{background:rgba(255,255,255,.12);transform:translateY(-3px)}
.btn--full{width:100%}

/* ============ HERO ============ */
.hero{
  position:relative;min-height:100vh;display:flex;align-items:center;
  background:radial-gradient(1000px 600px at 70% -10%,rgba(89,255,176,.12),transparent 60%),
             transparent;
  overflow:hidden;
}
.hero__canvas{position:absolute;inset:0;width:100%;height:100%;z-index:0}
.hero__glow{
  position:absolute;width:620px;height:620px;border-radius:50%;
  background:radial-gradient(circle,var(--blue-glow),transparent 70%);
  top:-170px;right:-130px;z-index:0;
  animation:glow-breathe 9s ease-in-out infinite;will-change:opacity;
}
@keyframes glow-breathe{0%,100%{opacity:.6}50%{opacity:1}}
.hero__inner{position:relative;z-index:2;max-width:780px;margin:0;width:100%;padding-top:80px;padding-left:clamp(8px,3vw,60px)}
.hero__eyebrow{
  display:inline-block;color:var(--text);font-weight:600;letter-spacing:.05em;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.14);
  padding:7px 16px;border-radius:99px;font-size:14px;margin-bottom:24px;
}
.hero__title{font-size:clamp(40px,7vw,82px);font-weight:800;letter-spacing:-.02em;max-width:14ch}
.hero__title-accent{
  display:block;
  background:linear-gradient(120deg,var(--accent),var(--accent-2));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero__sub{color:var(--muted);font-size:clamp(16px,2.2vw,20px);max-width:54ch;margin:26px 0 36px}
.hero__actions{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:60px}
.hero__stats{display:flex;flex-wrap:wrap;gap:clamp(24px,5vw,64px)}
.stat__num{display:block;font-family:'Sora';font-weight:800;font-size:clamp(30px,5vw,46px);color:var(--text)}
.stat__label{color:var(--muted);font-size:14px}
.hero__scroll{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);z-index:2;
  width:26px;height:42px;border:2px solid var(--muted);border-radius:99px;display:flex;justify-content:center;padding-top:7px}
.hero__scroll span{width:4px;height:8px;border-radius:4px;background:var(--accent);animation:scroll-dot 1.6s infinite}
@keyframes scroll-dot{0%{transform:translateY(0);opacity:1}80%{transform:translateY(14px);opacity:0}100%{opacity:0}}

/* ============ SECTION HEAD ============ */
.section-head{max-width:680px;margin:0 auto clamp(40px,6vw,64px);text-align:center}
.section-head__tag{
  display:inline-block;color:var(--accent-2);font-weight:600;font-size:13px;
  letter-spacing:.2em;text-transform:uppercase;margin-bottom:14px;
}
.section-head__title{font-size:clamp(28px,4.5vw,46px);font-weight:800;letter-spacing:-.02em}
.section-head__lead{color:var(--muted);margin-top:16px;font-size:17px}

/* ============ SERVICES ============ */
.services{background:transparent}
.services__grid{
  max-width:var(--maxw);margin:0 auto;display:grid;gap:22px;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}
.service{
  position:relative;background:var(--panel);border:1px solid var(--line);
  border-radius:var(--radius);padding:32px 28px;overflow:hidden;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),border-color .35s,box-shadow .35s;
}
.service::before{
  content:"";position:absolute;inset:0;border-radius:var(--radius);padding:1px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;opacity:0;transition:opacity .35s;
}
.service:hover,.service:focus-visible{transform:translateY(-8px);box-shadow:var(--shadow);outline:none}
.service:hover::before,.service:focus-visible::before{opacity:1}
.service__icon{
  font-size:30px;width:62px;height:62px;display:grid;place-items:center;border-radius:14px;
  background:rgba(31,224,106,.10);border:1px solid rgba(31,224,106,.2);margin-bottom:20px;
  transition:transform .35s;
}
.service:hover .service__icon{transform:scale(1.08) rotate(-4deg)}
.service h3{font-size:20px;margin-bottom:10px}
.service p{color:var(--muted);font-size:15px}

/* ============ ABOUT ============ */
.about{background:transparent}
.about__inner{max-width:var(--maxw);margin:0 auto;display:grid;gap:clamp(36px,6vw,72px);
  grid-template-columns:1fr 1.1fr;align-items:center}
.about__card{
  position:relative;background:linear-gradient(160deg,var(--panel-2),var(--panel));
  border:1px solid var(--line);border-radius:24px;padding:40px;box-shadow:var(--shadow);overflow:hidden;
}
.about__card::after{content:"⚡";position:absolute;right:-10px;bottom:-30px;font-size:160px;opacity:.05}
.about__big{font-family:'Sora';font-weight:800;font-size:clamp(70px,12vw,120px);
  background:linear-gradient(120deg,var(--accent),var(--accent-2));
  -webkit-background-clip:text;background-clip:text;color:transparent;line-height:1;
  width:max-content;animation:big-glow 2.8s ease-in-out infinite}
@keyframes big-glow{
  0%,100%{filter:drop-shadow(0 0 6px rgba(31,224,106,.35))}
  50%{filter:drop-shadow(0 0 24px rgba(31,224,106,.75))}
}
.about__big-label{color:var(--muted);font-weight:600;font-size:18px;margin:6px 0 28px}
.about__checks{list-style:none;display:grid;gap:12px}
.about__checks li{color:var(--text);font-size:15px}
.about__text p{color:var(--muted);font-size:17px;margin-top:18px}
.about__values{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:30px}
.value{background:var(--panel);border:1px solid var(--line);border-radius:14px;padding:18px}
.value strong{display:block;margin-bottom:6px;color:var(--accent)}
.value span{color:var(--muted);font-size:14px}

/* ============ AREAS ============ */
.areas{background:transparent}
.areas__chips{max-width:920px;margin:0 auto;display:flex;flex-wrap:wrap;gap:12px;justify-content:center}
.areas__chips span{
  background:var(--panel);border:1px solid var(--line);border-radius:99px;
  padding:11px 20px;font-size:15px;color:var(--text);transition:.25s;cursor:default;
}
.areas__chips span:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-3px)}
.areas__more{background:rgba(31,224,106,.10) !important;color:var(--accent) !important;font-weight:600}

/* ============ REVIEWS ============ */
.reviews__grid{max-width:var(--maxw);margin:0 auto;display:grid;gap:22px;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.review{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  padding:30px;transition:transform .3s,border-color .3s}
.review:hover{transform:translateY(-6px);border-color:rgba(31,224,106,.3)}
.review__stars{color:var(--accent);letter-spacing:3px;margin-bottom:14px}
.review blockquote{font-size:16px;line-height:1.7;margin-bottom:18px}
.review figcaption{color:var(--muted);font-size:14px}
.review figcaption strong{color:var(--text)}

/* ============ CONTACT ============ */
.contact{background:transparent}
.contact__inner{max-width:var(--maxw);margin:0 auto;display:grid;gap:clamp(36px,6vw,64px);
  grid-template-columns:1fr 1fr;align-items:start}
.contact__info p{color:var(--muted);font-size:17px;margin-top:16px}
.contact__list{list-style:none;margin-top:30px;display:grid;gap:18px}
.contact__list li{display:flex;align-items:center;gap:14px;font-size:17px}
.contact__ico{width:46px;height:46px;display:grid;place-items:center;border-radius:12px;
  background:rgba(89,255,176,.10);border:1px solid rgba(89,255,176,.2);font-size:20px}
.contact__list a:hover{color:var(--accent)}
.contact__form{background:var(--panel);border:1px solid var(--line);border-radius:24px;
  padding:34px;display:grid;gap:20px;box-shadow:var(--shadow)}
.field{position:relative}
.field input,.field textarea{
  width:100%;background:var(--bg);border:1px solid var(--line);border-radius:12px;
  padding:18px 16px 8px;color:var(--text);font-size:15px;font-family:inherit;resize:vertical;
  transition:border-color .2s;
}
.field textarea{padding-top:22px}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--accent)}
.field label{position:absolute;left:16px;top:15px;color:var(--muted);font-size:15px;
  pointer-events:none;transition:.2s;background:transparent}
.field input:focus+label,.field input:not(:placeholder-shown)+label,
.field textarea:focus+label,.field textarea:not(:placeholder-shown)+label{
  top:6px;font-size:11px;color:var(--accent);letter-spacing:.04em}
.contact__note{color:var(--accent-2);font-size:14px;text-align:center}

/* ============ FOOTER ============ */
.footer{background:transparent;padding:48px clamp(20px,5vw,40px) 28px}
.footer__top{max-width:var(--maxw);margin:0 auto;text-align:center}
.footer__brand{font-family:'Sora';font-weight:800;font-size:22px;margin-bottom:10px}
.footer__top p{color:var(--muted)}
.footer__bottom{max-width:var(--maxw);margin:28px auto 0;padding-top:22px;
  background-image:linear-gradient(90deg,transparent,rgba(255,255,255,.09),transparent);
  background-repeat:no-repeat;background-position:top center;background-size:100% 1px;
  display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between;color:var(--muted);font-size:14px}
.footer__contact a:hover{color:var(--accent)}

/* ============ FLOATING CALL ============ */
.float-call{
  position:fixed;right:22px;bottom:22px;z-index:800;width:58px;height:58px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),#0bbf5e);color:#0a0e1a;
  display:grid;place-items:center;font-size:24px;box-shadow:0 12px 30px -8px var(--accent-glow);
  animation:pulse 2.2s infinite;transition:transform .2s;
}
.float-call:hover{transform:scale(1.1)}
@keyframes pulse{0%{box-shadow:0 0 0 0 var(--accent-glow)}70%{box-shadow:0 0 0 18px transparent}100%{box-shadow:0 0 0 0 transparent}}

/* ============ REVEAL ============ */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}
.reveal.in{opacity:1;transform:none}

/* ============ RESPONSIVE ============ */
@media(max-width:860px){
  .about__inner,.contact__inner{grid-template-columns:1fr}
  .about__values{grid-template-columns:1fr}
  .nav__links{
    position:fixed;inset:0 0 0 auto;width:min(78vw,320px);flex-direction:column;
    background:var(--bg-2);padding:100px 32px 32px;gap:22px;align-items:flex-start;
    transform:translateX(100%);transition:transform .35s ease;border-left:1px solid var(--line);
  }
  .nav__links.open{transform:none}
  .nav__burger{display:flex;z-index:901}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none !important;transition:none !important}
  .reveal{opacity:1;transform:none}
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* ---- container helper ---- */
.container{max-width:var(--maxw);margin:0 auto}
.narrow{max-width:820px}

/* ---- inner-page top loader bar ---- */
.toploader{
  position:fixed;top:0;left:0;height:3px;width:0;z-index:9999;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  box-shadow:0 0 14px var(--accent-glow);
  animation:toploader 1s ease forwards;
}
@keyframes toploader{0%{width:0;opacity:1}75%{width:100%;opacity:1}100%{width:100%;opacity:0}}
.toploader{animation:toploader 1.8s ease forwards}
.fade-page{animation:pageIn .6s ease}
@keyframes pageIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

/* ---- inner-page hero / banner ---- */
.page-hero{
  position:relative;overflow:hidden;
  padding:clamp(130px,18vw,200px) clamp(20px,5vw,40px) clamp(56px,8vw,90px);
  background:radial-gradient(1100px 520px at 80% -30%,rgba(89,255,176,.16),transparent 62%),
             transparent;
  text-align:center;
}
.page-hero::after{content:"⚡";position:absolute;right:4%;bottom:-30px;font-size:150px;opacity:.05}
.page-hero__inner{position:relative;z-index:2;max-width:760px;margin:0 auto}
.page-hero h1{font-size:clamp(34px,6vw,62px);font-weight:800;letter-spacing:-.02em}
.page-hero__sub{color:var(--muted);font-size:clamp(16px,2.2vw,20px);margin-top:18px}
.breadcrumb{font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:18px}
.breadcrumb a{color:var(--accent-2)}
.breadcrumb a:hover{color:var(--accent)}

/* ---- nav active link ---- */
.nav__links a.active{color:var(--accent)}

/* ---- prose / article body (blog + service detail) ---- */
.prose{max-width:780px;margin:0 auto;color:var(--text)}
.prose p{color:var(--muted);font-size:17px;margin:0 0 22px}
.prose h2{font-size:clamp(24px,3.5vw,32px);font-weight:800;margin:42px 0 16px;letter-spacing:-.01em}
.prose h3{font-size:20px;font-weight:700;margin:30px 0 12px;color:var(--text)}
.prose ul{list-style:none;margin:0 0 22px;display:grid;gap:12px}
.prose ul li{position:relative;padding-left:30px;color:var(--muted);font-size:16px}
.prose ul li::before{content:"⚡";position:absolute;left:0;top:0;color:var(--accent);font-size:14px}
.prose strong{color:var(--text)}
.prose .lead{font-size:19px;color:var(--text)}

/* article meta */
.article-meta{display:flex;gap:18px;justify-content:center;color:var(--muted);font-size:14px;margin-top:22px}
.article-meta span{display:inline-flex;align-items:center;gap:7px}

/* callout box inside articles / service pages */
.callout{
  background:var(--panel);border:1px solid var(--line);border-left:3px solid var(--accent);
  border-radius:14px;padding:24px 26px;margin:30px 0;
}
.callout h3{margin-top:0}
.callout p:last-child{margin-bottom:0}

/* ---- service detail: feature grid ---- */
.feature-grid{display:grid;gap:18px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));margin:30px 0}
.feature{background:var(--panel);border:1px solid var(--line);border-radius:16px;padding:26px;transition:transform .3s,border-color .3s}
.feature:hover{transform:translateY(-6px);border-color:rgba(31,224,106,.3)}
.feature h3{margin:0 0 8px;font-size:18px}
.feature p{color:var(--muted);font-size:15px;margin:0}
.feature__num{font-family:'Sora';font-weight:800;color:var(--accent);font-size:14px;letter-spacing:.1em}

/* ---- services overview cards link style ---- */
.service-link{display:block;text-decoration:none;color:inherit}
.service-link .service{height:100%}
.service__more{display:inline-flex;align-items:center;gap:6px;margin-top:16px;color:var(--accent);font-weight:600;font-size:14px}
.service-link:hover .service__more{gap:10px}

/* ---- FAQ accordion ---- */
.faq{max-width:780px;margin:0 auto;display:grid;gap:14px}
.faq__item{background:var(--panel);border:1px solid var(--line);border-radius:14px;overflow:hidden;transition:border-color .3s}
.faq__item.open{border-color:rgba(31,224,106,.35)}
.faq__q{
  width:100%;background:none;border:0;cursor:pointer;color:var(--text);
  font-family:'Sora',sans-serif;font-weight:600;font-size:17px;text-align:left;
  padding:22px 24px;display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.faq__q::after{content:"+";font-size:26px;color:var(--accent);transition:transform .3s;line-height:1}
.faq__item.open .faq__q::after{transform:rotate(45deg)}
.faq__a{max-height:0;overflow:hidden;transition:max-height .35s ease;color:var(--muted)}
.faq__a p{margin:0;padding:0 24px 22px;font-size:16px}

/* ---- blog listing ---- */
.blog-grid{max-width:var(--maxw);margin:0 auto;display:grid;gap:24px;grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
.blog-card{
  display:flex;flex-direction:column;background:var(--panel);border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;transition:transform .3s,border-color .3s;color:inherit;
}
.blog-card:hover{transform:translateY(-8px);border-color:rgba(31,224,106,.3);box-shadow:var(--shadow)}
.blog-card__img{height:160px;display:grid;place-items:center;font-size:54px;
  background:linear-gradient(135deg,rgba(31,224,106,.12),rgba(89,255,176,.12))}
.blog-card__body{padding:24px;display:flex;flex-direction:column;flex:1}
.blog-card__date{color:var(--accent-2);font-size:13px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px}
.blog-card h3{font-size:20px;margin-bottom:10px;line-height:1.25}
.blog-card p{color:var(--muted);font-size:15px;flex:1}
.blog-card__more{margin-top:16px;color:var(--accent);font-weight:600;font-size:14px;display:inline-flex;gap:6px;transition:gap .2s}
.blog-card:hover .blog-card__more{gap:10px}

/* ---- generic CTA band ---- */
.cta-band{
  margin:0 auto;max-width:var(--maxw);text-align:center;
  background:linear-gradient(135deg,var(--panel-2),var(--panel));
  border:1px solid var(--line);border-radius:24px;padding:clamp(36px,6vw,60px);box-shadow:var(--shadow);
}
.cta-band h2{font-size:clamp(26px,4vw,40px);font-weight:800}
.cta-band p{color:var(--muted);margin:14px 0 28px;font-size:17px}
.cta-band__actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.section--tight{padding-top:clamp(48px,7vw,90px);padding-bottom:clamp(48px,7vw,90px)}

/* ---- footer nav ---- */
.footer__nav{display:flex;flex-wrap:wrap;gap:22px;justify-content:center;margin-top:20px}
.footer__nav a{color:var(--muted);font-size:15px;transition:color .2s}
.footer__nav a:hover{color:var(--accent)}

/* ---- back link ---- */
.back-link{display:inline-flex;align-items:center;gap:8px;color:var(--accent-2);font-weight:600;margin-bottom:30px}
.back-link:hover{color:var(--accent)}

@media(max-width:560px){
  .article-meta{flex-direction:column;gap:8px;align-items:center}
}

/* ============================================================
   PREMIUM ICON SYSTEM  (replaces all emoji)
   ============================================================ */

/* base masked-icon — inherits color via currentColor */
.ic,.bic,.nav__logo-mark{
  display:inline-block;flex:none;
  background-color:currentColor;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-position:center;mask-position:center;
  -webkit-mask-size:contain;mask-size:contain;
}

/* brand bolt — gradient filled */
.nav__logo-mark{
  width:24px;height:24px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13 2L3 14h7l-1 8 11-13h-8z'/%3E%3C/svg%3E");
          mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13 2L3 14h7l-1 8 11-13h-8z'/%3E%3C/svg%3E");
  filter:drop-shadow(0 0 8px var(--accent-glow));
}
.footer__brand .nav__logo-mark{width:26px;height:26px}

/* service-card icon */
.service__icon{color:var(--accent)}
.service__icon .ic{width:30px;height:30px}

/* contact list icon */
.contact__ico{color:var(--accent-2)}
.contact__ico .ic{width:22px;height:22px}

/* blog card icon */
.blog-card__img .bic{width:46px;height:46px;color:var(--accent)}

/* floating call button — masked phone */
.float-call{font-size:0}
.float-call::before{
  content:"";width:26px;height:26px;display:inline-block;background-color:#05140b;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.81.36 1.6.7 2.34a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.74-1.27a2 2 0 0 1 2.11-.45c.74.34 1.53.57 2.34.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.81.36 1.6.7 2.34a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.74-1.27a2 2 0 0 1 2.11-.45c.74.34 1.53.57 2.34.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* remove decorative emoji watermarks */
.page-hero::after,.about__card::after{display:none}

/* clean check bullets (about + prose lists) */
.prose ul li::before{
  content:"";position:absolute;left:0;top:.28em;width:15px;height:15px;
  background-color:var(--accent);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.about__checks{list-style:none}
.about__checks li{position:relative;padding-left:28px}
.about__checks li::before{
  content:"";position:absolute;left:0;top:.3em;width:16px;height:16px;
  background-color:var(--accent);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* --- icon glyphs --- */
.ic-wrench{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E")}
.ic-droplet{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z'/%3E%3C/svg%3E")}
.ic-building{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='1'/%3E%3Cpath d='M9 21v-4h6v4'/%3E%3Cpath d='M8 7h.5M12 7h.5M16 7h.5M8 11h.5M12 11h.5M16 11h.5'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='1'/%3E%3Cpath d='M9 21v-4h6v4'/%3E%3Cpath d='M8 7h.5M12 7h.5M16 7h.5M8 11h.5M12 11h.5M16 11h.5'/%3E%3C/svg%3E")}
.ic-power{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18.36 6.64a9 9 0 1 1-12.73 0'/%3E%3Cline x1='12' y1='2' x2='12' y2='12'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18.36 6.64a9 9 0 1 1-12.73 0'/%3E%3Cline x1='12' y1='2' x2='12' y2='12'/%3E%3C/svg%3E")}
.ic-lamp{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21v-9'/%3E%3Cpath d='M8 12l1.5-5h5L16 12z'/%3E%3Cline x1='9' y1='21' x2='15' y2='21'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21v-9'/%3E%3Cpath d='M8 12l1.5-5h5L16 12z'/%3E%3Cline x1='9' y1='21' x2='15' y2='21'/%3E%3C/svg%3E")}
.ic-monitor{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E")}
.ic-bulb{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 21h4'/%3E%3Cpath d='M12 3a6 6 0 0 0-3.6 10.8c.6.5.9 1 1 1.7l.1.5h5l.1-.5c.1-.7.4-1.2 1-1.7A6 6 0 0 0 12 3z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 21h4'/%3E%3Cpath d='M12 3a6 6 0 0 0-3.6 10.8c.6.5.9 1 1 1.7l.1.5h5l.1-.5c.1-.7.4-1.2 1-1.7A6 6 0 0 0 12 3z'/%3E%3C/svg%3E")}
.ic-plug{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2v6'/%3E%3Cpath d='M15 2v6'/%3E%3Cpath d='M7 8h10v3a5 5 0 0 1-10 0z'/%3E%3Cpath d='M12 16v6'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2v6'/%3E%3Cpath d='M15 2v6'/%3E%3Cpath d='M7 8h10v3a5 5 0 0 1-10 0z'/%3E%3Cpath d='M12 16v6'/%3E%3C/svg%3E")}
.ic-panel{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3Cline x1='3' y1='15' x2='21' y2='15'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3Cline x1='3' y1='15' x2='21' y2='15'/%3E%3C/svg%3E")}
.ic-shield{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E")}
.ic-alert{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E")}
.ic-phone{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.81.36 1.6.7 2.34a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.74-1.27a2 2 0 0 1 2.11-.45c.74.34 1.53.57 2.34.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.81.36 1.6.7 2.34a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.74-1.27a2 2 0 0 1 2.11-.45c.74.34 1.53.57 2.34.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E")}
.ic-mail{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M22 6l-10 7L2 6'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M22 6l-10 7L2 6'/%3E%3C/svg%3E")}
.ic-pin{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E")}
.ic-clock{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15 14'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15 14'/%3E%3C/svg%3E")}
.ic-search{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E")}
.ic-award{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='M8.5 13.5L7 22l5-3 5 3-1.5-8.5'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='M8.5 13.5L7 22l5-3 5 3-1.5-8.5'/%3E%3C/svg%3E")}
.ic-dollar{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E")}
.ic-bolt{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13 2L3 14h7l-1 8 11-13h-8z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13 2L3 14h7l-1 8 11-13h-8z'/%3E%3C/svg%3E")}

/* ============================================================
   HERO REFINEMENTS — service-business feel
   ============================================================ */

/* live status dot in the eyebrow badge */
.hero__eyebrow{display:inline-flex;align-items:center;gap:9px}
.hero__dot{
  width:9px;height:9px;border-radius:50%;background:var(--accent);
  box-shadow:0 0 0 0 var(--accent-glow);animation:dot-pulse 2s infinite;flex:none;
}
@keyframes dot-pulse{
  0%{box-shadow:0 0 0 0 rgba(31,224,106,.5)}
  70%{box-shadow:0 0 0 8px rgba(31,224,106,0)}
  100%{box-shadow:0 0 0 0 rgba(31,224,106,0)}
}

/* keep the headline grounded — wider measure, tighter accent */
.hero__title{max-width:18ch}
.hero__title-accent{
  background:linear-gradient(100deg,var(--accent),var(--accent-2));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

/* inline phone icon inside buttons */
.btn__ico{width:17px;height:17px}

/* trust row under the CTAs */
.hero__trust{
  list-style:none;display:flex;flex-wrap:wrap;gap:10px 22px;margin:0 0 50px;
}
.hero__trust li{
  position:relative;padding-left:24px;color:var(--text);font-size:15px;font-weight:500;
}
.hero__trust li::before{
  content:"";position:absolute;left:0;top:.18em;width:16px;height:16px;
  background-color:var(--accent);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* stats: give them a subtle divider so they read as a credibility bar */
.hero__stats{
  padding-top:30px;
  background-image:linear-gradient(90deg,transparent,rgba(255,255,255,.10),transparent);
  background-repeat:no-repeat;background-position:top left;background-size:100% 1px;
}

@media(max-width:600px){
  .hero__trust{gap:8px 18px;margin-bottom:38px}
  .hero__trust li{font-size:14px}
}

/* ---- services "show more" ---- */
.services__grid:not(.is-expanded) .service-link.is-extra{display:none}
.services__actions{display:flex;flex-direction:column;align-items:center;gap:16px;margin-top:44px}
.services__all{color:var(--accent);font-weight:600;font-size:15px;transition:opacity .2s}
.services__all:hover{opacity:.75}

/* ============ HERO LIVE WIRES ============ */
.hero__wires{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none}
.wire{fill:none;stroke:rgba(31,224,106,.12);stroke-width:2;stroke-linecap:round}
.pulse{
  fill:none;stroke:var(--accent);stroke-width:2.6;stroke-linecap:round;
  stroke-dasharray:34 966;stroke-dashoffset:1000;
  filter:drop-shadow(0 0 4px var(--accent));
  animation:wire-flow var(--dur,6s) linear infinite;
  animation-delay:var(--delay,0s);
}
@keyframes wire-flow{from{stroke-dashoffset:1000}to{stroke-dashoffset:0}}
.node{
  fill:var(--accent-2);
  filter:drop-shadow(0 0 5px var(--accent));
  animation:node-flicker 3.2s ease-in-out infinite;
  animation-delay:var(--ndelay,0s);
}
@keyframes node-flicker{0%,100%{opacity:.2}50%{opacity:1}}
/* keep hero text crisp over the wires */
.hero__title,.hero__sub{text-shadow:0 2px 26px rgba(5,8,6,.55)}
@media(prefers-reduced-motion:reduce){
  .pulse,.node{animation:none}
  .pulse{stroke-dasharray:none;opacity:.5}
}

/* ============================================================
   SERVICE-PAGE THEMED ANIMATIONS
   ============================================================ */
.svc-anim{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none;overflow:hidden}
.svc-anim svg{width:100%;height:100%;display:block}
.page-hero h1,.page-hero__sub{text-shadow:0 2px 24px rgba(5,8,6,.55)}
.svc-line{fill:none;stroke:rgba(31,224,106,.55);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.svc-dim{fill:none;stroke:rgba(31,224,106,.14);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.svc-fill{fill:var(--accent)}
.svc-glow{filter:drop-shadow(0 0 6px var(--accent))}
.spin-cw{transform-box:fill-box;transform-origin:center;animation:svc-spin 12s linear infinite}
.spin-ccw{transform-box:fill-box;transform-origin:center;animation:svc-spin 12s linear infinite reverse}
@keyframes svc-spin{to{transform:rotate(360deg)}}

/* 1 repairs — arcing spark across a gap */
@keyframes svc-spark{0%,16%,24%,100%{opacity:0}18%,22%{opacity:1}20%{opacity:.5}}
.an-repair .spark{opacity:0;animation:svc-spark 2.6s infinite}
.an-repair .spark.b{animation-delay:1.3s}
@keyframes svc-node{0%,100%{opacity:.35}50%{opacity:1}}
.an-repair .nd{animation:svc-node 2.6s infinite}

/* 2 plumbing — dripping pipe */
@keyframes svc-drip{0%{transform:translateY(0);opacity:0}8%{opacity:1}70%{opacity:1}100%{transform:translateY(230px);opacity:0}}
.an-plumb .drop{transform-box:fill-box;animation:svc-drip 3.2s ease-in infinite}
@keyframes svc-ripple{0%{transform:scale(.2);opacity:.6}100%{transform:scale(1);opacity:0}}
.an-plumb .rip{transform-box:fill-box;transform-origin:center;animation:svc-ripple 3.2s ease-out infinite}

/* 3 industrial — gears (thick dashed circles) */
.an-ind .gear{fill:none;stroke:rgba(31,224,106,.5);stroke-width:13;stroke-dasharray:9 15;transform-box:fill-box;transform-origin:center}
.an-ind .g1{animation:svc-spin 10s linear infinite}
.an-ind .g2{animation:svc-spin 8s linear infinite reverse}

/* 4 generator — power rings + turbine spokes */
@keyframes svc-ring{0%{transform:scale(.3);opacity:.7}100%{transform:scale(1.7);opacity:0}}
.an-gen .ring{transform-box:fill-box;transform-origin:center;animation:svc-ring 3s ease-out infinite}
.an-gen .ring.b{animation-delay:1s}.an-gen .ring.c{animation-delay:2s}
.an-gen .turbine{transform-box:fill-box;transform-origin:center;animation:svc-spin 3.5s linear infinite}

/* 5 parking lot — lamp cones glow */
@keyframes svc-lamp{0%,100%{opacity:.12}50%{opacity:.5}}
.an-park .cone{animation:svc-lamp 4s ease-in-out infinite}
.an-park .cone.b{animation-delay:2s}

/* 6 digital sign — LED matrix wave */
@keyframes svc-led{0%,100%{opacity:.12}50%{opacity:1}}
.an-sign .px{animation:svc-led 2.2s ease-in-out infinite}

/* 7 lighting — bulb halo + rotating rays */
@keyframes svc-halo{0%,100%{opacity:.3}50%{opacity:.95}}
.an-light .halo{transform-box:fill-box;transform-origin:center;animation:svc-halo 3s ease-in-out infinite}
.an-light .rays{transform-box:fill-box;transform-origin:center;animation:svc-spin 20s linear infinite}

/* 8 wiring — flowing current */
.an-wire .flow{fill:none;stroke:var(--accent);stroke-width:2.4;stroke-linecap:round;stroke-dasharray:30 970;filter:drop-shadow(0 0 5px var(--accent));animation:wire-flow var(--dur,5s) linear infinite;animation-delay:var(--delay,0s)}

/* 9 panel — breaker switches toggle + LEDs */
@keyframes svc-toggle{0%,45%{transform:translateY(0)}50%,100%{transform:translateY(7px)}}
.an-panel .sw{transform-box:fill-box;animation:svc-toggle 2.6s ease-in-out infinite}
@keyframes svc-blink{0%,100%{opacity:.2}50%{opacity:1}}
.an-panel .led{animation:svc-blink 1.6s infinite}

/* 10 surge — shield pulse + bolt flashes */
@keyframes svc-shield{0%,100%{opacity:.3;transform:scale(1)}50%{opacity:.7;transform:scale(1.04)}}
.an-surge .shield{transform-box:fill-box;transform-origin:center;animation:svc-shield 2.6s ease-in-out infinite}
@keyframes svc-boltflash{0%,68%,100%{opacity:0}72%,84%{opacity:1}}
.an-surge .bolt{opacity:0;animation:svc-boltflash 3s infinite}
.an-surge .bolt.b{animation-delay:1.5s}

/* 11 emergency — beacon sweep + alert rings */
@keyframes svc-alert{0%{transform:scale(.4);opacity:.6}100%{transform:scale(1.6);opacity:0}}
.an-emerg .ar{transform-box:fill-box;transform-origin:center;animation:svc-alert 2.2s ease-out infinite}
.an-emerg .ar.b{animation-delay:1.1s}
.an-emerg .beam{transform-box:fill-box;transform-origin:center;animation:svc-spin 2.6s linear infinite}

@media(prefers-reduced-motion:reduce){.svc-anim *{animation:none !important}}

/* free up the main thread for the loader by pausing hero motion while loading */
body.loading .pulse,
body.loading .node,
body.loading .hero__glow{animation-play-state:paused}
