:root {
  --bg: #f5f1ea;
  --surface: #fffaf4;
  --surface-strong: #ffffff;
  --text: #171514;
  --muted: #6f6860;
  --line: rgba(23, 21, 20, 0.08);
  --primary: #ef3b35;
  --primary-dark: #d62822;
  --primary-soft: rgba(239, 59, 53, 0.12);
  --shadow: 0 18px 42px rgba(33, 24, 18, 0.07);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(239, 59, 53, 0.08), transparent 24%),
    radial-gradient(circle at right center, rgba(239, 59, 53, 0.05), transparent 18%),
    var(--bg);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(239, 59, 53, 0.42);
  outline-offset: 2px;
  border-radius: 12px;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 10px 0 36px;
}

.site-header {
  position: sticky;
  top: 8px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 12px;
  margin-bottom: 8px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(23, 21, 20, 0.05);
  box-shadow: 0 10px 24px rgba(33, 24, 18, 0.05);
  border-radius: 18px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
}

.nav-menu a {
  transition: color 160ms ease;
}

.nav-menu a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  width: 44px;
}

.footer-brand img {
  width: 108px;
}

.language-pill {
  display: inline-flex;
  padding: 3px;
  gap: 4px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.language-pill button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 26px;
  border-radius: 999px;
  color: #76726d;
  font-weight: 600;
  font-size: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.language-pill .is-active {
  background: var(--primary);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--surface-strong);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary-dark), #ff4e47);
  color: #fff;
  box-shadow: 0 16px 28px rgba(239, 59, 53, 0.24);
}

.button-hero-primary {
  min-height: 42px;
  padding: 0 20px;
  font-size: 15px;
  box-shadow: 0 18px 34px rgba(239, 59, 53, 0.26);
}

.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.button-dark {
  background: #131313;
  color: #fff;
}

.header-cta {
  white-space: nowrap;
}

.nav-mobile-cta {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 20px;
  align-items: center;
  border-radius: 24px;
  padding: 30px;
  min-height: auto;
  margin-bottom: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 255, 255, 0.75));
  border: 1px solid rgba(23, 21, 20, 0.05);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3,
dt {
  margin: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(40px, 5.2vw, 66px);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: -0.05em;
}

h3 {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.04em;
}

.hero-text,
.section-lead,
.advantage-copy p,
.feature-card p,
.advantage-card p,
.showcase-card p,
.download-copy p,
.testimonial-card p,
.faq-list p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.button-cta-main,
.button-cta-alt {
  min-width: 220px;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
}

.button-cta-main {
  background: linear-gradient(135deg, #ef2d24, #ff3e36);
  color: #fff;
  box-shadow: 0 18px 34px rgba(239, 59, 53, 0.22);
}

.button-cta-alt {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(23, 21, 20, 0.08);
  box-shadow: 0 10px 22px rgba(33, 24, 18, 0.05);
}

.hero-store-badge img {
  height: 60px;
}

.hero-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 520px;
}

.hero-stats {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats div {
  padding: 14px 15px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 21, 20, 0.05);
}

.hero-stats dt {
  font-size: 16px;
  margin-bottom: 8px;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  padding: 8px 0 8px 18px;
}

.hero-glow {
  position: absolute;
  inset: 56px 30px 56px 88px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 38% 40%, rgba(239, 59, 53, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 242, 0.4));
  border: 1px solid rgba(23, 21, 20, 0.05);
}

.phone-stage {
  position: absolute;
  inset: 18px 10px 18px 72px;
}

.phone {
  position: absolute;
  width: min(194px, 27vw);
  background: #111;
  padding: 9px;
  border-radius: 28px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.phone img {
  border-radius: 20px;
  width: 100%;
}

.phone-main {
  left: 16%;
  top: 34px;
  z-index: 3;
  transform: rotate(-3deg);
}

.phone-floating {
  right: 9%;
  top: 52px;
  z-index: 2;
  transform: rotate(6deg) scale(0.9);
  opacity: 0.78;
  filter: saturate(0.92);
}

.visual-card {
  position: absolute;
  max-width: 180px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 21, 21, 0.06);
  box-shadow: 0 14px 30px rgba(37, 24, 24, 0.08);
}

.visual-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.visual-card span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.visual-card-bottom {
  left: 6%;
  bottom: 12px;
  right: auto;
  z-index: 4;
  max-width: 220px;
}

.section-grid,
.advantage-section,
.trust-section,
.app-section,
.safety-section,
.testimonials-section,
.download-section,
.faq-section,
.site-footer {
  padding: 20px 0;
  margin-top: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.section-heading {
  margin-bottom: 14px;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.feature-grid,
.advantage-list,
.commercial-grid,
.trust-grid,
.showcase-grid,
.testimonial-track {
  display: grid;
  gap: 12px;
}

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

.feature-card,
.advantage-card,
.commercial-card,
.trust-card,
.testimonial-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 21, 21, 0.05);
  box-shadow: 0 10px 22px rgba(33, 24, 18, 0.04);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
}

