@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Unbounded:wght@500;700&display=swap");

:root {
  --bg: #f5f3ef;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: #101827;
  --ink: #111827;
  --muted: #516071;
  --line: rgba(15, 23, 42, 0.1);
  --accent: #f59e0b;
  --accent-strong: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.1);
  --shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 18px 42px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Myriad Pro", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.07), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 42%, #eef2f7 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(90px);
}

body::before {
  top: 6rem;
  left: -10rem;
  width: 18rem;
  height: 18rem;
  background: rgba(249, 115, 22, 0.08);
}

body::after {
  right: -6rem;
  bottom: 8rem;
  width: 16rem;
  height: 16rem;
  background: rgba(59, 130, 246, 0.18);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.header__inner,
.features__inner,
.tariffs__inner,
.work__inner,
.promo__inner,
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.header {
  position: relative;
  padding: 28px 0 16px;
}

.header__top {
  display: none;
}

.header__top::after,
.tables::after,
.footer__inner::after {
  content: none;
}

.header__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.phone-number_header,
.header__city,
.social,
.footer__copyright,
.footer__address,
.phone-number_footer {
  float: none;
}

.phone-number_header,
.header__city {
  margin: 0;
}

.phone-number__link_header,
.header__city {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  color: var(--ink);
}

.header__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.phone-number__icon,
.header__city-icon {
  position: static;
  width: 20px;
  height: 20px;
  color: var(--accent-strong);
  fill: currentColor;
  transform: none;
}

.phone-number__text,
.header__city-text {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.phone-number__mobile-operators {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.phone-number__number {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--ink);
}

.header__city-text {
  font-size: 1rem;
  line-height: 1.25;
}

.header__city-text small {
  margin-bottom: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.header__city-link,
.partnership__call,
.phone-number__link_footer {
  text-decoration: none;
}

.header__city-link_current,
.partnership__call {
  font-weight: 700;
  color: var(--ink);
}

.header__city-link:hover,
.phone-number__link_header:hover,
.phone-number__link_footer:hover {
  color: var(--accent-strong);
}

.header__city {
  position: relative;
  gap: 12px;
  padding: 8px 12px 8px 10px;
  border-radius: 18px;
  border-color: rgba(249, 115, 22, 0.14);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.14), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.94));
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.header__city .header__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff5ee, #ffe8d4);
  border-color: rgba(249, 115, 22, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 20px rgba(249, 115, 22, 0.12);
}

.header__city-text {
  align-items: center;
  min-height: 42px;
  font-size: 0;
}

.header__city-text small {
  display: none;
}

.header__city-text br {
  display: none;
}

.header__city-link_current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.header__city-link_current::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(15, 23, 42, 0.45);
  border-bottom: 2px solid rgba(15, 23, 42, 0.45);
  transform: translateY(-1px) rotate(45deg);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.header__city:hover {
  border-color: rgba(249, 115, 22, 0.24);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.header__city:hover .header__city-link_current::after {
  border-color: rgba(249, 115, 22, 0.8);
  transform: translateY(1px) rotate(45deg);
}

.phone-number__link_header:hover .header__icon {
  border-color: rgba(249, 115, 22, 0.2);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.social__item {
  margin: 0;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.18);
}

.social__icon {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 1;
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin: 0;
  color: #fff;
  fill: currentColor;
}

.social__icon path {
  fill: currentColor;
}

.social__icon_vk {
  width: 24px;
  height: 24px;
  margin: 0;
}

.social__icon_facebook {
  width: 14px;
  height: 24px;
  margin: 0;
}

.social__icon_instagram {
  width: 22px;
  height: 22px;
  margin: 0;
}

.social_hero .social__link {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.header__middle {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 22px 0 0;
  border: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.1), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(59, 130, 246, 0.12), transparent 26%),
    linear-gradient(135deg, #0f172a 0%, #17253b 48%, #24364c 100%);
  box-shadow: 0 42px 90px rgba(15, 23, 42, 0.18);
}

.header__middle::before,
.header__middle::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.header__middle::before {
  inset: 18px auto auto 18px;
  width: 180px;
  height: 180px;
  background: rgba(249, 115, 22, 0.08);
  filter: blur(8px);
  animation: orb-drift 10s ease-in-out infinite alternate;
}

.header__middle::after {
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  background: rgba(249, 115, 22, 0.18);
  filter: blur(28px);
  animation: orb-drift-reverse 13s ease-in-out infinite alternate;
}

.header__middle .header__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  align-items: start;
  gap: 28px;
  min-height: 620px;
  padding: 44px 40px 126px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  min-width: 0;
  overflow: visible;
  animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy__title {
  margin: 0 0 18px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 4.75rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #ffffff;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-copy__lead {
  margin: 0 0 26px;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.88);
}

.hero-copy__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-copy__socials {
  margin-top: 24px;
}

.hero-copy__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.84);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.24);
  animation: badge-breathe 4.6s ease-in-out infinite;
}

