:root {
  --bg: #0f172a;
  --panel: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f8fafc;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  background: var(--bg);
  color: #fff;
  padding: 16px 0;
}
.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.brand,
.nav a,
.lang-switcher a {
  color: inherit;
  text-decoration: none;
}
.nav {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.lang-switcher {
  display: flex;
  gap: 12px;
  font-size: 14px;
}
.main-content {
  padding: 40px 0 56px;
}
.hero {
  background: var(--panel);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.eyebrow {
  color: var(--accent);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1 {
  margin: 10px 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.card,
.contact-card,
.faq-item {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.button {
  display: inline-block;
  margin-top: 16px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
}
.site-footer {
  background: #e5e7eb;
  padding: 24px 0;
  color: var(--muted);
}
