:root {
  --bg: #181818;
  --bg-2: #151515;
  --bg-3: #1b1b1b;
  --bg-warm: #17120b;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --gold-line: rgba(255, 193, 113, 0.35);

  --gold: #ffc171;
  --gold-deep: #997444;
  --gold-2: #b88239;
  --gold-soft: rgba(255, 193, 113, 0.1);

  --green: #00ad4c;
  --green-2: #00ad4c;
  --red: #e60606;
  --ink: #ffffff;
  --muted: #d5d8dc;
  --muted-2: #9aa0a6;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-btn: 8px;
  --maxw: 1140px;

  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "Sora", Arial, Helvetica, sans-serif;
  --font-light: "Sora", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
em {
  font-style: normal;
}
strong {
  font-weight: 700;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      55% 40% at 50% -5%,
      rgba(255, 193, 113, 0.1),
      transparent 60%
    ),
    radial-gradient(
      45% 30% at 100% 0%,
      rgba(153, 116, 68, 0.08),
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      transparent 1px 3px
    ),
    radial-gradient(
      120% 90% at 50% 40%,
      transparent 55%,
      rgba(0, 0, 0, 0.55) 100%
    );
  mix-blend-mode: normal;
}
main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 56px 0;
  position: relative;
}
.dot {
  color: var(--gold);
  opacity: 0.7;
  display: none;
}

.stri,
.reframe,
.for-who,
.modules,
.proof,
.offer,
.guarantee,
.urgency,
.faq,
.final-cta {
  position: relative;
}
.reframe::before,
.offer::before,
.guarantee::before,
.final-cta::before,
.modules::before,
.proof::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 15%,
    var(--gold),
    transparent 85%
  );
  opacity: 0.7;
}
.reframe::after,
.offer::after,
.final-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 0;
  background:
    linear-gradient(
      103deg,
      rgba(255, 193, 113, 0.1) 0%,
      rgba(255, 193, 113, 0) 42%
    ),
    linear-gradient(
      257deg,
      rgba(153, 116, 68, 0.1) 0%,
      rgba(153, 116, 68, 0) 42%
    );
  pointer-events: none;
}
.reframe > .wrap,
.offer > .wrap,
.final-cta > .wrap {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: none;
}
.eyebrow--center {
  display: block;
  text-align: center;
}
.eyebrow--light {
  color: #ffd9a0;
}

.check svg path {
  fill: var(--green);
}

.check svg {
  width: 21px;
  height: 21px;
}

.check {
  position: relative;
  display: block;
  top: 3px;
}

.section__head {
  max-width: 820px;
  margin: 0 auto 0px;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 6vw, 2.7rem);
  line-height: 1.19;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section__lead {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.08rem;
  margin-bottom: 20px;
}

