/* ============ Такси АЛЬТ — style.css ============ */

/* Inter — свой хостинг (без Google Fonts), вариативный шрифт 400–900 */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/inter-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0b0c0e;
  --bg-card: #141619;
  --bg-card-2: #191c20;
  --border: #24272c;
  --yellow: #ffc800;
  --yellow-hover: #ffd633;
  --red: #e5242c;
  --red-bright: #ff4a52;
  --text: #f2f3f5;
  --text-muted: #9ba0a8;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Анимированный градиентный фон */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -15%;
  z-index: -1;
  pointer-events: none;
}
body::before {
  background:
    radial-gradient(38% 32% at 18% 12%, rgba(255, 200, 0, .26), transparent 65%),
    radial-gradient(42% 38% at 85% 18%, rgba(46, 126, 247, .20), transparent 65%),
    radial-gradient(50% 42% at 50% 95%, rgba(229, 36, 44, .20), transparent 65%);
  animation: bg-drift-a 26s ease-in-out infinite alternate;
}
body::after {
  background:
    radial-gradient(34% 30% at 78% 70%, rgba(255, 200, 0, .14), transparent 65%),
    radial-gradient(36% 34% at 10% 78%, rgba(120, 90, 255, .16), transparent 65%);
  animation: bg-drift-b 34s ease-in-out infinite alternate;
}
@keyframes bg-drift-a {
  0%   { transform: translate3d(-4%, -2%, 0) scale(1); }
  50%  { transform: translate3d(5%, 4%, 0) scale(1.07); }
  100% { transform: translate3d(-3%, 5%, 0) scale(1.03); }
}
@keyframes bg-drift-b {
  0%   { transform: translate3d(4%, 4%, 0) scale(1.05); }
  50%  { transform: translate3d(-5%, -3%, 0) scale(1); }
  100% { transform: translate3d(3%, -5%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s ease, transform .15s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--yellow { background: var(--yellow); color: #141414; }
.btn--yellow:hover { background: var(--yellow-hover); transform: translateY(-1px); }

/* ---------- Шапка ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 14, .78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { width: 46px; height: 46px; flex-shrink: 0; object-fit: contain; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__text strong { font-size: 24px; font-weight: 900; letter-spacing: .04em; }
.logo__text small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.nav { display: flex; gap: 34px; }
.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease;
}
.nav__link:hover { color: var(--text); }
.nav__link--active { color: var(--text); border-bottom-color: var(--yellow); }

.header__cities {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.header__cities svg { width: 18px; height: 18px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 49;
  flex-direction: column;
  background: var(--bg);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 40px rgba(0, 0, 0, .5);
  padding: 10px 24px 18px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__link {
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav__link:last-child { border-bottom: 0; }

/* ---------- Главный экран ---------- */
.hero { padding: 44px 0 56px; overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr .85fr;
  gap: 32px;
  align-items: start;
}
.hero__content { position: relative; z-index: 1; }

.hero__title {
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
  white-space: nowrap;
}
.hero__slogan {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 12px 0 26px;
}

.hero__call { display: flex; align-items: center; gap: 14px; }
.hero__call-icon svg { width: 58px; height: 58px; display: block; }
.hero__number {
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__call-caption {
  font-size: 17px;
  font-weight: 600;
  margin: 6px 0 24px;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 0;
  transition: color .2s ease;
}
.hero__phone:hover { color: var(--yellow); }
.hero__phone svg { width: 26px; height: 26px; flex-shrink: 0; }

.hero__promo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 12px 18px;
  border: 1px solid rgba(229, 36, 44, .6);
  border-radius: 14px;
  background: rgba(229, 36, 44, .12);
}
.hero__promo strong { font-size: 30px; font-weight: 900; line-height: 1; color: var(--red-bright); }
.hero__promo span { font-size: 14px; font-weight: 600; line-height: 1.3; }

.hero__visual { position: relative; z-index: 0; }
.hero__car-wrap {
  position: relative;
  width: 155%;
  max-width: none;
  margin: -40px 0 -10px -27.5%;
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 46%, #000 48%, transparent 74%);
  mask-image: radial-gradient(ellipse 72% 68% at 50% 46%, #000 48%, transparent 74%);
}
.hero__car {
  width: 100%;
  object-fit: cover;
}

/* Мигание фар */
.hero__beam {
  position: absolute;
  width: 11%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 235, 255, .95) 0%, rgba(150, 200, 255, .45) 35%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
}
.hero__beam--left {
  left: 16.5%;
  top: 43.5%;
  animation: beam-blink 10s linear infinite;
}
.hero__beam--right {
  left: 47.5%;
  top: 44%;
  animation: beam-blink 10s linear infinite;
}
@keyframes beam-blink {
  0% { opacity: 0; transform: scale(.8); }
  3% { opacity: 1; transform: scale(1.05); }
  6% { opacity: .15; transform: scale(.9); }
  9% { opacity: 1; transform: scale(1.05); }
  14% { opacity: 0; transform: scale(.8); }
  100% { opacity: 0; transform: scale(.8); }
}
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hero__cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.hero__cta-text svg { width: 34px; height: 34px; flex-shrink: 0; }

.app-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.app-card__title { font-size: 21px; font-weight: 800; line-height: 1.25; }
.app-card__text {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 10px 0 18px;
}
.qr {
  width: 100%;
  max-width: 190px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  margin-bottom: 18px;
}
.qr--small { max-width: 140px; margin-bottom: 0; }

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1d2025;
  border: 1px solid #2c3036;
  border-radius: 12px;
  padding: 9px 14px;
  margin-top: 10px;
  transition: border-color .2s ease, background .2s ease;
}
.store-badge:hover { border-color: var(--yellow); background: #22262c; }
.store-badge img { width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px; object-fit: contain; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: 10px; color: var(--text-muted); }
.store-badge strong { font-size: 15px; font-weight: 700; }

/* ---------- География ---------- */
.geo { padding: 26px 0; }
.geo__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.geo__text p { color: var(--text-muted); font-size: 14.5px; margin-top: 12px; }
.geo__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.geo__photo img { width: 100%; height: 210px; object-fit: cover; }
.geo__photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 12, 14, .78);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 7px 16px 7px 9px;
  font-size: 14px;
  font-weight: 700;
}
.geo__photo figcaption svg { width: 18px; height: 18px; }

/* ---------- Водителям ---------- */
.drivers { padding: 26px 0; }
.drivers__card {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 40px;
  background-color: var(--bg-card);
  background-image:
    linear-gradient(90deg, rgba(18, 20, 22, .99) 0%, rgba(18, 20, 22, .96) 36%, rgba(18, 20, 22, .82) 66%, rgba(18, 20, 22, .68) 100%),
    url("assets/driver-background.jpg");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, auto 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 40px;
  overflow: hidden;
}
.drivers__info { display: flex; gap: 18px; align-items: flex-start; }
.drivers__icon svg { width: 54px; height: 54px; display: block; }
.drivers__lead { font-size: 15px; font-weight: 600; color: var(--text-muted); margin-top: 4px; }
.drivers__text { font-size: 14px; color: var(--text-muted); margin: 14px 0 22px; }

.drivers__features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.drivers__features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 10px 18px;
  border-left: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.drivers__features li:first-child { border-left: 0; }
.drivers__features svg { width: 34px; height: 34px; }

/* ---------- Отзывы ---------- */
.reviews { padding: 26px 0; }
.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.reviews__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
}
.reviews__all svg { width: 16px; height: 16px; }
.reviews__all:hover { color: var(--yellow-hover); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.review__head { display: flex; align-items: center; gap: 14px; }
.review__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #2a2e34;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.review__name { font-size: 15px; font-weight: 700; }
.review__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 13px; }
.review__text { font-size: 13.5px; color: var(--text-muted); margin-top: 14px; }

/* ---------- Контакты ---------- */
.contacts { padding: 26px 0; }
.contacts__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 1.2fr;
  gap: 24px;
  align-items: center;
}
.contacts__item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--border);
  padding-left: 24px;
}
.contacts__item--label {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border-left: 0;
  padding-left: 0;
}
.contacts__item--label p { color: var(--text-muted); font-size: 13.5px; }
.contacts__item svg { width: 34px; height: 34px; flex-shrink: 0; }
.contacts__value { display: block; font-size: 16px; font-weight: 700; line-height: 1.4; }
a.contacts__value:hover { color: var(--yellow); }
.contacts__caption { font-size: 12.5px; color: var(--text-muted); }

