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

:root {
  --bg: #f3f6fb;
  --white: #ffffff;
  --text: #1b2430;
  --muted: #5c6b7a;
  --primary: #0a5bd3;
  --primary-dark: #0948a8;
  --accent: #10b981;
  --shadow: 0 12px 35px rgba(15, 37, 64, 0.12);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10, 91, 211, 0.1);
}

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

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

.brand-icon {
  font-size: 1.5rem;
}

.brand strong {
  font-size: 0.92rem;
  display: block;
  letter-spacing: 0.2px;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 13px 20px;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2d79ea);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(10, 91, 211, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline {
  border: 2px solid #c9d8ef;
  color: var(--primary-dark);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.hero {
  padding: 72px 0 52px;
}

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

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

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero p {
  color: var(--muted);
  max-width: 620px;
}

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

.quick-points {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #2b3a4d;
}

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

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
}

.section-head {
  margin-bottom: 30px;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.cards-grid,
.services-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.service-card,
.trust-item,
.feature-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.icon {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.card h3,
.service-card h3 {
  margin-bottom: 8px;
}

.card p,
.service-card p,
.trust-item p,
.feature-box p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.list-check,
.contact-list {
  margin-top: 16px;
  padding-left: 18px;
  color: var(--muted);
}

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

.faq-list details {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin-top: 8px;
  color: var(--muted);
}

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

.cta-final {
  background: linear-gradient(120deg, #0b4aa8, #1274d8);
  color: #fff;
}

.cta-box {
  text-align: center;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 8px;
}

.site-footer {
  background: #0e1726;
  color: #dce6f8;
  padding: 48px 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 24px;
}

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

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(220, 230, 248, 0.18);
  margin-top: 18px;
  padding-top: 16px;
  font-size: 0.92rem;
  color: #b3c2de;
}

@media (max-width: 1024px) {
  .cards-grid,
  .services-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e6edf8;
    padding: 16px 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.active {
    display: flex;
  }

  .cards-grid,
  .services-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }
}