:root {
  --bg: #0b0c10;
  --card: #11131a;
  --text: #e9edf1;
  --muted: #b8c0cc;
  --line: rgba(255,255,255,.10);
  --btn: #ffffff;
  --btnText: #0b0c10;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: #fff; text-underline-offset: 3px; }
a:hover { opacity: .9; }

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 8px 10px;
  border-radius: 8px;
}
.skip:focus { left: 12px; top: 12px; }

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11,12,16,.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand__name { font-weight: 800; letter-spacing: .2px; }
.brand__tag { color: var(--muted); font-size: 12px; }

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--text); }

.lang select {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
}

.hero {
  padding: 44px 0 24px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
}
.lead { color: var(--muted); font-size: 18px; max-width: 70ch; }

.cta { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.btn {
  display: inline-block;
  background: var(--btn);
  color: var(--btnText);
  border-radius: 14px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.contact-line {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.section { padding: 30px 0; border-top: 1px solid var(--line); }
.section h2 { margin: 0 0 14px; font-size: 22px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.card h3 { margin-top: 0; font-size: 18px; }
.card ul { margin: 10px 0 0 18px; color: var(--muted); }
.card p { color: var(--muted); }

.steps { color: var(--muted); padding-left: 18px; }
.bullets { color: var(--muted); padding-left: 18px; }

.contact-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.micro { color: var(--muted); font-size: 12px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
}
.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__links a { color: var(--muted); text-decoration: none; margin-left: 12px; }
.footer__links a:hover { color: var(--text); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
}
