/* ==========================================================================
   888starz — Mobile App Download Page
   Clean, lightweight, responsive CSS (no external dependencies)
   ========================================================================== */

/* -------------------------- Design tokens -------------------------- */
:root {
  --bg: #17181b;
  --bg-soft: #1c1d20;
  --bg-elevated: #232427;
  --bg-card: #262729;
  --bg-card-2: #2b2c2f;
  --border: #333438;
  --border-soft: #2c2d30;

  --red: #e01a22;
  --red-dark: #8a0f12;
  --red-deep: #4a0a0c;

  --green: #17b94d;
  --green-dark: #129c40;

  --text: #ffffff;
  --text-muted: #b7b7ba;
  --text-dim: #86878a;
  --text-faint: #616264;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --container: 1680px;
  --header-h: 96px;

  --shadow-1: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.icon {
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ------------------------------ Buttons ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: filter 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
  filter: brightness(1.08);
}

.btn--green {
  background: var(--green);
  color: #fff;
  text-transform: uppercase;
}

.btn--dark {
  background: #3a3b3e;
  color: #fff;
  text-transform: uppercase;
}

.btn--dark:hover {
  background: #46474a;
}

/* ============================== HEADER ================================ */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--bg-elevated);
}

.topbar {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-soft);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 52px;
}

.logo {
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  height: 22px;
  width: auto;
}

.topbar__badges {
  flex: 1;
  min-width: 0;
  line-height: 0;
}

