:root {
  --blue: #1646b8;
  --blue-dark: #0c2f84;
  --blue-deep: #102b69;
  --text: #1c2440;
  --muted: #5f6784;
  --bg: #f4f6fb;
  --line: #dfe4f0;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.logo { font-weight: 800; font-size: 2rem; letter-spacing: .02em; color: var(--blue-deep); }
.main-nav { display: flex; justify-content: center; gap: 28px; font-weight: 700; color: var(--blue-deep); }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; font-weight: 700; color: var(--blue-deep); }
.header-contact a:last-child { font-size: .95rem; font-weight: 500; color: var(--muted); }
.hero {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 44%, #e8edf8 44%, #eef2fb 100%);
  padding: 54px 0 36px;
}
.hero-grid, .two-col, .contact-grid { display: grid; gap: 40px; align-items: center; }
.hero-grid { grid-template-columns: 1.1fr .95fr; }
.hero-copy h1 { color: var(--white); font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.1; margin: 0 0 8px; }
.lead { color: rgba(255,255,255,.9); font-size: 1.45rem; margin: 0 0 22px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 10px; font-weight: 700;
  border: 2px solid transparent; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-light { background: var(--white); color: var(--blue-deep); }
.btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-outline-dark { border-color: var(--blue); color: var(--blue); }
.hero-points { list-style: none; padding: 0; margin: 0; color: var(--white); font-size: 1.18rem; }
.hero-points li { margin: 10px 0; padding-left: 28px; position: relative; }
.hero-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: #d6e4ff; font-weight: 800;
}
.card-image {
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(16,43,105,.15);
}
.section { padding: 72px 0; }
.section-light { background: var(--bg); }
.two-col { grid-template-columns: 1fr 1fr; }
.section-kicker { color: var(--blue); font-size: .98rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 8px; }
.section h2, .why h2 { margin: 0 0 14px; font-size: clamp(2rem, 3vw, 3rem); color: var(--blue-deep); }
.subline { font-size: 1.6rem; font-weight: 700; margin: 0 0 6px; }
.ministry { color: var(--muted); font-weight: 700; margin: 0 0 20px; }
.cards { display: grid; gap: 22px; margin-top: 24px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  box-shadow: 0 10px 24px rgba(19,46,108,.06);
}
.service-card h3 { margin-top: 0; color: var(--blue-deep); font-size: 1.35rem; }
.adv-grid .check-list { list-style: none; padding: 0; margin: 20px 0 26px; }
.check-list li { margin: 10px 0; padding-left: 28px; position: relative; }
.check-list li::before { content: "✓"; color: var(--blue); font-weight: 900; position: absolute; left: 0; }
.why { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 26px;
}
.why-grid div {
  background: var(--bg); padding: 20px; border-radius: 14px; text-align: center; font-weight: 700;
  border: 1px solid var(--line);
}
.contact-section { background: linear-gradient(180deg, #f8faff 0%, #eef3fd 100%); }
.contact-grid { grid-template-columns: 1fr .95fr; }
.contact-lines { display: flex; flex-direction: column; gap: 10px; font-size: 1.5rem; font-weight: 800; color: var(--blue-deep); margin: 18px 0 28px; }
.contact-form {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px;
  box-shadow: 0 16px 34px rgba(16,43,105,.08);
}
.contact-form label { display: block; font-weight: 700; margin-bottom: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 6px; padding: 14px 15px; font: inherit; color: var(--text);
  border-radius: 12px; border: 1px solid #cbd5ea; background: #fbfcff;
}
.site-footer {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white); text-align: center; padding: 42px 0;
}
.footer-inner h3 { margin: 0 0 8px; font-size: 2rem; }
.footer-inner p { margin: 4px 0; }
.footer-inner nav { display: flex; justify-content: center; gap: 20px; margin: 18px 0 12px; flex-wrap: wrap; }
.footer-inner small { opacity: .9; }

@media (max-width: 960px) {
  .nav-wrap, .hero-grid, .two-col, .contact-grid, .cards.four, .why-grid { grid-template-columns: 1fr 1fr; }
  .nav-wrap { grid-template-columns: 1fr; padding: 14px 0; }
  .main-nav, .header-contact { justify-content: flex-start; align-items: flex-start; }
  .hero { background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 55%, #eef2fb 55%, #eef2fb 100%); }
}
@media (max-width: 640px) {
  .hero-grid, .two-col, .contact-grid, .cards.four, .why-grid { grid-template-columns: 1fr; }
  .logo { font-size: 1.5rem; }
  .main-nav { flex-wrap: wrap; gap: 14px 20px; }
  .hero-copy h1 { font-size: 2.2rem; }
  .lead { font-size: 1.15rem; }
  .section { padding: 54px 0; }
}

.section-dark-alt {
  background: linear-gradient(180deg, var(--blue-deep) 0%, #123789 100%);
  color: var(--white);
}
.section-kicker-light { color: #cddcff; }
.light-title { color: var(--white) !important; }
.light-copy { color: rgba(255,255,255,.92); }
.light-check-list li { color: var(--white); }
.light-check-list li::before { color: #d6e4ff; }
