@charset "UTF-8";
/* =========================
   Design tokens (new)
========================= */
/* =========================
   Root background (global, smooth)
========================= */
:root {
  /* RGB для плавных rgba() */
  --brand-blue: 47, 107, 255;
  --brand-green: 34, 197, 94;
  /* базовый фон */
  --bg-0: #070b16;
  --bg-1: #0a1020;
  --bg-2: #0b1220;
  /* поверхностные слои */
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.035);
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke-2: rgba(255, 255, 255, 0.14);
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.92);
  background-color: #0b1220;
  /* МНОГОСЛОЙНЫЙ ФОН = нет резких переходов */
  background-image: linear-gradient(180deg, rgb(7, 11, 22) 0%, rgb(10, 16, 32) 42%, rgb(11, 18, 32) 100%), radial-gradient(1100px 620px at 12% 18%, rgba(var(--brand-blue), 0.26), transparent 72%), radial-gradient(1000px 560px at 88% 78%, rgba(var(--brand-green), 0.18), transparent 74%), radial-gradient(900px 520px at 72% 6%, rgba(var(--brand-blue), 0.12), transparent 68%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Лёгкий шум поверх (очень помогает от бэндинга на больших экранах) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  /* Без картинки: чисто CSS-шум через градиенты */
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.018), transparent 35%), radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.012), transparent 40%), radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.01), transparent 38%);
  filter: blur(18px);
  opacity: 0.9;
}

/* Все основные блоки поверх шума */
header,
main,
footer {
  position: relative;
  z-index: 1;
}

/* =========================
   Base
========================= */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

p {
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}

.container {
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 84px 0;
}
.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1120px, 100% - 48px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}
.section:last-of-type::after {
  display: none;
}

.section__head {
  margin-bottom: 28px;
}
.section__head p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 62ch;
}

.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: 64ch;
}

.muted {
  color: rgba(255, 255, 255, 0.68);
}

.small {
  font-size: 12px;
}

/* =========================
   Buttons (new)
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: none;
  border-color: rgba(47, 107, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.22);
}
.btn--primary {
  border-color: rgba(47, 107, 255, 0.45);
  background: linear-gradient(135deg, #2f6bff, rgba(47, 107, 255, 0.62));
  box-shadow: 0 16px 45px rgba(47, 107, 255, 0.2);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #2f6bff, rgba(47, 107, 255, 0.52));
  box-shadow: 0 18px 55px rgba(47, 107, 255, 0.24);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}
.btn--lg {
  padding: 14px 18px;
  border-radius: 16px;
}

/* =========================
   Header (new)
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 22, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header__inner {
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}
.logo .logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.logo .logo__text {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}
.logo--footer .logo__mark {
  width: 36px;
  height: 36px;
}

.nav {
  display: flex;
  gap: 12px;
  margin-left: 10px;
}
.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .nav.nav--open {
    display: grid;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(7, 11, 22, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
  }
}

.header__actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
@media (max-width: 860px) {
  .header__actions {
    display: none;
  }
}

.burger {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  margin: 5px auto;
  border-radius: 99px;
}
@media (max-width: 860px) {
  .burger {
    display: inline-block;
  }
}

/* =========================
   Hero (new)
========================= */
.hero {
  padding: 84px 0 48px;
}

.hero__grid {
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.badge {
  display: inline-flex;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin: 18px 0 18px;
  flex-wrap: wrap;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}
.checks li {
  position: relative;
  padding-left: 26px;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(34, 197, 94, 0.95);
  font-weight: 900;
}

.hero__visual {
  position: relative;
}

.mock {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 28px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.mock .mock__top {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mock .mock__top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}
.mock .mock__body {
  padding: 12px;
}
.mock .mock__body img {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  position: absolute;
  width: 180px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 55px rgba(0, 0, 0, 0.42);
}
.stat .stat__num {
  font-weight: 900;
  font-size: 22px;
}
.stat .stat__txt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
.stat--a {
  right: -10px;
  top: -15px;
}
.stat--b {
  left: -10px;
  bottom: -16px;
}
@media (max-width: 980px) {
  .stat {
    position: static;
    width: auto;
    margin-top: 12px;
  }
}

/* =========================
   Support block
========================= */
.support {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 980px) {
  .support {
    grid-template-columns: 1fr;
  }
}

.support__left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 980px) {
  .support__left {
    grid-template-columns: 1fr;
  }
}

.support__card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 60px rgba(0, 0, 0, 0.38);
  padding: 18px;
}
.support__card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  margin: 0;
}

