*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --ink: #16202c;
  --muted: #5b6875;
  --line: #e3e8ee;
  --accent: #2f6fed;
  --accent-dark: #2559c4;
  --soft: #f5f8fc;
}

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 900px; margin: 0 auto; padding: 0 20px; }

.topbar {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--ink);
  text-decoration: none;
}

.logo span { color: var(--accent); }

.topbar nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  margin-left: 18px;
}

.topbar nav a:hover { color: var(--ink); }

.hero { padding: 52px 0 40px; }

h1 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
}

.lead {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 660px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 38px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cta:hover { background: var(--accent-dark); }

.cta-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

section { padding: 34px 0; border-top: 1px solid var(--line); }

h2 {
  font-size: 25px;
  margin: 0 0 20px;
  letter-spacing: -0.3px;
}

h3 { font-size: 18px; margin: 0 0 6px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
}

.card p { margin: 0; color: var(--muted); font-size: 16px; }

ol.steps { padding-left: 22px; margin: 0; }
ol.steps li { margin-bottom: 12px; }

ul.plain { list-style: none; padding: 0; margin: 0; }
ul.plain li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--muted);
}
ul.plain li:last-child { border-bottom: none; }
ul.plain li::before {
  content: "—";
  position: absolute;
  left: 4px;
  color: var(--accent);
}

.faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item p { margin: 6px 0 0; color: var(--muted); }

.bottom-cta { text-align: center; padding: 44px 0; }
.bottom-cta h2 { margin-bottom: 20px; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 60px;
  font-size: 15px;
  color: var(--muted);
}

footer a { color: var(--muted); }
footer p { margin: 6px 0; }

.legal-links a { margin-right: 18px; }

.doc { padding: 40px 0 60px; }
.doc h1 { font-size: 30px; }
.doc h2 { font-size: 20px; margin-top: 30px; }
.doc p, .doc li { color: var(--ink); }
.doc .updated { color: var(--muted); font-size: 15px; }

#cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 860px;
  margin: 0 auto;
  background: #16202c;
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 50;
}

#cookie-bar a { color: #9dc0ff; }

#cookie-bar button {
  background: #fff;
  color: #16202c;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  h1 { font-size: 29px; }
  h2 { font-size: 22px; }
  .lead { font-size: 17px; }
  .hero { padding: 36px 0 32px; }
  .grid { grid-template-columns: 1fr; }
  .cta { display: block; text-align: center; padding: 16px 20px; }
  .topbar nav { display: none; }
  #cookie-bar { flex-direction: column; align-items: stretch; text-align: left; }
}