.btn {
  --pad-y: 16px;
  --pad-x: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: #00ad4c;
  padding: var(--pad-y) var(--pad-x);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  /*box-shadow:0 10px 26px rgba(38,182,2,.32), inset 0 1px 0 rgba(255,255,255,.25);*/
  /*transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;*/
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgb(0 183 81 / 28%);
  filter: brightness(1.06);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.btn--sm {
  --pad-y: 11px;
  --pad-x: 16px;
  font-size: 0.78rem;
}
.btn--lg {
  --pad-y: 19px;
  --pad-x: 34px;
  font-size: 1.12rem;
  line-height: 1.4;
  width: 100%;
}
.btn--block {
  display: flex;
  width: 100%;
}
/*
@keyframes pulse{
  0%,100%{ box-shadow:0 10px 26px #49bd7c, inset 0 1px 0 rgba(255,255,255,.25); }
  50%{ box-shadow:0 10px 38px #49bd7c, inset 0 1px 0 rgba(255,255,255,.25); }
}
.btn--pulse{ animation:pulse 2.4s ease-in-out infinite; }
*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.site-header.is-stuck {
  border-color: var(--gold-line);
  background: rgba(15, 15, 15, 0.95);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--gold), var(--gold-deep));
  color: #0f0f0f;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.brand__name {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand__name small {
  font-family: var(--font-light);
  font-weight: 400;
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header__cta {
  flex-shrink: 0;
}

.hero {
  padding-top: 90px;
  padding-bottom: 44px;
  background-color: #000000;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  width: 100%;
  height: auto;
  right: 0;
  transform: scaleX(1);
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0 52%, transparent 74%);
  mask-image: linear-gradient(to bottom, #000 0 52%, transparent 74%);
  top: 0px;
}

.hero__grid {
  position: relative;
  z-index: 1;
}
.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 8.4vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 251px;
}
.hero__title em {
  color: var(--gold);
}
.hero__sub {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  font-size: 1.12rem;
  margin-top: 20px;
  max-width: 560px;
  text-align: center;
}
.hero__sub strong {
  color: var(--ink);
  font-weight: 600;
}

.price-flag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 26px;
}
.price-flag__old {
  color: var(--muted-2);
  text-decoration: line-through;
  font-size: 1rem;
}
.price-flag__new {
  font-size: 1.1rem;
  color: var(--ink);
}
.price-flag__new strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero__note {
  font-family: var(--font-light);
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  position: relative;
  margin: 0 auto;
}
.hero__proof {
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  color: var(--muted);
}
.hero__proof strong {
  color: var(--gold);
  font-family: var(--font-display);
}

.hero__media {
  position: relative;
  order: -1;
}
.hero__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-line);
}
.hero__badge-k {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero__badge-r {
  font-family: var(--font-light);
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.notif-card {
  position: absolute;
  margin-top: 54%;
  right: 20%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
  max-width: 250px;
  animation: notif-float 4s ease-in-out infinite;
}
.notif-card__ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green), var(--green-2));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(38, 182, 2, 0.5);
}
.notif-card__body {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.notif-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
}
.notif-card__text {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--muted);
}
@keyframes notif-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.ph {
  position: relative;
  border: 1.5px solid #ffffff42;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  min-height: 120px;
  color: var(--muted-2);
  overflow: hidden;
}
.ph__tag {
  font-family: var(--font-light);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 6px 10px;
  text-align: center;
}
.ph--portrait {
  aspect-ratio: 4/5;
  width: 100%;
}

.stri {
  background: var(--bg-warm);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  display: none;
}
.stri__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  padding: 18px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.pains {
  background: var(--bg);
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.pain {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.pain__quote {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--ink);
  font-size: 1.02rem;
}
.pains__close {
  font-family: var(--font-light);
  font-weight: 300;
  max-width: 660px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 1.18rem;
  color: var(--muted);
}
.pains__close strong {
  color: var(--gold);
  font-weight: 600;
}

.reframe {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: -5px;
}
.reach {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 580px;
  margin: 8px auto 0;
  text-align: center;
}
.reach__side {
  width: 100%;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.reach__side--big {
  border-color: var(--gold-line);
  background: linear-gradient(
    180deg,
    rgba(255, 193, 113, 0.16),
    rgba(255, 193, 113, 0.03)
  );
}
.reach__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}
.reach__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 11vw, 3.6rem);
  line-height: 1;
  margin: 10px 0 6px;
  color: var(--ink);
}
.reach__side--big .reach__num {
  color: var(--gold);
}
.reach__unit {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--muted);
}
.reach__vs {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  max-width: 230px;
}
.reach__insight {
  font-family: var(--font-light);
  font-weight: 300;
  max-width: 680px;
  margin: 32px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.08rem;
}
.reach__insight strong {
  color: var(--ink);
  font-weight: 600;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.card:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.card__ico {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  padding: 4px 10px;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: row;
  align-content: stretch;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0px;
  margin-left: 0px;
  justify-content: flex-start;
}
.card p {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  font-size: 0.96rem;
}

.for-who .card {
  background: linear-gradient(
    180deg,
    rgba(255, 193, 113, 0.14),
    rgba(153, 116, 68, 0.05)
  );
  border-color: var(--gold-line);
}
.for-who .card:hover {
  border-color: var(--gold);
}

.learn .card--learn {
  border-left: 3px solid var(--green);
}
.learn .card--learn .card__title {
  position: relative;
  padding-left: 0px;
}
.learn .card--learn .card__title::before {
  /*content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--green);
  font-weight: 700;
  */
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.acc {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.acc[open] {
  /*border-color: var(--gold-line);*/
}
.acc summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.acc summary::-webkit-details-marker {
  display: none;
}
.acc__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
}
.acc__chev {
  margin-left: auto;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.acc[open] .acc__chev {
  transform: rotate(-135deg);
}
.acc__body {
  padding: 0 18px 18px;
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
}
.acc__body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acc__body li {
  position: relative;
  padding-left: 18px;
  font-size: 0.96rem;
}
.acc__body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.acc__body li strong,
.acc__body p strong {
  color: var(--ink);
  font-weight: 600;
}
.accordion--faq summary {
  font-size: 0.96rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 820px;
  margin: 0 auto;
}
.tblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.tblock__media {
  width: 100%;
  max-width: 380px;
}
.tblock__info {
  text-align: center;
  max-width: 460px;
}

.tblock__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  display: none;
}
.tblock__badge--wpp {
  background: var(--gold);
  color: #0f0f0f;
  display: none;
}
.tblock__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.16rem;
  line-height: 1.4;
  color: var(--gold);
  display: none;
}
.tblock__who {
  display: block;
  margin-top: 12px;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 0.86rem;
  color: var(--muted-2);
}

