@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@500;600;700;800&display=swap");
@import url("tokens.css");

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-solid);
  background: var(--bg);
}

a {
  color: var(--mint-dark);
}

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

/* Navigace — sticky nahoře */
.site-top {
  position: sticky;
  top: 0;
  z-index: 60;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(94, 207, 154, 0.15);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.nav__logo-img {
  display: block;
  width: auto;
  height: 1.35rem;
  max-width: min(42vw, 8.5rem);
}

.nav__cta {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  box-shadow: 0 4px 14px rgba(46, 154, 106, 0.3);
}

/* Hero */
.hero {
  padding: 1.5rem 1.25rem 2.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  border-radius: 999px;
}

.hero__title {
  font-size: clamp(1.85rem, 6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: normal;
  color: var(--mint-dark);
}

.hero__lead {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 0.65rem;
}

.hero__note {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 600;
}

.hero__note--social {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  font-weight: 700;
  color: var(--text);
}

.hero__faces {
  display: inline-flex;
  align-items: center;
  padding-right: 0.15rem;
}

.hero__faces img {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: -0.35rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.hero__faces img:first-child {
  margin-left: 0;
}

.hero__stars {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  line-height: 1;
  color: #f5b301;
}

.hero__stars .star--half {
  color: transparent;
  background: linear-gradient(90deg, #f5b301 55%, #d4d4d8 55%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__rating-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-soft);
  line-height: 1;
}

.hero__video {
  position: relative;
  margin: 0 auto 1.25rem;
  width: min(78vw, 20rem);
  max-width: 22.5rem;
  aspect-ratio: 9 / 16;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: #1a1f1e;
  box-shadow:
    0 20px 50px rgba(46, 154, 106, 0.22),
    0 0 0 3px var(--mint-light);
}

@media (min-width: 640px) {
  .hero__video {
    width: min(42vw, 22.5rem);
    max-width: 26.25rem;
  }
}

.hero__video-el {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  vertical-align: middle;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  background: linear-gradient(
    180deg,
    rgba(20, 28, 26, 0.15) 0%,
    rgba(20, 28, 26, 0.45) 55%,
    rgba(20, 28, 26, 0.72) 100%
  );
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hero__video.is-playing .hero__video-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero__video-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: rgba(45, 154, 106, 0.92);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero__video-play {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  color: var(--mint-dark);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__video-play:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(46, 154, 106, 0.35);
}

.hero__video-play:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.hero__video-play-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  animation: hero-video-pulse 2.2s ease-out infinite;
}

@keyframes hero-video-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video-play-ring {
    animation: none;
  }
}

.hero__video-play-icon {
  position: relative;
  font-size: 1.35rem;
  line-height: 1;
  margin-left: 0.15rem;
  font-weight: 800;
}

.hero__video-hint {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* Nekonečný slider jídel — celá šířka, jede za okraj a vrací se z druhé strany */
.hero__meals {
  --meal-card-w: clamp(11.5rem, 17.5vw, 16.5rem);
  --meal-gap: 0.75rem;
  --slider-duration: 38s;
  margin: 0.85rem 0 0;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.hero__meals-kicker {
  margin: 0 auto 0.65rem;
  padding: 0 1.25rem;
  max-width: 720px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--lavender);
  text-align: center;
}

.hero-meals-slider {
  width: 100%;
}

.hero-meals-slider__viewport {
  overflow: hidden;
  width: 100%;
  padding: 0.35rem 0 0.65rem;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.hero-meals-slider__track {
  display: flex;
  align-items: stretch;
  gap: var(--meal-gap);
  width: max-content;
  padding: 0.25rem 0;
  will-change: transform;
  animation: hero-meals-slide var(--slider-duration) linear infinite;
}

.hero-meals-slider.is-paused .hero-meals-slider__track {
  animation-play-state: paused;
}

@keyframes hero-meals-slide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--slider-shift, 0px)), 0, 0);
  }
}

.hero-meals-card {
  flex: 0 0 var(--meal-card-w);
  width: var(--meal-card-w);
  overflow: hidden;
  text-align: left;
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--mint-light);
  box-shadow: var(--shadow-soft);
}

