:root{
  --ink:#0b1220;
  --muted:rgba(12,18,32,.70);
  --line:rgba(12,18,32,.12);
  --shadow-sm:0 10px 28px rgba(10,18,32,.10);
  --shadow-md:0 18px 55px rgba(10,18,32,.16);
  --shadow-lg:0 30px 90px rgba(6,20,44,.24);
  --max:1200px;
  --cta:#10b8d5;
  --cta-2:#24d4ef;
  --brand:#0f3f74;
  --brand-2:#175ea8;
  --soft:#f6f8fb;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top, rgba(36,212,239,.10), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 18%, #ffffff 100%);
}
a{color:inherit;text-decoration:none}
.wrap{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

:focus{outline:none}
:focus-visible{
  outline:3px solid rgba(16,184,213,.38);
  outline-offset:3px;
  border-radius:12px;
}

.muted{color:var(--muted)}

.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(12,18,32,.08);
  transition:box-shadow .25s ease, background .25s ease;
}
.nav.is-scrolled{
  background:rgba(255,255,255,.93);
  box-shadow:0 18px 50px rgba(10,18,32,.12);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:12px;
}

.brand{display:flex;align-items:center;gap:12px;min-width:0}
.brand__logo{
  width:60px;
  height:60px;
  display:block;
  flex:0 0 auto;
}
.brand__logo--full{
  width:auto;
  height:auto;
  max-width:320px;
  filter:drop-shadow(0 12px 28px rgba(8,28,56,.22));
}

.links{display:none;gap:6px;align-items:center;flex-wrap:nowrap;min-width:0}
.links a{
  font-size:14px;
  font-weight:800;
  letter-spacing:.08px;
  color:rgba(10,46,87,.92);
  padding:8px 9px;
  border-radius:10px;
  transition:background .18s ease,color .18s ease,transform .18s ease;
  white-space:nowrap;
}
.links a:hover{
  background:linear-gradient(135deg, rgba(16,184,213,.14), rgba(23,94,168,.10));
  color:rgba(10,46,87,1);
  transform:translateY(-1px);
}