.support__panel {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 90px rgba(0, 0, 0, 0.55);
  padding: 18px;
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  /* мягкая подсветка, без резких градиентов */
}
.support__panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(55% 40% at 18% 35%, rgba(47, 107, 255, 0.16), transparent 70%), radial-gradient(55% 40% at 85% 75%, rgba(34, 197, 94, 0.1), transparent 72%), radial-gradient(45% 35% at 55% 0%, rgba(255, 255, 255, 0.06), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}
.support__panel > * {
  position: relative;
  z-index: 1;
}

.support__kpi {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.support__kpiLabel {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.support__kpiValue {
  font-weight: 900;
  font-size: 16px;
}

.support__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* =========================
   Parents cabinet block
========================= */
.parents {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 980px) {
  .parents {
    grid-template-columns: 1fr;
  }
}

.parents__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 980px) {
  .parents__grid {
    grid-template-columns: 1fr;
  }
}

.parents__cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.parents__visual {
  position: relative;
}

.phone {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  max-width: 360px;
  margin-left: auto;
}
@media (max-width: 980px) {
  .phone {
    max-width: 420px;
    margin: 0;
  }
}
.phone .phone__top {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.phone .phone__top span {
  width: 52px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.phone .phone__body {
  padding: 12px;
}
.phone .phone__body img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pill {
  position: absolute;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pill--a {
  top: 18px;
  left: 0;
}
.pill--b {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.pill--c {
  bottom: 18px;
  left: 12px;
}
@media (max-width: 980px) {
  .pill {
    position: static;
    display: inline-flex;
    margin: 10px 10px 0 0;
    transform: none;
  }
}

/* =========================
   Trust
========================= */
.trust {
  padding: 18px 0 0;
}

.trust__inner {
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  align-items: center;
}

.trust__title {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.trust__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust__chips span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 13px;
}

/* =========================
   Layout helpers
========================= */
.grid {
  display: grid;
  gap: 14px;
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

.card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 60px rgba(0, 0, 0, 0.38);
  padding: 18px;
}
.card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.shots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 980px) {
  .shots__grid {
    grid-template-columns: 1fr;
  }
}

.shot {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 60px rgba(0, 0, 0, 0.38);
  padding: 12px;
}
.shot img {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.shot figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.bullets {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}
.bullets li {
  margin: 8px 0;
}

.panel {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 60px rgba(0, 0, 0, 0.38);
  padding: 14px;
  display: grid;
  gap: 10px;
}
.panel .panel__item {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.panel .kpi__label {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}
.panel .kpi__value {
  font-weight: 900;
  font-size: 18px;
}

/* =========================
   Pricing
========================= */
.price {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 60px rgba(0, 0, 0, 0.38);
  padding: 18px;
  position: relative;
}
.price ul {
  margin: 12px 0 16px;
  color: rgba(255, 255, 255, 0.68);
}
.price li {
  margin: 8px 0;
}
.price .price__sum {
  font-size: 26px;
  font-weight: 900;
  margin: 8px 0 6px;
}
.price--hot {
  border-color: rgba(47, 107, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 70px rgba(47, 107, 255, 0.14);
}
.price .price__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-weight: 900;
  font-size: 12px;
}

/* =========================
   FAQ
========================= */
.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  transition: border-color 0.2s ease, background 0.2s ease;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 60px rgba(0, 0, 0, 0.38);
  padding: 14px 16px;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary {
  /* стрелка */
}
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.8;
}
.faq__item[open] {
  border-color: rgba(47, 107, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.faq__item[open] summary::after {
  transform: translateY(-40%) rotate(-135deg);
  opacity: 1;
}

/* =========================
   CTA (new: NO local gradients)
========================= */
.cta {
  padding: 74px 0;
}

.cta__inner {
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
  /* карточка поверх глобального фона */
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 90px rgba(0, 0, 0, 0.55);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
  position: relative;
  overflow: hidden;
  /* мягкая внутренняя подсветка (без резких переходов) */
}
.cta__inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(60% 45% at 15% 40%, rgba(47, 107, 255, 0.18), transparent 70%), radial-gradient(55% 40% at 85% 70%, rgba(34, 197, 94, 0.12), transparent 72%), radial-gradient(45% 35% at 50% 10%, rgba(255, 255, 255, 0.06), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}
@media (max-width: 980px) {
  .cta__inner {
    grid-template-columns: 1fr;
  }
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}
.field span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}
.field input {
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  padding: 0 12px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.field input:focus {
  outline: none;
  border-color: rgba(47, 107, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

/* =========================
   Footer
========================= */
.footer {
  padding: 26px 0 42px;
}

.footer__inner {
  width: min(1120px, 100% - 48px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}
@media (max-width: 860px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}
.footer__links a:hover {
  color: rgba(255, 255, 255, 0.92);
}

/*# sourceMappingURL=styles.css.map */
