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

:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --accent: #0ea5e9;
  --border: #dbe4ff;
  --shadow: 0 20px 45px rgba(17, 24, 39, 0.08);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.section {
  padding: 88px 0;
}

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

h1, h2, h3, h4 {
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }

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

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

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

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

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

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

.main-nav a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.btn-sm { padding: 10px 15px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

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

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #dbe4ff;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1e293b;
  margin: 4px auto;
}

.hero {
  padding: 76px 0 40px;
}

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

.hero-text {
  margin: 16px 0 24px;
  color: var(--muted);
  max-width: 62ch;
}

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

.hero-highlights {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.92rem;
}

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

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

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

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

.card, .service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(30, 64, 175, 0.06);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e8f1ff;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.why-grid,
.trust-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

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

.check-list li::before {
  content: '✓';
  color: var(--primary);
  margin-right: 10px;
  font-weight: 800;
}

.why-panel,
.trust-cards article,
.contact-form,
.cta-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-panel { padding: 26px; }
.why-panel h3 { margin: 8px 0; }

.trust-cards {
  display: grid;
  gap: 12px;
}
.trust-cards article { padding: 18px; }

.address-list {
  margin-top: 16px;
  list-style: none;
  display: grid;
  gap: 9px;
}

.address-list a { color: var(--primary-dark); }

.contact-form {
  padding: 24px;
}

.contact-form h3 {
  margin-bottom: 10px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cdd9ff;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}

.form-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-message {
  margin-top: 10px;
  font-weight: 600;
  min-height: 24px;
}

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

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

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

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

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

.cta-box {
  padding: 34px;
  text-align: center;
  background: linear-gradient(160deg, #f3f8ff, #ffffff);
}

.cta-box p {
  margin: 12px auto 18px;
  max-width: 720px;
  color: var(--muted);
}

.site-footer {
  margin-top: 70px;
  background: #0f172a;
  color: #e5e7eb;
  padding: 54px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
}

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

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

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

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, .25);
  padding-top: 14px;
  font-size: .9rem;
  color: #cbd5e1;
}

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

  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 4%;
    width: min(300px, 92vw);
    background: #fff;
    border: 1px solid #dbe4ff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .grid-4,
  .grid-3 { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
}