.nav__cta{display:flex;gap:8px;align-items:center;flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 16px;
  border-radius:12px;
  font-weight:800;
  font-size:14px;
  border:1px solid rgba(12,18,32,.10);
  box-shadow:0 14px 30px rgba(10,18,32,.10);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.btn:active{transform:translateY(0);filter:saturate(.98)}
.btn__ic{
  display:inline-grid;
  place-items:center;
  width:20px;
  height:20px;
  margin-right:10px;
}
.btn__ic svg{width:18px;height:18px}

.btn--quote{
  background:linear-gradient(135deg,var(--cta),var(--cta-2));
  border-color:rgba(36,212,239,.24);
  color:#fff;
}
.btn--call{
  background:linear-gradient(135deg,#144f92,#0c2f57);
  border-color:rgba(15,63,116,.20);
  color:#fff;
}
.btn--wide{
  width:100%;
  height:46px;
  border-radius:12px;
}
.btn--cta{
  background:#fff;
  color:#0f3f74;
  border-color:rgba(255,255,255,.16);
}
.btn--ghost{
  background:rgba(255,255,255,.10);
  color:#fff;
  border-color:rgba(255,255,255,.20);
  box-shadow:none;
}

.hero{
  position:relative;
  min-height:780px;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 22% 30%, rgba(36,212,239,.18), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(180deg, #06172d 0%, #0b2e57 100%);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,16,30,.82) 0%, rgba(5,22,40,.62) 40%, rgba(5,18,34,.36) 72%, rgba(5,18,34,.50) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.18));
  z-index:1;
}
.hero__img{
  position:absolute;
  inset:-30px 0 -30px 0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  filter:saturate(1.08) contrast(1.05) brightness(.86);
  transform:translate3d(0,0,0) scale(1.05);
  will-change:transform;
}
.wave{
  position:absolute;
  left:-6%;
  right:-6%;
  height:200px;
  pointer-events:none;
  filter:drop-shadow(0 18px 30px rgba(10,18,32,.18));
  opacity:.99;
  z-index:2;
}
.wave--top{top:-52px}
.wave--bot{bottom:-78px;transform:scaleY(-1)}
.wave svg{width:100%;height:100%}

.hero__content{
  position:relative;
  padding:118px 0 132px;
  z-index:2;
}
.hero__grid{
  display:grid;
  gap:20px;
  max-width:840px;
}
.eyebrow{
  font-weight:900;
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(219,247,255,.82);
}
h1{
  margin:0;
  font-size:clamp(42px, 5.4vw, 70px);
  line-height:1.02;
  letter-spacing:-.7px;
  color:#fff;
  font-weight:900;
  text-shadow:0 10px 35px rgba(0,0,0,.24);
}
.accent{color:var(--cta)}
.sub{
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:17px;
  line-height:1.65;
  max-width:64ch;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.hero__mini{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:4px;
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:700;
}

.heroStats{
  display:grid;
  gap:14px;
  margin-top:6px;
}
.heroStat{
  padding:16px 18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 22px 60px rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
}
.heroStat strong{
  display:block;
  color:#fff;
  font-size:15px;
  font-weight:900;
}
.heroStat span{
  display:block;
  margin-top:6px;
  color:rgba(233,246,255,.84);
  line-height:1.55;
  font-size:13px;
  font-weight:700;
}

.mnav__brandLogo{
  width:38px;
  height:38px;
  display:block;
  flex:0 0 auto;
}
.mnav__brandLogo--full{
  width:auto;
  height:52px;
  max-width:260px;
}

.trustRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.trustPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.90);
  font-weight:800;
  font-size:13px;
  backdrop-filter:blur(8px);
  box-shadow:0 16px 40px rgba(0,0,0,.12);
}
.trustPill svg{width:18px;height:18px;opacity:.95}

.section{padding:84px 0;background:#fff}
.section--soft{background:linear-gradient(180deg, #f3f9ff, rgba(255,255,255,0))}
.two{display:grid;gap:28px;align-items:center}
.kicker{
  margin:0 0 10px;
  font-weight:900;
  font-size:18px;
  color:rgba(10,46,87,.96);
}
.title2{
  margin:0 0 10px;
  font-size:42px;
  letter-spacing:-.6px;
  font-weight:900;
  color:rgba(12,18,32,.96);
}
.lead,.p{
  margin:0;
  color:rgba(12,18,32,.70);
  line-height:1.65;
  max-width:70ch;
  font-size:16px;
}
.p{margin-top:14px}

.figure{
  position:relative;
  display:grid;
  place-items:end;
  min-height:420px;
  overflow:visible;
}
.techImg{
  width:min(440px, 92%);
  height:auto;
  filter:drop-shadow(0 30px 90px rgba(10,18,32,.22));
  transform:translateY(8px);
}

.sectionHead{margin-bottom:18px}
.titleCenter{
  margin:0;
  text-align:center;
  font-size:40px;
  letter-spacing:-.6px;
  font-weight:900;
}
.subtitleCenter{
  margin:10px auto 0;
  text-align:center;
  color:rgba(12,18,32,.62);
  font-weight:700;
  max-width:760px;
}

.cardGrid{
  margin-top:22px;
  display:grid;
  gap:16px;
}
.infoCard{
  background:linear-gradient(180deg, rgba(255,255,255,.96), #ffffff);
  border:1px solid rgba(12,18,32,.06);
  border-radius:22px;
  padding:24px 20px;
  box-shadow:0 24px 70px rgba(10,18,32,.07);
  text-align:center;
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.infoCard:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 80px rgba(10,18,32,.11);
  border-color:rgba(16,184,213,.22);
}
.infoCard .ic{
  width:54px;
  height:54px;
  margin:0 auto 12px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(16,184,213,.16), rgba(23,94,168,.12));
  border:1px solid rgba(15,94,168,.12);
  color:rgba(10,46,87,.95);
}
.infoCard .ic svg{width:26px;height:26px}
.infoCard h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  color:rgba(10,46,87,.95);
}
.infoCard p{
  margin:0;
  color:rgba(12,18,32,.66);
  line-height:1.6;
}

.svcGrid{
  margin-top:22px;
  display:grid;
  gap:16px;
}
.serviceIntro{
  margin:24px 0 8px;
  padding:18px 20px;
  border-radius:22px;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  background:linear-gradient(135deg, rgba(10,63,116,.98), rgba(23,94,168,.96));
  color:#fff;
  box-shadow:var(--shadow-lg);
}
.serviceIntro__copy{
  display:grid;
  gap:6px;
}
.serviceIntro__copy strong{
  font-size:17px;
  font-weight:900;
}
.serviceIntro__copy span{
  color:rgba(234,247,255,.86);
  line-height:1.6;
  font-weight:700;
  max-width:70ch;
}
.svcCard{
  background:linear-gradient(180deg, #ffffff, rgba(247,251,255,.92));
  border:1px solid rgba(12,18,32,.07);
  border-radius:22px;
  padding:24px 20px;
  box-shadow:0 22px 65px rgba(10,18,32,.07);
  text-align:left;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svcCard:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 80px rgba(10,18,32,.12);
  border-color:rgba(16,184,213,.22);
}
.svcIcon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(16,184,213,.16), rgba(15,94,168,.08));
  border:1px solid rgba(15,94,168,.12);
  color:rgba(10,46,87,.95);
  margin-bottom:12px;
}
.svcCard h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:900;
  color:rgba(10,46,87,.95);
}
.svcCard p{
  margin:0;
  color:rgba(12,18,32,.66);
  line-height:1.6;
}

[data-reveal]{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .55s ease, transform .55s ease;
}
.reveal-in{
  opacity:1;
  transform:none;
}

.svcCTA{
  margin-top:24px;
  padding:24px;
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  border-radius:24px;
  background:
    radial-gradient(circle at right top, rgba(36,212,239,.16), transparent 34%),
    linear-gradient(135deg, #0d3968, #124c89);
  color:#fff;
  box-shadow:var(--shadow-lg);
}
.svcCTA__title{
  margin:0;
  font-size:24px;
  font-weight:900;
}
.svcCTA__text{
  margin:8px 0 0;
  color:rgba(230,245,255,.84);
  line-height:1.65;
  max-width:64ch;
  font-weight:700;
}
.svcCTA__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.ctaBlock{
  background:
    radial-gradient(circle at top, rgba(36,212,239,.16), transparent 28%),
    linear-gradient(180deg, #082341 0%, #123d6a 100%);
  padding:72px 0;
}
.ctaBlock__inner{max-width:960px}
.ctaHead h2{
  margin:0;
  color:#fff;
  font-size:38px;
  font-weight:900;
  text-align:center;
}
.ctaHead p{
  margin:10px 0 0;
  color:rgba(255,255,255,.82);
  text-align:center;
  font-weight:700;
}
.ctaTrustRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:18px 0 14px;
}
.trustChip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.92);
  box-shadow:0 18px 50px rgba(0,0,0,.16);
  font-weight:800;
  font-size:13px;
}
.trustChip svg{
  width:16px;
  height:16px;
  flex:0 0 auto;
}

.quoteForm{
  margin-top:18px;
  display:grid;
  gap:12px;
  padding:24px;
  border-radius:24px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 70px rgba(0,0,0,.18);
  backdrop-filter:blur(12px);
}
.quoteForm .fLabel{
  display:block;
  color:rgba(255,255,255,.86);
  font-weight:900;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin:0 0 6px;
}
.quoteForm .fField{
  display:flex;
  flex-direction:column;
}
.fRow{display:grid;gap:12px}
.quoteForm input,
.quoteForm select,
.quoteForm textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.96);
  outline:none;
  font-family:inherit;
}
.quoteForm input::placeholder,
.quoteForm textarea::placeholder{
  color:rgba(12,18,32,.55);
}
.quoteForm input:focus,
.quoteForm select:focus,
.quoteForm textarea:focus{
  border-color:rgba(16,184,213,.45);
  box-shadow:0 0 0 4px rgba(16,184,213,.16);
}
.quoteForm textarea{resize:vertical}
.formStatus{
  margin:6px 0 0;
  text-align:center;
  color:rgba(255,255,255,.82);
  font-weight:700;
}

