/* Berkut Legal — dark-first, brand-aligned (matches berktvpn.pro landing) */
:root {
  --bg:         #0B0E12;
  --surface:    #14181F;
  --border:     #2A2E33;
  --text:       #F5F1E8;
  --text-soft:  #A8A296;
  --text-mute:  #7D7770;
  --accent:     #D4A85A;
  --accent-hi:  #E5BE7A;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  padding: 2rem 1.5rem 4rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
.wrap { max-width: 760px; margin: 0 auto; }
header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem; margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-weight: 700; font-size: 1.05rem; color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
}
.brand:hover { color: var(--accent); }
.brand svg { width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px; }
.meta { font-size: .85rem; color: var(--text-mute); font-variant-numeric: tabular-nums; }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; margin-bottom: .75rem; letter-spacing: -.02em; }
.subtitle { font-size: 1.05rem; color: var(--text-soft); margin-bottom: 2rem; }
h2 { font-size: 1.25rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: .75rem; color: var(--text); }
h3 { font-size: 1rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: .5rem; color: var(--text); }
p { margin-bottom: 1rem; color: var(--text); }
ul, ol { margin: 1rem 0 1rem 1.5rem; }
li { margin-bottom: .4rem; }
a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hi); }
strong { font-weight: 700; color: var(--text); }
em { font-style: italic; color: var(--text-soft); }
hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }
footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: .9rem; color: var(--text-mute); }
footer a { color: var(--text-soft); }
footer a:hover { color: var(--accent); }
.contact-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem; margin: 1.5rem 0;
}
.contact-block p { margin-bottom: .5rem; }
.contact-block p:last-child { margin-bottom: 0; }
