:root {
  --navy: #071b33;
  --blue: #0b4bd4;
  --blue-dark: #07358f;
  --gold: #f5b642;
  --ink: #0b1728;
  --muted: #58677c;
  --line: #d9e3f2;
  --surface: #f5f8fc;
  --white: #fff;
  --success: #087a55;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 27, 51, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .03em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--gold);
  font-size: .78rem;
}
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.site-nav a { color: #d9e7fb; text-decoration: none; font-weight: 650; font-size: .92rem; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.lang-toggle {
  position: relative;
  inline-size: 30px;
  block-size: 26px;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 0;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
}
.lang-toggle::after { content: ""; position: absolute; inset: -9px; }
.lang-toggle:hover, .lang-toggle:focus-visible { border-color: var(--gold); color: var(--gold); }

.hero {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7,27,51,.98), rgba(11,75,212,.86)),
    radial-gradient(circle at 80% 20%, rgba(245,182,66,.38), transparent 35%);
  padding: clamp(72px, 10vw, 128px) 0;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr); gap: 56px; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.12; margin-top: 0; letter-spacing: -.025em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 18px; }
h3 { font-size: 1.24rem; margin-bottom: 10px; }
.hero p { color: #d9e7fb; font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 720px; }
.hero-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
}
.hero-card strong { display: block; font-size: 2rem; color: var(--gold); margin-bottom: 6px; }

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button:hover, .button:focus-visible { background: var(--blue-dark); }
.button.gold { background: var(--gold); color: var(--navy); }
.button.secondary { background: transparent; border-color: currentColor; }

main section { padding: clamp(64px, 8vw, 104px) 0; }
main section.alt { background: var(--surface); }
.section-intro { max-width: 760px; margin-bottom: 34px; }
.section-intro p, .lead { color: var(--muted); font-size: 1.08rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16,38,70,.06);
}
.card p { color: var(--muted); margin-bottom: 0; }
.step {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 9px;
  background: #e8f0ff;
  color: var(--blue);
  font-weight: 850;
}
.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: #fff8e8;
  color: #54451f;
  border-radius: 6px 12px 12px 6px;
}
.checklist { padding-left: 0; list-style: none; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist li::before { content: "✓"; color: var(--success); font-weight: 900; }

.form-card {
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(16,38,70,.08);
}
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: grid; gap: 7px; font-weight: 750; }
label.wide { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #b9c7da;
  border-radius: 9px;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(11,75,212,.18); border-color: var(--blue); }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { min-height: 1.5em; color: var(--muted); }
.form-status.success { color: var(--success); }
.form-status.error { color: #b42318; }
.fine-print { color: var(--muted); font-size: .85rem; }

.site-footer { background: var(--navy); color: #d9e7fb; padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }
.site-footer a { color: var(--white); }

@media (max-width: 820px) {
  .header-inner { align-items: flex-start; padding: 16px 0; }
  .site-nav { gap: 10px 14px; }
  .site-nav a { font-size: .84rem; }
  .hero-grid, .grid, .grid.two, .footer-grid { grid-template-columns: 1fr; }
  .fields { grid-template-columns: 1fr; }
  label.wide { grid-column: auto; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 1160px); }
  .header-inner { display: grid; }
  .site-nav { justify-content: flex-start; }
  .hero { padding-top: 58px; }
  h1 { font-size: 2.5rem; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