.vframe {
  aspect-ratio: 9/16;
  width: 100%;
}
.wframe {
  width: 100%;
  padding: 5px;
}

.wframe img {
  border-radius: 6px;
}
.ph__tag--bottom {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

.vframe__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.3rem;
  padding-left: 4px;
  background: linear-gradient(180deg, var(--green), var(--green-2));
  box-shadow: 0 8px 24px rgba(38, 182, 2, 0.45);
  display: grid;
  place-items: center;
  transition: transform 0.2s;
}
.vframe__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.offer {
  background: var(--bg-warm);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.offer__card {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.offer__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 37px;
  padding-bottom: 15px;
}
.offer__desc {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  margin-top: 10px;
}
.offer__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 28px 0;
}
.offer__list li {
  position: relative;
  padding-left: 28px;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 1rem;
  color: var(--muted);
}
.offer__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
  font-family: var(--font-body);
}
.offer__price {
  margin: 10px 0 24px;
}
.offer__old {
  color: #f63636;
  text-decoration: line-through;
  font-size: 1.6rem;
  font-weight: 600;
}
.offer__now {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}
.offer__cur {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 10px;
  padding-right: 5px;
}
.offer__val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4.6rem;
  line-height: 1;
  color: var(--gold);
}
.offer-text {
  font-weight: 400;
  font-size: 1.2rem;
  margin: 10px 0px;
}
.offer__inst {
  display: block;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 0.94rem;
  color: var(--muted);
  margin-top: 8px;
}
.offer__safe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 22px;
  font-family: var(--font-light);
  font-size: 0.92rem;
  color: var(--muted-2);
}

.guarantee {
  background: var(--bg);
}
.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 740px;
  margin: 0 auto;
}
.guarantee__seal {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 0.8;
  color: var(--gold);
  background: var(--gold-soft);
  border: 2px solid var(--gold-line);
}
.guarantee__seal small {
  display: block;
  font-family: var(--font-light);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.guarantee__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.guarantee__text p {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  margin-top: 12px;
}
.guarantee__text strong {
  color: var(--ink);
  font-weight: 600;
}

.urgency {
  background: linear-gradient(180deg, #c00505, #8a0303);
  border-top: 2px solid #ff5b5b;
  border-bottom: 2px solid #7a0202;
}
.urgency::before {
  display: none;
}
.urgency__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.urgency .eyebrow--light {
  color: #ffe0e0;
}
.urgency__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 6vw, 2.3rem);
  line-height: 1.16;
  text-transform: uppercase;
  color: #fff;
}
.urgency__sub {
  font-family: var(--font-light);
  font-weight: 300;
  color: #ffdada;
  margin-top: 14px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}
.countdown__box {
  min-width: 66px;
  padding: 12px 8px;
  border-radius: 10px;
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.countdown__box span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: #fff;
}
.countdown__box small {
  font-family: var(--font-light);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffdada;
}

