:root {
  --navy: #123a7a;
  --navy-deep: #0c2758;
  --ink: #111318;
  --muted: #5b6472;
  --paper: #f4f6fb;
  --white: #fff;
  --line: rgba(255,255,255,.28);
  --red: #c4161c;
  --red-dark: #9e1015;
  --red-bright: #ee2b32;
  --gold: var(--red);
  --radius: 999px;
  --header: 72px;
  --font: "Wix Madefor Display", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
}
.header-cta {
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  color: #fff;
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: .01em;
  white-space: nowrap;
}
.header-cta:hover { background: #fff; color: var(--navy); }
.header-cta i { font-style: normal; margin-left: 4px; }
.header-brand {
  justify-self: center;
  display: flex;
  align-items: center;
  line-height: 0;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
}
.header-brand img {
  height: 48px;
  width: auto;
  max-width: min(260px, 42vw);
  object-fit: contain;
}
.header-phone {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,16,32,.55);
  z-index: 80;
}
.nav-panel {
  width: min(420px, 100%);
  height: 100%;
  background: var(--navy-deep);
  color: #fff;
  padding: 28px 32px;
  overflow: auto;
}
.nav-close {
  float: right;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  margin: 24px 0 32px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  line-height: 0;
}
.nav-logo img {
  width: 220px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.nav-list { display: grid; gap: 6px; clear: both; }
.nav-list a {
  font-size: 22px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-contacts { margin-top: 28px; display: grid; gap: 6px; opacity: .85; }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  background: #000;
  color: #fff;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img, .hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,14,28,.25) 0%, rgba(8,14,28,.55) 70%, rgba(8,14,28,.82) 100%);
}
.hero-copy {
  position: absolute;
  left: 48px;
  bottom: 88px;
  z-index: 2;
  max-width: 720px;
  padding-right: 80px;
}
.hero-copy .btn { margin-top: 4px; }
.hero-copy .date { font-weight: 400; opacity: .9; margin: 0 0 8px; }
.hero-copy h1, .hero-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero-nav {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  gap: 10px;
}
.hero-nav button,
.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 20px;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.hero-dots button.is-active { background: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .02em;
}
.btn--white { background: #fff; color: var(--navy); }
.btn--dark { background: var(--red); color: #fff; }
.btn--dark:hover { background: var(--red-dark); }
.btn--line { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }

.section { padding: 88px 0; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: #fff; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 12px;
}
h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; margin: 0 0 18px; letter-spacing: -.02em; }
.lead { font-size: 18px; color: var(--muted); max-width: 640px; }

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}
.why-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(16,33,61,.08);
}
.why-card img { width: 100%; height: 280px; object-fit: cover; }
.why-card .txt { padding: 28px; }
.why-card h3 { margin: 0 0 10px; font-size: 24px; }
.why-card p { margin: 0 0 16px; color: #445; }
.link-arrow { font-weight: 700; }

.programs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.program {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.program img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8,14,28,.82));
}
.program > * { position: relative; z-index: 1; }
.program span { opacity: .85; font-size: 14px; }
.program h3 { margin: 6px 0 0; font-size: 22px; }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  min-height: 180px;
}
.feature b { display: block; font-size: 42px; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.feature p { margin: 0; font-size: 18px; font-weight: 600; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.news-card { display: block; color: inherit; }
.news-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; }
.news-card time { display: block; margin: 12px 0 6px; color: var(--muted); font-size: 13px; }
.news-card h3 { margin: 0; font-size: 18px; line-height: 1.3; }

.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.partner {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 10px;
}
.partner img { height: 42px; width: auto; object-fit: contain; }
.partner span { font-size: 13px; color: var(--muted); }

.cta-band { background: var(--paper); padding: 80px 0; }
.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 48px;
  align-items: start;
}
.lead-form {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: grid;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(16,33,61,.08);
}
.lead-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form select,
.lead-form textarea {
  height: 48px;
  border: 1px solid #e5e2da;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 15px;
}
.lead-form textarea { height: 110px; padding: 12px 14px; resize: vertical; }
.check { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 400 !important; }
.check input { margin-top: 3px; }
.form-note { margin: 0; padding: 10px 12px; border-radius: 8px; }
.form-note--ok { background: #e8f6ee; }
.form-note--err { background: #fdecec; }

.page-hero {
  min-height: 52vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 0 0 56px;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,14,28,.2), rgba(8,14,28,.75));
}
.page-hero .wrap { position: relative; z-index: 1; }
.crumb { opacity: .8; margin: 0 0 10px; font-size: 14px; }
.page-hero h1 { margin: 0 0 18px; font-size: clamp(36px, 5vw, 60px); letter-spacing: -.03em; }