.hero-copy__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.16), transparent 46%);
  transform: translateX(-120%);
  animation: sheen-sweep 6.4s ease-in-out 1.4s infinite;
  pointer-events: none;
}

.logo {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 200px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 34px 64px rgba(2, 6, 23, 0.2);
  animation:
    hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both,
    logo-float 4.8s ease-in-out 1.1s infinite alternate,
    logo-glow 4.8s ease-in-out 1.1s infinite alternate;
}

.logo::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  background:
    radial-gradient(circle at 24% 24%, rgba(249, 115, 22, 0.14), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(56, 189, 248, 0.18), transparent 26%),
    radial-gradient(circle at 62% 84%, rgba(249, 115, 22, 0.1), transparent 30%);
  opacity: 0.88;
  filter: blur(18px);
  animation: logo-aura 5.2s ease-in-out infinite alternate;
  pointer-events: none;
}

.logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.48) 32%, transparent 46%);
  transform: translateX(-140%);
  animation: sheen-sweep 7.2s ease-in-out 1.8s infinite;
  pointer-events: none;
}

.logo__eyebrow {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.logo__img {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.18));
}

.logo_promo {
  width: min(100%, 220px);
  justify-self: center;
  margin: 0;
  padding: 18px;
  animation: none;
}

.logo_promo::before,
.logo_promo::after {
  content: none;
}

.logo__img_promo {
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
}

.car {
  position: absolute;
  top: auto;
  left: auto;
  right: -120px;
  bottom: 22px;
  width: min(74vw, 920px);
  height: 320px;
  background-size: contain;
  background-position: center right;
  opacity: 0.26;
  filter: drop-shadow(0 22px 46px rgba(2, 6, 23, 0.28));
  pointer-events: none;
  z-index: 1;
}

.header__middle .car {
  right: -54px;
  bottom: -18px;
  width: min(56vw, 690px);
  height: auto;
  aspect-ratio: 873 / 582;
  background-position: center bottom;
}

.car_7510 {
  background-image: url("../img/taxi-7510.png?v=20260312-6");
  background-repeat: no-repeat;
}

.header__bottom {
  position: relative;
  z-index: 3;
  margin: -90px 0 0;
}

.header__bottom .header__inner {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.stores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 0 0 18px;
  text-align: left;
}

.stores__label {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.stores__btn,
.other-orders__btn {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
  margin: 0;
  padding: 18px 20px 18px 74px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.stores__btn::after,
.other-orders__btn::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -48%;
  width: 42%;
  height: 180%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0;
  transform: rotate(18deg);
  transition: opacity 0.25s ease, transform 0.8s ease;
  pointer-events: none;
}

.stores__btn:hover,
.other-orders__btn:hover {
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 32px 56px rgba(15, 23, 42, 0.18);
}

.stores__btn:hover::after,
.other-orders__btn:hover::after {
  opacity: 0.9;
  transform: translateX(265%) rotate(18deg);
}

.stores__icon,
.other-orders__icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  fill: currentColor;
}

