*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1E293B;
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #DBEAFE;
  --navy: #0B1228;
  --navy-2: #111A36;
  --dark: #1E293B;
  --dark-light: #334155;
  --grey: #64748B;
  --grey-light: #94A3B8;
  --grey-bg: #F8FAFC;
  --grey-border: #E2E8F0;
  --section-tint: #EEF3FB;
  --emerald: #10B981;
  --amber: #F59E0B;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4em; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ─── NAV ───────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-border);
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 20px; gap: 16px;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 0.92rem; font-weight: 500;
  color: var(--grey); position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); text-decoration: none; }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--blue); border-radius: 1px;
  transition: width 0.2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta, .nav-links a.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff !important; padding: 9px 18px; border-radius: 10px;
  font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 2px 10px rgba(37,99,235,0.3);
  margin-left: 4px;
}
.nav-cta:hover, .nav-links a.nav-cta:hover {
  background: var(--blue-dark) !important; text-decoration: none; color: #fff !important;
}
.nav-cta::after, .nav-links a.nav-cta::after { display: none !important; }
.nav-cta svg { width: 14px; height: 14px; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; z-index: 1001;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none !important;
  position: fixed !important;
  top: 64px !important;
  left: 0 !important; right: 0 !important;
  background: #fff !important; z-index: 998 !important;
  padding: 16px 20px 24px !important;
  border-top: 1px solid var(--grey-border) !important;
  border-bottom: 1px solid var(--grey-border) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10) !important;
  flex-direction: column !important; gap: 2px !important;
  max-height: calc(100vh - 64px) !important; overflow-y: auto !important;
}
.mobile-menu.active { display: flex !important; }
.mobile-menu > a {
  display: block !important; width: 100% !important;
  padding: 14px 16px !important;
  font-size: 1.05rem !important; font-weight: 500 !important;
  color: var(--dark) !important; border-radius: 10px !important;
  text-align: left !important;
}
.mobile-menu > a:hover { background: var(--grey-bg) !important; text-decoration: none; }
.mobile-menu > a.btn-primary {
  margin-top: 10px !important; text-align: center !important;
  background: var(--blue) !important; color: #fff !important;
  padding: 16px 20px !important;
}
.mobile-menu-backdrop {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: rgba(15,23,42,0.35); z-index: 997;
  backdrop-filter: blur(4px);
}
.mobile-menu-backdrop.active { display: block; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 10%, rgba(59,130,246,0.30) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(139,92,246,0.22) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 60px 0 70px;
  overflow: hidden;
}
/* Variant with a town hero photo behind a dark overlay */
.hero.has-image { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); }
.hero .hero-bgimg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero .hero-bgimg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(11,18,40,0.55) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(11,18,40,0.55) 0%, transparent 50%),
    linear-gradient(180deg, rgba(11,18,40,0.45) 0%, rgba(11,18,40,0.75) 100%);
}
.hero.has-image .hero-inner { position: relative; z-index: 2; }
.hero-photo-credit {
  position: absolute; bottom: 8px; right: 12px;
  z-index: 3; font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
}
.hero-photo-credit a { color: rgba(255,255,255,0.75); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(147,197,253,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,197,253,0.10) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 900px; margin: 0 auto; padding: 0 20px; text-align: center; }
.hero-trust {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 22px;
  color: rgba(255,255,255,0.92);
}
.hero-trust svg { width: 12px; height: 12px; fill: var(--amber); }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero h1 .hl {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 26px; line-height: 1.55;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 30px;
}
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px;
  font-weight: 700; font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-outline {
  background: rgba(255,255,255,0.10); color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.18); text-decoration: none; color: #fff; }
.hero-bullets {
  list-style: none; padding: 0;
  display: inline-flex; flex-wrap: wrap; gap: 18px;
  justify-content: center;
}
.hero-bullets li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9rem; color: rgba(255,255,255,0.88);
}
.hero-bullets svg { width: 14px; height: 14px; flex-shrink: 0; color: #6EE7B7; }

/* ─── SECTIONS ──────────────────────────────────── */
.section { padding: 56px 0; }
.section-tint { background: var(--section-tint); }
.section-grey { background: var(--grey-bg); }
.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 18px; color: var(--dark);
}
.section-dark h2 { color: #fff; }
.section h3 {
  font-size: 1.15rem; font-weight: 700;
  margin: 18px 0 8px; color: var(--dark);
}
.section-dark h3 { color: #fff; }
.section p {
  font-size: 1.02rem; color: var(--dark-light);
  margin-bottom: 14px; line-height: 1.7;
}
.section-dark p { color: rgba(255,255,255,0.88); }
.section ul { margin-bottom: 14px; }
.section li { margin-bottom: 6px; }

/* Service grid */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 18px; }
@media (min-width: 700px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
.svc-card {
  background: #fff; border: 1px solid var(--grey-border);
  border-radius: 12px; padding: 18px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.svc-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(37,99,235,0.08); }
.svc-card h3 { margin-top: 0; margin-bottom: 6px; }
.svc-card p { font-size: 0.95rem; margin-bottom: 0; }

/* Why list */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-item .tick {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--blue-light); color: var(--blue);
  border-radius: 100px; display: flex; align-items: center; justify-content: center;
}
.why-item .tick svg { width: 14px; height: 14px; }
.why-item h3 { margin: 0 0 4px; font-size: 1rem; }
.why-item p { font-size: 0.92rem; margin: 0; color: var(--grey); }

/* FAQ */
.faq-item {
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 18px 22px; margin-bottom: 12px;
  background: #fff;
}
.faq-item h3 { font-size: 1.05rem; margin: 0 0 8px; color: var(--dark); }
.faq-item p { font-size: 0.97rem; margin: 0; color: var(--dark-light); }

/* CTA section */
.cta-final {
  background: linear-gradient(135deg, var(--blue) 0%, #6366F1 100%);
  color: #fff; text-align: center; padding: 56px 20px;
}
.cta-final h2 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; }
.cta-final p { color: rgba(255,255,255,0.9); margin-bottom: 22px; font-size: 1.05rem; }
.cta-final .btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  padding: 14px 26px; border-radius: 10px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-final .btn-white:hover { transform: translateY(-1px); text-decoration: none; }
.cta-phone { display: block; margin-top: 14px; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.cta-phone a { color: #fff; font-weight: 700; }

/* Cross-link grid */
.area-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-top: 14px;
}
@media (min-width: 600px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area-grid a {
  background: #fff; border: 1px solid var(--grey-border);
  padding: 10px 14px; border-radius: 8px;
  font-size: 0.92rem; color: var(--dark);
  transition: border-color 0.2s, color 0.2s;
}
.area-grid a:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }

/* ─── FOOTER ────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px; padding-bottom: 32px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; } }
.footer h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.footer-logo img { height: 56px; width: auto; background: #fff; padding: 6px 12px; border-radius: 8px; margin-bottom: 12px; }
.footer p, .footer a { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.65; }
.footer a:hover { color: var(--blue); }
.footer-links a { display: block; padding: 3px 0; }
.footer .nap strong { color: #fff; font-weight: 600; display: block; margin-bottom: 4px; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 18px; margin-top: 10px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
}
