body {
    position: relative;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #f8f3ff;
    background:
        radial-gradient(circle at 20% 10%, rgba(147, 91, 255, 0.34), transparent 30%),
        radial-gradient(circle at 80% 0%, rgba(50, 197, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #080817 0%, #100b26 45%, #050511 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.5px),
        radial-gradient(circle, rgba(196, 166, 255, 0.75) 0 1px, transparent 1.5px);
    background-position: 0 0, 34px 58px;
    background-size: 90px 90px, 130px 130px;
    opacity: 0.38;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(115deg, transparent 0 17%, rgba(255, 255, 255, 0.12) 17.2%, transparent 17.5% 100%),
        linear-gradient(35deg, transparent 0 72%, rgba(139, 207, 255, 0.12) 72.2%, transparent 72.5% 100%),
        linear-gradient(145deg, transparent 0 57%, rgba(221, 190, 255, 0.1) 57.2%, transparent 57.5% 100%);
    opacity: 0.42;
    pointer-events: none;
}


a {
    outline: none;
    color: inherit;
    text-decoration: none !important;
    transition: all 0.5s ease;
}

a:hover {
    text-decoration: none !important;
    /* color: inherit !important; */
}

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(8, 8, 23, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(193, 169, 255, 0.16);
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 24px;
}

.header__logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #f7d77e;
    text-shadow: 0 0 22px rgba(247, 215, 126, 0.42);
}

.header__logo:hover {
    color: #f7d77e;
    text-shadow: 0 0 22px rgba(247, 215, 126, 0.42);
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.header__link {
    font-size: 15px;
    font-weight: 700;
    color: #d7cef8;
    transition: color 0.2s ease, transform 0.2s ease;
}

.header__link:hover {
    color: #f7d77e;
    transform: translateY(-1px);
}

.header__link--button {
    padding: 12px 18px;
    color: #120b24;
    background: linear-gradient(135deg, #f7d77e, #b66cff);
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(182, 108, 255, 0.42);
}

.header__link--button:hover {
    color: #120b24;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(193, 169, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.header__burger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(247, 215, 126, 0.35);
}

.header__burger-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #f7d77e;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.header__burger--active .header__burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__burger--active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header__mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(147, 91, 255, 0.34), transparent 30%),
        radial-gradient(circle at 80% 0%, rgba(50, 197, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #080817 0%, #100b26 45%, #050511 100%);
    overflow-y: auto;
}

.header__mobile-menu[hidden] {
    display: none;
}

.header__mobile-menu--open {
    display: flex;
}

.header__mobile-close {
    position: absolute;
    top: 18px;
    right: max(16px, calc((100% - 1120px) / 2 + 16px));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: rgba(248, 243, 255, 0.8);
    font-size: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(193, 169, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.header__mobile-close:hover {
    color: #f8f3ff;
    background: rgba(255, 255, 255, 0.12);
}

.header__mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.header__mobile-link {
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 800;
    color: #d7cef8;
    transition: color 0.2s ease, transform 0.2s ease;
}

.header__mobile-link:hover {
    color: #f7d77e;
    transform: translateY(-2px);
}

.header__mobile-link--button {
    margin-top: 8px;
    padding: 16px 28px;
    font-size: clamp(18px, 4vw, 22px);
    color: #120b24;
    background: linear-gradient(135deg, #f7d77e, #b66cff);
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(182, 108, 255, 0.42);
}

.header__mobile-link--button:hover {
    color: #120b24;
}

body.header-menu-open {
    overflow: hidden;
}

.main {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero {
    position: relative;
    padding: 86px 0 96px;
    background:
        radial-gradient(circle at 16% 18%, rgba(247, 215, 126, 0.16), transparent 26%),
        radial-gradient(circle at 78% 20%, rgba(96, 165, 250, 0.2), transparent 30%),
        linear-gradient(145deg, rgba(13, 13, 38, 0.94), rgba(22, 10, 48, 0.86));
}

.hero::before {
    content: "11";
    position: absolute;
    top: 58px;
    right: 8%;
    width: 320px;
    height: 230px;
    background:
        radial-gradient(circle at 12% 22%, #ffffff 0 3px, transparent 4px),
        radial-gradient(circle at 34% 48%, #72ddff 0 2px, transparent 3px),
        radial-gradient(circle at 58% 16%, #f7d77e 0 3px, transparent 4px),
        radial-gradient(circle at 82% 42%, #ffffff 0 2px, transparent 3px),
        radial-gradient(circle at 68% 78%, #b66cff 0 3px, transparent 4px),
        radial-gradient(circle at 24% 84%, #ffffff 0 2px, transparent 3px),
        linear-gradient(34deg, transparent 0 22%, rgba(247, 215, 126, 0.28) 22.3%, transparent 22.8%),
        linear-gradient(153deg, transparent 0 38%, rgba(114, 221, 255, 0.28) 38.3%, transparent 38.8%),
        linear-gradient(82deg, transparent 0 60%, rgba(182, 108, 255, 0.3) 60.3%, transparent 60.8%);
    color: rgba(247, 215, 126, 0.72);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    opacity: 0.7;
    pointer-events: none;
    text-shadow:
        70px 58px 0 rgba(114, 221, 255, 0.62),
        154px -8px 0 rgba(247, 215, 126, 0.58),
        216px 76px 0 rgba(182, 108, 255, 0.58),
        88px 176px 0 rgba(255, 255, 255, 0.48);
}

.hero::after {
    content: "7";
    position: absolute;
    left: 6%;
    bottom: 90px;
    width: 260px;
    height: 190px;
    background:
        radial-gradient(circle at 10% 18%, #ffffff 0 3px, transparent 4px),
        radial-gradient(circle at 42% 32%, #f7d77e 0 3px, transparent 4px),
        radial-gradient(circle at 72% 12%, #ffffff 0 2px, transparent 3px),
        radial-gradient(circle at 88% 62%, #b66cff 0 3px, transparent 4px),
        radial-gradient(circle at 34% 82%, #ffffff 0 2px, transparent 3px),
        linear-gradient(20deg, transparent 0 26%, rgba(247, 215, 126, 0.26) 26.3%, transparent 26.8%),
        linear-gradient(148deg, transparent 0 37%, rgba(182, 108, 255, 0.28) 37.3%, transparent 37.8%),
        linear-gradient(98deg, transparent 0 58%, rgba(139, 207, 255, 0.24) 58.3%, transparent 58.8%);
    color: rgba(247, 215, 126, 0.68);
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.72;
    pointer-events: none;
    text-shadow:
        82px 28px 0 rgba(247, 215, 126, 0.56),
        174px 0 0 rgba(255, 255, 255, 0.46),
        214px 104px 0 rgba(182, 108, 255, 0.58),
        78px 150px 0 rgba(114, 221, 255, 0.5);
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.hero__badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 9px 16px;
    color: #f7d77e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(247, 215, 126, 0.08);
    border: 1px solid rgba(247, 215, 126, 0.28);
    border-radius: 999px;
    box-shadow: inset 0 0 22px rgba(247, 215, 126, 0.08), 0 0 28px rgba(247, 215, 126, 0.12);
}

.hero__eyebrow,
.section__eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f7d77e;
}

.hero__title,
.section__title {
    margin: 0;
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
}

.hero__title {
    max-width: 660px;
    font-size: clamp(42px, 7vw, 45px);
    text-shadow: 0 0 32px rgba(182, 108, 255, 0.28);
}

.hero__description {
    max-width: 650px;
    margin: 26px 0 0;
    font-size: 18px;
    line-height: 1.8;
    color: #cfc6e9;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 34px 0;
}

.hero__stats div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(193, 169, 255, 0.16);
    border-radius: 24px;
    box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.03);
}

.hero__stats strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #f7d77e;
}

.hero__stats span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #bcb2d8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    color: #11091f;
    font-weight: 800;
    background: linear-gradient(135deg, #f7d77e, #b66cff 68%, #72ddff);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 32px rgba(182, 108, 255, 0.44), 0 18px 34px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    color: #11091f;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(247, 215, 126, 0.34), 0 22px 38px rgba(0, 0, 0, 0.32);
}

.button--secondary {
    color: #f8f3ff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(193, 169, 255, 0.22);
    box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.04);
}

.button--secondary:hover {
    color: #ffffff;
    box-shadow: 0 0 30px rgba(139, 207, 255, 0.2);
}

.hero__image-wrap {
    position: relative;
    padding: 18px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 18% 14%, rgba(247, 215, 126, 0.2), transparent 26%);
    border: 1px solid rgba(193, 169, 255, 0.24);
    border-radius: 42px;
    box-shadow: 0 0 58px rgba(182, 108, 255, 0.2), 0 34px 80px rgba(0, 0, 0, 0.34);
}

.hero__image-wrap::before {
    content: "";
    position: absolute;
    inset: 44px -22px -22px 44px;
    z-index: -1;
    background:
        radial-gradient(circle, rgba(247, 215, 126, 0.34), transparent 68%),
        linear-gradient(135deg, rgba(247, 215, 126, 0.46), rgba(114, 221, 255, 0.22));
    border-radius: 42px;
    filter: blur(2px);
}

.hero__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 30px;
    filter: saturate(0.86) contrast(1.08);
}

.section {
    position: relative;
    padding: 92px 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section__head {
    max-width: 720px;
    margin-bottom: 42px;
}

.section__title {
    font-size: clamp(32px, 4vw, 48px);
}

.benefits {
    position: relative;
    background:
        radial-gradient(circle at 12% 26%, rgba(182, 108, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #090918 0%, #100b26 100%);
}

.benefits::before,
.benefits::after,
.reviews::after,
.contact::before,
.contact::after {
    position: absolute;
    pointer-events: none;
}

.benefits::before {
    content: "22";
    top: 72px;
    right: 9%;
    width: 210px;
    height: 150px;
    background:
        radial-gradient(circle at 8% 20%, #ffffff 0 2px, transparent 3px),
        radial-gradient(circle at 42% 12%, #f7d77e 0 3px, transparent 4px),
        radial-gradient(circle at 74% 38%, #72ddff 0 2px, transparent 3px),
        radial-gradient(circle at 56% 84%, #ffffff 0 2px, transparent 3px),
        linear-gradient(12deg, transparent 0 31%, rgba(247, 215, 126, 0.22) 31.3%, transparent 31.8%),
        linear-gradient(132deg, transparent 0 43%, rgba(114, 221, 255, 0.2) 43.3%, transparent 43.8%);
    color: rgba(247, 215, 126, 0.62);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.58;
    text-shadow:
        72px -12px 0 rgba(247, 215, 126, 0.5),
        138px 40px 0 rgba(114, 221, 255, 0.5),
        104px 122px 0 rgba(255, 255, 255, 0.42);
}

.benefits::after {
    content: "6";
    left: 7%;
    bottom: 70px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(247, 215, 126, 0.2);
    border-radius: 50%;
    box-shadow:
        34px -18px 0 -32px #ffffff,
        74px 18px 0 -34px #72ddff,
        inset 0 0 34px rgba(247, 215, 126, 0.08),
        0 0 38px rgba(182, 108, 255, 0.12);
    color: rgba(247, 215, 126, 0.58);
    font-size: 18px;
    font-weight: 800;
    line-height: 120px;
    text-align: center;
    opacity: 0.7;
}

.benefits__grid,
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.benefit-card,
.review-card,
.contact-form {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
        rgba(13, 13, 38, 0.82);
    border: 1px solid rgba(193, 169, 255, 0.17);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22), inset 0 0 36px rgba(255, 255, 255, 0.03);
}

.benefit-card {
    padding: 28px;
}

.benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    color: #f7d77e;
    font-size: 22px;
    background: rgba(247, 215, 126, 0.08);
    border: 1px solid rgba(247, 215, 126, 0.18);
    border-radius: 18px;
    box-shadow: 0 0 24px rgba(247, 215, 126, 0.14);
}

.benefit-card h3,
.review-card strong {
    margin: 0;
    color: #ffffff;
}

.benefit-card h3 {
    font-size: 21px;
    line-height: 1.25;
}

.benefit-card p,
.review-card p,
.contact__text p {
    margin: 14px 0 0;
    line-height: 1.75;
    color: #c7bddf;
}

.reviews {
    position: relative;
    background:
        radial-gradient(circle at 78% 18%, rgba(114, 221, 255, 0.14), transparent 26%),
        linear-gradient(180deg, #100b26 0%, #080817 100%);
}

.reviews::before {
    content: "";
    position: absolute;
    top: 80px;
    right: 8%;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(247, 215, 126, 0.16);
    border-radius: 50%;
    box-shadow: inset 0 0 42px rgba(247, 215, 126, 0.06), 0 0 34px rgba(247, 215, 126, 0.08);
    pointer-events: none;
}

.reviews::after {
    content: "9";
    left: 8%;
    top: 45%;
    width: 250px;
    height: 160px;
    box-sizing: border-box;
    padding: 80px 0 0 31px;
    background:
        radial-gradient(circle at 14% 68%, #f7d77e 0 2px, transparent 3px),
        radial-gradient(circle at 28% 18%, #ffffff 0 2px, transparent 3px),
        radial-gradient(circle at 60% 34%, #b66cff 0 3px, transparent 4px),
        radial-gradient(circle at 88% 12%, #ffffff 0 2px, transparent 3px),
        radial-gradient(circle at 78% 78%, #72ddff 0 2px, transparent 3px),
        linear-gradient(50deg, transparent 0 25%, rgba(247, 215, 126, 0.22) 25.3%, transparent 25.8%),
        linear-gradient(162deg, transparent 0 46%, rgba(182, 108, 255, 0.24) 46.3%, transparent 46.8%),
        linear-gradient(105deg, transparent 0 68%, rgba(114, 221, 255, 0.2) 68.3%, transparent 68.8%);
    color: rgba(247, 215, 126, 0.6);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.46;
    text-shadow:
        34px -80px 0 rgba(255, 255, 255, 0.42),
        114px -54px 0 rgba(182, 108, 255, 0.5),
        184px -90px 0 rgba(247, 215, 126, 0.46),
        160px 16px 0 rgba(114, 221, 255, 0.48);
}

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

.review-card {
    padding: 26px;
}

.review-card p {
    margin-top: 0;
}

.review-card strong {
    display: block;
    margin-top: 20px;
}

.contact {
    position: relative;
    background:
        radial-gradient(circle at 20% 28%, rgba(247, 215, 126, 0.1), transparent 24%),
        linear-gradient(180deg, #080817 0%, #050511 100%);
}

.contact::before {
    content: "8";
    top: 70px;
    right: 11%;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(114, 221, 255, 0.18);
    border-radius: 50%;
    box-shadow: inset 0 0 42px rgba(114, 221, 255, 0.08), 0 0 42px rgba(114, 221, 255, 0.08);
    color: rgba(114, 221, 255, 0.58);
    font-size: 18px;
    font-weight: 800;
    line-height: 170px;
    text-align: center;
}

.contact::after {
    content: "3";
    left: 11%;
    bottom: 58px;
    width: 180px;
    height: 130px;
    background:
        radial-gradient(circle at 10% 16%, #ffffff 0 2px, transparent 3px),
        radial-gradient(circle at 44% 46%, #f7d77e 0 2px, transparent 3px),
        radial-gradient(circle at 82% 28%, #72ddff 0 2px, transparent 3px),
        radial-gradient(circle at 70% 88%, #ffffff 0 2px, transparent 3px),
        linear-gradient(24deg, transparent 0 31%, rgba(247, 215, 126, 0.2) 31.3%, transparent 31.8%),
        linear-gradient(142deg, transparent 0 50%, rgba(114, 221, 255, 0.22) 50.3%, transparent 50.8%);
    color: rgba(247, 215, 126, 0.58);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.5;
    text-shadow:
        74px 40px 0 rgba(247, 215, 126, 0.48),
        142px 16px 0 rgba(114, 221, 255, 0.48),
        126px 104px 0 rgba(255, 255, 255, 0.4);
}

.contact__content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 54px;
    align-items: start;
}

.contact__text {
    position: sticky;
    top: 112px;
}

.contact__email {
    display: inline-flex;
    margin-top: 24px;
    font-weight: 800;
    color: #f7d77e;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 32px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
    color: #f8f3ff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    color: #f8f3ff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(193, 169, 255, 0.2);
    border-radius: 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248, 243, 255, 0.5);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f7d77e;
    box-shadow: 0 0 0 4px rgba(247, 215, 126, 0.12), 0 0 24px rgba(247, 215, 126, 0.1);
}

.contact-form__field--error input,
.contact-form__field--error textarea {
    border-color: #ff8a8a;
    box-shadow: 0 0 0 4px rgba(255, 138, 138, 0.12);
}

.contact-form__error {
    min-height: 1.2em;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff8a8a;
}

.contact-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.form-popup {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.form-popup[hidden] {
    display: none;
}

.form-popup--visible {
    display: flex;
}

.form-popup__overlay {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(5, 5, 17, 0.82);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.form-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 36px 32px 32px;
    text-align: center;
    background: linear-gradient(180deg, #1a1238 0%, #100b26 100%);
    border: 1px solid rgba(193, 169, 255, 0.24);
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.form-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: rgba(248, 243, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.form-popup__close:hover {
    color: #f8f3ff;
    background: rgba(255, 255, 255, 0.12);
}

.form-popup__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.75rem;
    border-radius: 50%;
}

.form-popup__icon--success {
    color: #7dffb8;
    background: rgba(125, 255, 184, 0.12);
}

.form-popup__icon--error {
    color: #ff8a8a;
    background: rgba(255, 138, 138, 0.12);
}

.form-popup__title {
    margin: 0 0 12px;
    font-size: 1.5rem;
    color: #f8f3ff;
}

.form-popup__text {
    margin: 0 0 24px;
    line-height: 1.6;
    color: rgba(248, 243, 255, 0.78);
}

.form-popup__btn {
    min-width: 140px;
}

.footer {
    position: relative;
    z-index: 1;
    padding: 28px 0;
    color: #ffffff;
    background: #050511;
    border-top: 1px solid rgba(193, 169, 255, 0.14);
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
