:root {
  --night: #08090c;
  --night-2: #0e1016;
  --card: #14171f;
  --card-2: #1b1f2a;
  --orange: #ff6a00;
  --orange-2: #ff8a33;
  --gold: #ffc107;
  --green: #00a36a;
  --green-2: #007749;
  --red: #e23d28;
  --cream: #f6efe3;
  --muted: #9aa3b2;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --max: 1220px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Oswald", "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--night);
  color: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.promo {
  background: linear-gradient(90deg, var(--green-2), #0b5c3b 40%, #7a2a00);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.promo__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 16px;
  flex-wrap: wrap;
  text-align: center;
}

.promo__tag {
  background: var(--gold);
  color: #111;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo__text--sm {
  display: none;
}

.promo__cta {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.clock {
  display: inline-flex;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.clock b {
  background: rgba(0, 0, 0, 0.35);
  min-width: 28px;
  display: inline-block;
  text-align: center;
  border-radius: 6px;
  padding: 1px 4px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 9, 12, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 9, 12, 0.94);
}

.header__inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.brand span em {
  font-style: normal;
  color: var(--orange);
}

.nav {
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 20px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold), #e6a800);
  color: #14110a;
  box-shadow: 0 10px 24px rgba(255, 193, 7, 0.28);
}

.btn--orange {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.32);
}

.btn--line {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

.btn--pulse {
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 106, 0, 0);
  }
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding: 40px 0 48px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.92) 0%, rgba(8, 9, 12, 0.55) 48%, rgba(8, 9, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.15) 0%, rgba(8, 9, 12, 0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill--live {
  background: var(--red);
}

.pill--free {
  background: var(--gold);
  color: #111;
}

.pill--sa {
  background: var(--green);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5.1rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--gold);
}

.hero__lead {
  font-size: 1.08rem;
  color: #d8d3c8;
  max-width: 560px;
  margin-bottom: 22px;
}

.hero__lead strong {
  color: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  color: #c9c3b6;
  font-size: 0.9rem;
}

.trust strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}

.stats {
  background: #0c0e13;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 22px 0;
}

.stats__grid div {
  text-align: center;
}

.stats__grid strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.stats__grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.row {
  padding: 36px 0 8px;
}

.row__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.row__head h2,
.block h2,
.faq h2,
.final h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.row__head p,
.block p.sub {
  color: var(--muted);
}

.see {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 158px;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 18px;
  scrollbar-width: thin;
}

.scroller--wide {
  grid-auto-columns: 210px;
}

.poster {
  cursor: pointer;
  position: relative;
}

.poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.poster__meta {
  margin-top: 8px;
}

.poster__meta strong {
  display: block;
  font-size: 0.92rem;
}

.poster__meta span {
  color: var(--muted);
  font-size: 0.75rem;
}

.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gold);
  color: #111;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.badge--hot {
  background: var(--red);
  color: #fff;
}

.badge--new {
  background: var(--green);
  color: #fff;
}

.poster::after {
  content: "FREE";
  position: absolute;
  right: 8px;
  bottom: 46px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 5px;
  letter-spacing: 0.05em;
}

.spotlight {
  padding: 20px 0 10px;
}

.spot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.spot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.05), rgba(8, 9, 12, 0.88));
}

.spot__body {
  position: relative;
  z-index: 2;
  padding: 28px;
  max-width: 640px;
}

.spot__body h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 8px 0 10px;
}

.live {
  padding: 28px 0 10px;
}

.live__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
}

.live-card {
  position: relative;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.live-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffb4ae;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(226, 61, 40, 0.25);
}

.channels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.ch {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
}

.ch strong {
  display: block;
  font-size: 0.95rem;
}

.ch span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

.why {
  padding: 40px 0 10px;
}

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

.why-card {
  background: linear-gradient(180deg, var(--card), #10131a);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
}

.why-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.14);
  margin-bottom: 12px;
  font-style: normal;
}

.why-card h3 {
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  padding: 36px 0 8px;
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
}

.steps li {
  background: var(--card);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.steps li span {
  font-family: var(--display);
  color: var(--gold);
  font-size: 1.6rem;
}

.download {
  padding: 40px 0 16px;
}

.download__box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #161a24, #0d1016);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
}

.checks {
  margin: 16px 0 22px;
  display: grid;
  gap: 8px;
}

.checks li {
  list-style: none;
  color: #ddd6c8;
}

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

.store {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a0b0f;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 150px;
  cursor: pointer;
}

.store small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}

.phone {
  width: min(280px, 100%);
  margin: 0 auto;
  background: #0a0b10;
  border: 8px solid #2a2e38;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.phone__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px 8px;
}

.phone__top img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.phone__banner {
  margin: 0 12px 10px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  text-align: center;
  border-radius: 8px;
  padding: 6px;
  font-size: 0.78rem;
}

.phone__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 12px 12px;
}

.phone__grid img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.bar {
  height: 6px;
  margin: 0 12px 8px;
  background: #2a2e38;
  border-radius: 99px;
  overflow: hidden;
}

