:root {
  --orange: #ff7a00;
  --orange-deep: #ff4d00;
  --red: #e63500;
  --yellow: #ffd000;
  --ink: #1c1430;
  --ink-soft: #5a5470;
  --bg: #fff6ef;
  --white: #ffffff;
  --grad: linear-gradient(135deg, #ff8a00 0%, #ff4d00 100%);
  --grad-soft: linear-gradient(135deg, #fff1e6 0%, #ffe4d2 100%);
  --shadow: 0 18px 40px -18px rgba(255, 77, 0, 0.45);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: #2a2236;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* phone frame */
.phone {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
}

.container {
  padding: 0 22px;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hl {
  color: var(--orange-deep);
}
.hl-y {
  color: var(--yellow);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 26px 0 40px;
  background-image: linear-gradient(
      150deg,
      rgba(255, 138, 0, 0.74) 0%,
      rgba(255, 77, 0, 0.78) 100%
    ),
    url("images/photo-1504674900247.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 0 0 38px 38px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 0%, rgba(255, 208, 0, 0.4), transparent 45%),
    radial-gradient(circle at 0% 90%, rgba(0, 0, 0, 0.25), transparent 45%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.avatars {
  display: flex;
  align-items: center;
}
.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}
.avatars img:first-child {
  margin-left: 0;
}
.avatars__more {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  margin-left: -10px;
}
.rating {
  text-align: left;
  color: #fff;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 6px;
}
.rating__num {
  font-weight: 800;
  font-size: 17px;
}
.rating__stars {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 1px;
}
.rating__label {
  grid-column: 1 / -1;
  font-size: 10px;
  opacity: 0.9;
}

.hero__eyebrow {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  margin-top: 18px;
  opacity: 0.95;
}
.hero__title {
  text-align: center;
  color: #fff;
  font-size: 31px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 8px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.hero__title .hl {
  color: var(--yellow);
}
.hero__subtitle {
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin-top: 14px;
  opacity: 0.96;
}

.badges {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.badge {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.3);
}

.hero__covers {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  margin-top: 28px;
}
.cover {
  position: relative;
  width: 32%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 26px -10px rgba(0, 0, 0, 0.5);
}
.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover--center {
  width: 36%;
  z-index: 2;
  transform: translateY(-12px);
}
.cover--rotate-l {
  transform: rotate(-6deg);
}
.cover--rotate-r {
  transform: rotate(6deg);
}
.cover__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.75));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 8px;
  color: #fff;
  text-align: center;
}
.cover__count {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--yellow);
  line-height: 1;
}
.cover__name {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
}

.hero__bonus {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  margin-top: 26px;
  background: rgba(0, 0, 0, 0.16);
  padding: 10px;
  border-radius: 14px;
}

.cta--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  padding: 15px 18px 16px;
  border-radius: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.5);
  animation: pulse 2s infinite;
}
.cta__top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
.cta__price {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.cta__price small {
  font-size: 16px;
  font-weight: 800;
}
.cta__old {
  font-size: 16px;
  text-decoration: line-through;
  opacity: 0.5;
}
.cta__badge {
  background: var(--ink);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 20px;
  transform: translateY(-2px);
}
.cta__action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
}
.cta__action i {
  font-style: normal;
  transition: transform 0.25s ease;
}
.cta--hero:hover .cta__action i {
  transform: translateX(4px);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.timer-card {
  margin-top: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.timer-card__label {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
}
.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.timer i {
  font-style: normal;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-deep);
}
.timer__cell {
  background: var(--grad);
  color: #fff;
  border-radius: 12px;
  padding: 8px 4px;
  min-width: 56px;
}
.timer__cell b {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  display: block;
  line-height: 1;
}
.timer__cell span {
  font-size: 10px;
  opacity: 0.9;
}

/* ============ SECTIONS ============ */
.section {
  padding: 42px 0;
}
.section__title {
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}
.section__title--light {
  color: #fff;
}
.section__lead {
  text-align: center;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 8px;
}
.section__lead--light {
  color: rgba(255, 255, 255, 0.9);
}

/* feature list (для кого) */
.feature-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.feature {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 12px 26px -18px rgba(0, 0, 0, 0.3);
}
.feature__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 26px;
}
.feature__text {
  font-size: 13px;
  color: var(--ink-soft);
}
.feature__text b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 2px;
}