.commercial-section {
  padding: 20px 0;
  margin-top: 8px;
}

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

.commercial-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.commercial-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.commercial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.commercial-steps {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.commercial-card-highlight {
  background: linear-gradient(180deg, rgba(239, 59, 53, 0.08), rgba(255, 255, 255, 0.92));
}

.commercial-card .button {
  margin-top: 4px;
}

.advantage-section,
.safety-section,
.download-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.advantage-list {
  grid-template-columns: 1fr;
}

.trust-grid {
  grid-template-columns: 1.1fr 1fr 1fr 0.9fr;
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.metric-list div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(239, 59, 53, 0.06);
}

.metric-list strong,
.payment-list span,
.pill-list span {
  font-weight: 600;
}

.metric-list strong {
  display: block;
  margin-bottom: 6px;
}

.metric-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.pill-list,
.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span,
.payment-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 21, 20, 0.08);
  font-size: 14px;
}

.payment-list span {
  background: rgba(239, 59, 53, 0.08);
  color: var(--text);
}

.showcase-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.showcase-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 0.5fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 21, 21, 0.05);
  box-shadow: 0 10px 22px rgba(33, 24, 18, 0.04);
}

.showcase-feature-copy {
  display: grid;
  gap: 10px;
}

.showcase-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.showcase-feature-copy h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.02;
}

.showcase-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
}

.showcase-feature-phone {
  display: flex;
  justify-content: center;
}

.showcase-feature-phone img {
  width: min(300px, 100%);
  aspect-ratio: 9 / 19;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.showcase-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.showcase-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 21, 21, 0.05);
  box-shadow: 0 10px 22px rgba(33, 24, 18, 0.04);
}

.showcase-mini img {
  width: 100%;
  aspect-ratio: 10 / 16;
  object-fit: cover;
  border-radius: 16px;
}

.showcase-mini h3 {
  font-size: 18px;
}

.showcase-mini p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.safety-panel {
  padding: 4px 0;
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), #ff615c);
  box-shadow: 0 0 0 6px var(--primary-soft);
}

.checkout-preview {
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(239, 59, 53, 0.08), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(21, 21, 21, 0.05);
}

