/* ---------- Base ---------- */
:root{
  --bg: #ffffff;
  --fg: #0b1220;
  --muted:#5b6b81;
  --brand:#00AEEF; /* bright blue to match logo background */
  --brand-ink:#032c3a;
  --card:#f7f9fc;
  --ring: rgba(0,174,239,0.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--fg);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;height:auto;display:block}

/* ---------- Layout ---------- */
.container{max-width:1100px;margin-inline:auto;padding: clamp(16px, 3vw, 28px)}
.section{padding-block: clamp(24px, 6vw, 64px)}
.center{text-align:center}

/* ---------- Announcement ---------- */
.announcement{
  background: linear-gradient(90deg, var(--brand), #66d4ff);
  color:#fff;
  padding:12px 16px;
  text-align:center;
  font-weight:700;
}
.announcement .map-link{
  color:#fff;
  text-decoration: underline;
  margin-left:.75rem;
}

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index:50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom:1px solid #eef1f6;
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:16px}
.brand img{height:48px; width:auto}
.menu a{
  color:var(--fg); text-decoration:none; margin-left:18px; font-weight:600;
}
.menu a:hover{color:var(--brand)}

/* ---------- Hero ---------- */
.hero{display:grid; grid-template-columns: 1.3fr 1fr; gap: clamp(16px, 4vw, 40px); align-items: center;}
.hero h1{font-size: clamp(28px, 5vw, 48px); line-height:1.1; margin:0 0 12px}
.lede{font-size: clamp(16px, 2.2vw, 20px); color:var(--muted); margin:0 0 20px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:10px}
.trust{margin:10px 0 0; padding-left:18px; color:var(--muted)}

.hero-card{
  background:var(--card);
  border:1px solid #e6ebf2;
  padding:20px;
  border-radius:16px;
  box-shadow: 0 4px 14px rgba(10,22,50,.05);
}
.hero-card h3{margin-top:0}
.hero-card .btn.full{width:100%; margin-top:10px}
.hero-card .btn.subtle{background:#fff; border-color:#e6ebf2}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block; border:2px solid var(--brand); color:var(--brand-ink);
  padding:10px 16px; border-radius:999px; text-decoration:none; font-weight:800;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease;
  background:#e6f8ff;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 6px 16px var(--ring)}
.btn.primary{background: var(--brand); color:#fff; border-color: var(--brand)}
.btn.outline{background: transparent}
.btn.small{padding:8px 12px; font-weight:700}

/* ---------- Services grid ---------- */
.grid{
  display:grid;
  grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
  gap:18px;
  margin-top:20px;
}
.card{
  background:var(--card);
  border:1px solid #e6ebf2;
  padding:18px;
  border-radius:14px;
}
.card h3{margin-top:0}

/* ---------- Pricing ---------- */
.price-grid{
  display:grid;
  grid-template-columns: repeat( auto-fit, minmax(180px, 1fr) );
  gap:16px;
  margin-top:16px;
}
.price-card{
  background: linear-gradient(180deg, #ffffff, #f5fbff);
  border:1px solid #e6f2fa;
  border-radius:14px;
  padding:18px;
  text-align:center;
}
.price{font-size:28px; font-weight:800; color:var(--brand-ink); margin:.25rem 0 0}
.fineprint{color:var(--muted); font-size:14px}

/* ---------- Reviews ---------- */
.reviews{
  display:grid; gap:14px;
  grid-template-columns: repeat( auto-fit, minmax(260px, 1fr) );
  margin-top:14px;
}
.reviews blockquote{
  margin:0; padding:16px; border-radius:12px;
  background:#fff; border:1px solid #eef1f6;
  box-shadow: 0 1px 6px rgba(10,22,50,.04);
  font-style: italic;
}
.rating-badge{
  display:inline-block; background:#16181d; color:#fff; padding:6px 10px; border-radius:999px; margin-top:12px;
}

/* ---------- FAQ ---------- */
.faq details{
  background:#fff; border:1px solid #eef1f6; border-radius:10px; padding:12px 14px; margin-bottom:10px;
}
.faq summary{font-weight:700; cursor:pointer}
.faq p{margin:.5rem 0 0}

/* ---------- Footer ---------- */
.site-footer{background:#0b1220; color:#c8d1e1; margin-top:40px}
.footer-grid{display:grid; gap:18px; grid-template-columns: repeat(auto-fit,minmax(220px,1fr))}
.site-footer a{color:#e3f6ff}
.legal{border-top:1px solid #1e273a; text-align:center; padding:12px; font-size:14px; color:#8fa2c6}
.tagline{color:#e3f6ff; font-weight:700}

/* ---------- Mobile call button ---------- */
.mobile-call{
  position: fixed; bottom:14px; right:14px;
  background:var(--brand); color:#fff; text-decoration:none;
  border-radius:999px; padding:12px 16px; font-weight:800; box-shadow: 0 10px 22px var(--ring);
}
@media (min-width: 860px){
  .mobile-call{display:none}
}
@media (max-width: 860px){
  .hero{grid-template-columns: 1fr}
  .brand img{height:40px}
}
