:root {
  --ink: #212120;
  --ink-deep: #191918;
  --paper: #ffffff;
  --soft: #efefef;
  --line: #d8d6d3;
  --orange: #ff5a1f;
  --orange-deep: #e73f0a;
  --orange-light: #ff936f;
  --green: #39a846;
  --body: #3a3834;
  --radius: 14px;
  --shadow: 0 18px 40px rgb(31 22 15 / 15%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--body);
  background: var(--paper);
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

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

a { color: inherit; }

h1, h2, h3, p { margin: 0; }

h1, h2, h3 { letter-spacing: -0.045em; }

.accent { color: var(--orange); }

h1 {
  max-width: 900px;
  color: var(--paper);
  font-size: clamp(2.35rem, 3.2vw, 3.5rem);
  font-weight: 700;
  line-height: .98;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 2.65vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
}

h3 { font-size: 1.45rem; line-height: 1.02; }

.section { padding: 56px 24px; }

.container { width: min(1140px, 100%); margin: 0 auto; }

.container--narrow { width: min(820px, 100%); }

.section--paper { background: var(--paper); }
.section--soft { background: var(--soft); }
.section--dark { color: var(--paper); background: var(--ink); }
.section--ink { color: var(--paper); background: var(--ink-deep); }

.section--dark h2,
.section--ink h2,
.section--dark h3,
.section--ink h3 { color: var(--paper); }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  isolation: isolate;
  padding-top: 34px;
  background:
    radial-gradient(circle at 11% 95%, rgb(255 80 24 / 90%), transparent 27%),
    radial-gradient(circle at 93% 91%, rgb(255 129 90 / 65%), transparent 28%),
    linear-gradient(155deg, #070706 0%, #16110e 56%, #7e270f 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .5;
  background-image: radial-gradient(rgb(255 255 255 / 15%) .75px, transparent .75px);
  background-size: 16px 16px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.hero__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 26px;
  text-align: center;
}

.hero__logo {
  width: 244px;
  margin-bottom: -10px;
  filter: drop-shadow(0 10px 16px rgb(0 0 0 / 30%));
}

.pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 900px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pills li {
  padding: 9px 15px 10px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 100px;
  color: var(--ink);
  background: rgb(255 255 255 / 94%);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 16px rgb(0 0 0 / 18%);
}

.hero__image-wrap {
  width: min(975px, 100%);
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -12px 48px rgb(0 0 0 / 36%);
}

.hero__image { width: 100%; }

.section-marker {
  width: 54px;
  height: 8px;
  margin: 0 auto 22px;
  border-radius: 99px;
  background: #c8c8c8;
}

.proof { text-align: center; }
.proof h2 { max-width: 720px; margin: 0 auto; }

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 28px;
  margin-top: 36px;
}