.guarantee{
  background:
    radial-gradient(circle at left top, rgba(36,212,239,.14), transparent 24%),
    linear-gradient(180deg, #0b2b4e, #113a67);
  color:#fff;
  padding:72px 0;
}
.guarantee .wrap{width:min(var(--max), calc(100% - 40px))}
.guarantee__grid{
  display:grid;
  gap:26px;
  align-items:center;
}
.guarantee__badge{
  display:flex;
  justify-content:flex-start;
}
.badge{display:flex;gap:14px;align-items:center}
.badge__shield{
  width:88px;
  height:88px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(255,255,255,.20), rgba(36,212,239,.14));
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:34px;
  font-weight:900;
}
.badge__text strong{
  display:block;
  color:#fff;
  font-weight:900;
  letter-spacing:.10em;
  font-size:13px;
}
.badge__text span{
  display:block;
  color:rgba(255,255,255,.78);
  font-weight:800;
  margin-top:2px;
  font-size:13px;
}
.guarantee__content h2{
  margin:0;
  color:#fff;
  font-size:30px;
  font-weight:900;
  letter-spacing:-.4px;
}
.guarantee__content p{
  margin:10px 0 0;
  color:rgba(255,255,255,.82);
  line-height:1.65;
  max-width:80ch;
}
.guarantee__note{
  margin-top:10px;
  font-weight:900;
  color:var(--cta);
}