.faq {
  background: var(--bg);
}
.final-cta {
  background: var(--bg-2);
}
.final-cta__inner {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.final-cta__sub {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  margin: 16px 0 30px;
  font-size: 1.12rem;
}

.site-footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--gold-line);
  padding: 40px 0 30px;
  text-align: center;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.site-footer__legal {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--muted-2);
  line-height: 1.6;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 10px;
  background: #00ad4c;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 6px 20px rgba(38, 182, 2, 0.4);
  transform: translateY(140%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__price {
  background: rgba(0, 0, 0, 0.22);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.95rem;
}
.sticky-cta__label {
  font-size: 0.98rem;
}

.garantia {
  width: 200px;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .wrap {
    padding: 0 32px;
  }

  .dot {
    display: inline !important;
  }
  .garantia {
    width: 700px;
  }
  .hero {
    padding-top: 60px;
  }
  .hero__grid {
    flex-direction: row;
    align-items: center;
    gap: 52px;
  }
  .hero__copy {
    flex: 1 1 56%;
  }
  .hero__media {
    flex: 1 1 44%;
    max-width: 440px;
  }

  .hero__bg {
    left: 0;
    right: auto;
    top: 0;
    width: 46%;
    height: 100%;
    transform: scaleX(-1);
    object-fit: cover;
    object-position: 50% 12%;
    -webkit-mask-image: linear-gradient(to left, #000 0 55%, transparent 100%);
    mask-image: linear-gradient(to left, #000 0 55%, transparent 100%);
  }

  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .reach {
    flex-direction: row;
    align-items: stretch;
    max-width: none;
  }
  .reach__side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .reach__vs {
    display: flex;
    align-items: center;
    text-align: center;
    flex: 0 0 160px;
  }

  .guarantee__inner {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }

  .testimonials {
    gap: 56px;
  }
  .tblock {
    flex-direction: row;
    align-items: center;
    gap: 44px;
    text-align: left;
  }
  .tblock__media {
    flex: 0 0 360px;
  }
  .tblock__info {
    flex: 1;
    text-align: left;
    max-width: none;
  }
  .tblock:nth-child(even) {
    flex-direction: row-reverse;
  }
  .tblock__quote {
    font-size: 1.36rem;
  }
  .tblock__quote {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.16rem;
    line-height: 1.4;
    color: var(--gold);
    display: block;
  }

  .testimonials {
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 17px;
  }
  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .sticky-cta {
    display: none;
  }
  .site-footer {
    padding-bottom: 40px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 44px;
    background-color: #000000;
  }

  .hero__bg {
    width: auto;
    height: 118%;
    max-width: 42%;
    left: -2%;
    right: auto;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    object-fit: contain;
    object-position: center;
    -webkit-mask-image: linear-gradient(to left, #000 0 50%, transparent 100%);
    mask-image: linear-gradient(to left, #000 0 50%, transparent 100%);
  }
  .hero__title {
    margin-top: 0px;
  }

  .notif-card {
    position: absolute;
    margin-top: -7px;
    right: 80px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(20, 20, 20, 0.94);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-line);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
    max-width: 250px;
    animation: notif-float 4s ease-in-out infinite;
  }
}

.teacher {
  background: #ffffff;
  background-image:
    radial-gradient(
      42% 55% at 100% 0%,
      rgba(255, 193, 113, 0.2),
      transparent 60%
    ),
    radial-gradient(
      38% 45% at 0% 100%,
      rgba(184, 130, 57, 0.12),
      transparent 60%
    );
  color: #2b2620;
  overflow: hidden;
}
.teacher::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 15%,
    var(--gold),
    transparent 85%
  );
  opacity: 0.85;
}

.teacher__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "eyebrow"
    "photo"
    "head"
    "bio";
  gap: 18px;
  align-items: start;
}
.teacher__eyebrow {
  grid-area: eyebrow;
  color: #a6791c;
  margin-bottom: 0;
}
.teacher__photo {
  grid-area: photo;
}
.teacher__head {
  grid-area: head;
}
.teacher__bio {
  grid-area: bio;
}

.teacher__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 9vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #14110c;
  text-align: center;
}
.teacher__name::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
  left: 41%;
  position: relative;
}
.teacher__role {
  font-family: var(--font-display);
  font-weight: 700;
  color: #a6791c;
  margin-top: 14px;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
}
.teacher__bio {
  font-family: var(--font-light);
  font-weight: 300;
  color: #3f3a32;
  font-size: 1.05rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.teacher__bio strong {
  color: #8a6410;
  font-weight: 700;
}

.teacher__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: 0px;
}
.teacher__pic {
  display: block;
  width: 100%;
  height: 100%;
}
.teacher__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.05) saturate(1.06) brightness(1.02);
}
.teacher__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 60%, #ffffff 100%);
}

@media (min-width: 768px) {
  .teacher__grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "eyebrow photo"
      "head    photo"
      "bio     photo";
    column-gap: 52px;
    row-gap: 16px;
    align-items: center;
  }

  .teacher__photo {
    grid-area: photo;
    align-self: stretch;
    aspect-ratio: auto;
    height: 100%;
    min-height: 440px;
    border-radius: 0px;
  }
  .teacher__img {
    object-position: right center;
    filter: contrast(1.05) saturate(1.06) brightness(1.02);
  }

  .teacher__photo::after {
    background:
      linear-gradient(to bottom, transparent 72%, #ffffff 100%),
      linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 24%);
  }
  .teacher__eyebrow {
    align-self: end;
  }
  .teacher__bio {
    align-self: start;
  }
}

