:root {
  --navy: #0b2447;
  --navy-2: #13366b;
  --red: #b3001b;
  --red-dark: #8b0000;
  --cream: #f7f4ee;
  --ink: #1b1f27;
  --muted: #5b6270;
  --line: #e3ded4;
  --white: #ffffff;
  --radius: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); }
h1, h2, h3 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section.alt { background: var(--cream); }
.section.dark { background: var(--navy); color: #e8ecf4; }
.section.dark h2, .section.dark h3 { color: var(--white); }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section.dark .eyebrow { color: #ff8a8a; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 720px; }
.section.dark .lead { color: #c9d2e3; }

/* Top bar + nav */
.topbar {
  background: var(--navy);
  color: #dfe6f2;
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 16px;
}
.topbar a { color: var(--white); font-weight: 700; text-decoration: none; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand span { font-family: "Anton", sans-serif; font-size: 1.25rem; line-height: 1; text-transform: uppercase; }
.brand small { display: block; font-family: "Montserrat", sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; color: var(--red); margin-top: 4px; }
.links { display: flex; gap: 22px; align-items: center; }
.links a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.92rem; }
.links a:hover, .links a[aria-current="page"] { color: var(--red); }
.menu-toggle { display: none; }

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: background 0.15s;
}
.btn:hover { background: var(--red-dark); }
.btn.ghost { background: transparent; border: 2px solid currentColor; color: var(--white) !important; }
.btn.small { padding: 10px 18px; font-size: 0.9rem; }

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  background: var(--navy) center / cover no-repeat;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 36, 71, 0.35) 0%, rgba(11, 36, 71, 0.92) 78%);
}
.hero .wrap { position: relative; padding-top: 120px; padding-bottom: 70px; }
.hero h1 { color: var(--white); max-width: 820px; }
.hero p { font-size: 1.2rem; max-width: 640px; color: #e3e9f4; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.page-hero { min-height: 380px; }

/* Grid + cards */
.grid { display: grid; gap: 24px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.section.alt .card { border-color: transparent; box-shadow: 0 1px 0 var(--line); }
.card .num {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius); width: 100%; height: 100%; max-height: 460px; object-fit: cover; }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.fact { border-left: 3px solid var(--red); padding: 6px 0 6px 16px; }
.fact b { display: block; font-family: "Anton", sans-serif; font-size: 1.7rem; color: var(--white); font-weight: 400; }
.fact span { color: #c9d2e3; font-size: 0.92rem; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 22px 22px 22px 78px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Anton", sans-serif;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.steps h3 { margin-bottom: 4px; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::after { content: "+"; color: var(--red); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: var(--muted); }

.cta-band { background: var(--red); color: var(--white); padding: 56px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin: 0; }
.cta-band .btn { background: var(--white); color: var(--red) !important; }

.notice {
  background: #fff7e6;
  border: 1px solid #f1d9a6;
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.95rem;
}

/* Form */
form.apply { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.apply .full { grid-column: 1 / -1; }
form.apply label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
form.apply input, form.apply select, form.apply textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #cfd5df;
  border-radius: 10px;
  background: var(--white);
}
form.apply textarea { min-height: 120px; resize: vertical; }
form.apply .check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); font-weight: 400; }
form.apply .check input { width: auto; margin-top: 4px; }
.hp { position: absolute; left: -9999px; }
.form-status { grid-column: 1 / -1; font-weight: 600; }
.form-status.ok { color: #1b7a3d; }
.form-status.err { color: var(--red); }

/* Footer */
footer { background: #071a35; color: #aeb9cc; padding: 56px 0 30px; font-size: 0.9rem; }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
footer h4 { color: var(--white); margin: 0 0 10px; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; }
footer a { color: #dfe6f2; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.legal { border-top: 1px solid #1d3354; padding-top: 22px; font-size: 0.78rem; line-height: 1.6; color: #8d99ae; }

@media (max-width: 900px) {
  .grid.three, .grid.two, .split, footer .cols { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 18px; border-bottom: 1px solid var(--line); }
  .links.open { display: flex; }
  .menu-toggle { display: block; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; font: inherit; font-weight: 700; }
  form.apply { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { min-height: 480px; }
}