/* problems */
.section--problems {
  background-image: linear-gradient(
      160deg,
      rgba(255, 138, 0, 0.9) 0%,
      rgba(255, 77, 0, 0.93) 100%
    ),
    url("images/photo-1490645935967.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 38px;
  margin: 0 14px;
  padding: 38px 0;
}
.problems {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.problem {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 14px;
  padding: 13px 16px;
  backdrop-filter: blur(2px);
}
.solution-card {
  margin-top: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.solution-card b {
  color: var(--orange-deep);
}

/* inside */
.section--inside {
  background: var(--ink);
  border-radius: 38px;
  margin: 18px 14px 0;
}
.inside-card {
  background: #fff;
  border-radius: 22px;
  padding: 14px;
  margin-top: 18px;
  text-align: center;
}
.inside-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}
.inside-card h3 {
  font-size: 19px;
  margin-top: 14px;
}
.inside-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}
.inside-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.inside-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}

/* recipe examples */
.section--recipes {
  padding-top: 32px;
  padding-bottom: 36px;
}
.recipe-slider-wrap {
  margin-top: 22px;
  padding: 0;
}
.recipe-slider {
  position: relative;
  width: 100%;
  padding: 0 22px;
}
.recipe-slider__viewport {
  width: 100%;
  overflow: hidden;
  transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.recipe-slider__track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.recipe-slider__track.is-instant {
  transition: none;
}
.recipe-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #3d9b47;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -4px rgba(61, 155, 71, 0.55);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.recipe-slider__nav--prev {
  left: 0;
}
.recipe-slider__nav--next {
  right: 0;
}
.recipe-slider__nav:hover {
  filter: brightness(1.08);
}
.recipe-slider__nav:active {
  transform: translateY(-50%) scale(0.94);
}
.recipe-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  background: transparent;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.22);
}
.recipe-card__head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 10px;
  row-gap: 8px;
}
.recipe-card__title {
  grid-column: 1;
  grid-row: 1;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
.recipe-card__meta {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}
.recipe-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.recipe-card__meta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.85;
}
.recipe-card__nutrition {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
}
.recipe-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  margin-top: 0;
  object-fit: cover;
}
.recipe-card__img--placeholder {
  display: grid;
  place-items: center;
  background: #ece8e3;
  border: none;
  color: #8a8278;
  font-size: 14px;
  font-weight: 600;
}
.recipe-card__img--placeholder svg {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  opacity: 0.5;
}
.recipe-card__img--placeholder span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recipe-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
  margin-top: 18px;
}
.recipe-card__col h4 {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.recipe-card__ingredients {
  list-style: none;
  background: #eceae6;
  border-radius: 14px;
  padding: 14px 12px 14px 26px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink);
}
.recipe-card__ingredients li {
  position: relative;
  margin-bottom: 3px;
}
.recipe-card__ingredients li::before {
  content: "•";
  position: absolute;
  left: -14px;
  color: var(--ink);
  font-weight: 700;
}
.recipe-card__steps {
  list-style: none;
  counter-reset: step;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink);
}
.recipe-card__steps li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  counter-increment: step;
}
.recipe-card__steps li::before {
  content: counter(step) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
}
.recipe-card__desc {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
}
.recipe-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0 22px;
}
.recipe-slider__dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(28, 20, 48, 0.18);
  cursor: pointer;
  padding: 0;
  transition: transform 0.35s ease, background 0.35s ease;
}
.recipe-slider__dot.is-active {
  background: var(--orange-deep);
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  .recipe-slider__track,
  .recipe-slider__viewport {
    transition: none;
  }
}

