/* ===== Базовые стили, общие для всех страниц ===== */

:root {
  --navy:        #152a43;
  --navy-dark:   #0f2036;
  --navy-deep:   #0b1727;
  --blue:        #0d63d1;
  --blue-light:  #4a90e2;
  --ink:         #1d1d1d;
  --muted:       #6b7683;
  --line:        #e2e6ea;
  --bg:          #ededed;
  --white:       #ffffff;

  --wrap: 1120px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  font-weight: 400;
  line-height: 1.25;
}

p { margin: 0 0 16px; }

ul { margin: 0 0 16px; padding-left: 20px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 20px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border: 0;
  border-radius: 2px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover { background: #0a55b4; }

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
