:root {
  --bg: #f4f7fb;
  --white: #ffffff;
  --text: #122033;
  --muted: #5f6f85;
  --line: #dce6f2;
  --primary: #1d63c9;
  --primary-dark: #114b9c;
  --soft: #eaf2ff;
  --shadow: 0 18px 50px rgba(16, 35, 63, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,247,251,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,230,242,0.9);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}
.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover { color: var(--primary); }
.menu-toggle {
  display: none;
  font-size: 1.4rem;
  background: transparent;
  border: none;
}
.hero {
  padding: 56px 0 28px;
}
.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  background: var(--soft);
  color: var(--primary-dark);
  border: 1px solid #cfe0ff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-copy h1,
.section-head h2,
.split-grid h2,
.contact-grid h2 {
  margin: 0 0 16px;
  line-height: 1.02;
  font-size: clamp(2rem, 5vw, 4.1rem);
}
.hero-copy p,
.section-head p,
.split-grid p,
.contact-grid p,
.card p,
.step p,
.faq-list p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 22px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 28px rgba(29,99,201,.24);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary {
  background: white;
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.full { width: 100%; }
.hero-points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin: 0;
}
.hero-points li {
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-points li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
}
.hero-media img,
.image-stack img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}
.trust-bar {
  padding: 18px 0 12px;
}
.trust-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-grid > div,
.stat-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.trust-grid strong,
.stat-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.trust-grid span,
.stat-card span { color: var(--muted); }
.section {
  padding: 84px 0;
}
.alt { background: #eef4fb; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
.cards,
.steps-grid {
  display: grid;
  gap: 20px;
}
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}
.review-grid {
  grid-template-columns: repeat(3, 1fr);
}
.card,
.step,
.contact-card,
.hours-box,
.info-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3,
.step h3,
.contact-card h3,
.hours-box h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.feature-list > div {
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.feature-list strong,
.feature-list span { display: block; }
.feature-list span { color: var(--muted); margin-top: 6px; }
.image-stack {
  position: relative;
}
.info-box {
  width: min(100%, 320px);
  position: absolute;
  left: 24px;
  bottom: 24px;
}
.info-box strong,
.info-box span { display: block; }
.info-box span { margin-top: 8px; color: var(--muted); line-height: 1.5; }
.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}
.step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}
.stat-card {
  text-align: center;
}
.stat-card strong {
  font-size: 2rem;
  color: var(--primary-dark);
}
.review-card p {
  font-style: italic;
  margin-top: 0;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.contact-list a,
.contact-list p {
  margin: 0;
}
.hours-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.hours-box li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}
.contact-card {
  display: grid;
  gap: 14px;
}
.site-footer {
  background: #0d1b2f;
  color: #c7d4e4;
  padding-top: 46px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 24px;
}
.site-footer h4 {
  margin-top: 0;
  margin-bottom: 14px;
  color: white;
}
.site-footer a {
  display: block;
  margin-bottom: 10px;
}
.footer-brand span,
.footer-brand { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 28px;
  padding: 18px 0 24px;
}
.legal-page {
  padding: 72px 0;
}
.legal-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 36px;
}
.legal-card h1 { margin-top: 0; }
.legal-card h2 { margin-top: 28px; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.8; }

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .services-grid,
  .review-grid,
  .steps-grid,
  .trust-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 14px;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .services-grid,
  .review-grid,
  .steps-grid,
  .trust-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1,
  .section-head h2,
  .split-grid h2,
  .contact-grid h2 {
    line-height: 1.08;
  }
  .info-box {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}