.bar i {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.phone__note {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  padding-bottom: 14px;
}

.reviews {
  padding: 36px 0 8px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
}

.quote img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.quote blockquote {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.quote span {
  color: var(--muted);
  font-size: 0.8rem;
}

.faq {
  padding: 36px 0 8px;
}

.faq__list {
  display: grid;
  gap: 8px;
  max-width: 820px;
}

.faq-item {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 800;
  list-style: none;
}

.faq-item p {
  padding: 0 18px 16px;
  color: var(--muted);
}

.final {
  padding: 20px 0 40px;
}

.final__box {
  text-align: center;
  border-radius: 24px;
  padding: 48px 22px;
  border: 1px solid var(--line);
  background: #12141a;
}

.final__box p {
  color: #ddd6c8;
  margin: 10px auto 20px;
  max-width: 560px;
}

.footer {
  padding: 28px 0 110px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer a {
  display: block;
  margin: 6px 0;
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}

.dock__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dock__copy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dock__copy img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.dock__copy strong {
  display: block;
}

.dock__copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.dock .btn {
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .stats__grid,
  .why__grid,
  .steps ol,
  .reviews__grid,
  .live__grid,
  .download__box,
  .footer__grid,
  .channels {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #0c0e13;
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  .btn--ghost {
    display: none;
  }

  .live-card:first-child {
    grid-column: 1 / -1;
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .hide-sm {
    display: none !important;
  }

  .promo {
    font-size: 0.74rem;
  }

  .promo__inner {
    gap: 8px;
    padding: 7px 12px;
    flex-wrap: nowrap;
  }

  .promo__text {
    display: none;
  }

  .promo__text--sm {
    display: block;
    flex: 1;
    min-width: 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .promo__cta {
    display: none;
  }

  .promo__tag {
    flex-shrink: 0;
    padding: 2px 7px;
    font-size: 0.64rem;
  }

  .clock {
    flex-shrink: 0;
    gap: 4px;
  }

  .clock b {
    min-width: 22px;
    font-size: 0.72rem;
  }

  .header {
    position: sticky;
    top: 0;
  }

  .header__inner {
    height: 56px;
    gap: 10px;
  }

  .brand {
    font-size: 1.2rem;
    gap: 8px;
  }

  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .menu-btn {
    display: none;
  }

  .header__cta .btn--gold {
    padding: 8px 12px;
    font-size: 0.78rem;
    gap: 5px;
  }

  .header__cta .btn--gold svg {
    width: 14px;
    height: 14px;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 28px 0 22px;
    align-items: flex-end;
  }

  .hero__bg {
    object-position: center 12%;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(8, 9, 12, 0.2) 0%, rgba(8, 9, 12, 0.55) 38%, rgba(8, 9, 12, 0.94) 100%);
  }

  .hero::before {
    content: "";
    display: block;
    padding-top: 42%;
  }

  .pills {
    gap: 6px;
    margin-bottom: 10px;
  }

  .pill {
    padding: 4px 8px;
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 11vw, 2.7rem);
    line-height: 0.95;
    margin-bottom: 10px;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .hero__actions {
    margin-bottom: 14px;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
  }

  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust div {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
  }

  .trust strong {
    font-size: 1rem;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .stats__grid strong {
    font-size: 1.35rem;
  }

  .stats__grid span {
    font-size: 0.72rem;
  }

  .row,
  .why,
  .steps,
  .reviews,
  .faq,
  .download,
  .live,
  .spotlight {
    padding-top: 22px;
    padding-bottom: 4px;
  }

  .row__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
  }

  .row__head h2,
  .faq h2,
  .final h2 {
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .row__head p {
    font-size: 0.82rem;
  }

  .see {
    font-size: 0.82rem;
  }

  .scroller,
  .scroller--wide {
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 0 14px 14px;
    grid-auto-columns: 42%;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .scroller::-webkit-scrollbar {
    display: none;
  }

  .poster {
    scroll-snap-align: start;
  }

  .poster img {
    border-radius: 10px;
  }

  .poster__meta strong {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .poster::after {
    bottom: 42px;
    font-size: 0.58rem;
  }

  .spot {
    min-height: 280px;
    border-radius: 16px;
  }

  .spot__body {
    padding: 16px;
  }

  .spot__body h3 {
    font-size: 1.7rem;
  }

  .spot__body p {
    font-size: 0.86rem;
  }

  .spot__body .btn {
    width: 100%;
    margin-top: 6px;
  }

  .live__grid,
  .why__grid,
  .steps ol,
  .reviews__grid,
  .channels,
  .download__box,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .live-card,
  .live-card:first-child {
    min-height: 180px;
    grid-column: auto;
  }

  .live-card__body {
    padding: 14px;
  }

  .live-card h3 {
    font-size: 1.05rem;
  }

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

  .ch {
    padding: 12px 8px;
  }

  .ch strong {
    font-size: 0.85rem;
  }

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

  .why-card {
    padding: 14px;
    border-radius: 12px;
  }

  .why-card i {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }

  .why-card h3 {
    font-size: 0.92rem;
  }

  .why-card p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .steps li {
    padding: 16px;
  }

  .download__box {
    padding: 18px 16px;
    border-radius: 16px;
    gap: 16px;
  }

  .download__box h2 {
    font-size: 1.35rem;
  }

  .phone {
    display: none;
  }

  .stores {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store {
    min-width: 0;
    width: 100%;
  }

  .download__box .btn--lg {
    width: 100%;
  }

  .quote {
    padding: 16px;
  }

  .faq-item summary {
    padding: 14px 14px;
    font-size: 0.92rem;
  }

  .final {
    padding: 16px 0 24px;
  }

  .final__box {
    padding: 28px 16px;
    border-radius: 16px;
  }

  .final__box h2 {
    font-size: 1.7rem;
  }

  .final__box .btn {
    width: 100%;
  }

  .footer {
    padding: 22px 0 96px;
  }

  .footer__grid {
    gap: 16px;
  }

  .dock {
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  }

  .dock__copy img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .dock__copy strong {
    font-size: 0.88rem;
  }

  .dock__copy span {
    font-size: 0.7rem;
  }

  .dock .btn {
    padding: 11px 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 380px) {
  .promo__tag {
    display: none;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .scroller,
  .scroller--wide {
    grid-auto-columns: 46%;
  }

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