:root {
  color-scheme: light;
  --bg: #fff;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #2563eb;
  --stroke: rgba(15, 23, 42, 0.09);
  --max: 720px;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 24px 20px 48px; }

.top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke);
}

.logo {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
}

.langs { display: flex; gap: 12px; font-size: 14px; }
.langs a[aria-current="page"] { font-weight: 600; color: var(--text); pointer-events: none; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.lead { font-size: 1.05rem; color: var(--muted); margin: 0 0 28px; }

section { margin-bottom: 32px; }

h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
  margin: 0 0 12px;
}

ul.services { margin: 0; padding-left: 1.2rem; }
ul.services li { margin-bottom: 8px; }

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  margin-right: 10px;
  margin-top: 8px;
}

.btn--ghost {
  background: #fff;
  color: var(--accent) !important;
  border: 1px solid var(--stroke);
}

.faq dt { font-weight: 600; margin-top: 16px; }
.faq dd { margin: 6px 0 0; color: var(--muted); }

.foot {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--stroke);
  font-size: 14px;
  color: var(--muted);
}
