:root{
  /* Logo-inspired palette */
  --navy: #1a1f4d;        /* deep navy from "NEW ENGLAND" */
  --blue: #1ea6ff;        /* bright logo blue */
  --sky:  #66d6ff;        /* light accent */
  --ink:  #0d1633;        /* body text */
  --muted:#5b6785;        /* muted text */
  --bg:   #f7fbff;        /* page background */
  --card: #ffffff;        /* cards */
  --line: rgba(16, 24, 64, .10);
  --shadow: 0 18px 60px rgba(16, 24, 64, .12);
  --radius: 18px;
}

*{ 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(900px 520px at 20% -10%, rgba(30,166,255,.20), transparent 60%),
    radial-gradient(800px 520px at 85% 5%, rgba(102,214,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff 55%);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* Topbar */
.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  font-size:14px;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.topbar__text{ color:var(--muted); }
.topbar__link{ color:var(--navy); font-weight:700; }
.topbar__link:hover{ color:var(--blue); }
.dot{ color:var(--muted); }

/* Pills */
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(30,166,255,.12);
  border:1px solid rgba(30,166,255,.22);
  color:var(--navy);
  font-weight:800;
}
.pill--ghost{
  background: rgba(16, 24, 64, .04);
  border:1px solid rgba(16, 24, 64, .10);
  color:var(--navy);
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand__logo{
  width:110px;
  height:65px;
  object-fit:contain;
}
.brand__name{
  font-weight:900;
  color:var(--navy);
  letter-spacing:.2px;
  line-height:1.1;
}
.brand__tag{
  color:var(--muted);
  font-size:13px;
  margin-top:2px;
}

.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.8);
  color:var(--navy);
}
.nav__toggleBars{
  display:block;
  width:18px;
  height:2px;
  background: var(--navy);
  position:relative;
  margin:0 auto;
}
.nav__toggleBars:before,
.nav__toggleBars:after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: var(--navy);
}
.nav__toggleBars:before{ top:-6px; }
.nav__toggleBars:after{ top:6px; }

.nav__menu{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__menu a{
  color:var(--muted);
  font-weight:800;
  font-size:14px;
}
.nav__menu a:hover{ color:var(--navy); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 18px;
  border-radius:14px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  color:#05203a;
  font-weight:900;
  box-shadow: 0 14px 40px rgba(30,166,255,.18);
  border:1px solid rgba(30,166,255,.22);
}
.btn:hover{ filter:brightness(1.02); transform: translateY(-1px); transition: .15s ease; }

.btn--ghost{
  background: rgba(255,255,255,.85);
  color:var(--navy);
  border:1px solid rgba(16,24,64,.12);
  box-shadow:none;
}
.btn--small{ padding:10px 12px; border-radius:12px; font-size:14px; }
.btn--full{ width:100%; }

/* Hero */
.hero{
  position:relative;
  padding:44px 0 28px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:26px;
  align-items:start;
}
.hero__copy h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.02;
  margin:0 0 14px;
  letter-spacing:-.6px;
  color:var(--navy);
}
.accent{ color:var(--blue); }
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}
.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 18px;
}

.trustrow{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
.trustrow__item{
  display:flex;
  gap:10px;
  padding:12px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
}
.trustrow__icon{
  width:28px;
  height:28px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background: rgba(30,166,255,.12);
  border:1px solid rgba(30,166,255,.22);
  color:var(--navy);
  font-weight:900;
}
.trustrow__title{ font-weight:900; font-size:14px; color:var(--navy); }
.trustrow__sub{ color:var(--muted); font-size:12px; margin-top:2px; }

.hero__card .card{
  border:1px solid rgba(16,24,64,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  border-radius: 22px;
  overflow:hidden;
}
.card__header{
  padding:18px 18px 0;
}
.card__header h2{
  margin:0 0 6px;
  font-size:20px;
  letter-spacing:-.2px;
  color:var(--navy);
}
.card__header p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}
.form{ padding:0 18px 18px; }
.form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}
label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(16,24,64,.14);
  background: rgba(255,255,255,.95);
  color:var(--ink);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(30,166,255,.55);
  box-shadow: 0 0 0 4px rgba(30,166,255,.14);
}
textarea{ resize: vertical; }
.span2{ grid-column: 1 / -1; }
.form__note{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
}
.form__note a{ color:var(--blue); text-decoration:underline; }

/* Background glow */
.hero__bg{
  position:absolute;
  inset:-200px -100px auto -100px;
  height:520px;
  background: radial-gradient(620px 280px at 30% 40%, rgba(30,166,255,.16), transparent 60%);
  pointer-events:none;
  z-index:-1;
}

