:root {
  --primary: #1f4cff;
  --primary-dark: #1538bf;
  --ink: #0f172a;
  --muted: #475569;
  --bg: #f8fafc;
  --card: #ffffff;
  --line: #e2e8f0;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eef3ff 0%, #f8fafc 220px, #f8fafc 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(248, 250, 252, 0.86);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

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

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

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #44a3ff);
  color: #fff;
  display: grid;
  place-items: center;
}

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

.menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

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

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

h1, h2, h3, h4 {
  margin-top: 0;
}

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

h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #dbe7ff;
  color: #1e3a8a;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  padding: 13px 20px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

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

.btn-ghost {
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 12px 18px;
}

.btn-sm { padding: 9px 13px; border: 1px solid #cbd5e1; border-radius: 10px; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.section { padding: 74px 0; }
.section-alt { background: #f1f5ff; }

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

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.icon {
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eef2ff;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}

.check-list { padding-left: 18px; line-height: 1.9; color: #1e293b; }

.highlight-box {
  background: linear-gradient(140deg, #0f172a, #1d4ed8);
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.trust-cards { display: grid; gap: 12px; }
.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

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

.cta-final {
  background: linear-gradient(120deg, #0d1b3f, #1d4ed8);
  color: #fff;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, .95);
  padding: 22px;
  border-radius: 16px;
  color: #0f172a;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  font-weight: 600;
}

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

.form-status { min-height: 20px; font-weight: 600; margin: 8px 0 0; }

.site-footer {
  background: #020617;
  color: #cbd5e1;
  padding-top: 44px;
}

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

.site-footer a { color: #dbeafe; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(148, 163, 184, .2); margin-top: 26px; padding: 18px 0; }

@media (max-width: 980px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .hero-grid, .two-col, .cta-box, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: 76px;
    right: 4%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 12px;
    min-width: 210px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .menu.open { display: flex; }
}
