
:root {
  --bg: #ffffff;
  --ink: #222222;
  --muted: #4f5d6a;
  --soft: #eaf0f6;
  --soft-purple: #f2eaf7;
  --primary: #8131b0;
  --primary-dark: #48086f;
  --action: #ff5867;
  --action-dark: #e5404f;
  --green: #4aba05;
  --line: #d8e0ea;
  --radius: 16px;
  color-scheme: light;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 68px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
.nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: white;
  background: var(--primary);
  font-size: 0.84rem;
}

.nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.header-action,
.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.header-action,
.button-primary {
  padding: 0 20px;
  color: white;
  background: var(--action);
}

.header-action:hover,
.button-primary:hover,
.store-android:hover {
  background: var(--action-dark);
}

.button-secondary {
  padding: 0 20px;
  color: var(--primary-dark);
  background: white;
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(460px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 14%, rgba(129, 49, 176, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #faf7fc 62%, #edf3f8 100%);
}

.hero-main {
  min-height: min(580px, calc(100svh - 68px));
}

.city-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 430px);
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 520px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 88, 103, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #faf7fc 62%, #edf3f8 100%);
}

.support-hero-copy h1 {
  max-width: 13ch;
}

.support-primary-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius);
  color: white;
  background: var(--primary-dark);
}

.support-primary-card span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--green);
  font-weight: 900;
}

.support-primary-card strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.support-primary-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--soft-purple);
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 15ch;
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 4.2vw, 4.05rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h2 {
  max-width: 18ch;
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.1vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hero-text,
.section-title p,
.video-copy p,
.brands-section p,
.city-cta p,
.download-section p,
.footer p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 50ch;
  font-size: 1.12rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: white;
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-side {
  display: grid;
  justify-items: stretch;
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-banner {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--primary-dark);
  box-shadow: 0 14px 34px rgba(72, 8, 111, 0.16);
}

.hero-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-banner figcaption {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: white;
  background: var(--primary-dark);
}

.hero-banner figcaption strong {
  font-size: 1.05rem;
}

.hero-banner figcaption span {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.metric-panel {
  width: min(100%, 430px);
  max-width: 100%;
  padding: 22px;
  border-radius: var(--radius);
  color: white;
  background: var(--primary);
}

.metric-panel span {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.metric-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(100%, 430px);
  max-width: 100%;
}

.metric-row span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(129, 49, 176, 0.16);
  color: var(--primary-dark);
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
}

.phone-shell {
  position: relative;
  width: min(100%, 280px);
  max-width: 100%;
  padding: 10px;
  border-radius: 30px;
  background: #222222;
}

.phone-top {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 82px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #222222;
  z-index: 2;
}

.phone-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  object-fit: cover;
  background: #222222;
}

.city-card-hero {
  width: min(100%, 520px);
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  border: 2px solid var(--primary);
}

.city-card-hero > span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-weight: 900;
}

.city-card-hero strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.city-card-hero ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-card-hero li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.app-preview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-top: 0;
  padding: clamp(56px, 7vw, 86px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #eef4f8;
}

.section-label {
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--soft-purple);
  font-size: 0.9rem;
  font-weight: 900;
}

.section-label-invert {
  color: white;
  background: var(--green);
}

.app-preview-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.app-screens {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--primary-dark);
  aspect-ratio: 2 / 1;
  box-shadow: 0 12px 30px rgba(72, 8, 111, 0.14);
}

.app-screens img {
  display: block;
  width: 128%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: translateX(-22%);
}

.stats-band div {
  padding: 20px clamp(18px, 4vw, 32px);
  background: white;
}