/* ---------- Баннер приложения ---------- */
.app-banner { padding: 26px 0 56px; }
.app-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 36px;
  flex-wrap: wrap;
}
.app-banner__text p { color: var(--text-muted); font-size: 14px; margin-top: 10px; }
.app-banner__stores { display: flex; flex-direction: column; gap: 4px; min-width: 210px; }

/* ---------- Подвал ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 34px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.logo--footer .logo__mark { width: 38px; height: 38px; }
.logo--footer .logo__text strong { font-size: 19px; }
.footer__nav { display: flex; gap: 26px; }
.footer__nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s ease;
}
.footer__nav a:hover { color: var(--text); }
.footer__copy { text-align: right; font-size: 12.5px; color: var(--text-muted); }

/* ============ АДАПТИВ ============ */

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .hero__car-wrap { width: 135%; margin: -24px 0 -6px -17.5%; }
  .app-card { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; gap: 6px 28px; align-items: center; }
  .app-card__title { grid-column: 1; }
  .app-card__text { grid-column: 1; margin: 0; }
  .app-card .qr { grid-row: 1 / span 3; grid-column: 2; margin-bottom: 0; }
  .app-card .store-badge { grid-column: 1; max-width: 240px; }
  .geo__grid { grid-template-columns: 1fr 1fr; }
  .geo__text { grid-column: 1 / -1; }
  .drivers__card {
    grid-template-columns: 1fr;
    gap: 30px;
    background-image:
      linear-gradient(180deg, rgba(18, 20, 22, .96) 0%, rgba(18, 20, 22, .88) 48%, rgba(18, 20, 22, .76) 76%, rgba(18, 20, 22, .88) 100%),
      url("assets/driver-background.jpg");
    background-position: center, 68% center;
    background-size: cover, cover;
  }
  .drivers__features li:first-child { border-left: 1px solid var(--border); }
  .contacts__grid { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .contacts__item { border-left: 0; padding-left: 0; }
}