@media (min-width: 1024px) {
  .teacher__photo {
    min-height: 500px;
  }
}

.lk {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lk__photo {
  position: relative;
  width: 100%;
  height: 56vh;
  max-height: 560px;
  margin: 0;
  overflow: hidden;
}
.lk__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}
.lk__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(15, 15, 15, 0.6) 74%,
    rgba(15, 15, 15, 0.94) 90%,
    #0f0f0f 100%
  );
}

.lk__card {
  width: 100%;
  max-width: 440px;
  padding: 0 24px;
  margin-top: -26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lk__name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.75rem;
  line-height: 1.1;
  color: var(--ink);
  z-index: 9;
}

.lk__name::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
}
.lk__role {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 14px;
}

.lk__socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 22px 0 0;
}
.lk__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  background: rgba(255, 193, 113, 0.06);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}
.lk__icon:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: #0f0f0f;
}
.lk__icon:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.lk__links {
  width: 100%;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lk__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 22px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1rem;
  line-height: 1.25;
  color: #0f0f0f;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  box-shadow:
    0 10px 26px rgba(255, 193, 113, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}
.lk__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 193, 113, 0.36);
  filter: brightness(1.05);
}
.lk__btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.lk__footer {
  margin-top: auto;
  padding: 30px 16px 22px;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--muted-2);
}

@media (min-width: 768px) {
  .lk {
    justify-content: center;
    padding: 48px 24px;
  }

  .lk__photo {
    width: 220px;
    height: 220px;
    max-height: none;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 28px;
    border: 3px solid var(--gold);
    box-shadow:
      0 0 0 6px rgba(255, 193, 113, 0.12),
      0 24px 52px rgba(0, 0, 0, 0.6);
  }

  .lk__photo img {
    object-position: 50% 16%;
    transform: translate(3%, 25%) scale(1.5);
  }

  .lk__photo::after {
    display: none;
  }

  .lk__card {
    margin-top: 0;
    padding: 0;
  }
  .lk__name {
    font-size: 2.1rem;
  }
  .lk__role {
    font-size: 1.02rem;
  }
  .lk__icon {
    width: 56px;
    height: 56px;
  }
  .lk__btn {
    font-size: 1.06rem;
    padding: 19px 24px;
  }
  .lk__footer {
    margin-top: 36px;
    padding-bottom: 0;
  }
}

.dor {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dor-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
}
.dor-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-left: 3px solid #e23b3b;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.dor-item__ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(226, 59, 59, 0.14);
  color: #ff6b6b;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
}
.dor-item p {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.dor-item p strong {
  color: var(--ink);
  font-weight: 600;
}
.dor-close {
  max-width: 720px;
  margin: 34px auto 0;
  text-align: center;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--muted);
}
.dor-close strong {
  color: var(--gold);
  font-weight: 600;
}

.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.solution__item {
  background: var(--bg-2);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 26px;
}
.solution__ico {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.solution__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.solution__item p {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.solution__for {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}
.solution__for strong {
  color: var(--gold);
  font-weight: 600;
}
.solution__cta {
  display: block;
  width: 90%;
  max-width: 1080px;
  margin: 28px auto 0;
  text-align: center;
}

.bonus {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.bonus__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 193, 113, 0.12),
    rgba(153, 116, 68, 0.04)
  );
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  margin-top: 25px;
}
.bonus__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f0f0f;
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.bonus__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--ink);
}
.bonus__text {
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-top: 14px;
}
.bonus__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px auto 0;
  max-width: 440px;
}
.bonus__list li {
  position: relative;
  padding-left: 28px;
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--muted);
  font-size: 0.98rem;
}
.bonus__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
  font-family: var(--font-body);
}
.bonus__close {
  margin-top: 22px;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--gold);
}

.final-cta__kicker {
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 640px;
  margin: 0 auto 28px;
}
.final-cta__kicker strong {
  color: var(--gold);
  font-weight: 700;
}

.teacher {
  display: none;
}
.for-who {
  display: none;
}

/* ---------- DESKTOP (>= 768px) ---------- */
@media (min-width: 768px) {
  .solution__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .bonus__card {
    padding: 40px 34px;
  }
  .bonus__title {
    font-size: 1.7rem;
  }
  .section .dor {
    padding-top: 50px;
  }
}
