:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --text: #172331;
  --muted: #5f6f80;
  --blue: #0c5f95;
  --blue-dark: #0a466f;
  --line: rgba(23, 35, 49, 0.12);
  --shadow: 0 24px 70px rgba(20, 41, 68, 0.14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(12, 95, 149, 0.14), transparent 34%),
    radial-gradient(circle at 90% 5%, rgba(95, 111, 128, 0.16), transparent 30%),
    var(--bg);
  line-height: 1.55;
}

a { color: inherit; }
.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(20, 41, 68, 0.08);
}
.brand img { display: block; width: 170px; max-width: 45vw; height: auto; }
.nav { display: flex; gap: 8px; align-items: center; }
.nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--muted);
  padding: 9px 13px;
  border-radius: 999px;
}
.nav a:hover { color: var(--blue); background: var(--surface-2); }

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}
.hero__content,
.hero__card,
.status,
.section {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__content { padding: clamp(30px, 5vw, 62px); position: relative; overflow: hidden; }
.hero__content::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12,95,149,0.18), rgba(23,35,49,0.04));
}
.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid rgba(12, 95, 149, 0.18);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(12, 95, 149, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  font-size: clamp(2.3rem, 5.5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}
h2 { font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.06; letter-spacing: -0.04em; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
.lead { max-width: 760px; font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--muted); margin-bottom: 28px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.actions--center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: white; box-shadow: 0 14px 30px rgba(12, 95, 149, 0.28); }
.btn--primary:hover { background: var(--blue-dark); }
.btn--secondary { background: var(--surface-2); color: var(--text); border: 1px solid var(--line); }
.hint { margin: 14px 0 0; color: var(--muted); font-size: 0.95rem; }

.hero__card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hero__card img { width: 220px; max-width: 90%; margin: 0 auto 18px; }
.hero__card h2 { font-size: 1.65rem; margin-bottom: 6px; }
.hero__card p { color: var(--muted); margin-bottom: 18px; }
address { font-style: normal; color: var(--text); }
address a { color: var(--blue); font-weight: 800; text-decoration: none; }

.status {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 16px 20px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.74);
}
.section {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto;
  padding: clamp(26px, 4vw, 46px);
}
.section__intro { max-width: 760px; margin-bottom: 24px; }
.grid { display: grid; gap: 16px; }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f7f9fc);
}
.card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: white;
  background: var(--blue);
  font-weight: 900;
}
.card p, .split p, .contact p { color: var(--muted); }
.split { display: grid; grid-template-columns: 0.9fr 1fr; gap: 30px; align-items: start; }
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.steps li {
  padding: 18px 18px 18px 22px;
  border-left: 5px solid var(--blue);
  background: var(--surface-2);
  border-radius: 18px;
}
.contact { text-align: center; }
.contact p { max-width: 640px; margin-left: auto; margin-right: auto; }
.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 30px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer p { margin: 0; }

@media (max-width: 860px) {
  .site-header { align-items: flex-start; }
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .cards, .split { grid-template-columns: 1fr; }
  .footer { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .site-header, .hero, .status, .section, .footer { width: min(100% - 22px, 1120px); }
  .hero { margin-top: 18px; }
  .hero__content, .section { padding: 24px; }
  .btn { width: 100%; }
}

/* Legal Content & Footer Navigation */
.legal-content {
  max-width: 800px;
  margin: 30px auto 0;
  text-align: left;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  color: var(--text);
}
.legal-content h3 {
  font-size: 1.18rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text);
}
.legal-content p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.65;
}
.legal-content a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}
.legal-content a:hover {
  text-decoration: underline;
}
.footer a {
  text-decoration: none;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.18s ease;
}
.footer a:hover {
  color: var(--blue);
}