.checkout-preview img {
  width: min(360px, 100%);
  margin: 0 auto;
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

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

.testimonial-card {
  min-height: 200px;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

.testimonial-card.is-active {
  transform: translateY(-8px);
  background: linear-gradient(160deg, #111111, #28211f);
  color: #fff;
}

.testimonial-card.is-active p,
.testimonial-card.is-active span {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
  margin-top: 12px;
}

.download-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 22px;
}

.download-promise {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.store-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 150px;
  min-height: 56px;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(23, 21, 20, 0.08);
  box-shadow: 0 10px 22px rgba(33, 24, 18, 0.05);
  position: relative;
}

.store-badge-image {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
}

.store-badge-image img {
  display: block;
  height: 56px;
  width: auto;
}

.store-badge-top {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
}

.store-badge strong {
  margin-top: 4px;
  font-size: 20px;
  line-height: 1;
}

.store-badge-web {
  background: #fff;
  color: var(--text);
}

.download-stack {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-download-front {
  right: 12%;
  top: 18px;
  z-index: 3;
  transform: rotate(-8deg);
}

.phone-download-back {
  left: 10%;
  bottom: 8px;
  opacity: 0.78;
  transform: rotate(7deg) scale(0.92);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 21, 21, 0.05);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 26px 22px;
  border-top: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 82, 72, 0.18), transparent 24%),
    linear-gradient(180deg, #141414, #1d1a19);
  color: #f6f1ea;
  box-shadow: 0 18px 40px rgba(18, 14, 12, 0.18);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.footer-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6b61;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(246, 241, 234, 0.78);
}

.footer-links a,
.footer-links span {
  color: inherit;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link i {
  width: 16px;
  text-align: center;
  font-size: 16px;
  color: #ff6b61;
}

.footer-store-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-store-status span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(246, 241, 234, 0.82);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .hero,
  .advantage-section,
  .safety-section,
  .download-section,
  .section-heading.split {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 24px;
  }

  .hero-visual,
  .download-stack {
    min-height: 520px;
  }

  .hero-glow {
    inset: 42px 8px 32px 28px;
  }

  .showcase-stage {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 4px;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 16px;
    background: rgba(255, 250, 244, 0.98);
  }

  .menu-toggle {
    display: inline-block;
    order: 3;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid rgba(23, 21, 20, 0.07);
    border-radius: 14px;
  }

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

  .nav-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 21, 20, 0.05);
    font-size: 14px;
  }

  .nav-mobile-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 4px;
    background: linear-gradient(135deg, var(--primary-dark), #ff4e47);
    color: #fff;
    border: 0;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 14px 28px rgba(239, 59, 53, 0.2);
  }

  .nav-menu a.nav-mobile-cta,
  .nav-menu a.nav-mobile-cta:visited,
  .nav-menu a.nav-mobile-cta:hover,
  .nav-menu a.nav-mobile-cta:active {
    background: linear-gradient(135deg, var(--primary-dark), #ff4e47);
    color: #fff;
  }

  .header-actions {
    margin-left: auto;
    gap: 6px;
  }

  .header-cta {
    display: inline-flex;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-cta-main,
  .button-cta-alt {
    width: 100%;
    min-width: 0;
  }

  .hero-store-badge img {
    width: 100%;
    height: auto;
  }

  h1 {
    font-size: clamp(36px, 13vw, 54px);
  }

  h2 {
    font-size: clamp(26px, 10vw, 38px);
  }

  .feature-grid,
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .advantage-section,
  .trust-section,
  .app-section,
  .safety-section,
  .testimonials-section,
  .download-section,
  .faq-section,
  .site-footer {
    padding: 16px 0;
  }

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

  .phone {
    width: min(220px, 68vw);
    padding: 8px;
    border-radius: 26px;
  }

  .phone img {
    border-radius: 18px;
  }

  .hero-visual,
  .download-stack {
    min-height: 420px;
  }

  .download-stack {
    min-height: 360px;
  }

  .phone-download-front {
    right: 8%;
    top: 10px;
  }

  .phone-download-back {
    left: 6%;
    bottom: 0;
  }

  .hero-glow {
    inset: 38px 2px 18px 18px;
    border-radius: 20px;
  }

  .phone-main {
    left: 8%;
    top: 42px;
  }

  .phone-floating {
    right: 2%;
    top: 8px;
  }

  .visual-card-bottom {
    right: 0;
    bottom: 10px;
  }

  .visual-card {
    max-width: 150px;
    padding: 10px 12px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-grid,
  .advantage-list,
  .commercial-grid,
  .trust-grid,
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .store-actions {
    flex-direction: column;
  }

  .download-primary-actions {
    flex-direction: column;
  }

  .store-badge,
  .store-badge-image,
  .button-cta-main,
  .button-cta-alt {
    width: 100%;
  }

  .store-badge-image img {
    width: 100%;
    height: auto;
  }

  .showcase-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .showcase-mini {
    scroll-snap-align: start;
    min-width: 0;
  }

  .showcase-feature {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .showcase-feature-phone img {
    width: min(240px, 100%);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--container));
    padding-bottom: 18px;
  }

  .site-header {
    position: sticky;
    top: 6px;
    padding: 8px;
    gap: 8px;
    background: #fffaf4;
  }

  .brand img {
    width: 40px;
  }

  .header-actions {
    margin-left: 0;
    order: 2;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    order: 3;
    margin-left: auto;
  }

  .hero {
    padding: 16px 12px;
    gap: 14px;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
    align-items: stretch;
  }

  .button-cta-main,
  .button-cta-alt {
    min-height: 52px;
    padding: 0 20px;
    font-size: 16px;
  }

  .hero-store-badge,
  .hero-actions .button-cta-alt {
    width: 100%;
    min-width: 0;
  }

  .hero-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
  }

  .hero-store-badge img {
    width: 100%;
    max-height: 52px;
    object-fit: contain;
  }

  .hero-note {
    margin-top: 8px;
    font-size: 13px;
  }

  .hero-stats {
    margin-top: 14px;
    gap: 10px;
  }

  .hero-stats div {
    padding: 12px;
  }

  .hero-stats dt {
    font-size: 15px;
  }

  .hero-stats dd {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .hero-glow,
  .phone-floating,
  .visual-card {
    display: none;
  }

  .phone-stage {
    position: relative;
    inset: auto;
    display: flex;
    justify-content: center;
    padding: 4px 0 2px;
  }

  .phone-main {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(250px, 74vw);
  }

  .download-section {
    gap: 14px;
  }

  .download-primary-actions {
    gap: 12px;
    margin: 14px 0 16px;
  }

  .download-stack {
    min-height: auto;
    padding-bottom: 6px;
  }

  .phone-download-front,
  .phone-download-back {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .phone-download-back {
    display: none;
  }

  .store-badge-image {
    min-height: 48px;
  }

  .store-badge-image img {
    max-height: 54px;
    width: auto;
    max-width: 100%;
  }

  .faq-list summary {
    font-size: 17px;
  }

  .site-footer {
    margin-top: 14px;
    border-radius: 20px;
    padding: 20px 14px;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(30px, 11vw, 40px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(24px, 9vw, 32px);
    line-height: 1.04;
  }

  .eyebrow {
    font-size: 11px;
  }

  .button-cta-main,
  .button-cta-alt {
    min-height: 48px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 6px;
  }

  .hero-store-badge {
    min-height: 48px;
  }

  .hero-store-badge img,
  .store-badge-image img {
    max-height: 50px;
  }

  .phone-main {
    width: min(220px, 78vw);
    padding: 7px;
    border-radius: 24px;
  }

  .phone-main img {
    border-radius: 16px;
  }

  .testimonial-card {
    min-height: 0;
  }
}

