:root{
  --bg: #0a1220;
  --text: #0b1020;
  --white:#ffffff;
  --muted: rgba(255,255,255,.72);

  --cyan:#00b3ff;
  --cyan2:#0078ff;
  --dark:#0a1220;
  --dark2:#0e1a2f;

  --line: rgba(255,255,255,.12);

  --radius: 16px;
  --shadow: 0 18px 45px rgba(0,0,0,.28);
  --shadow2: 0 10px 25px rgba(0,0,0,.18);

  --wrap: 1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f3f6fb;
  color: #0b1020;
  line-height: 1.55;
}
a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.wrap{
  width: min(var(--wrap), 100% - 32px);
  margin-inline:auto;
}
.muted{ color: rgba(11,16,32,.70); }
.tiny{ font-size: 12px; }

/* Topbar */
.topbar{
  background: #1c212a;
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: sticky;
  top: 0;
  z-index: 60;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand__logo{
  height: 34px;
  width: auto;
}
.brand__text{
  font-weight: 900;
  letter-spacing: .02em;
  display:flex;
  align-items:baseline;
  gap: 0;
}
.brand__text strong{ color: var(--cyan); font-size: 22px; }
.brand__text span{ color: #fff; font-size: 22px; }
.brand__text em{
  font-style: normal;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin-left: 6px;
}

/* Desktop nav */
.nav{
  display:none;
  gap: 18px;
  align-items:center;
  font-weight: 700;
  text-transform: lowercase;
}
.nav a{
  opacity:.9;
  padding: 10px 8px;
  border-bottom: 2px solid transparent;
}
.nav a:hover{ opacity:1; }
.nav a.is-active{
  border-bottom-color: var(--cyan);
}

/* Burger */
.burger{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:grid;
  place-content:center;
  gap: 4px;
  cursor:pointer;
}
.burger span{
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 2px;
}

/* Mobile */
.mobile{
  background: #1c212a;
  border-top: 1px solid rgba(255,255,255,.10);
}
.mobile__inner{
  display:grid;
  gap: 10px;
  padding: 12px 0 16px;
  font-weight: 800;
}
.mobile__inner a{
  padding: 10px 12px;
  border-radius: 12px;
}
.mobile__inner a:hover{ background: rgba(255,255,255,.06); }

/* Hero */
.hero{
  position: relative;
  min-height: 560px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color: #fff;
}
.hero__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero__shade{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 30% 30%, rgba(0,179,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.60) 60%, rgba(0,0,0,.72));
}
.hero__inner{
  position: relative;
  z-index: 2;
  display:grid;
  gap: 18px;
  align-items:center;
  padding: 70px 0 90px;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.hero__sub{
  margin: 0 0 16px;
  max-width: 68ch;
  color: rgba(255,255,255,.86);
  font-weight: 600;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom: 12px;
}
.hero__meta{
  display:flex;
  gap: 10px;
  align-items:center;
  font-weight: 700;
}
.stars{ color: #fbbf24; letter-spacing: 1px; }
.hero__dots{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.35);
}
.dot.is-on{ background: var(--cyan); border-color: var(--cyan); }

/* Van overlay */
.hero__right{ display:none; }
.van{
  width: min(520px, 42vw);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.5));
  transform: rotate(-2deg);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 900;
  border: none;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn--primary{
  background: var(--cyan);
  color: #07131f;
  box-shadow: var(--shadow2);
}
.btn--ghost{
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.btn--block{ width: 100%; }

/* Band */
.band{
  background: linear-gradient(180deg, var(--cyan), #0aa1e6);
  color: #fff;
  padding: 26px 0;
}
.band__inner{
  display:grid;
  gap: 14px;
}
.band__item{
  display:grid;
  gap: 4px;
  text-align:center;
}
.band__item strong{ font-weight: 900; }
.band__item span{ opacity:.92; }
.band__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top: 8px;
}
.pillBtn{
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(255,255,255,.92);
  color: #07131f;
}
.pillBtn--dark{
  background: rgba(7,19,31,.92);
  color: #fff;
}

/* Sections */
.section{ padding: 56px 0; }
.section--blue{
  background: linear-gradient(180deg, #0aa1e6, #0b6fe0);
  color: #fff;
}
.section--dark{
  background: #0b1020;
  color: #fff;
}
.section__title{
  text-transform: lowercase;
  text-align:center;
  margin: 0 0 18px;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.section__title--light{ color: #fff; }

/* Service cards */
.cards{
  display:grid;
  gap: 16px;
}
.card{
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow2);
  color: #0b1020;
  position: relative;
}
.card__tag{
  position:absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,179,255,.92);
  color: #07131f;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.card__img{
  height: 190px;
  background-size: cover;
  background-position: center;
}
.card__body{
  padding: 16px;
}
.card__body h3{ margin: 0 0 6px; font-weight: 900; }
.card__body p{ margin: 0 0 10px; color: rgba(11,16,32,.78); font-weight: 600; }
.card__body ul{ margin: 0 0 10px; padding-left: 18px; }
.card__body li{ margin: 8px 0; font-weight: 600; }
.card__link{
  font-weight: 900;
  color: #0b6fe0;
}
.card__link:hover{ text-decoration: underline; }

/* Split */
.split{
  display:grid;
  gap: 16px;
  align-items:start;
}
.checks{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}
.check{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,179,255,.10);
  border: 1px solid rgba(0,179,255,.18);
  font-weight: 800;
}

/* Quote box */
.quoteBox{
  background: #fff;
  border: 1px solid rgba(11,16,32,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.quoteBox h3{ margin: 0 0 6px; font-weight: 900; }
.quick{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 12px;
}

/* Forms */
.form{ display:grid; gap: 12px; margin-top: 10px; }
.form label{ display:grid; gap: 6px; font-weight: 800; }
.form input, .form textarea, .form select{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11,16,32,.14);
  font-family: inherit;
  font-size: 15px;
}
.form input:focus, .form textarea:focus, .form select:focus{
  outline:none;
  border-color: rgba(0,179,255,.55);
  box-shadow: 0 0 0 4px rgba(0,179,255,.14);
}

/* Reviews */
.reviews{
  display:grid;
  gap: 14px;
}
.review{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.review blockquote{
  margin: 0 0 10px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.review figcaption{
  color: rgba(255,255,255,.72);
  font-weight: 700;
}

/* Contact */
.contactCards{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}
.contactCard{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(0,179,255,.08);
  border: 1px solid rgba(0,179,255,.18);
  font-weight: 900;
}
.contactCard span{ font-weight: 700; opacity:.9; }

.areas{ margin-top: 16px; }
.chips{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 10px; }
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,16,32,.06);
  border: 1px solid rgba(11,16,32,.10);
  font-weight: 800;
  font-size: 13px;
}

.map{
  background: #fff;
  border: 1px solid rgba(11,16,32,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.map__frame{
  margin-top: 12px;
  height: 240px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(11,16,32,.10);
  background: #eef4fb;
}
.map__frame img{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* Footer */
.footer{
  background: #0b1020;
  color: rgba(255,255,255,.9);
  padding: 28px 0;
}
.footer__inner{
  display:grid;
  gap: 10px;
}
.footer__brand strong{ font-weight: 900; }
.footer__legal{ font-size: 13px; opacity:.8; }

/* Floating CTA */
.float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  background: var(--cyan);
  color: #07131f;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (min-width: 720px){
  .nav{ display:flex; }
  .burger{ display:none; }

  .hero__inner{
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
  }
  .hero__right{ display:flex; justify-content:flex-end; align-items:flex-end; }

  .band__inner{
    grid-template-columns: repeat(3, 1fr);
    align-items:center;
  }
  .band__actions{
    grid-column: 1 / -1;
  }

  .cards{
    grid-template-columns: repeat(3, 1fr);
  }

  .split{
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
  }

  .reviews{
    grid-template-columns: repeat(3, 1fr);
  }

  .contactCards{
    grid-template-columns: repeat(3, 1fr);
  }
}