#reviews.section--soft{background:var(--soft)}
.reviewRow{
  display:grid;
  gap:14px;
  margin-top:18px;
}
.review{
  background:linear-gradient(180deg, #ffffff, rgba(246,250,255,.94));
  border:1px solid rgba(12,18,32,.06);
  border-radius:22px;
  padding:22px;
  box-shadow:0 22px 65px rgba(10,18,32,.07);
}
.review--featured{transform:translateY(-8px)}
.reviewTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}
.gDot{
  width:26px;
  height:26px;
  border-radius:8px;
  background:rgba(15,94,168,.12);
  display:grid;
  place-items:center;
  font-weight:900;
  color:rgba(10,46,87,.9);
}
.starsBlue{color:rgba(15,94,168,.9);letter-spacing:1px}
.review p{
  margin:0;
  color:rgba(12,18,32,.68);
  line-height:1.6;
}
.review strong{
  display:block;
  margin-top:10px;
  color:rgba(10,46,87,.9);
}

.footer{
  border-top:1px solid rgba(12,18,32,.06);
  padding:28px 0 18px;
  background:linear-gradient(180deg, rgba(245,250,255,.98), rgba(255,255,255,.98));
}
.footer__top{
  padding:18px 0 22px;
  border-bottom:1px solid rgba(12,18,32,.08);
  background:linear-gradient(180deg, rgba(16,184,213,.05), rgba(255,255,255,0));
}
.footer__topInner{gap:18px}
.footerTrust{
  display:grid;
  gap:10px;
}
.footerTrust__item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(12,18,32,.06);
  box-shadow:0 18px 50px rgba(10,18,32,.06);
}
.footerTrust__ic{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(0,210,202,.14);
  color:rgba(10,46,87,.95);
  flex:0 0 auto;
}
.footerTrust__ic svg{width:18px;height:18px}
.footerTrust__txt strong{display:block;font-weight:900}
.footerTrust__txt span{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.footerCtaRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
  padding-top:4px;
}

.footer__inner{
  display:grid;
  gap:18px;
  align-items:start;
  padding-top:20px;
}
.footer__brand{padding-top:2px}
.footer__logo{
  height:76px;
  width:auto;
  display:block;
}
.footer__logo--full{
  max-width:360px;
  filter:drop-shadow(0 10px 24px rgba(8,28,56,.16));
}
.footer__brandText{
  margin:10px 0 0;
  line-height:1.55;
}
.footer__insta{margin-top:12px}
.footer__instaLink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}
.footer__instaLink img{
  width:28px;
  height:28px;
  display:block;
}
.footer__instaLink span{
  font-weight:700;
  color:#0b1220;
}

.footer__links{
  display:grid;
  gap:10px;
  align-content:start;
}
.footer__links strong{
  font-weight:900;
  margin-bottom:2px;
}
.footer__links a{
  color:rgba(10,46,87,.9);
  font-weight:800;
}

.footer__bottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(12,18,32,.10);
}
.footer__bottomBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.poweredBy{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#546173;
  font-weight:800;
  transition:transform .18s ease, opacity .18s ease;
}
.poweredBy:hover{
  transform:translateY(-1px);
  opacity:.96;
}
.poweredBy__label{
  font-size:14px;
  color:#5d6a7a;
  font-weight:800;
  letter-spacing:.01em;
}
.poweredBy__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(10,46,87,.10);
  background:#fff;
  box-shadow:0 10px 24px rgba(10,18,32,.08);
}
.poweredBy__logo{
  height:22px;
  width:auto;
  display:block;
  object-fit:contain;
}

body.nav-open{
  overflow:hidden;
  position:fixed;
  inset:0;
  width:100%;
  overscroll-behavior:none;
  touch-action:none;
}

.nav__burger{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(12,18,32,.14);
  background:rgba(255,255,255,.75);
  box-shadow:0 10px 26px rgba(10,18,32,.06);
  transition:transform .18s ease, box-shadow .18s ease;
}
.nav__burger:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 55px rgba(10,18,32,.12);
}
.nav__burgerLines{
  width:18px;
  height:12px;
  position:relative;
  display:block;
  background:linear-gradient(rgba(10,46,87,.92), rgba(10,46,87,.92)) center/100% 2px no-repeat;
}
.nav__burgerLines::before,
.nav__burgerLines::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius:999px;
  background:rgba(10,46,87,.92);
}
.nav__burgerLines::before{top:0}
.nav__burgerLines::after{bottom:0}

