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

:root {
  --bg: #f6f8fc;
  --bg-soft: #eef3ff;
  --text: #142038;
  --muted: #4e5b75;
  --primary: #1b4df0;
  --primary-dark: #1238b8;
  --accent: #11b39a;
  --line: #dbe3f3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 46, 106, 0.12);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero {
  padding: 64px 0 44px;
  background: radial-gradient(circle at 18% 18%, #e7edff 0, #f6f8fc 44%, #f6f8fc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  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 {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}

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

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

.section {
  padding: 76px 0;
}

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

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

h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.24;
}

.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 10px 26px rgba(28, 56, 120, 0.08);
}

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

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

p,
.card p,
.service-card p {
  color: var(--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: '✓';
  margin-right: 8px;
  color: var(--accent);
  font-weight: 700;
}

.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, #0f2d80 0%, #1b4df0 56%, #138ab0 100%);
  color: #fff;
}

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

.eyebrow-light {
  color: #bfd1ff;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  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 {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
}

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

details p {
  margin-top: 10px;
}

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

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

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

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

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

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

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: #22314d;
  font-weight: 600;
}

input,
textarea {
  border: 1px solid #d9e2f5;
  border-radius: 10px;
  padding: 10px;
  font-family: inherit;
  font-size: 0.96rem;
}

.full {
  grid-column: 1 / -1;
}

@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: 840px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px;
  }

  .nav.open {
    display: flex;
  }

  .hero-grid,
  .why-grid,
  .authority-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
}

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

  .logo-text {
    font-size: 0.78rem;
  }

  .btn {
    width: 100%;
  }
}