.stores__link_google-play {
  background: linear-gradient(135deg, #1d7f4f, #22c55e);
  background-size: 150% 150%;
  animation: gradient-shift 8.5s ease-in-out infinite alternate;
}

.stores__link_app-store {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  background-size: 150% 150%;
  animation: gradient-shift 8.5s ease-in-out 0.4s infinite alternate;
}

.stores__link_app-galery,
.stores__link_huawei-store {
  background: linear-gradient(135deg, #ef4444, #f97316);
  background-size: 150% 150%;
  animation: gradient-shift 8.5s ease-in-out 0.8s infinite alternate;
}

.stores__link_telegram {
  background: linear-gradient(135deg, #0f5ed7, #22a5f5);
}

.stores__link_viber {
  background: linear-gradient(135deg, #5b3ec8, #8b5cf6);
}

.other-orders {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 18px;
}

.other-orders__btn {
  min-height: 62px;
  padding: 16px 24px;
  justify-content: center;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.other-orders__text_size_s {
  display: none;
}

.stores__text_size_s {
  display: block;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.stores__name {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.header__cta-stack {
  display: grid;
  gap: 14px;
  width: 100%;
  margin: 0 0 18px;
}

.phone-cta {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 18px 20px 18px 78px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.phone-cta::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -42%;
  width: 38%;
  height: 180%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  opacity: 0;
  transform: rotate(16deg);
  transition: opacity 0.25s ease, transform 0.8s ease;
  pointer-events: none;
}

.phone-cta:hover {
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 32px 56px rgba(15, 23, 42, 0.18);
}

.phone-cta:hover::after {
  opacity: 0.9;
  transform: translateX(280%) rotate(16deg);
}

.phone-cta_primary {
  background: linear-gradient(135deg, #111827, #1f2937);
  background-size: 150% 150%;
  animation: gradient-shift 8.5s ease-in-out infinite alternate;
  color: #fff;
}

.phone-cta_secondary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  background-size: 150% 150%;
  animation: gradient-shift 8.5s ease-in-out 0.6s infinite alternate;
  color: #fff;
}

.phone-cta__icon {
  position: absolute;
  left: 22px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  fill: currentColor;
}

.phone-cta__content {
  display: grid;
  gap: 2px;
}

.phone-cta__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.74;
}

.phone-cta__title {
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 800;
}

.phone-cta__meta {
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 600;
}

.note {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.note__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

.note__text:first-child {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ink);
}

.separator {
  height: 24px;
  margin: 0;
}

.separator__mask {
  display: none;
}

.main {
  padding-bottom: 24px;
}

.features,
.tariffs,
.work,
.promo {
  margin: 0;
  padding: 0 0 32px;
}

.features__inner,
.tariffs__inner,
.promo__inner {
  position: relative;
  overflow: hidden;
  padding-top: 38px;
  padding-bottom: 38px;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.features__inner::before,
.features__inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.features__inner::before {
  top: -78px;
  left: -44px;
  width: 220px;
  height: 220px;
  background: rgba(249, 115, 22, 0.11);
  filter: blur(14px);
}

.features__inner::after {
  right: -36px;
  bottom: -92px;
  width: 240px;
  height: 240px;
  background: rgba(59, 130, 246, 0.1);
  filter: blur(18px);
}

.work__inner {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0f172a, #1a2438 55%, #22344a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 72px rgba(15, 23, 42, 0.22);
}

.work__inner::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  filter: blur(12px);
}

.features__title,
.tariffs__title,
.work__title {
  margin: 0 0 26px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-align: left;
  color: var(--ink);
}

.work__title {
  color: #ffffff;
  text-align: center;
}

.features__title {
  max-width: 11ch;
  margin-bottom: 30px;
}

.features__title::before {
  content: "6 причин выбрать сервис";
  display: block;
  margin-bottom: 12px;
  font-family: "Manrope", "Myriad Pro", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.features__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  text-align: left;
}

.features__item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  width: auto;
  height: 168px;
  margin: 0;
  min-height: 168px;
  padding: 22px 22px 12px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
    linear-gradient(140deg, rgba(15, 23, 42, 0.01), rgba(15, 23, 42, 0.02));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  animation: card-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  isolation: isolate;
}

.features__item::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--feature-glow, rgba(249, 115, 22, 0.18)) 0%, transparent 72%);
  z-index: 0;
  animation: feature-orb 6.6s ease-in-out infinite alternate;
}

.features__item:nth-child(2) {
  animation-delay: 0.06s;
}

.features__item:nth-child(3) {
  animation-delay: 0.12s;
}

.features__item:nth-child(4) {
  animation-delay: 0.18s;
}

.features__item:nth-child(5) {
  animation-delay: 0.24s;
}

.features__item:nth-child(6) {
  animation-delay: 0.3s;
}

.features__item:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.18);
  box-shadow: 0 28px 48px rgba(15, 23, 42, 0.12);
}

.features__item:hover .features__media {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 24px 40px var(--feature-shadow, rgba(15, 23, 42, 0.22));
}

.features__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin: 0;
  min-height: 0;
  padding: 0;
  font-size: 1.08rem;
  line-height: 1.46;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.features__content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
  padding-top: 6px;
}

.features__content::before {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 0 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--feature-line, rgba(249, 115, 22, 0.52)), transparent);
}

.features__text::after {
  content: none;
}

.features__text_driver,
.features__text_mobile,
.features__text_car,
.features__text_wallet,
.features__text_headphone {
  margin-top: 0;
  min-height: 0;
  padding-top: 4px;
}

.features__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--feature-accent-start), var(--feature-accent-end));
  box-shadow: 0 18px 30px var(--feature-shadow, rgba(15, 23, 42, 0.16));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features__glyph {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.features__icon_clock {
  --feature-accent-start: #f97316;
  --feature-accent-end: #fb923c;
  --feature-shadow: rgba(249, 115, 22, 0.28);
  --feature-glow: rgba(249, 115, 22, 0.18);
  --feature-line: rgba(249, 115, 22, 0.58);
}

.features__icon_driver {
  --feature-accent-start: #2563eb;
  --feature-accent-end: #38bdf8;
  --feature-shadow: rgba(37, 99, 235, 0.24);
  --feature-glow: rgba(56, 189, 248, 0.18);
  --feature-line: rgba(37, 99, 235, 0.46);
}

.features__icon_mobile {
  --feature-accent-start: #059669;
  --feature-accent-end: #22c55e;
  --feature-shadow: rgba(5, 150, 105, 0.24);
  --feature-glow: rgba(34, 197, 94, 0.16);
  --feature-line: rgba(5, 150, 105, 0.44);
}

.features__icon_car {
  --feature-accent-start: #0f766e;
  --feature-accent-end: #06b6d4;
  --feature-shadow: rgba(6, 182, 212, 0.23);
  --feature-glow: rgba(6, 182, 212, 0.16);
  --feature-line: rgba(14, 116, 144, 0.42);
}

.features__icon_wallet {
  --feature-accent-start: #d97706;
  --feature-accent-end: #f59e0b;
  --feature-shadow: rgba(217, 119, 6, 0.24);
  --feature-glow: rgba(245, 158, 11, 0.16);
  --feature-line: rgba(217, 119, 6, 0.44);
}

.features__icon_headphones {
  --feature-accent-start: #dc2626;
  --feature-accent-end: #f97316;
  --feature-shadow: rgba(220, 38, 38, 0.22);
  --feature-glow: rgba(249, 115, 22, 0.15);
  --feature-line: rgba(220, 38, 38, 0.42);
}

.partnership {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
  text-align: left;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.partnership:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.1);
}