.mnav{
  position:fixed;
  inset:0;
  z-index:120;
  opacity:0;
  pointer-events:none;
  transition:opacity .20s ease;
}
.mnav.is-open{
  opacity:1;
  pointer-events:auto;
}
.mnav__overlay{
  position:absolute;
  inset:0;
  background:rgba(5,16,32,.55);
  backdrop-filter:blur(6px);
  opacity:0;
  transition:opacity .20s ease;
}
.mnav.is-open .mnav__overlay{opacity:1}
.mnav__panel{
  position:absolute;
  top:10px;
  right:10px;
  bottom:10px;
  width:min(420px, calc(100% - 20px));
  border-radius:20px;
  transform:translate3d(0, 14px, 0) scale(.985);
  transition:transform .22s cubic-bezier(.2,.9,.2,1);
  will-change:transform;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(12,18,32,.12);
  box-shadow:0 26px 90px rgba(10,18,32,.28);
  backdrop-filter:blur(12px);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.mnav.is-open .mnav__panel{transform:translate3d(0,0,0) scale(1)}
.mnav__top{
  padding:16px 16px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid rgba(12,18,32,.10);
}
.mnav__brand{display:flex;align-items:center;gap:10px}
.mnav__close{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(12,18,32,.14);
  background:rgba(255,255,255,.75);
  display:grid;
  place-items:center;
}
.mnav__close svg{
  width:20px;
  height:20px;
  color:rgba(10,46,87,.92);
}
.mnav__links{
  padding:10px 10px 0;
  display:grid;
  gap:6px;
}
.mnav__links a{
  padding:14px 14px;
  border-radius:14px;
  font-weight:900;
  color:rgba(10,46,87,.95);
  background:rgba(15,94,168,.06);
  border:1px solid rgba(15,94,168,.10);
  transition:transform .18s ease, background .18s ease;
}
.mnav__links a:hover{
  transform:translateY(-1px);
  background:rgba(15,94,168,.10);
}
.mnav__links a:focus-visible{
  outline:3px solid rgba(16,184,213,.55);
  outline-offset:2px;
}
.mnav__actions{
  margin-top:auto;
  padding:14px;
  display:grid;
  gap:10px;
  border-top:1px solid rgba(12,18,32,.10);
  background:linear-gradient(180deg, rgba(246,248,251,.55), rgba(255,255,255,.92));
}
.mnav__note{
  margin:2px 0 0;
  font-size:12px;
  color:rgba(12,18,32,.62);
  font-weight:800;
  text-align:center;
}

@media (min-width:980px){
  .nav__inner{
    display:grid;
    grid-template-columns:minmax(250px,320px) minmax(0,1fr) auto;
    align-items:center;
    gap:16px;
  }
  .links{display:flex}
  .links{
    justify-content:center;
    overflow:hidden;
  }
  .nav__cta{
    justify-content:flex-end;
    flex-wrap:nowrap;
  }
  .nav__cta .btn{
    height:38px;
    padding:0 13px;
    font-size:13px;
    border-radius:11px;
  }
  .nav__cta .btn__ic{
    margin-right:8px;
  }
  .nav__burger{display:none}
  .two{grid-template-columns:1.05fr .95fr}
  .cardGrid{grid-template-columns:repeat(3,1fr)}
  .svcGrid{grid-template-columns:repeat(3,1fr)}
  .heroStats{grid-template-columns:repeat(3,1fr)}
  .fRow{grid-template-columns:1fr 1fr}

  .footer__topInner{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
  }
  .footerTrust{
    grid-template-columns:repeat(3,1fr);
    max-width:900px;
  }
  .footer__inner{
    grid-template-columns:1.15fr .75fr .75fr;
  }
  .guarantee__grid{
    grid-template-columns:320px 1fr;
    gap:22px;
  }
  .reviewRow{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (min-width:980px) and (max-width:1240px){
  .brand__logo--full{
    max-width:280px;
  }
  .links a{
    font-size:13px;
    padding:8px 7px;
  }
  .nav__cta .btn{
    padding:0 11px;
    font-size:12px;
  }
  .nav__cta .btn__ic{
    display:none;
  }
}

@media (max-width:700px){
  .heroStats{grid-template-columns:1fr}
  .serviceIntro,
  .svcCTA{
    padding:18px;
  }
  .footer{
    padding:20px 0 14px;
  }
  .footer__top{
    padding:12px 0 16px;
  }
  .footer__logo{
    height:56px;
  }
  .footer__bottomBar{
    flex-direction:column;
    align-items:flex-start;
  }
  .poweredBy{
    gap:10px;
  }
  .poweredBy__label{
    font-size:13px;
  }
  .poweredBy__logo{
    height:20px;
  }
}

@media (max-width:560px){
  .title2{font-size:32px}
  .titleCenter{font-size:30px}
  .quoteForm{padding:18px}
  .brand__logo--full{
    width:auto;
    height:auto;
    max-width:240px;
  }
}

/* BlueWave differentiation layer */
.hero{
  min-height:760px;
  background:
    radial-gradient(circle at 20% 18%, rgba(36,212,239,.22), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(180deg, #051426 0%, #0a2950 58%, #0d3361 100%);
}
.hero__content{
  padding:120px 0 116px;
}
.hero__grid{
  gap:18px;
}
.heroBadgeRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.heroBadge{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(227,244,255,.90);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}
.aboutBand{
  background:linear-gradient(180deg, rgba(245,250,255,.96), #ffffff);
  padding-top:56px;
  padding-bottom:56px;
}
.aboutBand__grid{
  display:grid;
  gap:20px;
  align-items:start;
}
.aboutChecklist{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.aboutChecklist--compact{
  grid-template-columns:1fr;
}
.aboutChecklist__item{
  padding:12px 14px;
  border-radius:16px;
  background:linear-gradient(180deg, #ffffff, rgba(245,250,255,.92));
  border:1px solid rgba(12,18,32,.06);
  box-shadow:0 20px 50px rgba(10,18,32,.05);
}
.aboutChecklist__item strong{
  display:block;
  color:rgba(10,46,87,.96);
  font-size:15px;
  font-weight:900;
}
.aboutChecklist__item span{
  display:block;
  margin-top:4px;
  color:rgba(12,18,32,.68);
  line-height:1.5;
  font-size:14px;
}
.aboutBand__panel{
  display:grid;
}
.aboutPanelCard{
  padding:20px 20px 18px;
  border-radius:22px;
  background:
    radial-gradient(circle at right top, rgba(36,212,239,.18), transparent 30%),
    linear-gradient(180deg, #0c2d55, #123f74);
  color:#fff;
  box-shadow:var(--shadow-lg);
}
.aboutPanelCard__eyebrow{
  display:inline-block;
  color:rgba(215,242,255,.88);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.aboutPanelCard h3{
  margin:10px 0 0;
  font-size:24px;
  line-height:1.2;
  font-weight:900;
}
.aboutPanelCard p{
  margin:10px 0 0;
  color:rgba(229,244,255,.82);
  line-height:1.6;
  font-size:15px;
}
.aboutPanelCard__actions{
  margin-top:14px;
}
.guarantee{
  background:linear-gradient(180deg, #081f3c, #0d315d);
}
.guaranteePanel{
  padding:30px;
  border-radius:30px;
  background:
    radial-gradient(circle at right top, rgba(36,212,239,.16), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow-lg);
}
.guaranteePanel__label{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(214,242,255,.84);
}
.guaranteePanel__intro h2{
  margin:14px 0 0;
  max-width:900px;
  font-size:34px;
  line-height:1.15;
  font-weight:900;
  color:#fff;
}
.guaranteePanel__grid{
  display:grid;
  gap:16px;
  margin-top:24px;
}
.guaranteeMetric{
  padding:18px 18px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.guaranteeMetric strong{
  display:block;
  font-size:16px;
  font-weight:900;
  color:#fff;
}
.guaranteeMetric span{
  display:block;
  margin-top:8px;
  color:rgba(229,244,255,.82);
  line-height:1.6;
}
#reviews{
  padding-top:64px;
  padding-bottom:72px;
}
#reviews .wrap{
  width:min(1120px, calc(100% - 48px));
}
#reviews .sectionHead{
  max-width:760px;
  margin:0 auto 26px;
}
#reviews .titleCenter{
  font-size:clamp(30px, 3.1vw, 46px);
  line-height:1.08;
  letter-spacing:-.04em;
}
#reviews .subtitleCenter{
  font-size:16px;
  line-height:1.6;
}
.standardGrid{
  display:grid;
  gap:18px;
  margin-top:18px;
}
.standardCard{
  background:linear-gradient(180deg, #ffffff, rgba(246,250,255,.94));
  border:1px solid rgba(12,18,32,.06);
  border-radius:22px;
  padding:24px 22px;
  box-shadow:0 22px 65px rgba(10,18,32,.07);
}
.standardCard--featured{
  background:
    radial-gradient(circle at right top, rgba(36,212,239,.12), transparent 24%),
    linear-gradient(180deg, #ffffff, rgba(241,249,255,.96));
}
.standardCard__index{
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(16,184,213,.14), rgba(23,94,168,.10));
  color:rgba(10,46,87,.96);
  font-size:13px;
  font-weight:900;
}
.standardCard h3{
  margin:14px 0 0;
  color:rgba(10,46,87,.96);
  font-size:clamp(22px, 2vw, 26px);
  font-weight:900;
  line-height:1.25;
}
.standardCard p{
  margin:12px 0 0;
  color:rgba(12,18,32,.68);
  line-height:1.7;
  font-size:16px;
}
.reportsSection{
  background:linear-gradient(180deg, #ffffff, #f7fbff);
}
.reportsSection__grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.reportsSection__visual{
  display:grid;
  place-items:center;
}
.reportsMockup{
  width:min(520px, 100%);
  padding:20px;
  border-radius:32px;
  background:
    radial-gradient(circle at center, rgba(36,212,239,.10), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,249,255,.96));
  border:1px solid rgba(12,18,32,.06);
  box-shadow:0 26px 80px rgba(10,18,32,.10);
}
.reportsMockup img{
  width:100%;
  height:auto;
  display:block;
  filter:drop-shadow(0 24px 60px rgba(10,18,32,.14));
}
.reportsList{
  display:grid;
  gap:14px;
  margin-top:22px;
}
.reportsList__item{
  padding:16px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(12,18,32,.06);
  box-shadow:0 18px 46px rgba(10,18,32,.05);
}
.reportsList__item strong{
  display:block;
  color:rgba(10,46,87,.96);
  font-weight:900;
}
.reportsList__item span{
  display:block;
  margin-top:6px;
  color:rgba(12,18,32,.68);
  line-height:1.6;
}
.reportsSection__actions{
  margin-top:22px;
}

@media (min-width:980px){
  .aboutBand__grid{grid-template-columns:1.08fr .92fr}
  .guaranteePanel__grid{grid-template-columns:repeat(3,1fr)}
  .standardGrid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    align-items:stretch;
  }
  .reportsSection__grid{grid-template-columns:.92fr 1.08fr}
}

@media (max-width:700px){
  .guaranteePanel,
  .aboutPanelCard,
  .reportsMockup{
    padding:20px;
  }
  .aboutBand{
    padding-top:42px;
    padding-bottom:42px;
  }
  #reviews{
    padding-top:52px;
    padding-bottom:56px;
  }
  #reviews .wrap{
    width:min(100%, calc(100% - 32px));
  }
  #reviews .sectionHead{
    margin-bottom:20px;
  }
  .standardGrid{
    gap:14px;
  }
  .standardCard{
    padding:20px 18px;
  }
}

/* Global compact layout pass */
.hero{
  min-height:680px;
}
.hero__content{
  padding:92px 0 82px;
}
.hero__grid{
  gap:14px;
  max-width:760px;
}
h1{
  font-size:clamp(36px, 4.5vw, 58px);
  line-height:1.04;
}
.sub{
  font-size:15px;
  line-height:1.55;
  max-width:58ch;
}
.hero__mini{
  margin-top:0;
  font-size:12px;
}
.heroBadge{
  min-height:30px;
  padding:0 12px;
  font-size:11px;
}
.heroStats{
  gap:10px;
}
.heroStat{
  padding:14px 15px;
  border-radius:18px;
}
.heroStat strong{
  font-size:14px;
}
.heroStat span{
  font-size:12px;
  line-height:1.45;
}
.section{
  padding:60px 0;
}
.kicker{
  margin-bottom:8px;
  font-size:15px;
}
.title2{
  font-size:clamp(28px, 3vw, 36px);
  line-height:1.12;
  margin-bottom:8px;
}
.titleCenter{
  font-size:clamp(28px, 3vw, 38px);
  line-height:1.1;
}
.subtitleCenter{
  margin-top:8px;
  font-size:15px;
  line-height:1.55;
}
.lead,.p{
  font-size:15px;
  line-height:1.58;
}
.sectionHead{
  margin-bottom:14px;
}
.serviceIntro{
  margin:18px 0 6px;
  padding:14px 16px;
  border-radius:18px;
}
.serviceIntro__copy strong{
  font-size:15px;
}
.serviceIntro__copy span{
  font-size:14px;
  line-height:1.5;
}
.svcGrid,
.cardGrid,
.standardGrid{
  gap:14px;
}
.svcCard,
.infoCard,
.standardCard{
  padding:18px 16px;
  border-radius:18px;
}
.svcCard h3,
.infoCard h3{
  font-size:17px;
  margin-bottom:8px;
}
.standardCard h3{
  font-size:clamp(19px, 1.7vw, 22px);
  margin-top:12px;
}
.svcCard p,
.infoCard p,
.standardCard p{
  font-size:14px;
  line-height:1.55;
}
.svcIcon,
.infoCard .ic{
  width:44px;
  height:44px;
  margin-bottom:10px;
}
.svcCTA{
  margin-top:18px;
  padding:18px;
  border-radius:20px;
}
.svcCTA__title{
  font-size:21px;
}
.svcCTA__text{
  margin-top:6px;
  font-size:14px;
  line-height:1.55;
}
.aboutBand{
  padding-top:46px;
  padding-bottom:46px;
}
.aboutBand__grid{
  gap:16px;
}
.aboutChecklist{
  margin-top:14px;
  gap:8px;
}
.aboutChecklist__item{
  padding:10px 12px;
}
.aboutChecklist__item strong{
  font-size:14px;
}
.aboutChecklist__item span{
  font-size:13px;
  line-height:1.45;
}
.aboutPanelCard{
  padding:18px 18px 16px;
  border-radius:20px;
}
.aboutPanelCard h3{
  font-size:22px;
}
.aboutPanelCard p{
  font-size:14px;
  line-height:1.5;
}
.guarantee{
  padding:58px 0;
}
.guaranteePanel{
  padding:22px;
  border-radius:24px;
}
.guaranteePanel__intro h2{
  font-size:clamp(26px, 2.8vw, 32px);
}
.guaranteePanel__grid{
  gap:12px;
  margin-top:18px;
}
.guaranteeMetric{
  padding:14px 14px 16px;
  border-radius:16px;
}
.guaranteeMetric strong{
  font-size:15px;
}
.guaranteeMetric span{
  font-size:14px;
  line-height:1.5;
}
#reviews{
  padding-top:48px;
  padding-bottom:56px;
}
#reviews .sectionHead{
  margin-bottom:20px;
}
.reportsSection{
  padding-top:56px;
  padding-bottom:56px;
}
.reportsSection__grid{
  gap:20px;
}
.reportsMockup{
  padding:14px;
  border-radius:24px;
}
.reportsList{
  gap:10px;
  margin-top:16px;
}
.reportsList__item{
  padding:12px 14px;
  border-radius:14px;
}
.reportsList__item strong{
  font-size:14px;
}
.reportsList__item span{
  font-size:13px;
  line-height:1.45;
}
.reportsSection__actions{
  margin-top:16px;
}
.ctaBlock{
  padding:58px 0;
}
.ctaHead h2{
  font-size:clamp(30px, 3.2vw, 36px);
}
.ctaHead p{
  font-size:15px;
}
.ctaTrustRow{
  margin:14px 0 12px;
}
.trustChip{
  min-height:36px;
  padding:8px 10px;
  font-size:12px;
}
.quoteForm{
  margin-top:14px;
  padding:18px;
  border-radius:18px;
}
.quoteForm input,
.quoteForm select,
.quoteForm textarea{
  padding:10px 11px;
}
.footer{
  padding:22px 0 14px;
}
.footer__top{
  padding:14px 0 16px;
}
.footer__inner{
  gap:14px;
  padding-top:16px;
}
.footerTrust{
  gap:8px;
}
.footerTrust__item{
  padding:10px;
}
.footer__logo{
  height:64px;
}

@media (min-width:980px){
  .heroStats{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .svcGrid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .cardGrid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .standardGrid{grid-template-columns:repeat(3, minmax(0, 1fr))}
}

@media (max-width:700px){
  .hero{
    min-height:auto;
  }
  .hero__content{
    padding:84px 0 64px;
  }
  .section,
  .reportsSection,
  .ctaBlock,
  .guarantee{
    padding-top:44px;
    padding-bottom:44px;
  }
  .heroStats,
  .svcGrid,
  .cardGrid,
  .standardGrid,
  .guaranteePanel__grid{
    gap:10px;
  }
}
