/* Final mobile offer corrections. Loaded last so legacy offer rules cannot win. */

/* Text-only LadnaFace lockup across quiz, offer and footer. */
.brand {
  gap: 0 !important;
}

.brand__mark-image,
.brand__mark,
.brand__lockup {
  display: none !important;
}

.offer-page,
.offer-page .offer-shell {
  overflow-x: clip;
}

/* Shared offer countdown immediately before each pricing block. */
.offer-page .lp-price-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 76px;
  margin: 0 0 14px;
  padding: 17px 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(105deg, #ff5159 0%, #cf3f83 100%);
  box-shadow: 0 12px 28px rgba(216, 65, 108, 0.18);
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.offer-page .lp-price-countdown span {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.offer-page .lp-price-countdown strong {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.offer-page .lp-price-countdown small {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.offer-page .lp-final-plan-wrap {
  width: 100%;
}

@media (max-width: 560px) {
  .offer-page .lp-price-countdown {
    gap: 4px;
    min-height: 54px;
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 15px;
  }

  .offer-page .lp-price-countdown span {
    font-size: 15px;
    line-height: 1.1;
  }

  .offer-page .lp-price-countdown strong {
    font-size: 30px;
  }

  .offer-page .lp-price-countdown small {
    font-size: 14px;
  }
}

@media (max-width: 359px) {
  .offer-page .lp-price-countdown span {
    font-size: 12.5px;
  }

  .offer-page .lp-price-countdown strong {
    font-size: 27px;
  }

  .offer-page .lp-price-countdown small {
    font-size: 12.5px;
  }
}

/* Animated before/after hero: keep both photo cards fully visible above the
   progress panel, then reveal them in a natural sequence. */
.offer-page .lp-intro .lp-goal-visual {
  isolation: isolate;
  width: min(100%, 390px);
  height: clamp(410px, 112vw, 448px);
  max-height: none;
  aspect-ratio: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 228, 201, 0.95), transparent 42%),
    radial-gradient(circle at 88% 16%, rgba(226, 207, 255, 0.92), transparent 46%),
    linear-gradient(150deg, #fff8ef 0%, #f2eaff 100%);
}

.offer-page .lp-goal-art {
  position: absolute;
  inset: 0 0 88px;
  overflow: hidden;
}

.offer-page .lp-goal-art::before,
.offer-page .lp-goal-art::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 230px;
  height: 92px;
  border: 3px solid rgba(255, 111, 97, 0.68);
  border-radius: 50%;
  pointer-events: none;
}

.offer-page .lp-goal-art::before {
  top: 8px;
  right: -78px;
  transform: rotate(-17deg);
}

.offer-page .lp-goal-art::after {
  bottom: 11px;
  left: -78px;
  transform: rotate(-24deg);
}

.offer-page .lp-goal-card {
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(57, 43, 69, 0.16);
  opacity: 0;
  will-change: transform, opacity;
}

.offer-page .lp-goal-card img {
  position: absolute;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.offer-page .lp-goal-card span {
  position: absolute;
  z-index: 2;
  top: 11px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  color: #8b625c;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 18px rgba(51, 39, 58, 0.1);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.offer-page .lp-goal-card--before {
  top: 24px;
  left: 16px;
  width: 45.5%;
  height: 298px;
  transform: translate(-16px, 18px) rotate(-3deg) scale(0.94);
  animation: lp-before-card-in 0.68s 0.12s cubic-bezier(0.2, 0.78, 0.2, 1) forwards;
}

.offer-page .lp-goal-card--before img {
  top: -36px;
  left: -7px;
  width: 181%;
}

.offer-page .lp-goal-card--before span {
  left: 10px;
}

.offer-page .lp-goal-card--after {
  z-index: 2;
  top: 24px;
  right: 16px;
  width: 45.5%;
  height: 298px;
  transform: translate(18px, 22px) rotate(3deg) scale(0.94);
  animation: lp-after-card-in 0.72s 0.68s cubic-bezier(0.2, 0.78, 0.2, 1) forwards;
}

.offer-page .lp-goal-card--after img {
  top: -117px;
  left: -162px;
  width: 202%;
}

.offer-page .lp-goal-card--after span {
  right: 10px;
}

.offer-page .lp-goal-panel {
  z-index: 4;
  opacity: 0;
  transform: translateY(12px);
  animation: lp-goal-panel-in 0.48s 1.28s ease-out forwards;
}

@keyframes lp-before-card-in {
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0) scale(1);
  }
}

@keyframes lp-after-card-in {
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0) scale(1);
  }
}