.prose { max-width: 820px; font-size: 17px; }
.prose p { color: #333; }
.cards-3, .cards-2 {
  display: grid;
  gap: 16px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.info-card, .price-card, .person {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16,33,61,.06);
}
.info-card, .price-card { padding: 24px; }
.info-card img, .person img { width: 100%; height: 200px; object-fit: cover; }
.price-card h3 { margin: 0 0 8px; }
.price { font-size: 32px; font-weight: 800; margin: 8px 0; }
.price small { font-size: 16px; font-weight: 500; color: var(--muted); }
.person { text-align: center; padding-bottom: 18px; }
.person h3 { margin: 14px 16px 4px; font-size: 18px; }
.person p { margin: 0 16px; color: var(--muted); font-size: 14px; }

.docs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.docs-table th, .docs-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.docs-table th { width: 42%; background: var(--paper); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.site-footer {
  background: var(--navy-deep);
  color: #d9dde6;
  padding: 56px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
.footer-brand {
  display: inline-flex;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  margin: 0 0 14px;
  line-height: 0;
}
.footer-brand img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.footer-title { color: #fff; font-weight: 700; margin: 0 0 10px; }
.footer-nav { display: grid; gap: 6px; }
.footer-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 2px solid var(--red);
  font-size: 13px;
  opacity: .75;
}

.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 22px; }
.tabs button {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: var(--radius);
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}
.tabs button.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.panel { display: none; }
.panel.is-active { display: block; }

@media (max-width: 980px) {
  .why-grid, .cta-band__grid, .footer-grid { grid-template-columns: 1fr; }
  .programs, .features, .news-grid, .partners, .cards-3, .cards-2, .team-grid { grid-template-columns: 1fr 1fr; }
  .header-phone { display: none; }
  .hero-copy { left: 20px; right: 20px; bottom: 56px; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .menu-toggle { order: 1; }
  .header-brand { order: 2; }
  .header-cta { order: 3; }
  .header-brand img { height: 48px; }
}
@media (max-width: 640px) {
  .programs, .features, .news-grid, .partners, .cards-3, .cards-2, .team-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .header-brand img { height: 42px; }
  .hero { min-height: 78vh; }
  .footer-copy { flex-direction: column; }
  .topbar-inner { flex-wrap: wrap; }
}

.topbar {
  background: var(--navy-deep);
  color: #d7dce6;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 36px;
}
.topbar a { opacity: .85; }
.viz-toggle {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  cursor: pointer;
}
.hero-sub { margin: 0 0 18px; max-width: 560px; opacity: .9; }
.official-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.official-grid a {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  font-weight: 600;
  font-size: 14px;
  min-height: 84px;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--red);
  color: var(--navy);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.nav-list details { border-bottom: 1px solid rgba(255,255,255,.08); padding: 6px 0; }
.nav-list summary { font-size: 20px; font-weight: 600; cursor: pointer; }
.nav-list details a { display: block; font-size: 15px; font-weight: 500; opacity: .85; padding: 6px 0; border: 0; }
.lead-form--plain { box-shadow: none; padding: 0; }
.content-body { font-size: 16px; line-height: 1.6; }
.content-body a { color: var(--navy); text-decoration: underline; }
.content-body a:hover { color: var(--red); }
.content-body h2, .content-body h3 { margin: 1.4em 0 .5em; }
.content-body img, .content-body video { max-width: 100%; height: auto; }
.content-body table { width: 100%; border-collapse: collapse; margin: 16px 0; background: #fff; }
.content-body th, .content-body td { border: 1px solid #e6e3db; padding: 10px 12px; text-align: left; vertical-align: top; }
.content-body .elementor-widget-nav-menu,
.content-body .elementor-nav-menu,
.content-body .elementor-nav-menu--main,
.content-body .elementor-menu-toggle,
.content-body nav.elementor-nav-menu--dropdown,
.content-body .elementor-widget-nav-menu .elementor-widget-container {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}
.content-body .elementor,
.content-body .elementor-section,
.content-body .elementor-container,
.content-body .elementor-widget-wrap,
.content-body .elementor-element,
.content-body .elementor-widget,
.content-body .elementor-widget-container,
.content-body .elementor-column {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  transform: none !important;
  margin: 0 0 12px;
  padding: 0;
  float: none !important;
  display: block !important;
}
.content-body .elementor-widget-nav-menu,
.content-body .elementor-widget-navigation-menu,
.content-body .elementor-widget-nav-menu.elementor-widget,
.content-body .elementor-widget-navigation-menu.elementor-widget,
.content-body .elementor-widget-nav-menu .elementor-widget-container,
.content-body .elementor-widget-navigation-menu .elementor-widget-container,
.content-body .elementor-nav-menu,
.content-body .elementor-nav-menu--main,
.content-body .elementor-menu-toggle,
.content-body nav.elementor-nav-menu--dropdown {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  margin: 0 !important;
}
body.viz {
  background: #fff !important;
  color: #000 !important;
  font-size: 20px;
}
body.viz .site-header, body.viz .topbar, body.viz .site-footer { background: #000; }
body.viz .menu-toggle span { background: #fff; }
body.viz .header-phone { color: #fff; }
body.viz a { color: #000; }

@media (max-width: 980px) {
  .official-grid { grid-template-columns: 1fr 1fr; }
}