@media (max-width: 760px) {
  .nav, .header__cities { display: none; }
  .burger { display: flex; }

  .hero { padding: 30px 0 44px; }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__car-wrap {
    width: 118%;
    margin: -12px 0 -4px -9%;
    -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 46%, #000 52%, transparent 78%);
    mask-image: radial-gradient(ellipse 78% 72% at 50% 46%, #000 52%, transparent 78%);
  }
  .hero__cta { justify-content: flex-start; }
  .app-card { display: block; }
  .app-card .qr { margin-bottom: 18px; }
  .app-card .store-badge { max-width: none; }

  .geo__grid { grid-template-columns: 1fr; }
  .drivers__card {
    padding: 28px 24px;
    background-image:
      linear-gradient(rgba(18, 20, 22, .9), rgba(18, 20, 22, .9)),
      url("assets/driver-background.jpg");
    background-position: center, 62% center;
  }
  .drivers__features { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .drivers__features li { border-left: 0; }
  .drivers__features li:nth-child(even) { border-left: 1px solid var(--border); }

  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__head { align-items: flex-start; flex-direction: column; gap: 10px; }

  .contacts__grid { grid-template-columns: 1fr; }

  .app-banner__inner { flex-direction: column; align-items: flex-start; padding: 26px 24px; }
  .app-banner__stores { width: 100%; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__copy { text-align: left; }
}

/* ============ Анимации и микровзаимодействия ============ */

/* Кнопки */
.btn--yellow:hover { box-shadow: 0 8px 24px rgba(255, 200, 0, .28); }
.btn:active { transform: translateY(1px) scale(.97); }

/* Бейджи магазинов */
.store-badge {
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .35); }
.store-badge:active { transform: translateY(0) scale(.98); }

/* Карточки */
.review, .geo__photo, .app-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.review:hover, .app-card:hover {
  transform: translateY(-4px);
  border-color: #34393f;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}
.geo__photo:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, .45); }
.geo__photo img { transition: transform .45s ease; }
.geo__photo:hover img { transform: scale(1.05); }

/* Блок «Водителям» */
.drivers__card { transition: border-color .25s ease, box-shadow .25s ease; }
.drivers__card:hover { border-color: #34393f; box-shadow: 0 12px 30px rgba(0, 0, 0, .35); }
.drivers__features li { transition: transform .2s ease; }
.drivers__features li:hover { transform: translateY(-4px); }
.drivers__features svg { transition: transform .25s ease; }
.drivers__features li:hover svg { transform: scale(1.12); }

/* Телефоны в hero */
.hero__phone { transition: color .2s ease, transform .2s ease; }
.hero__phone:hover { transform: translateX(6px); }

/* Навигация — скользящее подчёркивание */
.nav__link { position: relative; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active { border-bottom-color: transparent; }

/* Логотип */
.logo { transition: transform .2s ease; }
.logo:hover { transform: scale(1.04); }

/* Пульс иконки телефона у номера 202 */
.hero__call-icon svg { animation: phone-pulse 2.6s ease-in-out infinite; }
@keyframes phone-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255, 200, 0, 0)); }
  50% { transform: scale(1.07); filter: drop-shadow(0 0 14px rgba(255, 200, 0, .45)); }
}