@keyframes lp-goal-panel-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 390px) {
  .offer-page .lp-intro .lp-goal-visual {
    height: 414px;
  }

  .offer-page .lp-goal-card--before {
    top: 22px;
    left: 13px;
    width: 45.5%;
    height: 282px;
  }

  .offer-page .lp-goal-card--before img {
    top: -34px;
  }

  .offer-page .lp-goal-card--after {
    top: 22px;
    right: 13px;
    width: 45.5%;
    height: 282px;
  }

  .offer-page .lp-goal-card--after img {
    top: -107px;
    left: -147px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-page .lp-goal-card,
  .offer-page .lp-goal-panel {
    opacity: 1;
    animation: none;
  }

  .offer-page .lp-goal-card--before {
    transform: none;
  }

  .offer-page .lp-goal-card--after {
    transform: none;
  }

  .offer-page .lp-goal-panel {
    transform: none;
  }
}

/* The visual shrinks because of its max-height/aspect-ratio pair. Auto margins
   keep the resulting width centered instead of leaving it pinned to the left. */
.offer-page .lp-intro .lp-goal-visual {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Reference progress: one current step, four completed goal steps. */
.offer-page .lp-goal-panel i b,
.offer-page .lp-goal-panel i.is-goal b {
  background: #e3e2e7 !important;
}

.offer-page .lp-goal-panel i:not(.is-goal) b:first-child {
  background: #ff6f61 !important;
}

.offer-page .lp-goal-panel i.is-goal b:nth-child(-n + 4) {
  background: #9ccb43 !important;
}

/* Compact reserved discount block: message, timer and CTA only. */
.offer-page .lp-quick-buy > div:first-child {
  align-content: center;
  min-width: 0;
  gap: 5px;
}

.offer-page .lp-quick-buy > div:first-child > span {
  max-width: 190px;
  color: #353842;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.offer-page .lp-quick-buy .lp-offer-timer {
  margin-top: 0;
  color: #171e29;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
}

/* Keep the personal profile fully visible and proportioned like the reference. */
.offer-page .lp-profile-row {
  align-items: center;
  width: min(100%, 390px);
  min-height: 76px;
  margin-bottom: 18px;
  padding: 10px 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid #ecebef;
  border-bottom: 1px solid #ecebef;
  background: transparent;
  box-shadow: none;
}

.offer-page .lp-profile-row > div {
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 10px;
  min-height: 54px;
  padding: 0 12px;
}

.offer-page .lp-profile-row > div + div {
  border-left: 1px solid #e4e3e8;
}

.offer-page .lp-profile-row img {
  width: 50px;
  height: 50px;
}

.offer-page .lp-profile-row span {
  color: #777780;
  font-size: 12px;
  line-height: 1.12;
}

.offer-page .lp-profile-row strong {
  margin-top: 5px;
  color: #1b222d;
  font-size: 17px;
  line-height: 1.08;
}

.offer-page .lp-profile-row .lp-level {
  grid-template-columns: 48px minmax(0, 1fr);
}

.offer-page .lp-level > i {
  justify-content: center;
  align-items: end;
  gap: 4px;
  height: 46px;
}

/* One-time price tag: the complete old/new price sits inside one even arrow. */
.offer-page .lp-plan-daily,
.offer-page .lp-plan-option--selected .lp-plan-daily {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 8px 7px 8px 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(115deg, #ff6f61 0%, #ff8375 100%);
  clip-path: polygon(15px 0, 100% 0, 100% 100%, 15px 100%, 0 50%);
}

.offer-page .lp-plan-daily::before,
.offer-page .lp-plan-option--selected .lp-plan-daily::before {
  content: none;
  display: none;
}

.offer-page .lp-plan-daily del {
  color: rgba(255, 255, 255, 0.9);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.offer-page .lp-plan-daily strong {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.offer-page .lp-plan-daily small {
  display: none;
}

/* Full Ukrainian day labels and compact, readable lesson captions. */
.offer-page .lp-program-week small {
  overflow: visible;
  color: #6f6b79;
  font-size: 6.5px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.offer-page .lp-program-week b {
  color: #252631;
  font-size: 7px;
  line-height: 1.08;
  text-align: center;
}

/* Calendar preview: two clear rows, a faded third row and the instructor
   layered over the schedule exactly like the visual reference. */
.offer-page .lp-program-card {
  height: 420px;
  min-height: 420px;
  padding-top: 8px;
}

.offer-page .lp-program-weeks {
  z-index: 1;
  height: 310px;
  padding-bottom: 0;
  overflow: hidden;
}

.offer-page .lp-program-week:nth-child(3) {
  opacity: 0.38;
}

.offer-page .lp-program-week:nth-child(n + 4) {
  display: none;
}

.offer-page .lp-program-weeks::after {
  content: "";
  z-index: 2;
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 112px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96));
}

.offer-page .lp-program-card::before {
  content: "";
  z-index: 3;
  pointer-events: none;
  position: absolute;
  bottom: -70px;
  left: 50%;
  width: min(88%, 420px);
  height: 460px;
  background: url("./ladna/course-instructor-cutout-20260721.png") center bottom / contain no-repeat;
  filter: drop-shadow(0 15px 20px rgba(67, 53, 100, 0.13));
  transform: translateX(-50%);
}

.offer-page .lp-program-card > img.lp-instructor {
  display: none;
}

.offer-page .lp-program-card::after {
  z-index: 4;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 88%);
}

/* Text testimonials shown before the photographic results. */
.offer-page .lp-text-reviews {
  background: #f6f6f7;
  padding-top: 46px;
  padding-bottom: 48px;
}

.offer-page .lp-text-reviews h2 {
  max-width: 390px;
  margin: 0 auto 25px;
}

.offer-page .lp-text-review-list {
  display: grid;
  gap: 18px;
}

.offer-page .lp-text-review-list article {
  padding: 27px 25px 25px;
  border: 1px solid rgba(36, 40, 49, 0.045);
  border-radius: 22px;
  background: #fff;
  text-align: left;
  box-shadow: 0 11px 27px rgba(31, 36, 45, 0.065);
}

.offer-page .lp-text-review-stars {
  display: block;
  margin-bottom: 17px;
  color: #ffc928;
  font-size: 29px;
  letter-spacing: 2.5px;
  line-height: 1;
}

.offer-page .lp-text-review-list p {
  margin: 0;
  color: #202630;
  font-size: 18px;
  line-height: 1.45;
}

.offer-page .lp-text-review-list strong {
  display: block;
  margin-top: 19px;
  color: #a85fd0;
  font-size: 19px;
  font-weight: 800;
}

.offer-page .lp-text-review-note {
  max-width: 390px;
  margin: 23px auto 0;
  color: #77787e;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

/* Reviews intentionally keep only the supplied image, name and age. */
.offer-page .lp-ugc-caption {
  display: block;
  padding: 15px 18px 17px;
  text-align: center;
}

.offer-page .lp-ugc-caption strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
}

@media (min-width: 391px) and (max-width: 560px) {
  .offer-page .lp-intro .lp-goal-visual {
    width: min(100%, 357px);
  }
}

@media (max-width: 560px) {
  .offer-page .lp-quick-buy {
    grid-template-columns: minmax(0, 1.06fr) minmax(142px, 0.94fr);
    gap: 8px;
    min-height: 78px;
    margin: 7px 14px 0;
    padding: 8px 9px 8px 14px;
    border-radius: 17px;
  }

  .offer-page .lp-quick-buy > div:first-child > span {
    max-width: none;
    white-space: nowrap;
  }

  .offer-page .lp-quick-buy .lp-offer-timer {
    margin-top: 0;
    font-size: 30px;
  }

  .offer-page .lp-quick-buy button {
    min-height: 62px;
    padding-inline: 12px;
    font-size: 15px;
    border-radius: 15px;
  }

  .offer-page .lp-profile-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-page .lp-profile-row > div {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 8px;
    padding-inline: 9px;
  }

  .offer-page .lp-profile-row img {
    width: 46px;
    height: 46px;
  }

  .offer-page .lp-profile-row .lp-level {
    grid-template-columns: 43px minmax(0, 1fr);
  }

  .offer-page .lp-profile-row span {
    font-size: 10px;
  }

  .offer-page .lp-profile-row strong {
    font-size: 15px;
  }

  .offer-page .lp-plan-option {
    grid-template-columns: 25px minmax(0, 1fr) 98px;
    gap: 9px;
    min-height: 96px;
    padding: 13px 9px 13px 12px;
  }

  .offer-page .lp-plan-daily {
    min-height: 64px;
    padding: 8px 6px 8px 18px;
  }

  .offer-page .lp-program-week {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .offer-page .lp-program-week > strong {
    padding-inline: 3px;
    font-size: 8px;
  }

  .offer-page .lp-program-week > div {
    gap: 2px;
    padding: 7px 4px;
  }

  .offer-page .lp-program-week span {
    min-height: 58px;
    padding: 4px 1px;
  }

  .offer-page .lp-program-weeks {
    padding-bottom: 0;
  }

  .offer-page .lp-program-card > img.lp-instructor {
    width: 62%;
    height: 252px;
    bottom: -10px;
  }

  .offer-page .lp-text-reviews {
    padding: 40px 18px 42px;
  }

  .offer-page .lp-text-reviews h2 {
    margin-bottom: 21px;
    font-size: 29px;
  }

  .offer-page .lp-text-review-list article {
    padding: 23px 20px 22px;
    border-radius: 20px;
  }

  .offer-page .lp-text-review-stars {
    margin-bottom: 15px;
    font-size: 27px;
  }

  .offer-page .lp-text-review-list p {
    font-size: 17px;
    line-height: 1.46;
  }

  .offer-page .lp-text-review-list strong {
    margin-top: 17px;
    font-size: 18px;
  }
}

@media (max-width: 359px) {
  .offer-page .lp-quick-buy {
    grid-template-columns: minmax(0, 1fr) 128px;
    margin-inline: 12px;
    padding-left: 11px;
  }

  .offer-page .lp-quick-buy > div:first-child > span {
    font-size: 8px;
    white-space: normal;
  }

  .offer-page .lp-quick-buy .lp-offer-timer {
    font-size: 27px;
  }

  .offer-page .lp-quick-buy button {
    font-size: 13px;
  }

  .offer-page .lp-profile-row > div {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px;
    padding-inline: 7px;
  }

  .offer-page .lp-profile-row img {
    width: 42px;
    height: 42px;
  }

  .offer-page .lp-profile-row .lp-level {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .offer-page .lp-profile-row strong {
    font-size: 14px;
  }

  .offer-page .lp-plan-option {
    grid-template-columns: 23px minmax(0, 1fr) 90px;
    gap: 6px;
    padding-left: 9px;
  }
}

/* Rebuilt hero portraits: each card now owns a separate full portrait asset.
   Remove every legacy crop offset from the old overlapping collage. */
.offer-page .lp-goal-card--before img,
.offer-page .lp-goal-card--after img {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
}

.offer-page .lp-goal-card--before img {
  object-position: 50% 24%;
}

.offer-page .lp-goal-card--after img {
  object-position: 50% 24%;
}

/* Reference-matched hero choreography: the "before" portrait lands first,
   the "after" portrait overlaps it on a separate angle, then the real ribbon
   asset sweeps across the pair and resolves into a heart. */
.offer-page .lp-goal-art {
  overflow: hidden;
}

.offer-page .lp-goal-art::before {
  display: none;
}

.offer-page .lp-goal-art::after {
  z-index: 3;
  left: -7%;
  bottom: -4px;
  width: 114%;
  height: 116px;
  border: 0;
  border-radius: 0;
  background: url("ladna/offer-heart-ribbon-v1.png") center / 100% 100% no-repeat;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: none;
  will-change: clip-path, opacity;
  animation: lp-heart-ribbon-in 0.86s 1.42s cubic-bezier(0.22, 0.74, 0.2, 1) forwards;
}

.offer-page .lp-goal-card--before {
  z-index: 1;
  top: 34px;
  left: 22px;
  width: 49%;
  height: 286px;
  transform: translate(-104px, 28px) rotate(-14deg) scale(0.86);
  animation: lp-before-card-in 0.72s 0.1s cubic-bezier(0.16, 0.82, 0.24, 1) forwards;
}

.offer-page .lp-goal-card--after {
  z-index: 2;
  top: 23px;
  right: 14px;
  width: 52%;
  height: 292px;
  transform: translate(112px, -14px) rotate(13deg) scale(0.86);
  animation: lp-after-card-in 0.76s 0.7s cubic-bezier(0.16, 0.82, 0.24, 1) forwards;
}

.offer-page .lp-goal-panel {
  animation-delay: 1.82s;
}

@keyframes lp-before-card-in {
  0% {
    opacity: 0;
    transform: translate(-104px, 28px) rotate(-14deg) scale(0.86);
  }

  72% {
    opacity: 1;
    transform: translate(3px, -2px) rotate(-3.4deg) scale(1.015);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(-4.2deg) scale(1);
  }
}

@keyframes lp-after-card-in {
  0% {
    opacity: 0;
    transform: translate(112px, -14px) rotate(13deg) scale(0.86);
  }

  72% {
    opacity: 1;
    transform: translate(-3px, 2px) rotate(3deg) scale(1.015);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(3.8deg) scale(1);
  }
}

@keyframes lp-heart-ribbon-in {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 390px) {
  .offer-page .lp-goal-card--before {
    top: 33px;
    left: 20px;
    width: 49%;
    height: 272px;
  }

  .offer-page .lp-goal-card--after {
    top: 22px;
    right: 13px;
    width: 52%;
    height: 280px;
  }

  .offer-page .lp-goal-art::after {
    bottom: 0;
    height: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-page .lp-goal-art::after {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    animation: none;
  }

  .offer-page .lp-goal-card--before {
    transform: rotate(-4.2deg);
  }

  .offer-page .lp-goal-card--after {
    transform: rotate(3.8deg);
  }
}

/* Second animation pass: preserve the ribbon's source aspect ratio, use a
   thinner alpha asset and give the draw-on motion more time to breathe. */
.offer-page .lp-goal-art::after {
  left: -7%;
  bottom: -35px;
  width: 114%;
  height: 190px;
  background-image: url("ladna/offer-heart-ribbon-thin-v3.png");
  background-position: center bottom;
  background-size: 100% auto;
  animation-duration: 1.46s;
  animation-delay: 1.46s;
  animation-timing-function: cubic-bezier(0.22, 0.62, 0.18, 1);
}

.offer-page .lp-goal-card--before {
  top: 30px;
  left: 18px;
  width: 52%;
  height: 298px;
}

.offer-page .lp-goal-card--after {
  top: 19px;
  right: 10px;
  width: 56%;
  height: 304px;
}

.offer-page .lp-goal-panel {
  animation-delay: 2.62s;
}

@media (max-width: 390px) {
  .offer-page .lp-goal-card--before {
    top: 30px;
    left: 16px;
    width: 52%;
    height: 286px;
  }

  .offer-page .lp-goal-card--after {
    top: 19px;
    right: 10px;
    width: 56%;
    height: 294px;
  }

  .offer-page .lp-goal-art::after {
    bottom: -35px;
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-page .lp-goal-art::after {
    animation: none;
  }
}

/* Exact two-line hero title and a 30% shorter quick-buy header. */
.offer-page .lp-intro .lp-hero-title {
  max-width: none;
  font-size: clamp(24px, 7.35vw, 30px);
  line-height: 1.08;
}

.offer-page .lp-intro .lp-hero-title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .offer-page .lp-quick-buy {
    min-height: 56px;
    padding: 6px 8px 6px 12px;
    border-radius: 16px;
  }

  .offer-page .lp-quick-buy > div:first-child {
    gap: 2px;
  }

  .offer-page .lp-quick-buy > div:first-child > span {
    font-size: 9px;
    line-height: 1.05;
  }

  .offer-page .lp-quick-buy .lp-offer-timer {
    font-size: 27px;
  }

  .offer-page .lp-quick-buy button {
    min-height: 44px;
    padding-block: 7px;
    border-radius: 14px;
  }
}

@media (max-width: 359px) {
  .offer-page .lp-intro .lp-hero-title {
    font-size: 23px;
  }

  .offer-page .lp-quick-buy > div:first-child > span {
    font-size: 7.8px;
  }

  .offer-page .lp-quick-buy .lp-offer-timer {
    font-size: 25px;
  }

  .offer-page .lp-quick-buy button {
    min-height: 44px;
  }
}

/* Reliable short sequence: show the complete ribbon layer instead of exposing
   a tiny clipped fragment, then bring the progress labels in without a pause. */
.offer-page .lp-goal-art::after {
  clip-path: none;
  animation-name: lp-heart-ribbon-fade-in;
  animation-duration: 0.84s;
  animation-delay: 1.08s;
  animation-timing-function: cubic-bezier(0.2, 0.72, 0.2, 1);
}

.offer-page .lp-goal-panel {
  animation-delay: 1.34s;
}

@keyframes lp-heart-ribbon-fade-in {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 5px, 0) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-page .lp-goal-art::after {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Compact premium tariff cards: selected state follows the reference, while
   the price tag keeps a deeper arrow point and a larger one-time price. */
.offer-page .lp-plan-list {
  gap: 10px;
}

.offer-page .lp-plan-option {
  grid-template-columns: 23px minmax(0, 1fr) 102px;
  gap: 9px;
  min-height: 68px;
  padding: 7px 8px 7px 11px;
  border: 1px solid #ebe8eb;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(36, 31, 42, 0.055);
}

.offer-page .lp-plan-option--selected {
  border: 2px solid #ff6f61;
  background: #fff;
  box-shadow: 0 12px 28px rgba(255, 111, 97, 0.14);
}

.offer-page .lp-plan-radio {
  width: 23px;
  height: 23px;
}

.offer-page .lp-plan-copy {
  gap: 1px;
}

.offer-page .lp-plan-copy > strong {
  font-size: 13px;
  line-height: 1.15;
}

.offer-page .lp-plan-copy em {
  font-size: 10px;
  line-height: 1.15;
}

.offer-page .lp-plan-daily,
.offer-page .lp-plan-option--selected .lp-plan-daily {
  min-height: 50px;
  padding: 6px 7px 6px 21px;
  border-radius: 13px;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
}

.offer-page .lp-plan-daily del {
  font-size: 8.5px;
}

.offer-page .lp-plan-daily strong {
  margin-top: 3px;
  font-size: 20px;
  line-height: 0.95;
}

@media (max-width: 560px) {
  .offer-page .lp-plan-option {
    grid-template-columns: 23px minmax(0, 1fr) 102px;
    gap: 8px;
    min-height: 68px;
    padding: 7px 8px 7px 11px;
  }

  .offer-page .lp-plan-daily {
    min-height: 50px;
    padding: 6px 7px 6px 21px;
  }
}

@media (max-width: 359px) {
  .offer-page .lp-plan-option {
    grid-template-columns: 22px minmax(0, 1fr) 92px;
    gap: 6px;
    min-height: 66px;
    padding-left: 9px;
  }

  .offer-page .lp-plan-daily,
  .offer-page .lp-plan-option--selected .lp-plan-daily {
    min-height: 48px;
    padding-left: 19px;
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 18px 100%, 0 50%);
  }

  .offer-page .lp-plan-daily strong {
    font-size: 18px;
  }
}

/* Compact text testimonials: keep the proof readable without letting three
   reviews dominate the mobile landing page. */
.offer-page .lp-text-review-list {
  gap: 12px;
}

.offer-page .lp-text-review-list article {
  padding: 16px 18px 15px;
  border-radius: 18px;
  box-shadow: 0 8px 21px rgba(31, 36, 45, 0.055);
}

.offer-page .lp-text-review-stars {
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: 1.3px;
}

.offer-page .lp-text-review-list p {
  font-size: 14px;
  line-height: 1.36;
}

.offer-page .lp-text-review-list strong {
  margin-top: 10px;
  font-size: 15px;
}

@media (max-width: 359px) {
  .offer-page .lp-text-review-list article {
    padding: 14px 15px;
  }

  .offer-page .lp-text-review-stars {
    font-size: 18px;
  }

  .offer-page .lp-text-review-list p {
    font-size: 13.5px;
  }
}

/* Price-bearing CTAs keep one readable sentence, with the actual amount
   carrying the same visual weight as the selected tariff price. */
.offer-page .lp-cta-price {
  font-size: 1.12em;
  font-weight: 950;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.offer-page .lp-cta {
  gap: 3px;
  padding-inline: 6px;
  white-space: nowrap;
  font-size: clamp(14px, 4.1vw, 17px);
}

/* Rounded price tag: a softly rounded diamond creates the arrow point
   without the hard corners produced by clip-path. */
.offer-page .lp-plan-daily,
.offer-page .lp-plan-option--selected .lp-plan-daily {
  clip-path: none;
  overflow: visible;
  border-radius: 14px;
}

.offer-page .lp-plan-daily::before,
.offer-page .lp-plan-option--selected .lp-plan-daily::before {
  content: "";
  display: block;
  z-index: 0;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 5px;
  background: inherit;
  position: absolute;
  top: 50%;
  left: -7px;
  transform: translateY(-50%) rotate(45deg);
}

.offer-page .lp-plan-daily del,
.offer-page .lp-plan-daily strong {
  z-index: 1;
  position: relative;
}

/* App preview rebuilt as an actual product interface: one primary screen and
   two supporting screens, with no carousel controls or pagination. */
.offer-page .lp-app-preview {
  overflow: hidden;
  padding-top: 42px;
  padding-bottom: 42px;
  background:
    radial-gradient(circle at 50% 58%, rgba(235, 226, 255, 0.72), transparent 39%),
    #f7f7f8;
}

.offer-page .lp-app-preview h2 {
  margin-top: 0;
}

.offer-page .lp-app-showcase {
  width: calc(100% + 120px);
  height: 430px;
  margin: 25px -60px 0;
  position: relative;
}

.offer-page .lp-app-showcase .lp-phone {
  top: 56px;
  width: 170px;
  height: 330px;
  padding: 25px 9px 11px;
  border: 5px solid #161a21;
  border-radius: 30px;
  background: #fff;
  opacity: 1;
  overflow: hidden;
  transform: none;
  box-shadow: 0 18px 38px rgba(27, 31, 40, 0.18);
}

.offer-page .lp-app-showcase .lp-phone::before {
  z-index: 8;
  top: 7px;
  width: 51px;
  height: 13px;
  border-radius: 999px;
  background: #151920;
}

.offer-page .lp-app-showcase .lp-phone--main {
  z-index: 4;
  top: 0;
  left: 50%;
  width: 224px;
  height: 420px;
  padding: 27px 11px 12px;
  border-width: 6px;
  border-radius: 35px;
  transform: translateX(-50%);
}

.offer-page .lp-app-showcase .lp-phone--side:first-child {
  left: 0;
}

.offer-page .lp-app-showcase .lp-phone--side:nth-child(3) {
  right: 0;
}

.offer-page .lp-app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 13px;
  color: #20242c;
  font-size: 6px;
  line-height: 1;
}

.offer-page .lp-app-status b {
  font-weight: 900;
}

.offer-page .lp-app-status span {
  color: #272c35;
  letter-spacing: -0.12em;
  font-size: 5px;
}

.offer-page .lp-app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 5px;
  color: #1c222d;
}

.offer-page .lp-app-topbar strong {
  font-size: 9px;
  font-weight: 900;
}

.offer-page .lp-app-topbar em {
  padding: 3px 5px;
  border-radius: 999px;
  color: #785eaa;
  background: #f1ecff;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.offer-page .lp-phone--main .lp-app-topbar strong {
  font-size: 10px;
}

.offer-page .lp-phone--main h3 {
  margin: 10px 0 7px;
  color: #171d27;
  letter-spacing: -0.035em;
  font-size: 15px;
  line-height: 1.08;
  text-align: left;
}

.offer-page .lp-app-feature {
  height: 205px;
  margin-top: 10px;
  border-radius: 15px;
  background: #f0e8df;
  position: relative;
  overflow: hidden;
}

.offer-page .lp-app-feature::after {
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(20, 21, 25, 0.78));
  position: absolute;
  inset: 0;
}

.offer-page .lp-app-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 31%;
  display: block;
}

.offer-page .lp-app-feature > span,
.offer-page .lp-app-feature > strong,
.offer-page .lp-app-feature > small,
.offer-page .lp-app-feature > i {
  z-index: 2;
  position: absolute;
}

.offer-page .lp-app-feature > span {
  top: 9px;
  left: 8px;
  padding: 4px 6px;
  border-radius: 999px;
  color: #fff;
  background: rgba(29, 31, 37, 0.72);
  letter-spacing: 0.04em;
  font-size: 6px;
  font-weight: 900;
}

.offer-page .lp-app-feature > strong {
  right: 35px;
  bottom: 29px;
  left: 9px;
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
  text-align: left;
}

.offer-page .lp-app-feature > small {
  bottom: 13px;
  left: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 6px;
  font-weight: 700;
}

.offer-page .lp-app-feature > i {
  right: 9px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: #ff6f61;
  box-shadow: 0 7px 18px rgba(255, 111, 97, 0.32);
}

.offer-page .lp-app-feature > i svg {
  width: 13px;
  height: 13px;
}

.offer-page .lp-app-feature--main {
  height: 166px;
  margin-top: 0;
  background: #d9cec2;
}

.offer-page .lp-app-feature--main::after {
  background: linear-gradient(180deg, rgba(18, 20, 24, 0.06) 24%, rgba(18, 20, 24, 0.76) 100%);
}

.offer-page .lp-app-feature--main > .lp-app-video-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.92) contrast(1.02);
}

.offer-page .lp-app-progress-card {
  height: 205px;
  margin-top: 10px;
  padding: 14px 10px 10px;
  border: 1px solid rgba(124, 90, 196, 0.12);
  border-radius: 15px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(145deg, #f5efff 0%, #eee6ff 55%, #ffece6 100%);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.offer-page .lp-app-progress-card > span {
  color: #8a6bbe;
  letter-spacing: 0.08em;
  font-size: 6px;
  font-weight: 900;
}

.offer-page .lp-app-progress-card > strong {
  display: block;
  margin-top: 5px;
  color: #24202c;
  font-size: 12px;
  line-height: 1.1;
}

.offer-page .lp-app-progress-ring {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 20px auto 0;
  border-radius: 50%;
  background: conic-gradient(#ff766b 0 57%, rgba(255, 255, 255, 0.8) 57% 100%);
  position: relative;
  box-shadow: 0 10px 22px rgba(117, 87, 177, 0.13);
}

.offer-page .lp-app-progress-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.offer-page .lp-app-progress-ring b {
  z-index: 1;
  color: #ff6f61;
  font-size: 15px;
  font-weight: 900;
}

.offer-page .lp-app-progress-card > small {
  display: block;
  margin-top: 8px;
  color: #77717d;
  font-size: 6px;
  font-weight: 800;
  text-align: center;
}

.offer-page .lp-app-session-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-top: 0;
  padding-bottom: 29px;
}

.offer-page .lp-app-section-title {
  margin: 7px 0 5px;
  color: #1d222c;
  font-size: 8px;
  line-height: 1.1;
  text-align: left;
}

.offer-page .lp-app-session-grid article {
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0 6px;
  align-items: center;
  min-width: 0;
  padding: 4px;
  border: 1px solid #ececf0;
  border-radius: 10px;
  background: #fff;
  text-align: left;
  box-shadow: 0 5px 13px rgba(31, 36, 45, 0.07);
}

.offer-page .lp-app-session-grid img {
  grid-row: 1 / 3;
  width: 33px;
  height: 35px;
  border-radius: 7px;
  object-fit: cover;
}

.offer-page .lp-app-session-grid b {
  overflow: hidden;
  font-size: 6.5px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-page .lp-app-session-grid small {
  color: #898b92;
  font-size: 5.5px;
}

.offer-page .lp-app-bottom-nav {
  z-index: 5;
  position: absolute;
  right: 11px;
  bottom: 9px;
  left: 11px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  min-height: 24px;
  padding-top: 6px;
  border-top: 1px solid #ececf0;
  background: rgba(255, 255, 255, 0.96);
}

.offer-page .lp-app-bottom-nav span {
  display: grid;
  place-items: center;
  color: #9a9ca3;
  font-size: 5.5px;
  font-weight: 800;
}

.offer-page .lp-app-bottom-nav span::before {
  content: "";
  width: 10px;
  height: 3px;
  margin-bottom: 3px;
  border-radius: 999px;
  background: #d9d9df;
}

.offer-page .lp-app-bottom-nav .is-active {
  color: #ff6f61;
}

.offer-page .lp-app-bottom-nav .is-active::before {
  background: #ff6f61;
}

.offer-page .lp-phone--side .lp-app-feature > span {
  top: auto;
  right: 7px;
  bottom: 28px;
  left: 7px;
  border-radius: 0;
  padding: 0;
  background: transparent;
  font-size: 8px;
  text-align: left;
}

.offer-page .lp-phone--side .lp-app-feature > small {
  bottom: 13px;
  left: 7px;
  font-size: 6px;
}

.offer-page .lp-app-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 7px;
}

.offer-page .lp-app-mini-row span {
  overflow: hidden;
  padding: 6px 4px;
  border-radius: 8px;
  color: #4b4d55;
  background: #f4f1fb;
  font-size: 6px;
  font-weight: 800;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-page .lp-app-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 8px;
  padding: 7px 5px;
  border-radius: 10px;
  background: #f6f3fb;
}

.offer-page .lp-app-week span {
  display: grid;
  place-items: center;
  gap: 3px;
  color: #878991;
  font-size: 5px;
}

.offer-page .lp-app-week i {
  width: 12px;
  height: 12px;
  border: 1px solid #d3d4d9;
  border-radius: 50%;
  background: #fff;
}

.offer-page .lp-app-week .is-done i {
  border-color: #ff7b70;
  background: #ff7b70;
  box-shadow: inset 0 0 0 3px #fff;
}

@media (max-width: 359px) {
  .offer-page .lp-app-showcase {
    width: calc(100% + 100px);
    margin-inline: -50px;
  }

  .offer-page .lp-app-showcase .lp-phone--main {
    width: 212px;
  }

  .offer-page .lp-app-showcase .lp-phone--side {
    width: 158px;
  }
}

/* Reference-shaped tariff tag: a rounded diamond tip joins a separately
   rounded body, producing a short soft point without scalloped corners. */
.offer-page .lp-plan-daily,
.offer-page .lp-plan-option--selected .lp-plan-daily {
  overflow: hidden;
  padding-left: 21px;
  background: #ff7b70 !important;
  clip-path: none;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 102 50' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M20 0H88Q102 0 102 14V36Q102 50 88 50H20Q15 50 12 45L1 29Q-1 25 1 21L12 5Q15 0 20 0Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 102 50' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M20 0H88Q102 0 102 14V36Q102 50 88 50H20Q15 50 12 45L1 29Q-1 25 1 21L12 5Q15 0 20 0Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

.offer-page .lp-plan-daily::before,
.offer-page .lp-plan-option--selected .lp-plan-daily::before {
  content: none;
  display: none;
}

.offer-page .lp-plan-daily::after,
.offer-page .lp-plan-option--selected .lp-plan-daily::after {
  content: none;
  display: none;
}

/* 2026-07-29: rebuilt the opening result visual around matched portrait
   photography. The previous 390px cap made this block look pinched on wider
   mobile viewports; these final rules let it use the full content width and
   keep both faces large without stretching either image. */
.offer-page .lp-intro .lp-goal-visual {
  width: min(100%, 520px) !important;
  height: clamp(420px, 97vw, 505px) !important;
  max-width: 520px;
  border-radius: 28px;
}

.offer-page .lp-goal-art {
  inset: 0 0 92px;
}

.offer-page .lp-goal-card {
  border-width: 4px;
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(52, 40, 64, 0.18);
}

.offer-page .lp-goal-card--before {
  top: 26px;
  left: 3%;
  width: 50%;
  height: calc(100% - 40px);
}

.offer-page .lp-goal-card--after {
  top: 16px;
  right: 2%;
  width: 52%;
  height: calc(100% - 28px);
}

.offer-page .lp-goal-card--before img,
.offer-page .lp-goal-card--after img {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% 0 !important;
  transform: none !important;
}

.offer-page .lp-goal-art::after {
  left: -2%;
  bottom: -20px;
  width: 104%;
  height: 140px;
  background-position: center bottom;
  background-size: 58% auto;
}

@media (max-width: 390px) {
  .offer-page .lp-intro .lp-goal-visual {
    height: 420px !important;
  }

  .offer-page .lp-goal-card--before {
    top: 25px;
    left: 3%;
    width: 50%;
    height: calc(100% - 39px);
  }

  .offer-page .lp-goal-card--after {
    top: 16px;
    right: 2%;
    width: 52%;
    height: calc(100% - 27px);
  }
}

/* 2026-07-29: the quiz never asks users to choose a face-yoga level.
   Replace that inferred value with a compact, factual summary assembled only
   from answers the user actually selected. */
.offer-page .lp-personal-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 440px);
  margin: 0 auto 18px;
  overflow: hidden;
  border: 1px solid #e6e1f2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(64, 51, 86, 0.08);
}

.offer-page .lp-summary-item {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 82px;
  padding: 13px 14px;
  text-align: left;
}

.offer-page .lp-summary-item:nth-child(odd) {
  border-right: 1px solid #e8e4ef;
}

.offer-page .lp-summary-item:nth-child(-n + 4) {
  border-bottom: 1px solid #e8e4ef;
}

.offer-page .lp-summary-item > span,
.offer-page .lp-summary-item--age > span {
  display: grid;
  min-width: 0;
  color: #817b8b;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.15;
}

.offer-page .lp-summary-item > strong,
.offer-page .lp-summary-item--age strong {
  display: block;
  margin-top: 5px;
  color: #1b222d;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.23;
  overflow-wrap: anywhere;
}

.offer-page .lp-summary-item--age {
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.offer-page .lp-summary-item--age img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  background: #ffe7dc;
}

.offer-page .lp-final .lp-personal-summary {
  background: #fff;
}

@media (max-width: 390px) {
  .offer-page .lp-personal-summary {
    border-radius: 19px;
  }

  .offer-page .lp-summary-item {
    min-height: 78px;
    padding: 12px 10px;
  }

  .offer-page .lp-summary-item > strong,
  .offer-page .lp-summary-item--age strong {
    font-size: 13px;
  }

  .offer-page .lp-summary-item--age {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 7px;
  }

  .offer-page .lp-summary-item--age img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 350px) {
  .offer-page .lp-summary-item {
    padding-inline: 8px;
  }

  .offer-page .lp-summary-item > strong,
  .offer-page .lp-summary-item--age strong {
    font-size: 12px;
  }
}

/* Personalized 28-day roadmap. It communicates variety and progression
   without pretending to reveal an exact post-purchase lesson schedule. */
.offer-page .lp-program-lead {
  max-width: 420px;
  margin: 0 auto;
  color: #6f7078;
  font-size: 12px;
  line-height: 1.5;
}

.offer-page .lp-program-roadmap-card {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid #e1d9ff;
  border-radius: 25px;
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 205, 192, 0.62), transparent 31%),
    linear-gradient(145deg, #f7f4ff 0%, #eee9ff 100%);
  box-shadow: 0 18px 42px rgba(63, 48, 102, 0.11);
}

