:root {
    --main-bg-color: #080209;
    --color-white: #ffffff;
    --color-gold: #e4c066;
    --color-gold-2: #f4b63f;
    --button-color-gray: #232323;
    --button-gold-1: #ffe8ae;
    --button-gold-2: #ffdd89;
    --button-gold-3: #e4c066;
    --item-bg: #07030b;
    --item-violet-1: #d2b3f1;
    --item-violet-2: #7b678f;
    --item-violet-3: #07030b;
    --color-white-50-percent: rgba(256, 256, 256, 50%);
}

* {
    box-sizing: border-box;
    word-wrap: break-word;
    background-color: transparent;
    font-family: inherit;
}

body {
    padding: 0;
    margin: 0;
    min-width: 320px;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    background-color: var(--main-bg-color);
    color: var(--color-white);
    position: relative;
    overflow-x: hidden;
}

.wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.header-logo img {
    max-height: clamp(20px, 5vw, 50px);
    width: 100%;
    height: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(14px, 2vw, 18px);
}

.header-nav a {
    color: var(--color-white);
    text-decoration: unset;
    transition: color .3s;
}

.wrapper-main {
    width: 100%;
    padding: 0 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper-main__head {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.wrapper-bg {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    transform: translateX(-50%);
    max-width: 1180px;
}

.wrapper-main__img {
    z-index: -1;
    order: 1;
}

.wrapper-main__img img {
    max-width: 450px;
}

.wrapper-main__title {
    display: flex;
    flex-direction: column;
    /*gap: 16px;*/
    max-width: 480px;
    width: 100%;
}

.wrapper-main__title-top {
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(32px, 5vw, 57px);
    line-height: 1;
    width: 100%;
    text-align: center;
}

.wrapper-main__title-middle {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: clamp(100px, 12vw, 172px);
    letter-spacing: -9px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#fceb75, #F4B63F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 28.4px #FF4747A1;
    line-height: 1;
    width: 100%;
    text-align: center;
    position: relative;
}

.wrapper-main__title-middle::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: transparent;
    text-shadow: 1.53px 1.53px #824215;
    z-index: -1;
}

.wrapper-main__title-bottom {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    width: 100%;
    text-align: center;
    line-height: 1.1;
    margin-top: 10px;
}

.wrapper-main__form {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    order: 2;
}

.wrapper-main__head .wrapper-main__form,
.wrapper-main__head-thanks {
    margin-top: 40px;
}

.wrapper-main__form input[type="text"] {
    border: none;
    outline: none;
    border-bottom: 1px solid var(--color-white-50-percent);
    padding: 10px 0;
    color: var(--color-white-50-percent);
    transition: color .3s, border-bottom-color .3s;
    width: 100%;
    font-size: 22px;
    font-weight: 400;
}

.wrapper-main__form input[type="text"]:focus {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
}

.wrapper-main__form-title {
    font-size: 24px;
    font-weight: 400;
}

.wrapper-main__form-inputs,
.wrapper-main__form-radio-button {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    align-items: start;
}

.wrapper-main__form-radio {
    font-size: 22px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.wrapper-main__form-radio-radio {
    appearance: none;
    -webkit-appearance: none;
    min-width: 22px;
    min-height: 22px;
    border-radius: 50%;
    background-color: var(--color-white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.wrapper-main__form-radio-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #232323;
    transition: opacity .3s, visibility .3s;
    opacity: 0;
    visibility: hidden;
}

.wrapper-main__form-radio-radio:hover::after,
.wrapper-main__form-radio-radio:checked::after {
    visibility: visible;
}

.wrapper-main__form-radio-radio:hover::after {
    opacity: .5;
}

.wrapper-main__form-radio-radio:checked::after {
    opacity: 1;
}

.button-gold {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px 50px;
    border-radius: 100px;
    text-transform: uppercase;
    background-color: var(--button-gold-3);
    color: #232323;
    line-height: 1;
    font-weight: 800;
    font-size: 22px;
    cursor: pointer;
    border: 1px solid rgba(256, 256, 256, .3);
    transition: box-shadow .3s, background-color .3s;
    width: 100%;
}

.button-gold__show-form {
    padding: 26px;
}

.button-gold:hover,
.button-gold:active {
    box-shadow: 0 5px 31px rgba(255, 221, 137, 0.24);
}

.button-gold:hover {
    background-color: var(--button-gold-2);
}

.button-gold:active {
    background-color: var(--button-gold-1);
}

.wrapper-main__benefits {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.wrapper-main__benefits-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    line-height: 1;
}

.wrapper-main__benefits-items {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.wrapper-main__benefits-item {
    max-width: 500px;
    border-radius: 26px;
    background-color: var(--item-bg);
    display: flex;
    gap: 18px;
    padding: 18px;
    position: relative;
    flex-direction: column;
}

.wrapper-main__benefits-item:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 1px;
    background: linear-gradient(to right, #D2B3F121, #7B678F80, #07030B);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.benefits-item__text {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 500;
}

.benefits-item__text span {
    color: var(--color-gold);
}

.benefits-item__icon {
    max-width: 70px;
    max-height: 70px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.benefits-item__icon img {
    width: 100%;
    height: auto;
}

.wrapper-main__cta {
    margin-top: 100px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.wrapper-main__cta-images {
    position: relative;
    order: 1;
    margin-top: 40px;
}

.wrapper-main__cta-images img {
    max-width: 800px;
}

.wrapper-main__cta-crown {
    position: absolute;
    z-index: 1;
    bottom: 120px;
    left: unset;
    transform: translateX(-100%);
}

.wrapper-main__cta-crown img {
    width: 45vw;
    max-width: 220px;
}

.wrapper-main__cta-body,
.wrapper-main__cta-body-thanks {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.wrapper-main__cta-body-thanks .button-gold {
    align-self: flex-start;
}

.cta-body__title,
.wrapper-main__head-thanks-title {
    font-weight: 800;
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.2;
    text-align: center;
}

.wrapper-main__head-thanks {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    order: 2;
}

.wrapper-main__cta .button-gold {
    width: 100%;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    text-align: center;
    width: 100%;
}

.footer-main__email {
    font-size: 32px;
    font-weight: 500;
    position: relative;
}

.footer-main__email .copy {
    position: absolute;
    top: -10px;
    right: 10px;
    color: var(--color-gold);
    font-size: 16px;
    font-weight: 400;
}

.footer-main__agreement {
    font-weight: 300;
    font-size: 18px;
    text-decoration: underline;
    color: #949494;
    margin-top: 40px;
}