@media (max-width: 380px) {
  .recipe-card__title {
    font-size: 22px;
  }
  .recipe-card__meta {
    font-size: 11px;
  }
  .recipe-card__body {
    gap: 12px 10px;
  }
  .recipe-card__ingredients,
  .recipe-card__steps {
    font-size: 11px;
  }
}

/* plans */
.plan {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 18px;
  box-shadow: 0 16px 34px -22px rgba(0, 0, 0, 0.4);
}
.plan__img {
  height: 150px;
  background-size: cover;
  background-position: center;
}
.plan__body {
  padding: 18px;
}
.plan__title {
  font-size: 20px;
}
.plan__title--light {
  color: #fff;
  text-align: center;
  font-size: 22px;
}
.plan__desc {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.plan__list {
  list-style: none;
  margin: 14px 0;
  display: grid;
  gap: 8px;
}
.plan__list li {
  font-size: 14px;
  padding-left: 26px;
  position: relative;
}
.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-deep);
  font-weight: 800;
}
.plan__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan__price {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-align: center;
  border-radius: 14px;
  padding: 13px 22px;
  cursor: pointer;
}
.btn--outline {
  background: var(--grad);
  color: #fff;
}
.btn--full {
  display: block;
  width: 100%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 17px;
  margin-top: 18px;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.4);
}

/* full kit */
.plan--full {
  position: relative;
  background: var(--grad);
  padding: 26px 20px;
  margin-top: 28px;
}
.plan__ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 15px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.plan__badge {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
}
.plan__covers {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
}
.plan__covers img {
  width: 30%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.4);
}
.plan__covers img:nth-child(2) {
  transform: translateY(-8px) scale(1.05);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.check-list li {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.check-list--gift li {
  padding-left: 36px;
}
.check-list--gift li::before {
  display: none;
}
.check-list--gift .gift-ico {
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}
.plan__bonus-title {
  color: #fff;
  font-weight: 800;
  margin: 18px 0 12px;
}

/* pricing block */
.plan__pricing {
  margin-top: 22px;
  background: rgba(28, 20, 48, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.plan__pricing-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan__save {
  background: var(--ink);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
}
.plan__pricing-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 4px;
}
.plan__pricing--center {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.plan__old {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-weight: 700;
}
.plan__special {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--yellow);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.plan__cur {
  font-size: 22px;
  font-weight: 800;
}
.plan__benefit {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
}
.plan__pricing-note {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}
.plan__special--light {
  color: #fff;
}

/* compare */
.section--compare {
  background: var(--ink);
  border-radius: 38px;
  margin: 0 14px;
}
.compare {
  margin-top: 22px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  align-items: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f0ece6;
  text-align: center;
}
.compare__row div:first-child {
  text-align: left;
  font-weight: 700;
}
.compare__row--head {
  background: var(--grad-soft);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
}
.compare__row--win {
  background: linear-gradient(135deg, #fff6e8, #ffe9cf);
}
.compare .no {
  color: #c9333a;
  font-weight: 800;
}
.compare .yes {
  color: #1fa05a;
  font-weight: 800;
}
.check-list--light {
  margin-top: 22px;
}

/* results */
.result-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.result-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--grad-soft);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
}
.result-list li span {
  font-size: 24px;
}

/* author */
.section--author {
  background: var(--grad-soft);
  border-radius: 38px;
  margin: 0 14px;
}
.author {
  margin-top: 22px;
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.author__photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--orange);
}
.author__info h3 {
  font-size: 21px;
  margin-top: 14px;
}
.author__role {
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}
.author__info p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 12px;
}
.author__stats {
  display: flex;
  justify-content: space-around;
  margin-top: 18px;
  border-top: 1px solid #f0ece6;
  padding-top: 16px;
}
.author__stats b {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: var(--orange-deep);
  display: block;
}
.author__stats span {
  font-size: 11px;
  color: var(--ink-soft);
}

/* steps */
.section--steps {
  background-image: linear-gradient(
      160deg,
      rgba(255, 138, 0, 0.9) 0%,
      rgba(255, 77, 0, 0.93) 100%
    ),
    url("images/photo-1556910103.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 38px;
  margin: 18px 14px 0;
}
.steps {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
}
.step__num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 22px;
  display: grid;
  place-items: center;
}
.step__text {
  font-size: 13px;
  color: var(--ink-soft);
}
.step__text b {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

/* reviews */
.reviews {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.review {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 14px 30px -20px rgba(0, 0, 0, 0.35);
}
.review header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 17px;
  object-fit: cover;
}
.review header b {
  font-size: 15px;
}
.review__stars {
  display: block;
  color: var(--orange);
  font-size: 13px;
}
.review p {
  font-size: 14px;
  margin-top: 12px;
  color: var(--ink);
}
.review__photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 12px;
}
.review__photo--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f3f0ec;
  border: 1.5px dashed rgba(28, 20, 48, 0.16);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}
