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

:root {
  --bg: #f7f9fc;
  --bg-soft: #eef3ff;
  --text: #172033;
  --text-muted: #4f5d78;
  --primary: #1a4dff;
  --primary-dark: #1237b5;
  --accent: #18b6a3;
  --white: #ffffff;
  --line: #dbe3f3;
  --shadow: 0 18px 45px rgba(15, 43, 98, 0.12);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

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

.nav-cta {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 42px;
  height: 42px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--text);
  margin: 6px 0;
}

.hero {
  padding: 60px 0 40px;
  background: radial-gradient(circle at 20% 20%, #e8eeff 0, #f7f9fc 45%, #f7f9fc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-sub {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}

.hero-highlights {
  list-style: none;
  color: var(--text-muted);
  display: grid;
  gap: 7px;
}

.hero-image-wrap {
  position: relative;
}

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

.section {
  padding: 76px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.25;
}

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

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

.card,
.service-card,
.trust-box,
.authority-card,
.map-card,
.final-cta-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 25px rgba(31, 60, 128, 0.08);
}

.icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card h3,
.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.card p,
.service-card p,
p {
  color: var(--text-muted);
}

.why-grid,
.authority-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

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

.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}

.mini-stats {
  margin-top: 15px;
  display: grid;
  gap: 12px;
}

.mini-stats strong {
  display: block;
}

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

.section-gradient {
  background: linear-gradient(135deg, #0f2e82, #1a4dff 55%, #188ab6);
  color: #fff;
}

.section-gradient p,
.section-gradient h2,
.section-gradient strong,
.section-gradient span {
  color: #fff;
}

.eyebrow-light {
  color: #b5cbff;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 290px;
  border: none;
  border-radius: 12px;
}

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

.contact-list a {
  color: var(--primary-dark);
  text-decoration: none;
}

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

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

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

details p {
  margin-top: 10px;
}

.final-cta {
  padding-top: 20px;
}

.final-cta-box {
  text-align: center;
  background: linear-gradient(140deg, #ffffff, #f3f7ff);
}

.footer {
  background: #0d1426;
  color: #e9edff;
  margin-top: 30px;
}

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

.footer h3,
.footer h4 {
  margin-bottom: 8px;
  color: #fff;
}

.footer a {
  color: #b6c7ff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 14px 10px;
  font-size: 0.92rem;
}

@media (max-width: 1000px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-block; }
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    padding: 14px;
  }
  .nav.open { display: flex; }
  .hero-grid,
  .why-grid,
  .authority-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .benefits-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .logo-text {
    font-size: 0.78rem;
  }
  .btn {
    width: 100%;
  }
}