.partnership__icon {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.24);
}

.partnership__icon svg {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  fill: #fff;
}

.partnership__text {
  margin: 0;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.work__partnership {
  margin: 0 0 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 44px rgba(2, 6, 23, 0.18);
}

.work__partnership .partnership__text {
  color: rgba(226, 232, 240, 0.9);
}

.work__partnership .partnership__call {
  color: #fff;
}

.tariffs__text {
  max-width: 78ch;
  margin: 0 0 14px;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--muted);
}

.tariffs__text_margin {
  margin-bottom: 22px;
}

.tariffs__note {
  margin: 0 0 10px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--muted);
}

.tariffs__note_top {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #8a5300;
  font-weight: 800;
  text-transform: none;
}

.tariffs__note_important {
  color: #a33c00;
  font-weight: 800;
  text-transform: none;
}

.tariffs__note_payment-methods {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.tariffs__note_payment-methods img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.tariffs__inner_dynamic-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px 24px;
  align-items: center;
}

.tariffs__inner_dynamic-shell > * {
  min-width: 0;
}

.tariffs__inner_dynamic-shell .tariffs__title {
  margin: 0;
}

.tariff-browser {
  display: contents;
}

.tariff-browser__controls {
  grid-column: 2;
  align-self: center;
  justify-self: end;
  width: min(100%, 360px);
  display: grid;
  gap: 10px;
}

.tariff-browser__controls_state {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.tariff-browser__state {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.tariff-browser__field {
  position: relative;
  width: 100%;
}

.tariff-browser__field::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(17, 24, 39, 0.6);
  border-bottom: 2px solid rgba(17, 24, 39, 0.6);
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.tariff-browser__select {
  width: 100%;
  min-height: 60px;
  padding: 0 52px 0 18px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  appearance: none;
}

.tariff-browser__select:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.tariff-card {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.tariff-card__name {
  margin: 0 0 16px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.22;
  color: var(--ink);
}

.tariff-card__description {
  color: var(--ink);
}

.tariff-card__description > *:first-child {
  margin-top: 0 !important;
}

.tariff-card__description > *:last-child {
  margin-bottom: 0 !important;
}

.tariff-card__description :where(p, ul, ol, table, blockquote, h1, h2, h3, h4, h5, h6) {
  margin: 0 0 16px;
}

.tariff-card__description :where(p, li, td, th) {
  font-size: 1rem;
  line-height: 1.74;
  color: var(--ink);
}

.tariff-card__description :where(h1, h2, h3, h4, h5, h6) {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink);
}

.tariff-card__description :where(ul, ol) {
  padding-left: 1.3rem;
}

.tariff-card__description a {
  color: var(--accent-strong);
}

.tariff-card__description table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.tariff-card__description th,
.tariff-card__description td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.tariff-card__description tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.03);
}

.tariff-card__description tr:last-child td,
.tariff-card__description tr:last-child th {
  border-bottom: 0;
}

.tariffs__legacy {
  margin-top: 24px;
}

.tariffs__inner_dynamic-shell .tariffs__legacy {
  grid-column: 1 / -1;
  margin-top: 0;
}

.tariffs__inner_dynamic-ready .tariffs__legacy {
  display: none;
}

.tariff-browser__payments {
  grid-column: 1 / -1;
  margin-top: 0;
}

.tariff-browser__payments .tariffs__note_payment-methods {
  margin: 0;
}

.tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 18px;
}

.table {
  width: auto;
  margin: 0;
  overflow: hidden;
  border-collapse: collapse;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.table:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px rgba(15, 23, 42, 0.12);
}

.table__caption {
  padding: 20px 24px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1.06rem;
  line-height: 1.3;
  text-align: left;
  color: #fff;
  background: linear-gradient(135deg, #111827, #24364a);
}

.table__cell {
  padding: 16px 24px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.table__row:last-child .table__cell {
  border-bottom: 0;
}

.table__row_background {
  background: rgba(15, 23, 42, 0.03);
}

.table__row_important {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.04));
}