.stats-band strong {
  display: block;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.section:nth-of-type(even) {
  background: transparent;
}

.section-title {
  max-width: 760px;
  margin-bottom: 22px;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.section.city-about-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 88, 103, 0.28), transparent 24%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.city-about-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.city-about-copy h2 {
  color: white;
}

.city-about-copy > p:not(.section-label) {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  font-weight: 750;
}

.city-about-route {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.city-about-route span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: white;
  font-weight: 900;
}

.city-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.city-about-grid article {
  min-height: 156px;
  padding: 20px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.city-about-grid article:first-child {
  background: var(--action);
  color: white;
}

.city-about-grid article:nth-child(2) {
  background: #f2eaf7;
}

.city-about-grid article:nth-child(3) {
  background: #e5d2ef;
}

.city-about-grid article:nth-child(4) {
  background: white;
}

.city-about-grid h3 {
  margin-bottom: 10px;
}

.city-about-grid article:not(:first-child) h3 {
  color: var(--ink);
}

.city-about-grid article:first-child h3 {
  color: white;
}

.city-about-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.city-about-grid article:first-child p {
  color: rgba(255, 255, 255, 0.86);
}

.task-tile {
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: 18px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
}

.task-tile:first-child {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
}

.task-tile:nth-child(2) {
  background: #e5d2ef;
  border-color: #cfb0e1;
}

.task-tile:nth-child(3) {
  background: var(--soft-purple);
}

.task-tile span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: white;
  background: var(--action);
  font-weight: 900;
}

.task-tile:first-child span {
  color: var(--primary-dark);
  background: white;
}

.task-tile p {
  color: var(--muted);
}

.task-tile:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.brands-section,
.download-section,
.city-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--primary-dark);
  color: white;
}

.download-section {
  align-items: center;
}

.brands-section p,
.city-cta p,
.download-section p {
  color: rgba(255, 255, 255, 0.82);
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: white;
  font-weight: 900;
}

.start-flow,
.step-list,
.requirements-list,
.district-columns,
.reviews-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.start-flow,
.step-list,
.requirements-list,
.district-columns ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.start-flow {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
}

.task-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step-list {
  grid-template-columns: repeat(4, 1fr);
}

.start-flow li,
.step-list li,
.requirements-list li,
.district-columns > div,
.reviews-grid figure,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.start-flow li {
  display: grid;
  align-content: start;
  min-height: 146px;
  padding: 18px;
}

.task-flow li {
  min-height: 150px;
}

.start-flow li > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.start-flow span:not(.flow-arrow) {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: var(--primary);
  font-weight: 900;
}

.start-flow strong {
  font-size: 1.18rem;
  line-height: 1.15;
}

.start-flow p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.flow-arrow {
  align-self: center;
  color: var(--primary);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 900;
}

.step-list li {
  padding: 20px;
}

.step-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 900;
}

.step-list p,
.requirements-list span,
.district-columns li,
.reviews-grid blockquote,
.faq-list p,
.city-link span {
  color: var(--muted);
}

.requirements-list {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.requirements-list li {
  min-height: 132px;
  padding: 20px;
}

.requirements-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.requirements-list strong {
  display: block;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.2;
  font-weight: 750;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(240px, 360px);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.video-section .phone-shell {
  justify-self: center;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  align-items: start;
}

.city-link {
  display: flex;
  align-items: center;
  height: 58px;
  min-height: 0;
  padding: 0 16px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--line);
  text-decoration: none;
  overflow: hidden;
}

.city-link:hover,
.city-link:focus-visible {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.city-link strong {
  display: block;
  width: 100%;
  font-size: 1.08rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.download-section {
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 88, 103, 0.26), transparent 28%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.download-section .section-label-invert {
  color: white;
  background: var(--green);
}

.download-card {
  display: grid;
  justify-self: end;
  width: min(100%, 520px);
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: white;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(18, 3, 28, 0.18);
}

.download-card-head {
  display: grid;
  gap: 4px;
  padding: 2px 2px 8px;
}

.download-card-head strong {
  color: var(--primary-dark);
  font-size: 1.16rem;
}

.download-buttons {
  display: grid;
  gap: 10px;
}

.store-button {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
  min-height: 64px;
  padding: 12px 16px;
  border-radius: 14px;
  text-align: left;
  box-shadow: none;
}

.store-copy {
  display: grid;
  align-content: center;
  gap: 3px;
  min-width: 0;
}

.store-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 800;
}

.store-copy strong {
  color: white;
  font-size: 1.08rem;
  line-height: 1.1;
}

.store-android {
  background: var(--action);
}

.store-ios {
  background: var(--primary-dark);
  color: white;
}

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

.district-single {
  grid-template-columns: minmax(0, 760px);
}

.district-columns > div {
  padding: 22px;
}

.district-columns li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews-grid figure {
  margin: 0;
  padding: 20px;
}

.reviews-grid blockquote {
  margin: 0 0 18px;
  font-size: 1.08rem;
}

.reviews-grid figcaption {
  display: grid;
  gap: 3px;
  font-weight: 900;
}

.reviews-grid figcaption span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.support-grid article,
.support-contact-list article {
  padding: 20px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
}

.support-grid article:first-child {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
}

.support-grid article:nth-child(2) {
  background: var(--soft-purple);
}

.support-grid p,
.support-contact-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.support-grid article:first-child p {
  color: rgba(255, 255, 255, 0.84);
}

.support-contacts-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
  color: white;
  background: var(--primary-dark);
}

.support-contacts-section p {
  color: rgba(255, 255, 255, 0.84);
}

.support-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-contact-list article {
  display: grid;
  gap: 8px;
}

.support-contact-list span {
  color: var(--muted);
  font-weight: 800;
}

.support-contact-list strong {
  color: var(--primary-dark);
  font-size: 1.25rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.support-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--soft-purple);
  font-weight: 900;
  text-decoration: none;
}