.hero-meals-card img {
  display: block;
  width: 100%;
  height: 8.75rem;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.94);
}

.hero-meals-card__body {
  padding: 0.75rem 0.85rem 0.9rem;
}

.hero-meals-card__when {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  border-radius: 999px;
}

.hero-meals-card__name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .hero-meals-slider__track {
    animation: none;
  }
}

/* Před / Po — highlight sekce */
.transform {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.25rem;
  text-align: center;
}

.transform__kicker {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  border-radius: 999px;
}

.transform__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.transform__lead {
  margin: 0 auto 1.35rem;
  max-width: 26rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.5;
}

.transform__lead strong {
  color: var(--mint-dark);
  font-weight: 800;
}

.transform__compare {
  position: relative;
  margin: 0.25rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.transform__compare img {
  display: block;
  width: 100%;
  height: auto;
}

.transform__badge {
  position: absolute;
  top: 0.65rem;
  z-index: 2;
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
  background: rgba(28, 25, 23, 0.78);
  border-radius: 10px;
  pointer-events: none;
}

.transform__badge--before {
  left: 0.65rem;
}

.transform__badge--after {
  right: 0.65rem;
}

@media (max-width: 380px) {
  .transform__badge {
    top: 0.45rem;
    padding: 0.3rem 0.55rem;
    font-size: 0.62rem;
  }

  .transform__badge--before {
    left: 0.45rem;
  }

  .transform__badge--after {
    right: 0.45rem;
  }
}

/* Food strip */
.food-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
}

.food-strip__item {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.food-strip__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--mint);
  color: #fff;
  box-shadow: 0 8px 24px rgba(46, 154, 106, 0.35);
}

.btn--ghost {
  background: var(--card);
  color: var(--text);
  border-color: rgba(94, 207, 154, 0.35);
}

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

.section-cta {
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.section-cta__btn {
  min-width: 240px;
  font-size: 1.02rem;
  box-shadow: 0 6px 18px rgba(46, 154, 106, 0.3);
}

@media (max-width: 480px) {
  .section-cta__btn {
    width: 100%;
    min-width: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Extra mobile polish */
@media (max-width: 480px) {
  .bundle__intro {
    font-size: 0.9rem;
  }
  .weeks-preview {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .value-note {
    font-size: 0.85rem;
    padding: 0.6rem 0.85rem;
  }
}

/* Mobile optimizations for key sections */
@media (max-width: 480px) {
  .bundle__list {
    gap: 0.6rem;
  }
  .bundle__item {
    padding: 0.95rem 1rem;
    gap: 0.85rem;
  }
  .bundle__item h3 {
    font-size: 0.98rem;
  }
  .bundle__item p {
    font-size: 0.88rem;
  }

  .weeks-preview__grid {
    gap: 0.5rem;
  }
  .week-chip {
    padding: 0.85rem 0.6rem;
    font-size: 0.78rem;
  }
  .week-chip span {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
  }

  .perks-grid--full {
    gap: 0.4rem;
  }
  .perks-grid--full li {
    padding: 0.55rem 0.7rem;
    font-size: 0.88rem;
  }
}

section {
  padding: 2rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 1.25rem;
}

.bundle__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bundle__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(94, 207, 154, 0.1);
  border: 1px solid var(--mint-light);
}

.bundle__icon {
  font-size: 1.45rem;
  line-height: 1;
}

.bundle__item h3 {
  margin: 0 0 0.2rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.bundle__item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 500;
}

.bundle__intro {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-soft);
  text-align: center;
}

.bundle__intro strong {
  color: var(--mint-dark);
  font-weight: 800;
}

.bundle__item--highlight {
  border-color: var(--mint);
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--card) 72%);
}

.bundle__item--highlight h3 {
  color: var(--mint-dark);
}

/* Výhody a „recepty znovu“ napříč stránkou */
.value-note {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  background: var(--mint-light);
  border-radius: 14px;
  border: 1px solid rgba(94, 207, 154, 0.28);
}

