/* -------------------------------------------------------- */
/* 🔹 Page Upsell Section                                  */
/* -------------------------------------------------------- */
/* App upsell with iPhone mockups — reusable across pages   */

.page-upsell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.page-upsell__mockups {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-l);
}

.page-upsell__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
  max-width: 420px;
}

.page-upsell__title {
  font-size: 28px;
  font-weight: var(--text-title-weight);
  color: var(--color-primary);
}

.page-upsell__description {
  font-size: var(--text-body-large);
  line-height: var(--text-body-large-height);
  color: var(--color-on-surface-variant);
  margin-bottom: var(--space-s);
}

.page-upsell__badge {
  display: inline-block;
}

.page-upsell__badge img {
  height: 48px;
  width: auto;
}


/* -------------------------------------------------------- */
/* 🔹 Desktop                                              */
/* -------------------------------------------------------- */

@media (min-width: 1000px) {
  .page-upsell__title {
    font-size: 32px;
  }

  .page-upsell__description {
    font-size: 18px;
    line-height: 1.6;
  }
}


/* -------------------------------------------------------- */
/* 🔹 Mobile                                                */
/* -------------------------------------------------------- */

@media (max-width: 767px) {
  .page-upsell__mockups {
    gap: var(--space-m);
  }

  /* Two mockups share the row so they fit narrow screens */
  .page-upsell__mockups .iphone-mockup {
    width: auto;
    flex: 1;
    min-width: 0;
    max-width: 180px;
  }

  .page-upsell__title {
    font-size: var(--text-headline-large);
  }
}
