:root {
  --navy: #0b2140;
  --navy-2: #122a4a;
  --ink: #122033;
  --muted: #5a6b80;
  --blue: #1d6ef5;
  --blue-d: #1557c7;
  --blue-s: #e8f0fe;
  --red: #d61f26;
  --line: #e6ebf2;
  --bg: #f6f8fb;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(11, 33, 64, 0.08);
  --max: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: .04em; color: var(--navy);
  font-size: 15px;
}
.logo svg { width: 38px; height: 38px; }
.nav { display: flex; align-items: center; gap: 22px; font-size: 14.5px; font-weight: 500; color: var(--navy); }
.nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 18px; border-radius: 8px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; transition: .2s ease;
}
.btn-outline { background: #fff; border-color: #cfd8e6; color: var(--navy); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #07162c; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-d); }
.btn-ghost { background: #fff; border-color: var(--blue); color: var(--blue); }
.btn-ghost:hover { background: var(--blue-s); }
.burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: #fff; border-radius: 8px; cursor: pointer;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--navy); margin: 4px auto; }

/* Hero */
.hero { padding: 72px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.kicker {
  color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(36px, 4.6vw, 58px); line-height: 1.08;
  color: var(--navy); letter-spacing: -.03em; margin-bottom: 28px; font-weight: 800;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-card {
  background: linear-gradient(160deg, #0b2140 0%, #16325f 55%, #1d4ed8 140%);
  color: #fff; border-radius: 22px; min-height: 360px; padding: 28px;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.hero-card .tag {
  display: inline-block; background: #fff; color: var(--navy);
  font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 6px; margin-bottom: 18px;
}
.hero-card h3 { font-size: 22px; line-height: 1.3; margin-top: auto; }
.hero-card ul { list-style: none; display: grid; gap: 8px; font-size: 15px; opacity: .92; }
.hero-card .card-foot {
  margin-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700;
}
.dots { position: absolute; inset: auto 28px 18px 28px; display: flex; gap: 6px; }
.dots i { width: 28px; height: 3px; background: rgba(255,255,255,.25); border-radius: 4px; }
.dots i.on { background: #fff; }

/* Sections */
.section { padding: 78px 0; }
.section.alt { background: var(--bg); }
.section h2 {
  font-size: clamp(28px, 3vw, 40px); color: var(--navy);
  letter-spacing: -.02em; line-height: 1.15; margin-bottom: 14px;
}
.lead { color: var(--muted); font-size: 17px; max-width: 680px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 8px 24px rgba(11,33,64,.04);
}
.card .ico {
  width: 48px; height: 48px; border-radius: 12px; background: var(--blue-s);
  color: var(--blue); display: grid; place-items: center; margin-bottom: 16px;
}
.card h3 { color: var(--navy); font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
.card a.more { display: inline-block; margin-top: 16px; color: var(--blue); font-weight: 700; font-size: 14px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.stat {
  background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line);
}
.stat b { display: block; font-size: 34px; color: var(--navy); letter-spacing: -.03em; }
.stat span { color: var(--muted); }

.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.quote {
  background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--line);
}
.quote p { font-size: 15.5px; margin-bottom: 16px; }
.quote .who { font-size: 13.5px; color: var(--muted); }
.quote .who strong { color: var(--navy); display: block; }

.cta-band {
  background: var(--navy); color: #fff; border-radius: 24px; padding: 42px 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.cta-band h2 { color: #fff; margin: 0; font-size: 30px; }
.cta-band p { opacity: .78; margin-top: 6px; }

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.post {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
}
.post .thumb {
  height: 160px; background: linear-gradient(135deg, #16325f, #1d6ef5);
}
.post .body { padding: 20px; }
.post .meta { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.post h3 { font-size: 18px; color: var(--navy); line-height: 1.3; }

.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.avatar {
  height: 180px;
  background: linear-gradient(180deg, #dbe7fb, #9bb8e8);
}
.person .info { padding: 16px 18px 20px; }
.person h3 { font-size: 16px; color: var(--navy); }
.person span { font-size: 13px; color: var(--muted); }

.form {
  display: grid; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 28px;
}
.form input, .form textarea, .form select {
  width: 100%; border: 1px solid #d5deea; border-radius: 10px; padding: 12px 14px; font-size: 15px;
}
.form textarea { min-height: 130px; resize: vertical; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: start; }
.contact-list { display: grid; gap: 16px; margin-top: 22px; }
.contact-item { display: flex; gap: 12px; }
.contact-item strong { display: block; color: var(--navy); }

footer {
  background: var(--navy); color: #c9d6e8; padding: 48px 0 24px; margin-top: 20px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
footer h4 { color: #fff; margin-bottom: 12px; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
footer a { display: block; margin: 6px 0; opacity: .85; }
footer a:hover { color: #fff; }
.legal { border-top: 1px solid rgba(255,255,255,.1); margin-top: 32px; padding-top: 16px; font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.legal a { display: inline; }

.prose { max-width: 820px; }
.prose h2 { font-size: 22px; margin: 32px 0 10px; color: var(--navy); }
.prose h3 { font-size: 17px; margin: 22px 0 8px; color: var(--navy); }
.prose p, .prose li { color: var(--ink); font-size: 15.5px; margin-bottom: 10px; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose a { color: var(--blue); text-decoration: underline; }
.table-legal { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 15px; }
.table-legal th, .table-legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table-legal th { width: 34%; color: var(--muted); font-weight: 600; }

.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 18px 20px; display: none;
  max-width: 720px; margin: 0 auto;
}
.cookie.show { display: block; }
.cookie p { font-size: 14px; color: var(--muted); margin: 6px 0 12px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.domain-tag { font-size: 11px; letter-spacing: .08em; color: var(--muted); font-weight: 600; display: block; margin-top: -2px; }

.page-hero { padding: 56px 0 20px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); color: var(--navy); letter-spacing: -.03em; }
.breadcrumb { color: var(--muted); font-size: 13.5px; margin-bottom: 12px; }

.alert {
  display: none; background: #e8f8ee; color: #146c36; border: 1px solid #b7e4c7;
  padding: 12px 14px; border-radius: 10px; font-weight: 600;
}

@media (max-width: 980px) {
  .nav, .header-actions .btn-outline { display: none; }
  .burger { display: block; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 20px 24px; align-items: flex-start;
  }
  .hero-grid, .grid-3, .stats, .quotes, .posts, .team, .contact-grid, .foot-grid {
    grid-template-columns: 1fr;
  }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px; }
  .hero { padding-top: 36px; }
}