.value-note--hero {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.value-note--center {
  text-align: center;
}

.value-note strong {
  color: var(--mint-dark);
  font-weight: 800;
}

.transform .value-note {
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.perks-grid {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  text-align: left;
}

.perks-grid--hero {
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.perks-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.5rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--mint-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.perks-grid li span:first-child {
  flex-shrink: 0;
  line-height: 1.2;
}

.perks-grid--full {
  gap: 0.55rem;
}

.perks-grid--full li {
  font-size: 0.88rem;
  padding: 0.65rem 0.85rem;
}

.benefits {
  padding-top: 1.5rem;
}

.benefits__lead {
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-soft);
  text-align: center;
}

.benefits__lead strong {
  color: var(--text);
  font-weight: 800;
}

.weeks-preview__foot {
  margin: 1rem 0 0;
}

.weeks-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.week-chip {
  padding: 1rem 0.75rem;
  background: var(--card);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  border: 2px solid transparent;
  font-weight: 600;
}

.week-chip:nth-child(1) {
  border-color: var(--peach-light);
  background: var(--peach-light);
}
.week-chip:nth-child(2) {
  border-color: var(--mint-light);
}
.week-chip:nth-child(3) {
  border-color: var(--sun-light);
}
.week-chip:nth-child(4) {
  border-color: var(--lavender-light);
}

.week-chip span {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
}

.week-chip strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.1rem;
  font-weight: 800;
}

/* Ukázka aplikace */
.demo {
  padding: 2rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.demo__badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--peach);
  background: var(--peach-light);
  border-radius: 999px;
}

.demo__lead {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.5;
}

.demo__device {
  display: flex;
  justify-content: center;
  margin-bottom: 1.15rem;
  background: transparent;
}

.demo__mockup {
  display: block;
  width: 100%;
  max-width: min(320px, 88vw);
  height: auto;
  margin: 0;
}

.demo__features {
  list-style: none;
  margin: 0 auto 1.25rem;
  padding: 0;
  max-width: 26rem;
  text-align: center;
}

.demo__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  margin: 0 auto;
  max-width: fit-content;
}

.demo__features span {
  font-size: 1.2rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.demo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.for-who {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.for-who__card {
  display: grid;
  gap: 0;
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--lavender-light);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

@media (max-width: 767px) {
  .for-who__card {
    grid-template-columns: 1fr;
  }
  .for-who__photo {
    width: 100%;
    max-height: none;
    aspect-ratio: 16 / 9;
  }
  .for-who__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;  /* doprostřed */
  }
}

.for-who__photo {
  margin: 0;
  aspect-ratio: 5 / 4;
  max-height: 220px;
  overflow: hidden;
}

.for-who__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.for-who__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.15rem 1.1rem;
}

.for-who__kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-dark);
}

.for-who__headline {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
}

.for-who__headline em {
  font-style: normal;
  color: #c53030;
}

.for-who__text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-soft);
}

.pricing {
  max-width: 360px;
}

.pricing__card {
  padding: 0;
  background: #5ecf9a;
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 24px 56px rgba(46, 154, 106, 0.38);
  border: none;
  text-align: center;
  overflow: hidden;
}

.pricing__hero {
  padding: 1.1rem 1rem 0.6rem;
}

.pricing__spark {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #8b5a14;
  background: var(--sun-light);
  border-radius: 999px;
  animation: pricing-pulse 2.4s ease-in-out infinite;
}

.pricing__urgency {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mint-dark);
  background: #fff;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing__bonus {
  display: inline-block;
  margin: 0.5rem 0 0;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #8b5a14;
  background: var(--sun-light);
  border-radius: 999px;
  animation: pricing-pulse 2.4s ease-in-out infinite;
}

@keyframes pricing-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 243, 214, 0.6);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 6px rgba(255, 243, 214, 0);
  }
}

.pricing__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.pricing__price {
  margin: 0;
  font-size: clamp(3.75rem, 18vw, 4.85rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.1),
    0 0 40px rgba(255, 255, 255, 0.35);
}