.topbar__badges img {
  height: 20px;
  width: auto;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.chevron-down {
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

/* Main nav */
.mainnav {
  background: linear-gradient(180deg, #b41017, #7a0d12);
  position: relative;
}

.mainnav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.mainnav__list {
  display: flex;
  align-items: stretch;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.mainnav__list li {
  flex-shrink: 0;
}

.mainnav__list a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #f2d9da;
  white-space: nowrap;
}

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

.mainnav__list li.is-active a {
  background: var(--red);
  color: #fff;
  border-radius: 4px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22e06b;
  box-shadow: 0 0 0 3px rgba(34, 224, 107, 0.25);
}

.star-ico {
  width: 12px;
  height: 12px;
  color: #ffd23f;
}

.mainnav__list .chevron-down {
  color: currentColor;
}

/* ============================== HERO =================================== */
.hero {
  position: relative;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: top right;
  background-color: var(--bg-soft);
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero__inner {
  width: 100%;
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero__content {
  max-width: 620px;
}

.hero__title {
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero__desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 28px;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-bottom: 36px;
}

.feature-card {
  background: rgba(38, 39, 41, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  backdrop-filter: blur(2px);
}

.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.4;
  color: #f0f0f0;
  font-weight: 500;
}

.hero__download-label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.download-buttons {
  display: flex;
  gap: 12px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(23, 185, 77, 0.28);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.btn-download:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-download .icon {
  width: 20px;
  height: 20px;
}

/* ============================ SAFETY NOTICE ============================ */
.safety-notice {
  background: var(--bg);
  padding: 64px 0 8px;
}

.safety-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}

.safety-card img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.safety-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.safety-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ============================ INSTALL SLIDERS =========================== */
.install-section {
  background: var(--bg);
  padding: 72px 0 24px;
}

.install-section__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 48px;
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.slider__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 76px;
  background: var(--bg-card-2);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  transition: background-color 0.15s ease;
}

.slider__arrow:hover {
  background: #3a3b3e;
}

.slider__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.slider__arrow .icon {
  width: 16px;
  height: 16px;
}

.slider__viewport {
  flex: 1;
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.35s ease;
}

.slider__slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  gap: 46px;
  padding: 4px;
}

/* Phone mock-up */
.phone {
  width: 184px;
  flex-shrink: 0;
  text-align: left;
}

.phone__frame {
  position: relative;
  width: 184px;
  height: 380px;
  background: var(--bg-card-2);
  border: 3px solid #59595c;
  border-radius: 22px;
  padding: 14px 12px;
  overflow: hidden;
}

.phone__caption {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: #e9e9ea;
  line-height: 1.4;
}

.phone__caption b {
  flex-shrink: 0;
  color: #fff;
}

.phone__header {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.phone__header .icon {
  width: 9px;
  height: 9px;
}

.phone__header--action {
  justify-content: space-between;
}

.phone__header--action span:last-child {
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bar {
  height: 13px;
  background: #3a3b3e;
  border-radius: 4px;
  margin-bottom: 8px;
}

.bar--60 { width: 60%; }
.bar--70 { width: 70%; }
.bar--80 { width: 80%; }
.bar--90 { width: 90%; }
.bar--100 { width: 100%; }

.phone__label {
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.phone__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.phone__link .icon {
  width: 13px;
  height: 13px;
}

.phone__dialog {
  background: #313234;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 12px;
  margin: 10px 0;
}

.phone__dialog b {
  display: block;
  font-size: 11px;
  margin-bottom: 6px;
}

.phone__dialog p {
  font-size: 9.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 10px;
}

.phone__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid #444;
}

.phone__actions--plain {
  border-top: none;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 0;
}

.phone__actions span:first-child {
  color: var(--text-dim);
  font-weight: 400;
}

.phone__actions .accent {
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.phone__toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-size: 10.5px;
  color: #e9e9ea;
  margin-bottom: 8px;
}

.toggle {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 16px;
  background: var(--green);
  border-radius: 10px;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.phone__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.avatar-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-dot .icon {
  width: 14px;
  height: 14px;
  color: #fff;
}

.avatar-dot--sm {
  width: 20px;
  height: 20px;
}

.avatar-dot--sm .icon {
  width: 11px;
  height: 11px;
}

.phone__account-name {
  font-size: 10px;
  line-height: 1.4;
}

.phone__account-name b {
  display: block;
  color: var(--green);
  font-size: 10.5px;
}

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(160deg, #35d07f, #0fae53);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 6px;
}

.phone__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: auto;
}

.phone__grid span {
  height: 26px;
  background: #3a3b3e;
  border-radius: 5px;
}

.phone__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.phone__tiles span {
  height: 48px;
  background: #3a3b3e;
  border-radius: 6px;
}

.phone__passcode {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 84%;
  margin: 14px auto 10px;
}

.phone__passcode span {
  aspect-ratio: 1;
  background: #3a3b3e;
  border-radius: 6px;
}

.phone__center-text {
  text-align: center;
  font-size: 10px;
  color: #e9e9ea;
  line-height: 1.4;
  padding: 0 6px;
}

.phone__fields {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 9px;
  color: var(--text-dim);
  margin-top: 10px;
}

.phone__fields div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #3a3b3e;
}

.phone__fields span {
  color: #e9e9ea;
}

.cursor-click {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cursor-click::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  opacity: 0.55;
}

.cursor-click .icon {
  position: relative;
  width: 12px;
  height: 12px;
  color: #fff;
}

/* Dots */
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #3f6b4c;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.slider__dots button.is-active {
  background: var(--green);
  transform: scale(1.2);
}

/* ============================ INFO ACCORDION ============================ */
.info-section {
  background: var(--bg);
  padding: 24px 0 72px;
}

.accordion {
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--border-soft);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-elevated);
  border: none;
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
}

.accordion-header .chevron-down {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.accordion-item.is-open .accordion-header .chevron-down {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--bg-elevated);
  transition: max-height 0.3s ease;
}

.accordion-item.is-open .accordion-panel {
  max-height: 2600px;
}

.accordion-panel__inner {
  padding: 28px 24px 36px;
  border-top: 1px solid var(--border-soft);
}

.info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.info-columns > div {
  min-width: 0;
}

.info-columns h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-columns h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.info-columns p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.info-columns ol,
.info-columns ul.bullets {
  margin: 0 0 14px;
  padding-left: 18px;
}

.info-columns ol li,
.info-columns ul.bullets li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 12.5px;
}

.info-table th {
  text-align: left;
  color: var(--text-dim);
  font-weight: 600;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-soft);
}

.info-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
  line-height: 1.5;
  vertical-align: top;
}

.info-table td:first-child {
  color: #fff;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-list dt {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.faq-list dd {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================ FOOTER ================================ */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-soft);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  padding: 40px 24px;
}

