@font-face {
    font-family: Benzin-ExtraBold;
    src: url(/assets/Benzin-ExtraBold.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    src: url(/assets/Montserrat-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    src: url(/assets/Montserrat-Medium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    src: url(/assets/Montserrat-SemiBold.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    src: url(/assets/Montserrat-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    src: url(/assets/Montserrat-ExtraBold.woff2) format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
*,
:before,
:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    background: 0 0;
    border: none;
    font-family: inherit;
}
input,
textarea,
select {
    font-family: inherit;
}
.br-mob {
    display: none;
}
body {
    color: #222;
    background: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    line-height: 1.6;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.section {
    padding: 80px 0;
}
.btn {
    color: #fff;
    letter-spacing: 0.02em;
    cursor: pointer;
    background: linear-gradient(150deg, #000 0%, #4a4a4a 66%, #000 100%);
    border: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 70px;
    padding: 24px 42px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s;
    display: flex;
}
.btn:hover {
    opacity: 0.85;
}
.nav {
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    display: flex;
}
.nav__logo img {
    width: auto;
    height: 52px;
}
.nav__list {
    justify-content: center;
    align-items: center;
    gap: 50px;
    display: flex;
}
.nav__link {
    color: #222;
    letter-spacing: 0.02em;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s;
}
.nav__link:hover {
    opacity: 0.6;
}
.nav__burger {
    cursor: pointer;
    background: 0 0;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    display: none;
}
.nav__burger span {
    background: #222;
    border-radius: 2px;
    width: 28px;
    height: 2px;
    display: block;
}
.modal {
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    inset: 0;
}
.modal.is-open {
    visibility: visible;
    pointer-events: all;
}
.modal.is-open .modal__overlay {
    opacity: 1;
}
.modal.is-open .modal__dialog {
    opacity: 1;
    transform: translateY(0);
}
.modal__overlay {
    opacity: 0;
    background: #00000073;
    transition: opacity 0.3s;
    position: absolute;
    inset: 0;
}
.modal__dialog {
    z-index: 1;
    opacity: 0;
    background: #fff;
    width: 532px;
    padding: 70px 61px 52px;
    transition:
        opacity 0.3s,
        transform 0.3s;
    position: relative;
    transform: translateY(24px);
    box-shadow: 0 14px 24px #251f6614;
}
.modal__close {
    cursor: pointer;
    background: 0 0;
    border: 1px solid #a0a0a0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
}
.modal__close:before,
.modal__close:after {
    content: "";
    background: #a0a0a0;
    width: 12px;
    height: 1px;
    position: absolute;
}
.modal__close:before {
    transform: rotate(45deg);
}
.modal__close:after {
    transform: rotate(-45deg);
}
.modal__title {
    text-transform: uppercase;
    text-align: center;
    color: #222;
    letter-spacing: 0.6px;
    text-wrap: nowrap;
    margin-bottom: 14px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
}
.modal__subtitle {
    color: #1d1d1d;
    text-align: center;
    max-width: 324px;
    margin: 0 auto 32px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}
.modal__hint {
    color: #000;
    text-align: center;
    margin: 0 auto 20px;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}
.modal__field {
    margin-bottom: 10px;
}
.modal__label {
    color: #1d1d1d;
    margin-bottom: 8px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: block;
}
.modal__input {
    color: #1d1d1d;
    background: 0 0;
    border: 1px solid #c1c1c1;
    outline: none;
    width: 100%;
    height: 60px;
    padding: 0 16px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    transition: border-color 0.2s;
    display: block;
}
.modal__input:focus,
.modal__field:first-child .modal__input {
    border-color: #222;
}
.modal__submit {
    color: #fff;
    letter-spacing: 0.02em;
    cursor: pointer;
    background: linear-gradient(150deg, #000 0%, #4a4a4a 66%, #000 100%);
    border: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 70px;
    padding: 24px 42px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s;
    display: flex;
}
.modal__submit:hover {
    opacity: 0.85;
}
.modal__submit {
    letter-spacing: 0.36px;
    width: 100%;
    height: 79px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}
.modal__privacy {
    color: #000;
    letter-spacing: 0.28px;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}
.modal__privacy a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}
.modal__privacy a:hover {
    opacity: 0.7;
}
.topbar {
    z-index: 100;
    background: #222;
    height: 40px;
    position: sticky;
    top: 0;
    overflow: hidden;
}
.topbar__track {
    width: max-content;
    animation: 20s linear infinite marquee;
    display: flex;
}
.topbar__inner {
    white-space: nowrap;
    align-items: center;
    gap: 30px;
    height: 40px;
    padding: 0 15px;
    display: flex;
}
.topbar__text {
    color: #ffecbe;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.topbar__dot {
    background: #ffecbe;
    border-radius: 50%;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
}
@keyframes marquee {
    0% {
        transform: translate(0);
    }
    to {
        transform: translate(-50%);
    }
}
.header {
    padding-top: 18px;
}
.footer {
    background: #222;
    height: 166px;
}
.footer__inner {
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    height: 166px;
    display: flex;
}
.footer__logo {
    flex-shrink: 0;
}
.footer__logo img {
    width: 305px;
    height: auto;
    display: block;
}
.footer__links {
    flex-direction: column;
    gap: 6px;
    display: flex;
}
.footer__link {
    color: #fff;
    letter-spacing: 0.36px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer__link:hover {
    opacity: 0.7;
}
.footer__contacts {
    flex-direction: column;
    flex-shrink: 0;
    gap: 12px;
    display: flex;
}
.footer__contact-info {
    flex-direction: column;
    gap: 4px;
    display: flex;
}
.footer__social {
    gap: 16px;
    display: flex;
}
.footer__social-link {
    opacity: 1;
    align-items: center;
    transition: opacity 0.2s;
    display: flex;
}
.footer__social-link:hover {
    opacity: 0.7;
}
.footer__social-link img {
    filter: brightness(0) invert();
    width: 24px;
    height: 24px;
}
.footer__payments {
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    display: flex;
}
.footer__pay-icon {
    width: auto;
    height: 28px;
    display: block;
}
body.lp {
    background: #f6f8fc;
}
body.lp section .container {
    --bs-gutter-x: 2.5rem;
    max-width: 960px;
}
body.lp h2 {
    text-align: center;
    color: #000;
    padding: 60px 0 0;
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.55;
}
body.lp p {
    text-align: center;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
}
body.lp h4 {
    text-align: left;
    color: #000;
    padding-top: 20px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
}
body.lp h4:first-of-type {
    padding-top: 0;
}
.lp-text {
    text-align: left;
    color: #000;
    padding: 30px 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
}
.lp-text span {
    font-family: Arial, sans-serif;
    font-weight: 800;
}
.hero {
    background: url(/assets/promo_bg-C7_fl0hB.jpg) 0 / cover no-repeat;
}
.hero__wrapper {
    justify-content: space-between;
    display: flex;
}
.hero__content {
    flex: 1;
    margin-top: 75px;
}
.hero__subtitle {
    color: #222;
    text-align: center;
    width: 100%;
    max-width: 532px;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
}
.hero__title-img {
    width: 100%;
    margin-bottom: 22px;
}
.hero__text {
    color: #222;
    text-align: center;
    width: 100%;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 500;
}
.hero__badges {
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    display: flex;
}
.hero__badge {
    color: #222;
    white-space: nowrap;
    background: #0000001a;
    border: 2px solid #0000;
    border-image: linear-gradient(135deg, #000 0%, #0000 50%, #666 100%) 1;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 56px;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
}
.hero__badge:last-child {
    flex: 1;
}
.hero__dot {
    background: #e41f1f;
    border-radius: 50%;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}
.hero__bonus {
    color: #222;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 32px;
    font-size: 18px;
    display: flex;
}
.hero__bonus div {
    text-align: center;
    max-width: 446px;
    font-weight: 500;
}
.hero__bonus img {
    flex-shrink: 0;
    width: 56px;
}
.hero__visual {
    flex-shrink: 0;
}
.hero__btn {
    text-align: center;
    max-width: 256px;
    display: flex;
}
.hero__person {
    width: 100%;
}
.clear {
    padding-top: 33px;
}
.clear__wrapper {
    justify-content: center;
    align-items: center;
    gap: 32px;
    display: flex;
}
.clear__photo {
    width: 100%;
    max-width: 570px;
}
.clear__title {
    color: #222;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: Benzin-ExtraBold;
    font-size: 50px;
    font-weight: 700;
    line-height: 52px;
}
.clear__subtitle {
    color: #222;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}
.clear__subtitle_text {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}
.clear__text {
    color: #222;
    margin-bottom: 18px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}
.clear__badge {
    color: #222;
    background: #0000001a;
    border: 2px solid #0000;
    border-image: linear-gradient(135deg, #000 0%, #0000 50%, #666 100%) 1;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 100px;
    margin-bottom: 18px;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
}
.advantages {
    background-image: url(/assets/advantages_bg-Bs2oYoxf.webp);
    background-position: 50%;
    background-size: cover;
    padding: 120px 0;
}
.advantages__title {
    color: #222;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 50px;
    font-weight: 700;
}
.advantages-list {
    align-items: space-between;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    display: flex;
}
.advantages-list__item_img {
    max-width: 74px;
    margin: 0 auto 16px;
}
.advantages-list__item_title {
    color: #222;
    text-align: center;
    text-transform: uppercase;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 30px;
    font-weight: 700;
}
.advantages-list__item_subtitle {
    color: #222;
    text-align: center;
    max-width: 413px;
    font-size: 18px;
    font-weight: 500;
}
.advantages__btn {
    max-width: 405px;
    margin: 0 auto;
}
.program {
    padding-bottom: 103px;
    position: relative;
    overflow: hidden;
}
.program__title {
    text-transform: uppercase;
    text-align: center;
    color: #222;
    letter-spacing: 1px;
    margin-bottom: 41px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
}
.program__list {
    flex-direction: column;
    align-items: center;
    display: flex;
}
.program__item {
    border-bottom: 1px solid #d9d9d9;
    align-items: flex-start;
    gap: 70px;
    max-width: 900px;
    padding: 40px 0;
    display: flex;
}
.program__photo {
    object-fit: cover;
    flex-shrink: 0;
    width: 305px;
    height: 386px;
}
.program__content {
    flex: 1;
    min-width: 0;
    padding-top: 10px;
}
.program__num {
    text-transform: uppercase;
    color: #222;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
}
.program__name {
    text-transform: uppercase;
    color: #222;
    letter-spacing: 0.44px;
    margin-bottom: 16px;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 800;
}
.program__body {
    flex-direction: column;
    gap: 12px;
    display: flex;
}
.program__body p {
    color: #222;
    letter-spacing: 0.36px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}
.program__body ul {
    padding-left: 25px;
    list-style: outside;
}
.program__body ul li::marker {
    color: #222;
    font-size: 12px;
}
.program__body strong {
    font-weight: 800;
}
.program__cta {
    justify-content: center;
    margin-top: 60px;
    display: flex;
}
.program__letter {
    pointer-events: none;
    z-index: 0;
    position: absolute;
}
.program__letter--h {
    width: 597px;
    top: 60px;
    left: -60px;
}
.program__letter--a {
    width: 761px;
    top: 500px;
    right: -80px;
}
.program__letter--i {
    width: 795px;
    top: 1300px;
    left: -60px;
}
.program__letter--r {
    width: 747px;
    top: 2100px;
    right: -80px;
}
.program__list,
.program__title,
.program__cta {
    z-index: 1;
    position: relative;
}
.for-whom {
    padding: 80px 0;
}
.for-whom__title {
    text-transform: uppercase;
    text-align: center;
    color: #222;
    letter-spacing: 1px;
    max-width: 919px;
    margin: 0 auto 60px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
}
.for-whom__cards {
    gap: 21px;
    display: flex;
}
.for-whom__card {
    background: #0000001a;
    border: 2px solid #0000;
    border-image: linear-gradient(135deg, #000 0%, #0000 50%, #666 100%) 1;
    flex-direction: column;
    flex: 1;
    gap: 16px;
    padding: 40px 29px;
    display: flex;
}
.for-whom__card-title {
    text-transform: uppercase;
    text-align: center;
    color: #222;
    letter-spacing: 0.02em;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 800;
}
.for-whom__card-text {
    text-align: center;
    color: #222;
    letter-spacing: 0.02em;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.pricing {
    background: #222;
    padding: 80px 0;
}
.pricing__title {
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
}
.pricing__bonus {
    color: #fff;
    letter-spacing: 0.36px;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    display: flex;
}
.pricing__bonus img {
    flex-shrink: 0;
    width: 56px;
}
.pricing__bonus strong {
    font-weight: 700;
}
.pricing__bonus p {
    text-align: center;
    max-width: 440px;
}
.pricing__cards {
    justify-content: center;
    gap: 20px;
    display: flex;
}
.pricing__card {
    background: #fff;
    border: 2px solid #000;
    flex-direction: column;
    gap: 20px;
    width: 453px;
    padding: 40px;
    display: flex;
}
.pricing__plan {
    text-transform: uppercase;
    color: #222;
    letter-spacing: 0.8px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
}
.pricing__features {
    flex-direction: column;
    flex: 1;
    gap: 8px;
    display: flex;
}
.pricing__features li {
    color: #222;
    letter-spacing: 0.36px;
    padding-left: 16px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
    position: relative;
}
.pricing__features li:before {
    content: "–";
    position: absolute;
    left: 0;
}
.pricing__features li strong {
    font-weight: 800;
}
.pricing__divider {
    background: #d9d9d9;
    height: 1px;
}
.pricing__price-block {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    display: flex;
}
.pricing__old {
    align-items: center;
    gap: 8px;
    display: flex;
}
.pricing__old-price {
    color: #5a5a5a;
    letter-spacing: 0.44px;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: line-through;
}
.pricing__discount {
    color: #fff;
    letter-spacing: 0.44px;
    background: #e41f1f;
    padding: 0 8px;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 700;
}
.pricing__part {
    color: #000;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 400;
}
.pricing__new {
    color: #222;
    letter-spacing: 0.84px;
    font-family: Montserrat, sans-serif;
    font-size: 42px;
    font-weight: 800;
}
.pricing__currency{
    margin-top: -10px;
}
.pricing__btn {
    max-width: 256px;
    margin: 0 auto;
    display: flex;
}
.results {
    padding: 120px 0;
    position: relative;
}
.results__btn {
    max-width: 353px;
}
.results__letter {
    pointer-events: none;
    z-index: 0;
    width: 700px;
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
}
.results__inner {
    z-index: 1;
    align-items: flex-start;
    gap: 60px;
    display: flex;
    position: relative;
}
.results__left {
    flex-shrink: 0;
    width: 493px;
}
.results__title {
    text-transform: uppercase;
    color: #222;
    letter-spacing: 1px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
}
.results__photo {
    object-fit: cover;
    z-index: -1;
    width: 493px;
    height: 617px;
    position: absolute;
    top: -120px;
    left: 0;
}
.results__right {
    flex-direction: column;
    flex: 1;
    gap: 40px;
    min-width: 0;
    padding-top: 27px;
    display: flex;
}
.results__list {
    flex-direction: column;
    gap: 20px;
    display: flex;
}
.results__list li {
    align-items: center;
    gap: 16px;
    display: flex;
}
.results__list li img {
    flex-shrink: 0;
    width: 43px;
}
.results__list li p {
    color: #222;
    letter-spacing: 0.36px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.results__list li strong {
    font-weight: 800;
}
.format {
    padding: 0 0 80px;
}
.format__title {
    text-transform: uppercase;
    text-align: center;
    color: #222;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
}
.format__cards {
    gap: 21px;
    display: flex;
}
.format__card {
    background: #0000001a;
    border: 2px solid #0000;
    border-image: linear-gradient(135deg, #000 0%, #0000 50%, #666 100%) 1;
    flex-direction: column;
    flex: 1;
    gap: 16px;
    padding: 40px 29px;
    display: flex;
}
.format__card-title {
    text-transform: uppercase;
    text-align: center;
    color: #222;
    letter-spacing: 0.36px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 800;
}
.format__card-text {
    text-align: center;
    color: #222;
    letter-spacing: 0.36px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.author {
    background: url(/assets/about_bg-D7BE72j1.webp) 50% / cover no-repeat;
    height: 795px;
    position: relative;
    overflow: hidden;
}
.author__visuals {
    pointer-events: none;
    z-index: 0;
    position: absolute;
    inset: 0;
}
.author__deco {
    object-fit: contain;
    transform-origin: 0 0;
    width: 760px;
    height: 760px;
    position: absolute;
    transform: rotate(-13deg);
}
.author__deco--1 {
    top: 80px;
    left: -80px;
}
.author__deco--2 {
    top: 50px;
    left: 280px;
}
.author__inner {
    z-index: 1;
    height: 795px;
    padding-bottom: 0;
    display: flex;
    position: relative;
}
.author__left {
    flex: 0 0 520px;
    align-self: flex-end;
}
.author__photo {
    object-fit: cover;
    object-position: top center;
    width: 100%;
    min-width: 623px;
    height: auto;
    display: block;
}
.author__right {
    flex-direction: column;
    flex: 1;
    gap: 0;
    min-width: 0;
    padding-top: 110px;
    padding-bottom: 60px;
    display: flex;
}
.author__label {
    text-transform: uppercase;
    color: #222;
    letter-spacing: 0.44px;
    margin-bottom: 6px;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 800;
}
.author__name {
    text-transform: uppercase;
    color: #222;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 70px;
}
.author__fullname {
    text-transform: uppercase;
    color: #222;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    font-weight: 800;
}
.author__bio {
    flex-direction: column;
    gap: 2px;
    margin-bottom: 36px;
    padding-left: 20px;
    list-style: outside;
    display: flex;
}
.author__bio li {
    color: #222;
    letter-spacing: 0.36px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}
.author__bio li strong {
    font-weight: 800;
}
.author__bio li a {
    color: #222;
    font-weight: 800;
    text-decoration: underline;
}
.author__qr {
    align-items: center;
    gap: 24px;
    display: flex;
}
.author__qr-img {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: block;
}
.author__qr-info {
    flex-direction: column;
    gap: 4px;
    display: flex;
}
.author__ig-label {
    color: #222;
    letter-spacing: 0.36px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
}
.author__ig-handle {
    color: #222;
    letter-spacing: 0.46px;
    font-family: Montserrat, sans-serif;
    font-size: 23px;
    font-weight: 800;
    text-decoration: underline;
}
.works {
    padding: 120px 0 0;
    overflow: hidden;
}
.works__title {
    text-transform: uppercase;
    text-align: center;
    color: #222;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
}
.works__row {
    width: max-content;
    margin-bottom: 20px;
    display: flex;
}
.works__row--rtl {
    animation: 35s linear infinite works-rtl;
}
.works__row--ltr {
    animation: 35s linear infinite works-ltr;
}
.works__inner {
    gap: 20px;
    display: flex;
}
.works__inner:nth-child(2) {
    margin-left: 20px;
}
.works__photo {
    object-fit: cover;
    flex-shrink: 0;
    width: 305px;
    height: 386px;
    display: block;
}
@keyframes works-rtl {
    0% {
        transform: translate(0);
    }
    to {
        transform: translate(-50%);
    }
}
@keyframes works-ltr {
    0% {
        transform: translate(-50%);
    }
    to {
        transform: translate(0);
    }
}
.partners {
    padding: 60px 0 0;
    overflow: hidden;
}
.partners__title {
    text-transform: uppercase;
    text-align: center;
    color: #222;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
}
.partners__track {
    width: max-content;
    animation: 18s linear infinite marquee-rtl;
    display: flex;
}
.partners__inner {
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    display: flex;
}
.partners__inner img:first-child {
    max-height: 16px;
}
.partners__inner img:nth-child(2) {
    max-height: 49px;
}
.partners__inner img:nth-child(3) {
    max-height: 28px;
}
.partners__inner img:nth-child(4) {
    max-height: 43px;
}
.partners__inner img:nth-child(5) {
    max-height: 16px;
}
.partners__inner img:nth-child(6) {
    max-height: 49px;
}
.partners__logo {
    object-fit: contain;
    flex-shrink: 0;
    max-height: 43px;
}
@keyframes marquee-rtl {
    0% {
        transform: translate(0);
    }
    to {
        transform: translate(-50%);
    }
}
.cta-promo {
    background: url(/assets/simple-bg-UpMw40am.webp) 50% / cover no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-promo__decor {
    pointer-events: none;
    z-index: 0;
    width: 695px;
    height: 665px;
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
}
.cta-promo__inner {
    z-index: 1;
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    position: relative;
}
.cta-promo__subtitle {
    color: #222;
    letter-spacing: 0.44px;
    margin-bottom: 16px;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}
.cta-promo__title {
    width: 100%;
    max-width: 747px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}
.cta-promo__text {
    color: #222;
    letter-spacing: 0.36px;
    margin-bottom: 24px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}
.cta-promo__badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    display: flex;
}
.cta-promo__badge {
    color: #222;
    letter-spacing: 0.36px;
    white-space: nowrap;
    background: #0000001a;
    border: 2px solid #0000;
    border-image: linear-gradient(135deg, #000 0%, #0000 50%, #666 100%) 1;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 20px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    display: flex;
}
.cta-promo__dot {
    background: #e41f1f;
    border-radius: 50%;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}
.cta-promo__bonus {
    text-align: left;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    display: flex;
}
.cta-promo__bonus img {
    flex-shrink: 0;
    width: 56px;
}
.cta-promo__bonus p {
    color: #222;
    letter-spacing: 0.36px;
    max-width: 446px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}
.cta-promo__bonus p strong {
    font-weight: 700;
}
.faq {
    padding: 120px 0;
}
.faq__title {
    text-transform: uppercase;
    text-align: center;
    color: #222;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
}
.faq__list {
    border-top: 1px solid #d9d9d9;
    max-width: 1064px;
    margin: 0 auto;
    display: block;
}
.faq__item {
    border-bottom: 1px solid #d9d9d9;
}
.faq__item[open] .faq__question:after {
    transform: rotate(45deg);
}
.faq__question {
    cursor: pointer;
    text-transform: uppercase;
    color: #222;
    letter-spacing: 0.36px;
    -webkit-user-select: none;
    user-select: none;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 40px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 800;
    list-style: none;
    display: flex;
}
.faq__question::-webkit-details-marker {
    display: none;
}
.faq__question:after {
    content: "+";
    flex-shrink: 0;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s;
}
.faq__answer {
    color: #222;
    letter-spacing: 0.36px;
    max-width: 904px;
    padding: 0 40px 28px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}
.thx-page {
    background: #222;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
}
.thx {
    background: url(/assets/promo_bg-C7_fl0hB.jpg) 50% / cover no-repeat;
    flex: 1;
    align-items: center;
    padding: 60px 0 80px;
    display: flex;
}
.thx__inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
}
.thx--compact {
    padding-bottom: 40px;
}
.thx__course-logo img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
}
.thx__title {
    color: #222;
    letter-spacing: 0.04em;
    text-align: center;
    font-family: Benzin-ExtraBold, sans-serif;
    font-size: 48px;
    line-height: 1.1;
}
.thx__badge {
    color: #222;
    white-space: nowrap;
    background: #0000001a;
    border: 2px solid #0000;
    border-image: linear-gradient(135deg, #000 0%, #0000 50%, #666 100%) 1;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 56px;
    padding: 0 16px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    display: flex;
}
.thx__badge--text {
    white-space: normal;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 20px 28px;
    font-weight: 500;
    line-height: 1.6;
    display: block;
}
.thx__badge--text strong {
    font-weight: 700;
}
.thx__btn {
    white-space: nowrap;
    width: 100%;
    max-width: 460px;
}
.thx__btn--sm {
    max-width: 280px;
    height: 52px;
    padding: 12px 36px;
    font-size: 16px;
}
.thx__badge-intro {
    margin-bottom: 4px;
}
.thx__badge-item {
    font-size: 15px;
}
@media (width>=768px) {
    .thx__badge-item {
        white-space: nowrap;
    }
}
.thx__subtitle {
    color: #222;
    text-align: center;
    width: 100%;
    max-width: 532px;
    margin: 0 auto;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
}
.thx__subtitle strong {
    font-weight: 700;
}
@media (width<=768px) {
    .thx {
        background: url(/assets/promo_bg-C7_fl0hB.jpg) 18% / cover no-repeat;
        padding: 40px 0 60px;
    }
    .thx--compact {
        padding-bottom: 20px;
    }
    .thx__title {
        font-size: 32px;
    }
    .thx__badge--text {
        padding: 16px 20px;
        font-size: 16px;
    }
    .thx__subtitle {
        font-size: 16px;
    }
    .thx__btn {
        white-space: normal;
        max-width: 300px;
        height: auto;
        min-height: 70px;
        padding: 16px 24px;
    }
    .br-mob {
        display: block;
    }
    .container {
        padding: 0 20px;
    }
    .btn {
        white-space: normal;
        text-align: center;
        height: auto;
        min-height: 56px;
        padding: 14px 24px;
        font-size: 16px;
        line-height: 1.3;
    }
    .nav__list {
        z-index: 200;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        display: none;
        position: fixed;
        inset: 0;
    }
    .nav__list--open {
        display: flex;
    }
    .nav__link {
        font-size: 24px;
    }
    .nav__cta {
        display: none;
    }
    .nav__burger {
        z-index: 201;
        display: flex;
        position: relative;
    }
    .nav__burger.is-active span:first-child {
        transform: translateY(7px) rotate(45deg);
    }
    .nav__burger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .nav__burger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .nav__burger span {
        transition:
            transform 0.25s,
            opacity 0.25s;
    }
    .hero {
        background: url(/assets/promo_bg-C7_fl0hB.jpg) 18% / cover no-repeat;
    }
    .hero__wrapper {
        flex-direction: column;
    }
    .hero__content {
        order: 1;
        margin-top: 30px;
    }
    .hero__subtitle {
        margin-bottom: 14px;
        font-size: 16px;
    }
    .hero__title-img {
        margin-bottom: 16px;
    }
    .hero__text {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .hero__badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    .hero__badge {
        text-wrap: wrap;
        text-align: center;
        justify-content: center;
        width: 100%;
        line-height: 20px;
    }
    .hero__badge:first-child {
        max-width: 217px;
    }
    .hero__badge:nth-child(2) {
        max-width: 294px;
        height: auto;
        padding: 5px 30px;
    }
    .hero__badge:last-child {
        flex: unset;
    }
    .hero__bonus {
        margin-top: 20px;
        margin-bottom: 24px;
        font-size: 16px;
    }
    .hero__bonus img {
        width: 55px;
    }
    .hero__btn {
        width: 100%;
        max-width: 256px;
        display: flex;
    }
    .hero__visual {
        order: 2;
        width: 100%;
        margin-top: 30px;
    }
    .hero__person {
        object-fit: cover;
        width: 100%;
    }
    .clear {
        padding-top: 60px;
    }
    .clear__wrapper {
        flex-direction: column;
        gap: 0;
    }
    .clear__photo {
        order: 2;
        max-width: 100%;
        margin-top: 40px;
    }
    .clear__content {
        order: 1;
    }
    .clear__title {
        margin-bottom: 16px;
        font-size: 36px;
        line-height: 38px;
    }
    .clear__subtitle {
        font-size: 18px;
    }
    .clear__badge {
        height: auto;
        padding: 20px;
        font-size: 16px;
    }
    .clear__text {
        font-size: 16px;
    }
    .advantages {
        padding: 60px 0;
    }
    .advantages__title {
        max-width: 345px;
        margin: 0 auto 19px;
        font-size: 36px;
        line-height: 38px;
    }
    .advantages-list {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 36px;
    }
    .advantages-list__item_img {
        max-width: 60px;
    }
    .advantages-list__item_subtitle {
        max-width: 100%;
        font-size: 16px;
    }
    .advantages__btn {
        max-width: 284px;
    }
    .for-whom {
        padding: 60px 0;
    }
    .for-whom__title {
        margin-bottom: 32px;
        font-size: 32px;
        line-height: 36px;
    }
    .for-whom__cards {
        flex-direction: column;
        gap: 12px;
    }
    .for-whom__card {
        gap: 10px;
        padding: 24px 20px;
    }
    .for-whom__card-title,
    .for-whom__card-text {
        font-size: 16px;
    }
    .program {
        padding: 0;
        padding-bottom: 60px 0;
    }
    .program__title {
        margin-bottom: 32px;
        font-size: 36px;
        line-height: 38px;
    }
    .program__item {
        gap: 20px;
        padding: 24px 0;
    }
    .program__photo {
        flex-shrink: 0;
        width: 110px;
        height: 140px;
    }
    .program__num {
        margin-bottom: 10px;
        font-size: 28px;
    }
    .program__name {
        margin-bottom: 10px;
        font-size: 16px;
    }
    .program__body p {
        font-size: 14px;
    }
    .program__cta {
        margin-top: 40px;
        display: flex;
    }
    .program__cta .btn {
        display: none;
    }
    .results {
        padding: 60px 0;
    }
    .results__letter {
        width: 260px;
        top: auto;
        bottom: 0;
        right: -40px;
        transform: none;
    }
    .results__inner {
        flex-direction: column;
        gap: 32px;
    }
    .results__left {
        width: 100%;
    }
    .results__title {
        text-align: center;
        margin-bottom: 20px;
        font-size: 32px;
        line-height: 34px;
        position: static;
    }
    .results__photo {
        display: none;
    }
    .results__right {
        gap: 24px;
        padding-top: 0;
    }
    .results__btn {
        width: 100%;
        max-width: 353px;
        height: 70px;
        margin: 0 auto;
    }
    .format {
        padding: 40px 0 60px;
    }
    .format__title {
        max-width: 345px;
        margin: 0 auto 20px;
        font-size: 36px;
        line-height: 38px;
    }
    .format__cards {
        flex-direction: column;
        gap: 12px;
    }
    .format__card {
        padding: 24px 20px;
    }
    .format__card-title,
    .format__card-text {
        font-size: 16px;
    }
    .pricing {
        padding: 60px 0;
    }
    .pricing__title {
        margin-bottom: 24px;
        font-size: 33px;
        line-height: 40px;
    }
    .pricing__bonus {
        text-align: left;
        flex-direction: row;
        gap: 12px;
        margin-bottom: 28px;
        font-size: 16px;
    }
    .pricing__bonus img {
        width: 55px;
    }
    .pricing__bonus p {
        max-width: 100%;
    }
    .pricing__cards {
        flex-direction: column;
        gap: 16px;
    }
    .pricing__card {
        gap: 16px;
        width: 100%;
        padding: 28px 24px;
    }
    .pricing__plan {
        text-align: center;
        font-size: 32px;
    }
    .pricing__features li {
        font-size: 16px;
    }
    .pricing__old-price,
    .pricing__discount {
        font-size: 22px;
    }
    .pricing__new {
        font-size: 42px;
    }
    .pricing__btn {
        width: 100%;
        max-width: 100%;
    }
    .pricing__btn .btn {
        width: 100%;
    }
    .author {
        height: auto;
    }
    .author__deco {
        width: 384px;
        height: 384px;
        top: auto;
    }
    .author__deco--1 {
        bottom: 10px;
        left: -120px;
        transform: rotate(-7deg);
    }
    .author__deco--2 {
        bottom: 30px;
        left: 120px;
    }
    .author__inner {
        flex-direction: column;
        height: auto;
        padding-bottom: 0;
    }
    .author__left {
        flex: unset;
        order: 2;
        width: 100%;
    }
    .author__label {
        text-align: center;
    }
    .author__right {
        order: 1;
        padding-top: 40px;
        padding-bottom: 32px;
    }
    .author__name {
        text-align: center;
        font-size: 42px;
        line-height: 50px;
    }
    .author__fullname {
        text-align: center;
        font-size: 22px;
    }
    .author__bio li {
        font-size: 16px;
    }
    .author__photo {
        min-width: auto;
    }
    .author__qr-img {
        width: 140px;
        height: 140px;
    }
    .author__visuals {
        position: static;
    }
    .works {
        padding: 60px 0 0;
    }
    .works__title {
        margin-bottom: 24px;
        font-size: 36px;
    }
    .works__photo {
        width: 200px;
        height: 253px;
    }
    .partners {
        padding: 40px 0;
    }
    .partners__title {
        margin-bottom: 24px;
        font-size: 36px;
    }
    .faq {
        padding: 60px 0;
    }
    .faq__title {
        margin-bottom: 28px;
        font-size: 36px;
        line-height: 38px;
    }
    .faq__question {
        padding: 20px 0;
        font-size: 18px;
    }
    .faq__question:after {
        font-size: 50px;
    }
    .faq__answer {
        padding: 0 0 20px;
        font-size: 18px;
    }
    .cta-promo {
        padding: 60px 0;
    }
    .cta-promo__decor {
        opacity: 0.4;
        width: 280px;
        height: 268px;
        right: -30px;
    }
    .cta-promo__subtitle {
        font-size: 15px;
    }
    .cta-promo__text {
        font-size: 16px;
    }
    .cta-promo__badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .cta-promo__badge {
        text-wrap: wrap;
        text-align: center;
        justify-content: center;
        width: auto;
        height: auto;
        font-size: 16px;
        line-height: 20px;
    }
    .cta-promo__badge:first-child {
        max-width: 217px;
        padding: 13px 30px;
    }
    .cta-promo__badge:nth-child(2) {
        max-width: 294px;
        padding: 5px 30px;
    }
    .cta-promo__bonus {
        text-align: left;
        flex-direction: row;
    }
    .cta-promo__bonus p {
        text-align: center;
        font-size: 16px;
    }
    .footer {
        height: auto;
    }
    .footer__inner {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        height: auto;
        padding: 40px 0;
    }
    .footer__logo img {
        width: 220px;
    }
    .footer__links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .footer__link {
        font-size: 16px;
    }
    .footer__contacts {
        align-items: center;
    }
    .footer__social {
        justify-content: center;
    }
    .footer__social-link img {
        width: 28px;
        height: 28px;
    }
    .footer__payments {
        flex-wrap: wrap;
        justify-content: center;
    }
    .modal__dialog {
        width: calc(100% - 32px);
        padding: 50px 24px 36px;
    }
    .modal__title {
        text-wrap: wrap;
        white-space: normal;
        font-size: 24px;
    }
    .modal__subtitle {
        font-size: 16px;
    }
    .modal__submit {
        height: 64px;
        font-size: 16px;
    }
}
.pricing__countdown{display:flex;flex-direction:column;align-items:center;gap:0;margin-bottom:32px}.pricing__countdown-label{font-family:'Montserrat',sans-serif;font-size:20px;font-weight:400;color:#fff;text-align:center;margin-bottom:3px}.pricing__countdown-timer{display:flex;align-items:flex-start;justify-content:center;gap:10px}.pricing__countdown-cell{display:flex;flex-direction:column;align-items:center}.pricing__countdown-num{font-family:'Montserrat',sans-serif;font-size:28px;font-weight:700;color:#fff;line-height:1}.pricing__countdown-unit{font-family:'Montserrat',sans-serif;font-size:13px;font-weight:400;color:#fff;line-height:1}.pricing__countdown-sep{font-family:'Montserrat',sans-serif;font-size:28px;font-weight:700;color:#fff;line-height:1}
.hero__cta-wrapper{display:flex;align-items:center;justify-content:center;gap:22px;flex-wrap:wrap}.hero__countdown{display:flex;flex-direction:column;gap:0;height:70px;justify-content:center}.hero__countdown-label{font-family:'Montserrat',sans-serif;font-size:20px;color:#222222;text-align:center;margin-bottom:3px}.hero__countdown-timer{display:flex;align-items:flex-start;gap:10px;justify-content:center}.hero__countdown-cell{display:flex;flex-direction:column;align-items:center}.hero__countdown-num{font-family:'Montserrat',sans-serif;font-size:28px;font-weight:700;color:#222222;line-height:1}.hero__countdown-unit{font-family:'Montserrat',sans-serif;font-size:13px;font-weight:400;color:#222222;line-height:1}.hero__countdown-sep{font-family:'Montserrat',sans-serif;font-size:28px;font-weight:700;color:#373536;line-height:1}@media(max-width:768px){.hero__cta-wrapper{flex-direction:column;align-items:center;gap:16px}}