.pricing__perweek {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.pricing__hook {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.pricing__repeat {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.pricing__repeat strong {
  font-weight: 800;
}

.pricing__perks-panel {
  margin: 0 1rem 0.85rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pricing__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  text-align: left;
}

.pricing__perks li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.55rem 0.5rem;
  background: #fff;
  border-radius: 12px;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing__perk-ico {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.pricing .btn--buy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  overflow: hidden;
  width: calc(100% - 2rem);
  margin: 0 1rem 0.75rem;
  min-height: 62px;
  padding: 0.9rem 1.5rem;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 999px;
  font-size: clamp(1.4rem, 6vw, 1.6rem);
  font-weight: 800;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    0 0 0 3px rgba(255, 255, 255, 0.5);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn--buy__label {
  letter-spacing: 0.14em;
}

.btn--buy__arrow {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 800;
  transition: transform 0.15s ease;
}

.pricing .btn--buy:active .btn--buy__arrow {
  transform: translateX(4px);
}

.btn--buy__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: buy-shine 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes buy-shine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.pricing .btn--buy:active {
  transform: scale(0.97);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.pricing__legal {
  margin: 0.5rem 1rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.pricing__legal a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__legal-note {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
}

.hero__legal-note a {
  color: var(--mint-dark);
  font-weight: 700;
}

.pricing__pay {
  margin: 0 1rem 0.85rem;
  padding: 0.65rem 0.55rem;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 14px;
}

.pricing__pay-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

.pricing__pay-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.pricing__pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing__pay-icon {
  flex-shrink: 0;
  display: block;
}

.pricing__pay-icon--emoji {
  font-size: 1rem;
  line-height: 1;
}

.pricing__pay-pill--card {
  color: #1a5fb4;
}

.pricing__pay-pill--apple {
  color: #111;
}

.pricing__pay-pill--google {
  color: #3c4043;
}

.pricing__social {
  margin: 0 1rem 0.85rem;
  padding: 0.75rem 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  text-align: center;
}

.pricing__avatars {
  list-style: none;
  margin: 0 auto 0.55rem;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 280px;
}

.pricing__avatars li {
  width: 36px;
  height: 36px;
  margin-left: -10px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.pricing__avatars li:first-child {
  margin-left: 0;
}

.pricing__avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing__stars {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #f5b301;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.pricing__stars span {
  display: inline-block;
}

.pricing__social-text {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pricing__social-text strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
}

.pricing__social-text span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-soft);
}

.pricing__foot {
  margin: 0;
  padding: 0.7rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-soft);
  line-height: 1.4;
  background: var(--sun-light);
}

/* Recenze maminek */
.reviews {
  max-width: 1100px;
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
}

.reviews__head {
  margin-bottom: 1rem;
}

.reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.reviews__stars {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #f5b301;
}

.reviews__count {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.reviews__count strong {
  font-weight: 800;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

.review-card__avatar--default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #efefef;
  border: 1px solid #dbdbdb;
  color: #a8a8a8;
  flex-shrink: 0;
}

.review-card--anon .review-card__who strong {
  font-weight: 700;
  color: var(--text-soft);
}

.review-card--anon {
  background: #fcfcfc;
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.1);
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--mint-light);
}

.review-card__who {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.5rem;
  min-width: 0;
}

.review-card__who strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
}

.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-soft);
}

.review-card__verified span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 0.55rem;
  line-height: 1;
}

.review-card__stars {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #f5b301;
}

.review-card__stars .star--half {
  color: transparent;
  background: linear-gradient(90deg, #f5b301 55%, #d4d4d8 55%);
  -webkit-background-clip: text;
  background-clip: text;
}

.review-card__stars .star--off {
  color: #d4d4d8;
}

.review-card__text {
  flex: 1;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-soft);
}