.city-cta {
  margin: clamp(18px, 4vw, 48px) clamp(18px, 5vw, 72px);
  border-radius: 18px;
}

.city-cta .button {
  justify-self: end;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 6px 0 0;
  font-size: 0.95rem;
}

.footer-year {
  display: inline-flex;
  margin-left: 10px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero,
  .support-hero,
  .app-preview-section,
  .brands-section,
  .download-section,
  .city-about-shell,
  .support-contacts-section,
  .city-cta,
  .video-section {
    grid-template-columns: 1fr;
  }

  .hero-main {
    min-height: auto;
  }

  h1 {
    max-width: 100%;
    font-size: 3.05rem;
  }

  h2 {
    max-width: 100%;
    font-size: 2.15rem;
  }

  .stats-band,
  .start-flow,
  .step-list,
  .city-about-grid,
  .support-grid,
  .support-contact-list {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    display: none;
  }

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

  .city-cta .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 11px 14px;
  }

  .brand span:last-child,
  .header-action {
    display: none;
  }

  .hero,
  .app-preview-section,
  .section,
  .support-hero,
  .brands-section,
  .download-section {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero {
    gap: 28px;
    display: block;
  }

  .hero-banner {
    border-radius: 16px;
  }

  .hero-banner figcaption {
    display: grid;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.02;
    text-wrap: auto;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-text {
    font-size: 1.06rem;
    max-width: 31ch;
  }

  .hero-actions,
  .hero-points,
  .download-buttons,
  .metric-row,
  .stats-band,
  .start-flow,
  .step-list,
  .city-about-grid,
  .support-grid,
  .support-contact-list,
  .district-columns,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    gap: 12px;
  }

  .hero-points {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-copy,
  .hero-side,
  .hero-banner,
  .app-preview-copy,
  .app-screens,
  .download-card,
  .metric-panel,
  .metric-row,
  .city-card-hero,
  .section-title,
  .city-about-shell,
  .city-about-grid,
  .support-hero-copy,
  .support-primary-card,
  .support-grid,
  .support-contact-list,
  .district-columns,
  .reviews-grid,
  .faq-list,
  .start-flow,
  .step-list,
  .requirements-list {
    width: min(340px, calc(100vw - 48px));
    max-width: min(340px, calc(100vw - 48px));
  }

  .support-contacts-section > div,
  .support-contact-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .support-contacts-section {
    display: block;
    padding: 42px 16px;
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
  }

  .support-contacts-section h2,
  .support-contacts-section p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .support-contact-list {
    margin-top: 22px;
    width: auto;
    max-width: none;
  }

  .support-contact-list article {
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .footer {
    display: grid;
    gap: 18px;
    padding: 28px 16px;
  }

  .footer-links {
    display: grid;
    align-items: stretch;
    gap: 8px;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--primary-dark);
    background: white;
  }

  .hero-side {
    margin-top: 28px;
  }

  .city-card-hero {
    padding: 22px;
    margin-top: 26px;
  }

  .city-hero .city-card-hero {
    margin-top: 26px;
  }

  .city-card-hero strong {
    font-size: 1.55rem;
    overflow-wrap: anywhere;
  }

  .hero-actions .button {
    width: min(340px, calc(100vw - 48px));
  }

  .phone-shell {
    width: min(100%, 250px);
  }

  .app-screens img {
    width: 230%;
    transform: translateX(-56%);
    object-position: right center;
  }

  .app-screens {
    aspect-ratio: 1 / 1.12;
  }

  .city-cta {
    margin-left: 16px;
    margin-right: 16px;
  }
}

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