:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #172033;
  --muted: #5d6b82;
  --primary: #174ea6;
  --primary-dark: #0f3470;
  --accent: #00a7a7;
  --border: #dbe3ef;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.10);
  --radius: 18px;
}

* { 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: var(--bg);
  line-height: 1.6;
}

a { color: var(--primary); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--primary-dark); }

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 22px rgba(23, 78, 166, 0.22);
  font-size: 0.9rem;
}

.nav-links, .footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a, .footer-links a { color: var(--muted); font-weight: 650; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"], .footer-links a:hover { color: var(--primary); }

.hero {
  overflow: hidden;
  padding: 84px 0;
  background:
    radial-gradient(circle at top left, rgba(0,167,167,0.18), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
}

.hero-grid, .split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0 0 16px; line-height: 1.15; letter-spacing: -0.035em; }
h1 { max-width: 820px; font-size: clamp(2.45rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 16px; }

.hero-text { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(23, 78, 166, 0.20);
}
.button:hover { background: var(--primary-dark); color: #fff; }
.button-secondary { background: #fff; color: var(--primary); border: 1px solid var(--border); box-shadow: none; }
.button-secondary:hover { background: var(--surface-soft); color: var(--primary-dark); }

.hero-card, .content-card, .card, .contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card { padding: 28px; }
dl { margin: 0; }
dt { color: var(--muted); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
dd { margin: 4px 0 18px; font-weight: 750; }

.section { padding: 78px 0; }
.section-muted { background: var(--surface-soft); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.card { padding: 26px; box-shadow: none; }
.card p, .split p, .content-card li { color: var(--muted); }

.check-list { padding-left: 0; list-style: none; }
.check-list li { margin: 10px 0; padding-left: 30px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }

.page { padding: 56px 0 78px; }
.content-card { padding: clamp(24px, 5vw, 48px); }
.content-card h1 { font-size: clamp(2.1rem, 4vw, 3.5rem); }
.content-card h2 { margin-top: 30px; font-size: 1.5rem; }
.content-card ul { padding-left: 22px; }
.contact-panel { padding: 28px; box-shadow: none; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.contact-box { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; background: var(--surface); }
.contact-box strong { display: block; margin-bottom: 4px; color: var(--text); }
address { font-style: normal; color: var(--muted); }
.placeholder { color: #8a4b00; font-weight: 800; }
.note { margin-top: 18px; font-size: 0.95rem; color: var(--muted); }

.site-footer { padding: 26px 0; background: #101827; color: #cbd5e1; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.site-footer p { margin: 0; }
.footer-links a { color: #dbeafe; }

@media (max-width: 820px) {
  .nav, .footer-grid { align-items: flex-start; flex-direction: column; }
  .nav { padding: 16px 0; }
  .hero { padding: 58px 0; }
  .hero-grid, .split, .cards, .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .nav-links { gap: 12px; font-size: 0.95rem; }
  .hero-actions .button { width: 100%; }
  .content-card, .hero-card, .card, .contact-panel { border-radius: 14px; }
}