.form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  max-width: 760px;
  width: 100%;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form__input {
  width: 100%;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.form__input::placeholder {
  color: rgba(226, 232, 240, 0.72);
}

.form__input:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

textarea.form__input {
  min-height: 152px;
  resize: vertical;
}

.form input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--accent);
  vertical-align: top;
}

.form label {
  display: block;
  flex: 1 1 auto;
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  line-height: 1.6;
}

.form__btn {
  width: 100%;
  max-width: 280px;
  padding: 17px 24px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #ffffff;
  font: 800 1rem/1 "Manrope", sans-serif;
  cursor: pointer;
  box-shadow: 0 22px 46px rgba(249, 115, 22, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form__btn:not([disabled]):hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 50px rgba(249, 115, 22, 0.34);
}

.form__btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.promo__inner {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}

.promo__text {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--muted);
}

.promo__text_margin {
  margin: 0;
}

.promo__content {
  display: grid;
  gap: 18px;
  align-content: start;
}

.promo__badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: min(100%, 220px);
  aspect-ratio: 1;
  padding: 28px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.92), transparent 46%),
    linear-gradient(135deg, #f8fafc, #e2e8f0 55%, #f1f5f9);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
  animation: badge-float 5.6s ease-in-out infinite alternate;
}

.promo__badge::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 70%);
  animation: badge-pulse 4.8s ease-in-out infinite alternate;
}

.promo__badge-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 132px);
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(17, 24, 39, 0.16));
}

.promo__inner[style*="center"] {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center !important;
}

.promo__inner[style*="center"] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 420px);
  padding: 16px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(0.98rem, 2vw, 1.3rem) !important;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.promo__inner[style*="center"] br {
  display: none;
}

.footer {
  margin: 0;
  padding: 0 0 44px;
  border: 0;
  background: transparent;
}

.footer__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding-top: 34px;
  padding-bottom: 34px;
  line-height: 1.75;
  text-align: left;
  border-radius: 32px;
  background: linear-gradient(135deg, #0b1220, #121d32 60%, #10253a);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #e5eef9;
}

.footer__copyright,
.footer__address,
.phone-number_footer {
  position: relative;
  z-index: 2;
  margin: 0;
}

.footer__copyright {
  display: grid;
  gap: 18px;
  align-content: start;
  font-weight: 800;
}

.footer__company {
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.4;
}

.footer__payments {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer__payments img {
  display: block;
  width: min(100%, 202px);
  height: auto;
}

.footer__address {
  max-width: 56ch;
  color: rgba(226, 232, 240, 0.88);
}

.phone-number_footer {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.phone-number__link_footer {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  word-break: break-word;
}

.car_footer {
  right: -110px;
  bottom: -10px;
  width: 360px;
  height: auto;
  aspect-ratio: 873 / 582;
  opacity: 0.08;
  background-position: center bottom;
}

.call {
  right: 24px;
  bottom: 24px;
  padding: 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 22px 44px rgba(249, 115, 22, 0.32);
  animation: pulse-ring 2.8s ease-in-out infinite;
}

.call__icon {
  fill: #ffffff;
}

.modal {
  max-width: 460px;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 34px 64px rgba(15, 23, 42, 0.24);
}

.header__city-title {
  margin-bottom: 14px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 1rem;
  color: var(--ink);
}

.header__city-list {
  display: grid;
  gap: 10px;
}

.header__city-item {
  margin: 0;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-14px) rotate(-1.2deg);
  }
}

@keyframes logo-glow {
  from {
    box-shadow: 0 34px 64px rgba(2, 6, 23, 0.2);
  }

  to {
    box-shadow: 0 42px 78px rgba(2, 6, 23, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.22);
  }
}

@keyframes logo-aura {
  from {
    transform: scale(0.96) rotate(-3deg);
    opacity: 0.72;
  }

  to {
    transform: scale(1.06) rotate(3deg);
    opacity: 0.98;
  }
}

@keyframes orb-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

@keyframes orb-drift-reverse {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-22px, 18px, 0) scale(1.12);
  }
}

@keyframes sheen-sweep {
  0%,
  55%,
  100% {
    transform: translateX(-140%);
  }

  72% {
    transform: translateX(165%);
  }
}

@keyframes badge-breathe {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 32px rgba(2, 6, 23, 0.24);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(2, 6, 23, 0.3);
  }
}