.review__photo--placeholder svg {
  width: 30px;
  height: 30px;
  opacity: 0.45;
}

/* faq */
.faq {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.faq__item {
  background: #fff;
  border-radius: 16px;
  padding: 4px 18px;
  box-shadow: 0 10px 24px -20px rgba(0, 0, 0, 0.3);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 0;
  position: relative;
  padding-right: 30px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--orange-deep);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__item p {
  font-size: 14px;
  color: var(--ink-soft);
  padding-bottom: 16px;
}

/* final */
.section--final {
  background-image: linear-gradient(
      160deg,
      rgba(255, 138, 0, 0.88) 0%,
      rgba(255, 77, 0, 0.92) 100%
    ),
    url("images/photo-1546069901.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 38px;
  margin: 18px 14px 0;
  text-align: center;
}
.section--final .check-list {
  text-align: left;
  max-width: 320px;
  margin: 22px auto 0;
}
.final__subtitle {
  color: #fff;
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.96;
}

/* footer */
.footer {
  background: #156943;
  color: #fff;
  text-align: center;
  padding: 36px 0 90px;
  margin-top: 18px;
}
.footer__info {
  display: grid;
  gap: 6px;
  font-size: 14px;
  line-height: 1.45;
}
.footer__info p,
.footer__info a {
  margin: 0;
  color: #fff;
}
.footer__title {
  font-weight: 700;
  font-size: 15px;
}
.footer__info a {
  text-decoration: underline;
}
.footer__links {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
}
.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 18px;
}

/* ============ LEGAL PAGES ============ */
.legal-header {
  padding: 22px 0 6px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.legal-title {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.legal-updated {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}
.legal-body {
  padding: 8px 0 40px;
}
.legal-section {
  margin-top: 26px;
}
.legal-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.legal-section p,
.legal-section li {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.legal-section ul {
  margin-top: 6px;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}
.legal-section p + p {
  margin-top: 10px;
}
.legal-contacts {
  margin-top: 30px;
  background: var(--grad-soft);
  border-radius: 16px;
  padding: 16px;
  font-size: 13.5px;
  color: var(--ink);
}
.legal-contacts a {
  color: var(--orange-deep);
  font-weight: 700;
  text-decoration: none;
}

/* sticky cta */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 44px);
  max-width: 436px;
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 14px 30px -8px rgba(255, 77, 0, 0.6);
  z-index: 50;
  transition: transform 0.35s ease;
}
.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 380px) {
  .hero__title { font-size: 27px; }
  .section__title { font-size: 22px; }
}

/* ============ ANIMATIONS ============ */

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal--left {
  transform: translateX(-32px);
}
.reveal--right {
  transform: translateX(32px);
}
.reveal--zoom {
  transform: scale(0.9);
}
.reveal--left.is-in,
.reveal--right.is-in,
.reveal--zoom.is-in {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .cta--hero, .hero__covers .cover, .plan__ribbon,
  .hero__eyebrow, .hero__title, .hero__subtitle { animation: none !important; }
}

/* hero entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes dropIn {
  0% { opacity: 0; transform: translateY(-40px) scale(0.8); }
  60% { opacity: 1; transform: translateY(6px) scale(1.04); }
  100% { opacity: 1; transform: none; }
}
.hero__eyebrow { animation: fadeUp 0.6s 0.05s both; }
.hero__title { animation: fadeUp 0.7s 0.15s both; }
.hero__subtitle { animation: fadeUp 0.7s 0.3s both; }
.badges { animation: fadeUp 0.7s 0.4s both; }
.hero__bonus { animation: fadeUp 0.7s 0.7s both; }
.social-proof { animation: fadeUp 0.6s both; }

/* covers drop in with float */
.hero__covers .cover {
  animation: dropIn 0.8s both;
}
.hero__covers .cover--rotate-l { animation-delay: 0.5s; }
.hero__covers .cover--center { animation-delay: 0.62s; }
.hero__covers .cover--rotate-r { animation-delay: 0.74s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cover--center {
  animation: dropIn 0.8s 0.62s both, floaty 4s ease-in-out 1.6s infinite;
}

/* ribbon pop + spin-glow */
@keyframes ribbonPop {
  0% { transform: scale(0) rotate(-30deg); }
  70% { transform: scale(1.15) rotate(8deg); }
  100% { transform: scale(1) rotate(0); }
}
.plan--full.is-in .plan__ribbon {
  animation: ribbonPop 0.6s 0.3s both;
}

/* shimmer on CTA buttons */
.cta--hero, .btn--full, .sticky-cta {
  position: relative;
  overflow: hidden;
}
.cta--hero::after,
.btn--full::after,
.sticky-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -120%; }
  55% { left: 160%; }
  100% { left: 160%; }
}