.offer-page .lp-program-roadmap-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0 2px;
}

.offer-page .lp-program-roadmap-legend strong {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #272331;
  font-size: 12px;
  font-weight: 850;
}

.offer-page .lp-program-roadmap-legend strong span {
  color: #9c91ad;
}

.offer-page .lp-program-roadmap-legend small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #746f7d;
  font-size: 9px;
  font-weight: 750;
}

.offer-page .lp-program-roadmap-legend small i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff7166;
  box-shadow: 0 0 0 4px rgba(255, 113, 102, 0.13);
}

.offer-page .lp-program-roadmap {
  display: grid;
  gap: 9px;
}

.offer-page .lp-program-roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(150px, 1.08fr);
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 13px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 20px rgba(55, 45, 80, 0.07);
  text-align: left;
}

.offer-page .lp-program-roadmap-step::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #ff8a7f, #ff6f66);
}

.offer-page .lp-program-roadmap-step:nth-child(2)::before,
.offer-page .lp-program-roadmap-step:nth-child(4)::before {
  background: linear-gradient(180deg, #a987f4, #7f68d7);
}

.offer-page .lp-program-roadmap-copy {
  display: grid;
  min-width: 0;
}

.offer-page .lp-program-roadmap-copy > span {
  margin-bottom: 4px;
  color: #ff6f66;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.offer-page .lp-program-roadmap-copy > strong {
  color: #202631;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}

.offer-page .lp-program-roadmap-copy > small {
  margin-top: 4px;
  color: #777681;
  font-size: 9px;
  line-height: 1.3;
}

.offer-page .lp-program-zone-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.offer-page .lp-program-zone-chips span {
  padding: 6px 8px;
  border: 1px solid #e7e3ec;
  border-radius: 999px;
  background: #f5f4f7;
  color: #5f5d67;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.offer-page .lp-program-zone-chips span.is-selected {
  border-color: rgba(255, 113, 102, 0.42);
  background: #fff0ed;
  color: #d9564d;
  box-shadow: inset 0 0 0 1px rgba(255, 113, 102, 0.08);
}

@media (max-width: 390px) {
  .offer-page .lp-program-roadmap-card {
    padding: 13px;
    border-radius: 22px;
  }

  .offer-page .lp-program-roadmap-step {
    grid-template-columns: minmax(0, 0.9fr) minmax(132px, 1.1fr);
    gap: 8px;
    min-height: 84px;
    padding: 11px 10px 11px 12px;
    border-radius: 16px;
  }

  .offer-page .lp-program-roadmap-copy > strong {
    font-size: 12px;
  }

  .offer-page .lp-program-zone-chips {
    gap: 4px;
  }

  .offer-page .lp-program-zone-chips span {
    padding: 5px 6px;
    font-size: 7.5px;
  }
}

@media (max-width: 350px) {
  .offer-page .lp-program-roadmap-legend {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-page .lp-program-roadmap-step {
    grid-template-columns: 1fr;
  }

  .offer-page .lp-program-zone-chips {
    justify-content: flex-start;
  }
}