@keyframes feature-orb {
  from {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0.8;
  }

  to {
    transform: translate3d(-12px, -10px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes gradient-shift {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@keyframes badge-float {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-8px) rotate(-1.4deg);
  }
}

@keyframes badge-pulse {
  from {
    transform: scale(0.9);
    opacity: 0.55;
  }

  to {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.34), 0 22px 44px rgba(249, 115, 22, 0.28);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(249, 115, 22, 0), 0 22px 44px rgba(249, 115, 22, 0.28);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0), 0 22px 44px rgba(249, 115, 22, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1120px) {
  .header__middle .header__inner {
    grid-template-columns: minmax(0, 1fr) 180px;
    min-height: 620px;
    padding: 40px 30px 120px;
  }

  .car {
    right: -180px;
    width: min(82vw, 860px);
  }

  .header__middle .car {
    right: -96px;
    bottom: -10px;
    width: min(62vw, 670px);
    height: auto;
  }

  .features__list,
  .tables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features__item {
    min-height: 156px;
  }
}

@media (max-width: 920px) {
  .header__top {
    flex-direction: column;
    align-items: stretch;
  }

  .social {
    justify-content: flex-start;
  }

  .header__middle .header__inner {
    grid-template-columns: 1fr;
    min-height: 600px;
    padding: 36px 24px 118px;
  }

  .logo {
    justify-self: start;
    width: min(100%, 160px);
  }

  .car {
    right: -200px;
    bottom: 30px;
    width: 760px;
    height: 260px;
    opacity: 0.18;
  }

  .header__middle .car {
    right: -104px;
    bottom: -8px;
    width: min(88vw, 620px);
    height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy__title {
    max-width: none;
    font-size: clamp(1.9rem, 8.2vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }

  .hero-copy__lead {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .header__bottom {
    margin-top: -72px;
  }

  .promo__inner,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .phone-number_footer {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .header,
  .main,
  .footer {
    padding-left: 0;
    padding-right: 0;
  }

  .header__inner,
  .features__inner,
  .tariffs__inner,
  .work__inner,
  .promo__inner,
  .footer__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header__top,
  .header__middle,
  .header__bottom .header__inner,
  .features__inner,
  .tariffs__inner,
  .work__inner,
  .promo__inner,
  .footer__inner {
    border-radius: 24px;
  }

  .header__contacts {
    flex-direction: column;
    align-items: stretch;
  }

  .phone-number__link_header,
  .header__city {
    width: 100%;
  }

  .header__city {
    justify-content: space-between;
  }

  .header__city-text {
    flex: 1;
    min-width: 0;
  }

  .header__city-link_current {
    justify-content: space-between;
    width: 100%;
  }

  .header__middle .header__inner {
    min-height: 500px;
    padding: 38px 18px 96px;
  }

  .hero-copy__title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-copy__lead,
  .promo__text,
  .tariffs__text,
  .partnership__text {
    font-size: 0.98rem;
  }

  .hero-copy__socials {
    margin-top: 20px;
  }

  .social_hero .social__link {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .promo__badge {
    justify-self: center;
    width: min(100%, 176px);
    padding: 22px;
    border-radius: 28px;
  }

  .promo__badge::after {
    right: 12px;
    bottom: 12px;
    width: 60px;
    height: 60px;
  }

  .promo__badge-logo {
    width: min(100%, 78px);
  }

  .promo__content {
    gap: 14px;
  }

  .stores,
  .features__list,
  .tables {
    grid-template-columns: 1fr;
  }

  .header__cta-stack {
    max-width: 100%;
  }

  .phone-cta {
    min-height: 74px;
    padding: 16px 18px 16px 70px;
  }

  .phone-cta__title {
    font-size: 1.04rem;
  }

  .phone-cta__meta {
    font-size: 0.9rem;
  }

  .features__item {
    height: 156px;
    min-height: 156px;
    padding: 20px 18px 12px;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 16px;
  }

  .tariffs__inner_dynamic-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .tariff-browser__controls {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .tariff-browser__controls_state {
    min-height: 56px;
    padding: 0 16px;
  }

  .tariff-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .tariff-card__name {
    margin-bottom: 14px;
  }

  .features__text {
    min-height: 0;
    padding: 0;
    font-size: 1.02rem;
  }

  .features__content::before {
    width: 64px;
    margin-bottom: 14px;
  }

  .features__media {
    width: 54px;
    height: 54px;
  }

  .features__glyph {
    width: 24px;
    height: 24px;
  }

  .partnership {
    flex-direction: column;
  }

  .call {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .header__top,
  .features__inner,
  .tariffs__inner,
  .work__inner,
  .promo__inner,
  .footer__inner,
  .header__bottom .header__inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .phone-number__number {
    font-size: 1.7rem;
  }

  .hero-copy__badge {
    font-size: 0.84rem;
  }

  .header__middle .header__inner {
    min-height: 620px;
    padding: 32px 16px 122px;
  }

  .hero-copy__title {
    max-width: 100%;
    font-size: clamp(1.56rem, 8vw, 2.1rem);
    line-height: 1.1;
  }

  .hero-copy__lead {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .features__title::before {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .features__text {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .tariff-browser__state,
  .tariff-card__description :where(p, li, td, th) {
    font-size: 0.96rem;
  }

  .tariff-browser__select {
    min-height: 56px;
    padding-left: 16px;
    padding-right: 48px;
  }

  .stores__btn,
  .other-orders__btn,
  .phone-cta {
    min-height: 74px;
    padding-left: 68px;
  }

  .table__caption,
  .table__cell {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.legal-page,
.account-page {
  min-height: 100vh;
  padding: 32px 0 56px;
}

.legal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-hero,
.legal-document,
.account-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.legal-hero {
  margin-bottom: 22px;
  padding: 28px 30px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-back:hover {
  color: var(--ink);
}

.legal-hero h1,
.account-card h1 {
  margin: 0 0 14px !important;
  font-family: "Unbounded", "Manrope", sans-serif !important;
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
  line-height: 1.08 !important;
  color: var(--ink) !important;
}

.legal-hero p,
.account-card > p {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 1.02rem !important;
  line-height: 1.7 !important;
}

.legal-document,
.account-card {
  padding: 30px;
}

.legal-document > *:first-child,
.account-card > *:first-child {
  margin-top: 0 !important;
}

.legal-document > *:last-child,
.account-card > *:last-child {
  margin-bottom: 0 !important;
}

.legal-document p,
.legal-document li,
.legal-document span,
.legal-document a,
.legal-document h1,
.legal-document h2,
.legal-document h3,
.legal-document h4,
.legal-document h5,
.legal-document h6 {
  font-family: "Manrope", "Myriad Pro", sans-serif !important;
  color: var(--ink) !important;
  -webkit-text-stroke: 0 transparent !important;
}

.legal-document p,
.legal-document li {
  font-size: 1rem !important;
  line-height: 1.78 !important;
}

.legal-document p,
.legal-document ul,
.legal-document ol {
  margin: 0 0 16px !important;
}

.legal-document h1,
.legal-document h2,
.legal-document h3,
.legal-document h4 {
  margin: 28px 0 14px !important;
  line-height: 1.2 !important;
}

.legal-document h1 {
  font-family: "Unbounded", "Manrope", sans-serif !important;
  font-size: 2rem !important;
}

.legal-document h2 {
  font-family: "Unbounded", "Manrope", sans-serif !important;
  font-size: 1.35rem !important;
}

.legal-document h3 {
  font-size: 1.06rem !important;
  font-weight: 800 !important;
}

.legal-document h4 {
  font-size: 1rem !important;
  font-weight: 800 !important;
}

.legal-document ul,
.legal-document ol {
  padding-left: 1.35rem !important;
}

.legal-document a {
  color: var(--accent-strong) !important;
}

.legal-document a:hover {
  color: var(--ink) !important;
}

.account-card {
  max-width: 760px;
  margin: 0 auto;
}

.account-warning {
  margin: 18px 0 26px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.16);
  color: var(--ink);
  line-height: 1.65;
}

.account-form {
  display: grid;
  gap: 18px;
}

.account-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--ink);
}

.account-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.account-form input:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.account-form button {
  min-height: 60px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.24);
  cursor: pointer;
}

.account-form button:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.account-form button:disabled {
  cursor: default;
  filter: grayscale(0.08);
  opacity: 0.76;
  transform: none;
}

.account-inline-note,
.account-status {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted);
}

.account-status {
  display: none;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.05);
}

.account-status.is-visible,
.account-form__confirm.is-visible {
  display: block;
}

.account-form__confirm {
  display: none;
}

.legal-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.legal-brand__logo {
  width: 72px;
  height: auto;
}

.legal-brand__eyebrow,
.legal-brand__title {
  margin: 0 !important;
}

.legal-brand__eyebrow {
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--accent-strong) !important;
}

.legal-brand__title {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
}

.policy-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.policy-meta__item,
.policy-block,
.policy-note {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.policy-meta__item {
  padding: 18px 20px;
}

.policy-meta__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.policy-meta__item strong,
.policy-meta__item a {
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.policy-section + .policy-section {
  margin-top: 34px;
}

.policy-subsection + .policy-subsection {
  margin-top: 30px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.policy-block {
  padding: 20px 22px;
}

.policy-block_wide {
  margin-top: 18px;
}

.policy-note {
  margin-top: 24px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(249, 115, 22, 0.08));
}

.policy-note p {
  margin: 0 !important;
}

.policy-list {
  margin-bottom: 18px !important;
}

.policy-list_compact {
  margin-bottom: 0 !important;
}

.policy-list li + li {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .legal-hero,
  .legal-document,
  .account-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .legal-brand {
    align-items: flex-start;
  }

  .legal-brand__logo {
    width: 60px;
  }

  .policy-meta,
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DESIGN V3 ENHANCEMENTS ===== */

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #38bdf8, #8b5cf6);
  z-index: 9999;
  transition: width 0.12s linear;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}

/* --- Grain texture overlay --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
  pointer-events: none;
  z-index: 9998;
  opacity: 1;
  mix-blend-mode: multiply;
  border-radius: 0;
  filter: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

body::after {
  content: "";
  position: fixed;
  right: -6rem;
  bottom: 8rem;
  width: 16rem;
  height: 16rem;
  background: rgba(59, 130, 246, 0.18);
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

/* --- Scroll-reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal {
  transition-delay: calc(var(--reveal-i, 0) * 0.08s);
}

/* --- Feature card enhancements: gradient border glow + counter --- */
.features__item {
  position: relative;
  counter-increment: feature-count;
}

.features__item::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  background: linear-gradient(
    135deg,
    transparent 30%,
    var(--feature-accent-start, rgba(249, 115, 22, 0.5)) 55%,
    var(--feature-accent-end, rgba(56, 189, 248, 0.4)) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 2px;
}

.features__item:hover::after {
  opacity: 1;
}

.features__content::after {
  content: "0" counter(feature-count);
  display: block;
  margin-top: auto;
  padding-top: 12px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.14);
}

/* --- Decorative section dividers --- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 0;
  user-select: none;
}

.section-divider__line {
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
}

.section-divider__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #38bdf8);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.2);
  animation: divider-pulse 3s ease-in-out infinite;
}

@keyframes divider-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

/* --- Improved hero parallax/depth --- */
.header__middle {
  transform-style: preserve-3d;
  perspective: 1200px;
}

.hero-copy__title {
  color: #fff;
}

@keyframes title-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* --- Enhanced logo card: animated border --- */
.logo {
  position: relative;
}

.logo > .logo-ring {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  background: conic-gradient(
    from 0deg,
    #f97316,
    #38bdf8,
    #8b5cf6,
    #22c55e,
    #f97316
  );
  z-index: -1;
  opacity: 0.55;
  animation: ring-spin 8s linear infinite;
  filter: blur(3px);
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Better section titles with decorative element --- */
.tariffs__title,
.features__title {
  position: relative;
}

.tariffs__title::before {
  content: "Стоимость поездки";
  display: block;
  margin-bottom: 12px;
  font-family: "Manrope", "Myriad Pro", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

/* --- Improved table captions --- */
.table__caption {
  position: relative;
  overflow: hidden;
}

.table__caption::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: rotate(18deg);
  animation: sheen-sweep 8s ease-in-out 2s infinite;
}

/* --- Better link buttons in promo section --- */
.promo__inner[style*="center"] a {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.promo__inner[style*="center"] a:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px rgba(15, 23, 42, 0.2);
}

.promo__inner[style*="center"] a::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -48%;
  width: 42%;
  height: 180%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transform: rotate(18deg);
  transition: opacity 0.28s ease, transform 0.8s ease;
  pointer-events: none;
}

.promo__inner[style*="center"] a:hover::after {
  opacity: 1;
  transform: translateX(280%) rotate(18deg);
}

/* --- Cursor glow effect (mouse follower) --- */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.08) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: left 0.4s ease, top 0.4s ease, opacity 0.5s ease;
  opacity: 0;
  will-change: left, top;
}

.cursor-glow.is-active {
  opacity: 1;
}

/* --- Footer social links row --- */
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer__socials .social__link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.footer__socials .social__link:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* --- Enhanced form inputs with floating label effect --- */
.form__input {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form__input:hover:not(:focus) {
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

/* --- Work section title badge --- */
.work__title {
  position: relative;
}

.work__title::before {
  content: "Партнёрство";
  display: block;
  margin: 0 auto 14px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  font-family: "Manrope", "Myriad Pro", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fb923c;
}

/* --- Smooth hover state for table rows --- */
.table__row {
  transition: background 0.2s ease;
}

.table__row:hover {
  background: rgba(249, 115, 22, 0.06) !important;
}

/* --- Better CTA badge design in hero --- */
.hero-copy__badge {
  position: relative;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-copy__badge:nth-child(1) {
  animation-delay: 0s;
}

.hero-copy__badge:nth-child(2) {
  animation-delay: 0.8s;
}

.hero-copy__badge:nth-child(3) {
  animation-delay: 1.6s;
}

/* --- Footer link email hover --- */
.footer__address a {
  position: relative;
  color: #fb923c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__address a:hover {
  color: #fff;
}

.footer__address a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer__address a:hover::after {
  width: 100%;
}

/* --- Partnership call link --- */
.work__partnership .partnership__call {
  position: relative;
  transition: color 0.2s ease;
}

.work__partnership .partnership__call::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.work__partnership .partnership__call:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Smooth section transitions (subtle fade-in for cards in section) --- */
.features__item,
.table,
.stores__btn,
.phone-cta {
  will-change: transform;
}

/* --- Additional responsive fine-tuning for new elements --- */
@media (max-width: 760px) {
  .cursor-glow {
    display: none;
  }

  .features__content::after {
    font-size: 0.66rem;
    padding-top: 8px;
  }

  .section-divider__line {
    max-width: 80px;
  }
}

@media (max-width: 520px) {
  .scroll-progress {
    height: 2px;
  }

  .section-divider {
    padding: 2px 0;
  }
}
