* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #0b4ea2;
  --primary-2: #1d7be0;
  --accent: #0ea5e9;
  --border: #dbe7ff;
  --shadow: 0 10px 30px rgba(8, 47, 107, 0.12);
  --radius: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 800;
}

.brand-text {
  font-weight: 700;
  font-size: 0.98rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, filter .2s ease;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-sm { padding: 10px 16px; font-size: .92rem; }

.btn-outline {
  background: transparent;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
  box-shadow: none;
}

.hero-grid, .why-grid, .authority-grid, .location-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-subtitle { color: var(--muted); max-width: 60ch; }

.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 360px;
}

.hero-badges {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #0b294d;
  font-weight: 500;
}

.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head p { color: var(--muted); }

.cards-grid {
  display: grid;
  gap: 16px;
}

.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 20px rgba(3, 30, 66, 0.06);
}

.card h3 { margin: 10px 0 8px; font-size: 1.1rem; }
.card p { color: var(--muted); }
.icon { font-size: 1.5rem; }

.check-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.check-list li::before {
  content: '✔';
  color: var(--primary);
  margin-right: 8px;
}

.highlight-box, .cta-box {
  background: linear-gradient(140deg, #0b4ea2, #1e74d8);
  color: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.highlight-box p, .cta-box p { color: #e6f0ff; margin: 10px 0 18px; }

.stats {
  display: grid;
  gap: 12px;
}

.stat-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 6px;
}

.map-box iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin-top: 10px;
  color: var(--muted);
}

.footer {
  background: #071a33;
  color: #dbeafe;
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer h3, .footer h4 { color: #fff; margin-bottom: 8px; }
.footer a { color: #b9dbff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 26px;
  padding: 18px 0;
  text-align: center;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

@media (max-width: 980px) {
  .hero-grid, .why-grid, .authority-grid, .location-grid,
  .cols-4, .cols-3, .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: block; }

  .menu {
    position: absolute;
    right: 4%;
    top: 76px;
    width: min(320px, 92%);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu.open { display: flex; }
}