.proof-card {
  padding: 9px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.proof-card img { width: 100%; border-radius: 9px; }

.proof-card--whatsapp-final {
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.proof-card--whatsapp-final img {
  display: block;
  width: 100%;
  border-radius: 0;
}

.pain { text-align: center; }

.eyebrow {
  margin-bottom: 16px;
  color: var(--orange-deep);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.eyebrow--light { color: var(--orange-light); }

.section-subtitle {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--ink);
  font-size: 1.4rem;
}

.section-subtitle--light { color: var(--paper); }

.full-media {
  width: min(860px, 100%);
  margin: 32px auto 0;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgb(0 0 0 / 30%);
}

.full-media--pain { max-height: 500px; object-fit: cover; object-position: center; }

.pain-story {
  position: relative;
  max-width: 900px;
  padding: 30px 105px 40px;
  margin: 32px auto 0;
}

.pain-story__image {
  width: 100%;
  border: 3px solid rgb(255 255 255 / 20%);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgb(0 0 0 / 36%);
}

.pain-note {
  position: absolute;
  z-index: 1;
  width: 224px;
  padding: 15px 16px;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 11px;
  color: var(--paper);
  background: linear-gradient(135deg, #ff722f, var(--orange-deep));
  box-shadow: 0 12px 22px rgb(0 0 0 / 26%);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.02;
  text-align: left;
}

.pain-note--one { top: 10px; left: 0; transform: rotate(-2deg); }
.pain-note--two { top: 2%; right: 0; transform: rotate(2deg); }
.pain-note--three { top: 48%; left: 0; transform: rotate(1deg); }
.pain-note--four { top: 65%; right: 0; transform: rotate(-1.5deg); }

.pain-card {
  position: relative;
  max-width: 760px;
  padding: 78px 70px 60px;
  margin: 0 auto;
  border: 2px solid rgb(255 255 255 / 36%);
  border-radius: 25px;
  text-align: center;
  background: linear-gradient(135deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 1%));
}

.pain-card__emoji {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid rgb(255 255 255 / 30%);
  border-radius: 50%;
  background: var(--ink);
  font-size: 2.4rem;
}

.bridge { text-align: center; }
.bridge h2 { max-width: 760px; margin: 0 auto; }

.benefits__board-frame {
  position: relative;
  width: min(930px, 100%);
  margin: 0 auto;
  border-radius: 13px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.benefits__board { width: 100%; }

.benefits__label {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  height: 12.5%;
  place-items: center;
  margin: 0;
  padding: 0 12px;
  border-radius: 13px 13px 0 0;
  color: var(--paper);
  background: #ff6b29;
  font-size: clamp(.84rem, 1.65vw, 1.22rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.benefits__stack { text-align: center; }
.benefits__stack h2 { margin-bottom: 24px; }

.benefits__list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefits__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100px;
  padding: 16px 22px;
  border: 1px solid #e3e0dc;
  border-radius: 14px;
  background: #fafafa;
  box-shadow: 0 6px 14px rgb(0 0 0 / 5%);
}

.benefits__list span { display: block; margin-bottom: 8px; font-size: 1.72rem; line-height: 1; }
.benefits__list p { max-width: 510px; color: var(--ink); font-size: 1.12rem; font-weight: 600; line-height: 1.04; }

.receives { text-align: center; }
.receives > .container > h2 { max-width: 760px; margin: 0 auto 38px; }

.receive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.receive-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius);
  color: #e7e3de;
  background: #292927;
}

.receive-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 142px;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(135deg, var(--orange), #cb260c);
}

.receive-card h3,
.receive-card p { padding-right: 23px; padding-left: 23px; }
.receive-card h3 { margin-top: 24px; font-size: 1.36rem; }
.receive-card p { padding-bottom: 24px; margin-top: 14px; color: #ddd7d0; font-size: 1rem; line-height: 1.16; }

.visual--bike { font-size: 3.3rem; }
.visual--bike span { z-index: 1; text-shadow: 0 4px 0 rgb(0 0 0 / 18%); }
.visual--bike i, .visual--bike b { position: absolute; width: 104px; height: 104px; border: 8px solid rgb(255 255 255 / 80%); border-radius: 50%; }
.visual--bike i { left: calc(50% - 115px); bottom: -46px; }
.visual--bike b { right: calc(50% - 115px); bottom: -46px; }

.visual--music { gap: 18px; font-size: 4rem; transform: rotate(-5deg); }
.visual--music span:nth-child(2) { align-self: flex-start; margin-top: 18px; font-size: 2.8rem; }
.visual--music span:nth-child(3) { align-self: flex-end; margin-bottom: 16px; font-size: 2.4rem; }

.visual--coach { gap: 12px; font-size: 3.8rem; }
.visual--coach span:first-child { width: 54px; height: 54px; border-radius: 50%; background: var(--paper); color: var(--orange); font-size: 1rem; }
.visual--coach span:nth-child(2) { font-size: 5rem; }
.visual--coach i { position: absolute; width: 142px; height: 142px; border: 1px solid rgb(255 255 255 / 35%); border-radius: 50%; }

.visual--beats { align-items: flex-end; gap: 11px; padding-bottom: 27px; }
.visual--beats i { width: 15px; border-radius: 99px; background: var(--paper); }
.visual--beats i:nth-child(1), .visual--beats i:nth-child(5) { height: 48px; }
.visual--beats i:nth-child(2), .visual--beats i:nth-child(4) { height: 81px; }
.visual--beats i:nth-child(3) { height: 112px; }

.visual--play span { display: grid; width: 75px; height: 75px; place-items: center; border: 2px solid var(--paper); border-radius: 50%; font-size: 1.8rem; }

.receive-card--wide { grid-column: 2 / 4; flex-direction: row; min-height: 195px; }
.receive-card--wide .receive-card__visual { flex-basis: 34%; }
.receive-card--wide > div:last-child { display: flex; justify-content: center; flex-direction: column; }
.receive-card--wide h3 { margin-top: 0; }
.receive-card--wide p { padding-bottom: 0; }

.bonus { text-align: center; }
.bonus > .container > h2 { margin-bottom: 30px; }

.bonus-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border: 1px solid #d8d5d1;
  border-radius: 16px;
  text-align: left;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.bonus-card__icon {
  display: grid;
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: #28b446;
  font-size: 3.6rem;
}

.bonus-card h3 { color: var(--ink); }
.bonus-card p { margin-top: 12px; line-height: 1.16; }

.is-for .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 1.14rem;
  line-height: 1.12;
}

.check-list li::before {
  position: absolute;
  top: .15em;
  left: 0;
  content: "✓";
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 800;
}

.is-for__image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.cta-band { padding-block: 74px; text-align: center; }
.cta-band h2 { max-width: 850px; margin: 0 auto; }
.cta-band .button { margin-top: 30px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 61px;
  padding: 14px 31px;
  border: 0;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(180deg, #ff682d, #eb3d0b);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 32%), 0 7px 0 #a92506, 0 14px 23px rgb(0 0 0 / 22%);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgb(255 255 255 / 32%), 0 9px 0 #a92506, 0 17px 26px rgb(0 0 0 / 24%); }
.button:active { transform: translateY(4px); box-shadow: inset 0 1px 0 rgb(255 255 255 / 32%), 0 3px 0 #a92506, 0 8px 16px rgb(0 0 0 / 20%); }
.button--wide { width: 100%; margin-top: 20px; }

.section--offer {
  padding-block: 62px;
  background: linear-gradient(135deg, #dfdfde, #f0efee 46%, #dedbd7);
}

.offer { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; }
.offer__summary h2 { margin-bottom: 25px; }

.offer-list {
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 1px solid #b7b5b2;
  border-radius: 10px;
  list-style: none;
  background: rgb(255 255 255 / 72%);
}

.offer-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #d4d1cd;
  font-size: 1.05rem;
  line-height: 1.03;
}

.offer-list li:last-child { border-bottom: 0; }
.offer-list span { color: var(--green); font-weight: 800; }
.offer-list strong { white-space: nowrap; font-size: .98rem; }
.offer-list__total { display: flex; justify-content: space-between; padding: 13px 14px; font-size: 1.1rem; font-weight: 700; }

.price-card {
  position: relative;
  padding: 38px 37px 27px;
  overflow: hidden;
  border: 1px solid #ccc7bf;
  border-radius: 16px;
  text-align: center;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.price-card::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 9px;
  content: "";
  background: linear-gradient(90deg, var(--orange-deep), #ff8a5c);
}

.price-card > * { position: relative; z-index: 1; }

.price-card img {
  width: 190px;
  margin: -18px auto 0;
  mix-blend-mode: multiply;
}

.price-card p { margin: 14px auto; font-size: 1.1rem; font-weight: 600; line-height: 1.08; }
.price-card__was, .price-card__cash { display: block; font-size: 1.15rem; }
.price-card__was { margin-top: 14px; color: #716d67; text-decoration: line-through; }
.price-card__installments { display: block; margin: 3px 0; color: var(--orange-deep); font-size: clamp(2.25rem, 3.2vw, 3.15rem); line-height: 1; }
.price-card__cash { font-weight: 600; }

.price-card__seal {
  position: absolute !important;
  top: 27px;
  right: 22px;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 3px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-deep);
  font-size: .76rem;
  font-weight: 800;
  line-height: .9;
  transform: rotate(12deg);
}

.secure { display: flex; justify-content: center; flex-wrap: wrap; gap: 13px; margin-top: 21px; color: #6d6963; font-size: .9rem; font-weight: 600; }

.how-it-works { text-align: center; }
.how-it-works h2 { max-width: 750px; margin: 0 auto 35px; }

.steps { display: grid; gap: 17px; padding: 0; margin: 0; text-align: left; list-style: none; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center; padding: 20px 24px; border-radius: 12px; background: var(--paper); box-shadow: 0 8px 16px rgb(0 0 0 / 7%); }
.steps > li > span { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 50%; color: var(--paper); background: var(--orange); font-size: 1.65rem; font-weight: 700; }
.steps h3 { color: var(--ink); font-size: 1.35rem; }
.steps p { margin-top: 6px; font-size: 1.08rem; line-height: 1.1; }

.creator { padding-block: 72px; }
.creator__grid { display: grid; grid-template-columns: 340px 1fr; align-items: center; gap: 64px; }
.creator__portrait { position: relative; display: grid; width: 310px; height: 370px; place-items: center; overflow: hidden; border: 1px solid rgb(255 255 255 / 25%); border-radius: 26px; background: linear-gradient(145deg, #4d1c0d, #171717 67%); box-shadow: 0 24px 42px rgb(0 0 0 / 24%); }
.creator__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.creator h2 { color: var(--paper); font-size: 3.2rem; }
.creator h3 { margin-top: 8px; color: var(--orange-light); }
.creator p:not(.eyebrow) { max-width: 650px; margin-top: 20px; color: #ebe5df; line-height: 1.15; }

.choices { text-align: center; }
.choices > .container > h2 { margin-bottom: 32px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: left; }
.choice { min-height: 235px; padding: 29px; border-radius: 16px; box-shadow: var(--shadow); }
.choice > span { display: block; margin-bottom: 16px; font-size: 2.1rem; }
.choice h3 { color: var(--ink); }
.choice p { margin-top: 12px; font-size: 1.15rem; line-height: 1.12; }
.choice--no { border: 1px solid #d9c4bd; background: #fff7f4; }
.choice--yes { border: 1px solid #b4d6bb; background: #f2fff3; }
.choices__close { max-width: 720px; margin: 32px auto 0; font-size: 1.3rem; font-weight: 600; }

.section--final-offer { padding-block: 70px; background: radial-gradient(circle at 50% 100%, #a93818, transparent 45%), #141312; }
.price-card--final { max-width: 560px; margin: 0 auto; }

.footer { padding: 44px 24px; color: #d8d2cb; background: #252421; text-align: center; }
.footer img { width: 170px; margin: -16px auto 0; mix-blend-mode: screen; }
.footer a { display: inline-block; color: var(--orange-light); font-weight: 600; text-decoration: none; }
.footer p { max-width: 850px; margin: 22px auto 0; font-size: .94rem; line-height: 1.15; }

@media (max-width: 860px) {
  body { font-size: 18px; }
  .section { padding: 46px 20px; }
  .hero { min-height: 0; padding: 17px 20px 0; }
  .hero__inner { gap: 19px; }
  .hero__logo { width: 196px; margin-bottom: -10px; }
  h1 { font-size: clamp(1.85rem, 7vw, 2.42rem); line-height: .98; }
  h2 { font-size: clamp(1.72rem, 6.3vw, 2.24rem); }
  h3 { font-size: 1.28rem; }
  .pills { gap: 9px; }
  .pills li { padding: 8px 12px 9px; font-size: .96rem; }
  .hero__image-wrap { width: min(630px, calc(100% + 16px)); margin-top: 4px; }
  .proof__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 26px; }
  .proof-card { padding: 4px; border-radius: 9px; }
  .full-media--pain { max-height: none; }
  .pain-story { display: block; max-width: 610px; padding: 62px 24px 100px; margin-top: 28px; }
  .pain-story__image { display: block; width: 100%; }
  .pain-note { width: clamp(148px, 40vw, 190px); padding: 10px 11px; font-size: clamp(.72rem, 2.9vw, .9rem); line-height: 1.04; text-align: center; }
  .pain-note--one { top: 0; left: 0; }
  .pain-note--two { top: 0; right: 0; }
  .pain-note--three { top: auto; bottom: 8px; left: 0; }
  .pain-note--four { top: auto; right: 0; bottom: 8px; }
  .pain-card { padding: 61px 25px 37px; border-radius: 18px; }
  .pain-card__emoji { top: -26px; left: calc(50% - 26px); width: 52px; height: 52px; font-size: 1.7rem; }
  .receive-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .receive-card { min-height: 0; }
  .receive-card__visual { flex-basis: 118px; }
  .receive-card h3, .receive-card p { padding-right: 17px; padding-left: 17px; }
  .receive-card h3 { margin-top: 19px; font-size: 1.13rem; }
  .receive-card p { padding-bottom: 20px; font-size: .94rem; }
  .receive-card--wide { grid-column: span 2; }
  .bonus-card { padding: 24px; }
  .is-for .container { grid-template-columns: 1fr; gap: 30px; }
  .is-for__image { width: min(560px, 100%); margin: 0 auto; }
  .offer { grid-template-columns: 1fr; gap: 30px; }
  .price-card { width: min(560px, 100%); margin-inline: auto; }
  .creator__grid { grid-template-columns: 230px 1fr; gap: 34px; }
  .creator__portrait { width: 220px; height: 290px; }
  .creator__portrait span { font-size: 4.7rem; }
  .creator__portrait i { bottom: 26px; left: 23px; font-size: 1.35rem; }
  .creator h2 { font-size: 2.6rem; }
  .creator p:not(.eyebrow) { margin-top: 15px; font-size: 1rem; }
}

@media (max-width: 560px) {
  .section { padding: 42px 18px; }
  .hero { padding-right: 14px; padding-left: 14px; }
  .hero__logo { width: 176px; }
  .pills { display: grid; grid-template-columns: 1fr 1fr; width: min(355px, 100%); }
  .pills li { display: flex; align-items: center; justify-content: center; min-height: 41px; padding: 6px 8px 7px; font-size: .9rem; }
  .pills li:last-child { grid-column: 1 / -1; width: max-content; max-width: 100%; margin: 0 auto; }
  .hero__image-wrap { border-radius: 10px 10px 0 0; }
  .proof h2 { font-size: 1.72rem; }
  .section-marker { margin-bottom: 17px; }
  .proof__grid { grid-template-columns: 1fr; width: min(310px, 100%); margin-right: auto; margin-left: auto; }
  .proof-card:nth-child(3) { grid-column: auto; width: 100%; margin: 0; }
  .eyebrow { font-size: 1.06rem; }
  .section-subtitle { font-size: 1.2rem; }
  .full-media { margin-top: 27px; border-radius: 9px; }
  .pain-card { padding-right: 20px; padding-left: 20px; }
  .receive-grid { grid-template-columns: 1fr; }
  .receive-card { min-height: 0; }
  .receive-card--wide { grid-column: auto; flex-direction: column; }
  .receive-card--wide .receive-card__visual { flex-basis: 118px; }
  .receive-card--wide h3 { margin-top: 19px; }
  .receive-card--wide p { padding-bottom: 20px; }
  .bonus-card { align-items: flex-start; flex-direction: column; gap: 18px; }
  .bonus-card__icon { width: 70px; height: 70px; flex-basis: 70px; font-size: 2.8rem; }
  .check-list { gap: 13px; margin-top: 23px; }
  .check-list li { padding-left: 28px; font-size: 1rem; }
  .button { width: 100%; min-height: 58px; padding: 13px 18px; font-size: 1.15rem; }
  .offer-list li { grid-template-columns: auto 1fr; font-size: .95rem; }
  .offer-list li strong { grid-column: 2; font-size: .9rem; }
  .price-card { padding: 37px 20px 24px; }
  .price-card img { width: 166px; }
  .price-card__seal { top: 24px; right: 16px; width: 62px; height: 62px; font-size: .65rem; }
  .price-card__installments { font-size: 2.55rem; }
  .steps li { grid-template-columns: 45px 1fr; gap: 14px; padding: 17px; }
  .steps > li > span { width: 45px; height: 45px; font-size: 1.35rem; }
  .steps h3 { font-size: 1.14rem; }
  .steps p { font-size: .96rem; }
  .creator { padding-block: 54px; }
  .creator__grid { grid-template-columns: 1fr; gap: 28px; }
  .creator__portrait { width: min(100%, 300px); height: 245px; margin: 0 auto; }
  .creator h2 { font-size: 2.35rem; }
  .choice-grid { grid-template-columns: 1fr; gap: 16px; }
  .choice { min-height: 0; padding: 24px; }
  .choices__close { font-size: 1.16rem; }
  .footer { padding: 34px 18px; }
}