/* Появление hero при загрузке страницы */
.hero__content > *, .hero__visual, .app-card {
  animation: hero-in .7s cubic-bezier(.2, .7, .3, 1) both;
}
.hero__content > *:nth-child(2) { animation-delay: .08s; }
.hero__content > *:nth-child(3) { animation-delay: .16s; }
.hero__content > *:nth-child(4) { animation-delay: .24s; }
.hero__content > *:nth-child(5) { animation-delay: .32s; }
.hero__content > *:nth-child(6) { animation-delay: .4s; }
.hero__visual { animation-delay: .15s; }
.app-card { animation-delay: .3s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Появление блоков при скролле (класс добавляет script.js) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1);
}
.reveal--visible { opacity: 1; transform: translateY(0); }

/* Фокус с клавиатуры */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__call-icon svg,
  .hero__content > *, .hero__visual, .app-card { animation: none; }
  .hero__beam { animation: none; opacity: 0; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Страница политики конфиденциальности ============ */
.legal { max-width: 820px; padding-top: 44px; padding-bottom: 64px; }
.legal h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; }
.legal__date { color: var(--text-muted); font-size: 14px; margin: 10px 0 30px; }
.legal h2 { font-size: 20px; margin: 30px 0 10px; }
.legal p, .legal li { color: #d5d8dc; font-size: 15.5px; line-height: 1.65; }
.legal p { margin-top: 10px; }
.legal ul { margin: 10px 0 0 22px; }
.legal li { margin-top: 6px; }
.legal a { color: var(--yellow); }
.legal a:hover { text-decoration: underline; }
.legal__todo { background: rgba(255, 200, 0, .16); border-radius: 4px; padding: 0 4px; }
.legal__back { font-size: 14px; font-weight: 600; color: var(--text-muted); transition: color .2s ease; }
.legal__back:hover { color: var(--text); }
.footer__policy { text-decoration: underline; text-underline-offset: 3px; transition: color .2s ease; }
.footer__policy:hover { color: var(--text); }