.footer-columns h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.footer-columns ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-columns a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-columns a:hover {
  color: #fff;
}

.footer-columns .apps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-columns .apps-link .icon {
  width: 15px;
  height: 15px;
}

.footer-notice {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 16px;
  align-items: stretch;
  padding: 0 24px 24px;
}

.footer-badge-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.footer-badge-card img {
  height: 74px;
  width: auto;
}

.footer-text-card {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-text-card p {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.footer-text-card a {
  color: var(--text-muted);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11.5px;
  color: var(--text-faint);
  line-height: 1.6;
}

.footer-copy a {
  color: var(--green);
  text-decoration: underline;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #3a3b3e;
  color: #fff;
}

.social-icons a:hover {
  background: var(--green);
}

.social-icons .icon {
  width: 15px;
  height: 15px;
}

.age-badge {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
}

.mobile-version {
  margin: 0 24px 24px;
  padding: 14px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text-muted);
}

/* ================================================================
   RESPONSIVE — Tablet
   ================================================================ */
@media (max-width: 1100px) {
  .hero__title {
    font-size: 34px;
  }

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

  .footer-notice {
    grid-template-columns: 1fr 1fr;
  }

  .footer-text-card:nth-of-type(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .container {
    padding: 0 18px;
  }

  .topbar__badges {
    display: none;
  }

  .topbar__right {
    margin-left: auto;
  }

  .hero {
    min-height: 0;
    background-position: center right -60px;
  }

  .hero__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(20, 20, 20, 0.55) 0%,
      rgba(20, 20, 20, 0.15) 40%,
      rgba(20, 20, 20, 0.75) 100%
    );
  }

  .hero__inner {
    position: relative;
    z-index: 1;
  }
}

/* ================================================================
   RESPONSIVE — Mobile
   ================================================================ */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  /* Header */
  .topbar__inner {
    height: 56px;
    gap: 8px;
  }

  .logo img {
    height: 16px;
  }

  .topbar__right {
    gap: 6px;
  }

  .btn.btn--green,
  .btn.btn--dark {
    padding: 8px 10px;
    font-size: 10.5px;
  }

  .mainnav__list a {
    height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  /* Hero */
  .hero {
    background-position: center 18%;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__desc {
    font-size: 13.5px;
    max-width: 100%;
  }

  .hero__features {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 10px;
    margin-bottom: 28px;
  }

  .feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
  }

  .feature-card img {
    margin-bottom: 0;
  }

  .hero__download-label {
    font-size: 17px;
  }

  .download-buttons {
    gap: 10px;
  }

  .btn-download {
    min-width: 0;
    flex: 1;
    height: 46px;
    font-size: 13.5px;
  }

  /* Safety */
  .safety-notice {
    padding: 40px 0 4px;
  }

  .safety-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    gap: 14px;
  }

  /* Slider */
  .install-section {
    padding: 48px 0 16px;
  }

  .install-section__title {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .slider {
    gap: 8px;
  }

  .slider__arrow {
    width: 30px;
    height: 60px;
  }

  .slider__slide {
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    justify-content: flex-start;
  }

  .slider__slide::-webkit-scrollbar {
    height: 4px;
  }

  .slider__slide::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
  }

  .phone,
  .phone__frame {
    width: 148px;
  }

  .phone__frame {
    height: 306px;
    scroll-snap-align: start;
  }

  .phone__caption {
    font-size: 12px;
  }

  /* Accordion */
  .accordion-header {
    padding: 15px 16px;
    font-size: 12px;
  }

  .accordion-panel__inner {
    padding: 20px 16px 28px;
  }

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

  .info-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Footer */
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
    padding: 32px 16px;
  }

  .footer-notice {
    grid-template-columns: 1fr;
    padding: 0 16px 20px;
  }

  .footer-text-card:nth-of-type(3) {
    grid-column: auto;
  }

  .footer-badge-card img {
    height: 60px;
  }

  .footer-bottom {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-version {
    margin: 0 16px 20px;
  }
}

@media (max-width: 420px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .hero__title {
    font-size: 23px;
  }
}