.review-card__photo {
  margin-top: auto;
  padding-top: 0.65rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.review-card--muted {
  background: #fafafa;
}

.review-card__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 768px) {
  .reviews {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .reviews__head {
    justify-content: flex-start;
  }
  .reviews__summary {
    justify-content: flex-start;
  }
  .reviews__grid {
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.faq__item {
  margin-bottom: 0.55rem;
  padding: 1rem 1.05rem;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--mint-light);
}

.faq__item summary {
  font-weight: 700;
  cursor: pointer;
}

.faq__item p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer {
  padding: 2rem 1.25rem 3rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 600;
}

.footer p {
  margin: 0.3rem 0;
}

/* Právní stránky + zelená patička */
.legal-doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  text-align: left;
}

.legal-doc__back {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.legal-doc__back a {
  color: var(--mint-dark);
  text-decoration: none;
}

.legal-doc h1 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
}

.legal-doc h2 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.legal-doc p,
.legal-doc li {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.legal-doc p {
  margin: 0 0 0.85rem;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-doc__facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.legal-doc__facts li {
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.legal-footer {
  margin-top: 0;
  padding: 2.25rem 1.25rem calc(2rem + var(--safe-bottom));
  background: var(--mint-dark);
  color: #fff;
}

.legal-footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-footer a:hover {
  color: var(--mint-light);
}

.legal-footer__grid {
  display: grid;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto 1.75rem;
}

.legal-footer h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
}

.legal-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-footer__links li {
  margin: 0.35rem 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.legal-footer__links a {
  text-decoration: none;
}

.legal-footer__links a:hover {
  text-decoration: underline;
}

.legal-footer__col--note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 600;
  opacity: 0.95;
}

.legal-footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
}

.legal-footer__bottom p {
  margin: 0.35rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
}

.legal-footer__mini {
  line-height: 1.45;
}

@media (min-width: 768px) {
  .legal-footer__grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}

.page-narrow {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  text-align: center;
}

.page-narrow h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.gate-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 1rem;
  font-family: inherit;
  font-size: 1.05rem;
  border: 2px solid var(--mint-light);
  border-radius: 14px;
  margin-bottom: 0.65rem;
}

.msg-error {
  color: #c53030;
  font-weight: 700;
}

.msg-ok {
  padding: 1rem;
  background: var(--mint-light);
  border-radius: 14px;
  font-weight: 700;
  color: var(--mint-dark);
}

.thanks .btn--huge {
  min-height: 58px;
  font-size: 1.12rem;
  margin: 1rem 0 1.25rem;
}

.thanks-steps {
  text-align: left;
  padding: 1rem;
  background: var(--lavender-light);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 600;
}

.thanks-steps p {
  margin: 0 0 0.65rem;
}

.stripe-return {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 45;
  max-width: 420px;
  margin: 0 auto;
  padding: 1rem;
  background: var(--mint-light);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stripe-return .btn {
  width: 100%;
}

/* Cookie banner — jednoduchý, klidný, bez nutnosti souhlasu s non-essential (protože momentálně žádné nejsou) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 0.75rem 1rem;
  z-index: 100;
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-actions button {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-actions .btn-accept {
  background: var(--mint);
  color: #fff;
  border-color: var(--mint);
}

.cookie-actions .btn-accept:hover {
  background: #1f7a54;
}

/* Spodní sticky lišta — mobil i desktop, drží dole při scrollu */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.25rem 0.4rem calc(0.25rem + var(--safe-bottom));
  pointer-events: none;
}

.sticky-bar__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: min(100%, 640px);
  margin: 0 auto;
  padding: 0.3rem 0.5rem 0.3rem 0.6rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 253, 248, 0.98) 100%);
  border: 1.5px solid rgba(94, 207, 154, 0.45);
  border-radius: 999px;
  box-shadow:
    0 -4px 24px rgba(45, 154, 106, 0.14),
    0 8px 28px rgba(42, 42, 50, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sticky-bar__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  background: var(--mint-light);
  border-radius: 50%;
}

.sticky-bar__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.sticky-bar__text strong {
  font-size: 0.72rem;
  line-height: 1.1;
}

.sticky-bar__sub {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-soft);
  line-height: 1.15;
}

.sticky-bar__sub #sticky-price {
  color: var(--mint-dark);
  font-weight: 800;
}