/* interactive hover / tap */
.feature,
.inside-card,
.plan,
.review,
.result-list li,
.step,
.problem {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}
.feature:hover,
.inside-card:hover,
.review:hover,
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -22px rgba(255, 77, 0, 0.5);
}
.plan:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 26px 50px -24px rgba(255, 77, 0, 0.55);
}
.result-list li:hover {
  transform: translateX(6px);
}
.problem:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.26);
}

.btn,
.cta--hero,
.sticky-cta {
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn:active,
.cta--hero:active,
.sticky-cta:active { transform: scale(0.96); }

.inside-card__img,
.plan__img,
.review__photo,
.inside-gallery img {
  transition: transform 0.5s ease;
}
.inside-card:hover .inside-card__img,
.review:hover .review__photo {
  transform: scale(1.05);
}
.inside-gallery img:hover {
  transform: scale(1.08);
}

/* feature icon wiggle on hover */
.feature__icon { transition: transform 0.3s ease; }
.feature:hover .feature__icon { transform: rotate(-8deg) scale(1.08); }

/* step number pulse */
.step:hover .step__num {
  animation: numPulse 0.5s ease;
}
@keyframes numPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

/* faq smooth open */
.faq__item p {
  animation: faqIn 0.35s ease both;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* timer digit flip feedback */
.timer__cell b {
  transition: transform 0.25s ease;
}
.timer__cell b.bump {
  transform: scale(1.18);
}

/* staggered reveal children delays */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.4s; }

/* ============ BLOCK POLISH ============ */

/* --- м'які рамки + глибина для світлих карток --- */
.feature,
.inside-card,
.step,
.review,
.solution-card,
.author,
.timer-card,
.faq__item,
.result-list li {
  border: 1px solid rgba(255, 122, 0, 0.1);
}

/* --- ДЛЯ КОГО: акцентна смужка, об'ємна іконка, кутовий блиск --- */
.feature {
  position: relative;
  overflow: hidden;
  padding-left: 18px;
}
.feature > * {
  position: relative;
  z-index: 1;
}
.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--grad);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0.5);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.feature::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.14), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.feature:hover::before {
  transform: scaleY(1);
  opacity: 1;
}
.feature__icon {
  box-shadow: 0 10px 20px -8px rgba(255, 77, 0, 0.6),
    inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

/* --- ЗНАЙОМІ ПРОБЛЕМИ: маркер ✕ + скляний об'єм --- */
.problem {
  position: relative;
  padding-left: 46px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 10px 20px -16px rgba(0, 0, 0, 0.6);
}
.problem::before {
  content: "✕";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 8px -3px rgba(0, 0, 0, 0.35);
}

.solution-card {
  position: relative;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}

/* --- ЩО ВСЕРЕДИНІ: рамка-градієнт + PDF-чип --- */
.inside-card {
  position: relative;
  background: linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
}
.inside-card::before {
  content: "PDF";
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: var(--ink);
  color: var(--yellow);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 9px;
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.5);
}
.inside-card__img {
  position: relative;
}

