:root {
  --blue: #23347d;
  --blue-2: #152055;
  --gold: #efb41c;
  --red: #f21d2f;
  --ink: #11162c;
  --paper: #f7f4eb;
  --line: rgba(35, 52, 125, .16);
  --white: #fff;
  --shadow: 0 22px 60px rgba(17, 22, 44, .16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 4%, rgba(239, 180, 28, .24), transparent 26rem),
    radial-gradient(circle at 92% 10%, rgba(242, 29, 47, .10), transparent 24rem),
    linear-gradient(180deg, #fbfaf5 0%, var(--paper) 48%, #fff 100%);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 235, .84);
  border-bottom: 1px solid rgba(35, 52, 125, .10);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 188px; height: auto; mix-blend-mode: multiply; }
.menu { display: flex; align-items: center; gap: 4px; }
.menu a {
  padding: 11px 13px;
  border-radius: 999px;
  color: rgba(17, 22, 44, .76);
  font-size: 14px;
  font-weight: 650;
}
.menu a:hover, .menu a.active { background: rgba(35, 52, 125, .08); color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(35, 52, 125, .22);
  background: rgba(255, 255, 255, .76);
  color: var(--blue);
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(35, 52, 125, .13); }
.btn.primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn.gold { background: var(--gold); color: var(--blue-2); border-color: transparent; }
.btn.icon { width: 44px; padding: 0; display: none; }
.icon-line, .icon-line::before, .icon-line::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}
.icon-line { position: relative; }
.icon-line::before, .icon-line::after { content: ""; position: absolute; left: 0; }
.icon-line::before { top: -6px; }
.icon-line::after { top: 6px; }

.page-hero { padding: 76px 0 42px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 48px 0 0 var(--gold);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  color: var(--blue-2);
  font-size: clamp(42px, 6vw, 76px);
  line-height: .92;
  letter-spacing: -0.04em;
}
h2 {
  color: var(--blue-2);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: .98;
  letter-spacing: -0.035em;
}
h3 { color: var(--blue-2); font-size: 24px; margin-bottom: 10px; }
.lead { max-width: 720px; color: rgba(17, 22, 44, .74); font-size: clamp(18px, 2vw, 22px); line-height: 1.56; }
section { padding: 76px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, .58fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head p, .text p { color: rgba(17,22,44,.68); line-height: 1.68; }

.photo-card {
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--blue-2);
  box-shadow: var(--shadow);
  position: relative;
}
.photo-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; filter: saturate(.88) contrast(1.02); }
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(21,32,85,.76), rgba(35,52,125,.12) 52%, rgba(239,180,28,.18)),
    linear-gradient(90deg, transparent 0 46%, rgba(242,29,47,.72) 47%, transparent 48%);
  mix-blend-mode: multiply;
}
.photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
  font-weight: 750;
  line-height: 1.35;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.74);
}
.card p { color: rgba(17,22,44,.68); line-height: 1.62; margin-bottom: 0; }
.icon-bubble {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(239,180,28,.25);
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 900;
}
.steps { display: grid; gap: 20px; counter-reset: step; }
.step {
  position: relative;
  padding: 26px 0 26px 76px;
  border-top: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 22px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--blue-2);
  font-weight: 900;
}

.dark-band {
  background: linear-gradient(145deg, rgba(35,52,125,.96), rgba(21,32,85,.98));
  color: #fff;
}
.dark-band h2, .dark-band h3 { color: #fff; }
.dark-band p { color: rgba(255,255,255,.72); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(35,52,125,.10);
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}
.dark-band .tag { background: rgba(255,255,255,.14); color: #fff; }

.contact-form {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display: grid; gap: 8px; color: rgba(17,22,44,.72); font-size: 14px; font-weight: 750; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(35,52,125,.16);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(35,52,125,.1); }
textarea { min-height: 134px; resize: vertical; }
.span-2 { grid-column: 1 / -1; }
.form-note { min-height: 24px; color: var(--blue); font-weight: 750; margin: 14px 0 0; }

footer {
  padding: 38px 0;
  background: var(--blue-2);
  color: rgba(255,255,255,.68);
}
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .btn.icon { display: inline-flex; }
  .menu {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .menu.open { display: flex; }
  .menu a { border-radius: 12px; }
  .page-hero-grid, .section-head, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand img { width: 148px; }
  .nav-actions .primary { display: none; }
  h1 { font-size: 43px; }
  section, .page-hero { padding: 56px 0; }
  .grid-3, .form-grid { grid-template-columns: 1fr; }
  .photo-card { min-height: 330px; border-radius: 24px; }
  .span-2 { grid-column: auto; }
}
