@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ga-ink: #20202a;
  --ga-muted-ink: #6f6f7c;
  --ga-surface: #ffffff;
  --ga-soft: #f7f7fb;
  --ga-line-color: #e2e1eb;
  --ga-brand: #473288;
  --ga-brand-dark: #26165f;
  --ga-accent: #fca80f;
  --ga-shell: 1220px;
  --ga-radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ga-ink);
  background: var(--ga-surface);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font-family: inherit; }
img { max-width: 100%; height: auto; }
a { color: var(--ga-brand); text-underline-offset: .16em; }
button, input, textarea, select { font-size: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(252, 168, 15, .65); outline-offset: 3px; }
.ga-main { min-height: 55vh; overflow: clip; }
.ga-shell { width: min(calc(100% - 40px), var(--ga-shell)); margin-inline: auto; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus { position: fixed !important; top: 12px; left: 12px; z-index: 100000; width: auto; height: auto; padding: 12px 16px; clip: auto; background: #fff; }

.ga-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
  padding: 0 22px; color: #fff; background: var(--ga-brand); border: 1px solid transparent;
  border-radius: 11px; font-weight: 750; line-height: 1.2; text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.ga-button:hover { color: #fff; background: var(--ga-brand-dark); box-shadow: 0 16px 32px rgba(38, 22, 95, .18); transform: translateY(-2px); }
.ga-button--light { color: var(--ga-brand-dark); background: #fff; }
.ga-button--light:hover { color: var(--ga-brand-dark); background: #f2f0fb; }
.ga-text-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 750; text-decoration: none; }
.ga-eyebrow { margin: 0 0 14px; color: var(--ga-brand); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.ga-footer { color: rgba(255,255,255,.72); background: #08080c; }
.ga-footer__grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 70px; padding-block: 72px 50px; }
.ga-footer__brand { max-width: 420px; }
.ga-footer__brand .ga-header__logo-image { width: 210px; margin-bottom: 22px; }
.ga-footer__brand > p { margin: 0; }
.ga-footer__title { margin: 0 0 18px; color: #fff; font-size: 15px; letter-spacing: .02em; }
.ga-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.ga-footer a:hover { color: #fff; }
.ga-footer__menu, .ga-footer__menu-wrap ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.ga-footer__menu-wrap > div { margin: 0; }
.ga-footer__contacts { display: grid; align-content: start; gap: 10px; }
.ga-footer__contacts .ga-footer__title { margin-bottom: 8px; }
.ga-footer__contacts .ga-button { width: fit-content; margin-top: 12px; color: var(--ga-brand-dark); }
.ga-footer__socials { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; font-size: 14px; font-weight: 700; }
.ga-footer__legal { display: flex; justify-content: space-between; gap: 24px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.ga-footer__legal p { margin: 0; }

.pagination .nav-links, .page-numbers { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 42px; padding: 0; list-style: none; }
.page-numbers a, .page-numbers span, a.page-numbers, span.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--ga-line-color); border-radius: 10px; text-decoration: none; }
.page-numbers .current, span.page-numbers.current { color: #fff; background: var(--ga-brand); border-color: var(--ga-brand); }

@media (max-width: 900px) {
  .ga-footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .ga-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .ga-shell { width: min(calc(100% - 28px), var(--ga-shell)); }
  .ga-footer__grid { grid-template-columns: 1fr; gap: 36px; padding-block: 54px 38px; }
  .ga-footer__brand { grid-column: auto; }
  .ga-footer__legal { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