/* --- ТАРИФИ: верхня акцентна смужка + глибина зображення --- */
.plan {
  position: relative;
  border: 1px solid rgba(255, 122, 0, 0.12);
}
.plan:not(.plan--full)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad);
  z-index: 3;
}
.plan__img {
  position: relative;
}
.plan__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.38));
}
.plan--full {
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 26px 54px -22px rgba(255, 77, 0, 0.65);
}

/* --- КРОКИ: пунктирний з'єднувач + сяйво номера --- */
.steps {
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: repeating-linear-gradient(
    rgba(255, 255, 255, 0.85) 0 4px,
    transparent 4px 10px
  );
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
}
.step__num {
  box-shadow: 0 10px 20px -6px rgba(255, 77, 0, 0.65),
    0 0 0 5px rgba(255, 122, 0, 0.14);
}

/* --- РЕЗУЛЬТАТИ: іконка-плитка --- */
.result-list li {
  position: relative;
  box-shadow: 0 12px 24px -18px rgba(255, 77, 0, 0.55);
}
.result-list li span {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 8px 16px -6px rgba(255, 77, 0, 0.45);
}

/* --- ВІДГУКИ: декоративні лапки + об'ємне фото --- */
.review {
  position: relative;
  overflow: hidden;
}
.review > * {
  position: relative;
  z-index: 1;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: -22px;
  right: 16px;
  z-index: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 122, 0, 0.12);
  pointer-events: none;
}
.review__avatar {
  box-shadow: 0 6px 14px -5px rgba(0, 0, 0, 0.4);
  border: 2px solid #fff;
}

/* --- FAQ: маркер-питання + активний стан --- */
.faq__item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq__item[open] {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 18px 32px -22px rgba(255, 77, 0, 0.55);
}
.faq__item summary {
  padding-left: 36px;
}
.faq__item summary::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background: var(--grad-soft);
  color: var(--orange-deep);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 14px;
  display: grid;
  place-items: center;
}

/* --- ПРО АВТОРА: статистика картками --- */
.author__stats {
  gap: 8px;
  border-top: none;
  padding-top: 0;
}
.author__stats div {
  flex: 1;
  background: var(--grad-soft);
  border-radius: 14px;
  padding: 12px 4px;
}

body.checkout-open {
  overflow: hidden;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 12, 8, 0.72);
  backdrop-filter: blur(4px);
}

.checkout-modal[hidden] {
  display: none;
}

.checkout-modal__dialog {
  position: relative;
  width: min(100%, 420px);
  background: #fff;
  border-radius: 24px;
  padding: 28px 22px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.checkout-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  color: #333;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.checkout-modal__title {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.checkout-modal__product {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
}

.checkout-modal__price {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
}

.checkout-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.checkout-form__input {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #ececec;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
  margin-bottom: 12px;
}

.checkout-form__input:focus {
  border-color: var(--orange);
}

.checkout-form__note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
}

.checkout-form__error {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff0eb;
  color: #b42318;
  font-size: 14px;
}

.checkout-form__error[hidden] {
  display: none;
}

.checkout-form__submit {
  margin-top: 16px;
}

.checkout-modal__secure {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: #777;
}

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you__card {
  text-align: center;
  background: #fff;
  border-radius: 28px;
  padding: 36px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.thank-you__icon {
  margin: 0 0 12px;
  font-size: 48px;
}

.thank-you__title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.thank-you__text {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.55;
  color: #444;
}

.thank-you__note {
  margin: 0 0 18px;
  font-size: 14px;
  color: #777;
}