/* Sections */
.section{
  padding:54px 0;
}
.section--alt{
  background: rgba(255,255,255,.60);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.section__head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.3px;
  color:var(--navy);
}
.section__head p{
  margin:0;
  color:var(--muted);
  max-width:520px;
  line-height:1.6;
}

/* Services Grid */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 30px rgba(16,24,64,.06);
}
.service h3{ margin:0 0 8px; font-size:18px; color:var(--navy); }
.service p{ margin:0 0 12px; color:var(--muted); line-height:1.6; }
.service ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
}
.service--highlight{
  background: linear-gradient(180deg, rgba(30,166,255,.14), rgba(255,255,255,.92));
  border-color: rgba(30,166,255,.28);
}
.service__cta{ display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
}
.step__num{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(30,166,255,.12);
  border:1px solid rgba(30,166,255,.22);
  color:var(--navy);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{ margin:0 0 6px; color:var(--navy); }
.step p{ margin:0; color:var(--muted); line-height:1.6; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.shot{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 30px rgba(16,24,64,.06);
}
.shot img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.shot figcaption{
  padding:10px 12px;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}
.center{ display:flex; justify-content:center; margin-top:16px; }

/* Areas */
.areas{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}
.areas__card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
}
.areas__card h3{ margin:0 0 8px; color:var(--navy); }
.areas__card p{ margin:0 0 10px; color:var(--muted); line-height:1.6; }
.muted{ color:var(--muted); }
.areas__cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

.areas__map{
  border-radius: var(--radius);
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.85);
}
.mapPlaceholder{
  height:100%;
  min-height:240px;
  display:grid;
  place-items:center;
  padding:18px;
  color:var(--muted);
  text-align:center;
}

/* FAQ */
.faq{
  display:grid;
  gap:10px;
}
details{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
  padding:14px 16px;
}
summary{
  cursor:pointer;
  font-weight:900;
  color:var(--navy);
}
details p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
}

/* CTA */
.section--cta{
  padding:46px 0;
}
.cta{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:14px;
  border-radius: 22px;
  padding:18px;
  border:1px solid rgba(30,166,255,.24);
  background: linear-gradient(90deg, rgba(30,166,255,.16), rgba(255,255,255,.85));
}
.cta h2{ margin:0 0 8px; color:var(--navy); }
.cta p{ margin:0 0 14px; color:var(--muted); line-height:1.6; }
.cta__buttons{ display:flex; gap:10px; flex-wrap:wrap; }
.cta__mini{
  border-radius: var(--radius);
  padding:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
}
.cta__mini h3{ margin:0 0 8px; color:var(--navy); }
.cta__mini a{ color:var(--blue); text-decoration:underline; }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0 92px;
  background: rgba(255,255,255,.65);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap:14px;
  align-items:start;
}
.footer__brand{ font-weight:900; color:var(--navy); }
.footer__sub{ color:var(--muted); margin-top:6px; }
.footer__links{
  display:flex; flex-direction:column; gap:8px;
  color:var(--muted);
  font-weight:700;
}
.footer__links a:hover{ color:var(--navy); }
.footer__fine{
  color:var(--muted);
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* Sticky actions (mobile) */
.stickyActions{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  display:none;
  gap:10px;
  z-index:60;
}
.stickyActions__btn{
  flex:1;
  text-align:center;
  padding:14px 12px;
  border-radius: 16px;
  border:1px solid rgba(16,24,64,.12);
  background: rgba(255,255,255,.92);
  color:var(--navy);
  font-weight:900;
  box-shadow: 0 14px 34px rgba(16,24,64,.10);
  backdrop-filter: blur(10px);
}
.stickyActions__btn--accent{
  background: linear-gradient(90deg, var(--blue), var(--sky));
  color:#05203a;
  border-color: rgba(30,166,255,.22);
}
.stickyActions__btn--ghost{
  background: rgba(255,255,255,.78);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .trustrow{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .areas{ grid-template-columns: 1fr; }
  .cta{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav__menu{
    display:none;
    position:absolute;
    right:20px;
    top:76px;
    width:min(92vw, 360px);
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:12px;
    border-radius: 18px;
    border:1px solid var(--line);
    background: rgba(255,255,255,.95);
    box-shadow: var(--shadow);
  }
  .nav__menu a{ padding:10px 10px; border-radius:12px; }
  .nav__menu a:hover{ background: rgba(16,24,64,.06); }
  .stickyActions{ display:flex; }
  .shot img{ height:190px; }
}