.sticky-bar__btn {
  min-height: 32px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.sticky-bar.hidden {
  display: none !important;
}

body:has(.sticky-bar) {
  padding-bottom: calc(3.2rem + var(--safe-bottom));
}

@media (min-width: 768px) {
  .sticky-bar {
    padding: 0.75rem 1.5rem calc(0.75rem + var(--safe-bottom));
  }

  .sticky-bar__inner {
    max-width: 720px;
    gap: 0.85rem;
    padding: 0.7rem 1rem 0.7rem 1.15rem;
  }

  .sticky-bar__text strong {
    font-size: 0.95rem;
  }

  .sticky-bar__sub {
    font-size: 0.75rem;
  }

  .sticky-bar__btn {
    min-height: 46px;
    padding: 0.55rem 1.35rem;
    font-size: 0.95rem;
  }

  body:has(.sticky-bar) {
    padding-bottom: calc(3.5rem + var(--safe-bottom));
  }
}

@media (max-width: 380px) {
  .sticky-bar {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    padding-top: 0.25rem;
    padding-bottom: calc(0.25rem + var(--safe-bottom));
  }

  .sticky-bar__inner {
    gap: 0.35rem;
    padding: 0.25rem 0.45rem 0.25rem 0.55rem;
  }

  .sticky-bar__icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }

  .sticky-bar__text strong {
    font-size: 0.68rem;
  }

  .sticky-bar__sub {
    font-size: 0.58rem;
  }

  .sticky-bar__btn {
    padding: 0.22rem 0.55rem;
    font-size: 0.74rem;
    min-height: 34px;
  }

  body:has(.sticky-bar) {
    padding-bottom: calc(3.3rem + var(--safe-bottom));
  }
}

@media (max-width: 480px) {
  .for-who__body {
    padding: 0.6rem 0.85rem 0.7rem;
  }
  .for-who__headline {
    font-size: 0.98rem;
  }
  .for-who__text {
    font-size: 0.82rem;
  }

  .hero__faces img {
    width: 1.4rem;
    height: 1.4rem;
  }

  .hero__stars {
    font-size: 1rem;
  }

  .hero__rating-num {
    font-size: 0.9rem;
  }

  .hero__lead {
    font-size: 1.12rem;
  }

  .hero__video-tag {
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
  }

  /* Slightly enlarge sticky bar for better readability/tap on phone for 40+ */
  .sticky-bar {
    padding: 0.3rem 0.45rem calc(0.3rem + var(--safe-bottom));
  }
  .sticky-bar__inner {
    padding: 0.3rem 0.55rem 0.3rem 0.65rem;
    gap: 0.4rem;
  }
  .sticky-bar__icon {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.8rem;
  }
  .sticky-bar__text strong {
    font-size: 0.72rem;
  }
  .sticky-bar__sub {
    font-size: 0.62rem;
  }
  .sticky-bar__btn {
    min-height: 36px;
    padding: 0.25rem 0.6rem;
    font-size: 0.78rem;
  }
  body:has(.sticky-bar) {
    padding-bottom: calc(3.6rem + var(--safe-bottom));
  }
}

.live-join {
  position: fixed;
  bottom: 85px;
  right: 12px;
  z-index: 55;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  max-width: 210px;
  font-size: 0.78rem;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: all 0.25s ease;
}

.live-join.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: live-join-pop 0.4s ease;
}

@keyframes live-join-pop {
  0% {
    transform: translateY(10px) scale(0.9);
  }
  60% {
    transform: translateY(-3px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.live-join__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--mint-light);
  object-fit: cover;
}

.live-join__content {
  color: var(--text);
  font-weight: 500;
}

.live-join__name {
  font-weight: 700;
  color: var(--mint-dark);
}

.live-join__action {
  color: var(--text-soft);
  font-size: 0.72rem;
}

@media (max-width: 480px) {
  .live-join {
    bottom: 65px;
    right: 8px;
    max-width: 185px;
    font-size: 0.72rem;
    padding: 0.35rem 0.6rem;
  }
  .live-join__avatar {
    width: 22px;
    height: 22px;
  }
  .live-join__action {
    font-size: 0.68rem;
  }
}

@media (min-width: 768px) {
  .live-join {
    bottom: 95px;
  }
}

@media (min-width: 768px) {
  .transform__stage {
    gap: 0.75rem;
  }
  .weeks-preview__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .perks-grid--full {
    grid-template-columns: 1fr 1fr;
  }
  .demo__mockup {
    max-width: 320px;
  }
  .for-who__card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 240px;
  }
  .for-who__photo {
    aspect-ratio: auto;
    max-height: none;
    min-height: 100%;
  }
  .for-who__body {
    padding: 1.15rem 1.35rem;
    gap: 0.55rem;
  }
  .for-who__headline {
    font-size: 1.2rem;
  }
}