body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #696969;
    background-color: #E9EEF5;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    min-height: 100vh;
    line-height: 1.5;
}

.header {
    min-height: 100px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    width: 100%;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header__menu {
    margin: 0 auto;
}

.header__item {

}

.header__list {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.header__link {
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header__link:hover {
    color: #2563EB;
}

.header__btm {
    padding: 9px 28px;
    font-size: 16px;
    background-color: #2563EB;
    border-radius: 25px;
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.4s ease;
}

.header__btm:hover {
    background-color: #10B981;
}

.header__burger {
    display: none;
}
.header__btm--mobile {
    display: none;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    border-radius: 25px;
    background-image: url('../images/bg-main.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 70vh;

}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__title {
    margin-bottom: 40px;
    font-size: 56px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    max-width: 473px;
    color: #1F2937;
    line-height: 1.1;

    background: linear-gradient(
            to bottom,
            #1F2937 50%,
            rgba(31, 41, 55, 0) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;


}

.hero__subtitle {
    margin-bottom: 80px;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.1;
    max-width: 578px;
    color: #696969;
}
.hero__actions {
    display: flex;
    gap: 20px;
}

.button {
    white-space: nowrap;
    font-weight: 700;
    padding: 12px 32px;
    border: 1px solid #2563EB;
    border-radius: 25px;
    color: #2563EB;
    transition: background-color 0.4s ease;
}

.button:hover {
    background-color: #2563EB;
    color: #ffffff;
}

.advantages {
    padding: 80px 0;
    background-color: #E9EEF5;
}
.advantages__list {
    display: flex;
    gap: 20px;


}
.advantages__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

}

.advantages__title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1F2937;

}

.advantages__card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.advantages__text {
    font-size: 16px;
    line-height: 1.6;
}


.advantages__card-btn{
    padding: 4px 12px;
    font-size: 14px;
    border: 1px solid #1F2937;
    border-radius: 25px;
    transition: background-color 0.4s ease, color 0.4s ease;
    color: #1F2937;
}

.advantages__card-btn:hover {
    background-color: #1F2937;
    color: #ffffff;
}


.services {
    padding: 160px 0;
}

.services__section-title {
    text-align: start;
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 60px;
}

.services__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;

}
.services__item {
    width: 446px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #ffffff;
    padding: 40px;
    border-radius: 25px;
}

.services__item:nth-child(1) {
    background-image:
            linear-gradient(180deg, rgba(37, 99, 235, 0.4) 0%, rgba(37, 99, 235, 0.9) 100%),
            url('../images/services-bg.png');
}

.services__item:nth-child(2) {
    background-image:
            linear-gradient(180deg, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.9) 100%),
            url('../images/services-bg.png');
}

.services__item:nth-child(3) {
    background-image:
            linear-gradient(180deg, rgba(31, 41, 55, 0.4) 0%, rgba(31, 41, 55, 0.9) 100%),
            url('../images/services-bg.png');
}


.services__title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
    margin-top: auto;
}


.services__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.button--light {
    font-size: 18px;
    font-weight: 500;
    padding: 8px 28px;
    align-self: flex-start;
    background: linear-gradient(90deg, rgba(195, 207, 226, 1) 60%, rgba(255, 255, 255, 1) 130%);
    color: #374151;
    border: 1px solid #C3D0E2;
    border-radius: 25px;
    transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
}

.button--light:hover {
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
}


.about__wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-basis: 50%;
}

.about__top {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.about__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 48px;
    line-height: 1;
    color: #1F2937;
}

.about__text {

    line-height: 1.7;
}


.experience-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(74deg, rgba(195, 207, 226, 1) 50%, rgba(255, 255, 255, 1) 120%);
    border-radius: 24px;
    padding: 40px;
    color: #ffffff;
    overflow: hidden;
    min-width: 450px;
}

.experience-card__main {
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.experience-card__number {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 200px;
    line-height: 0.85;
}


.experience-card__label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 48px;
    margin-left: 10px;
    padding-bottom: 20px;
}

.experience-card__context {
    position: absolute;
    top: 60px;
    right: 90px;

    display: flex;
    flex-direction: column;
    background: linear-gradient(-118deg, rgba(195, 207, 226, 1) 40%, rgba(255, 255, 255, 1) 162%);
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    color: #ffffff; /* добавим цвет, если фон светлый */
    z-index: 2;
}




.stages {
    padding: 120px 0;
}

.stages__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.2;
    color: #1F2937;
    margin-bottom: 60px;
}

.stages__list {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.3fr;
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
}

.stages__item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 25px;
}

.stages__item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.stages__item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.stages__item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.stages__item:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.stages__item-content {
    flex-grow: 1;
}

.stages__item-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 15px;
}

.stages__item-text + .stages__item-text {
    margin-top: 10px;
}

.stages__item-img {
    align-self: flex-end;
    margin-top: 20px;
}


.support {
    padding: 80px 0;
}

.support__wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;

    background: linear-gradient(180deg, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.9) 100%);
    border-radius: 30px;
    padding: 60px;
    color: #ffffff;
}

.support__main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.support__title {
    font-family: 'Roboto', sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
}

.support__text {
    font-size: 16px;
    max-width: 460px;
    line-height: 1.6;
    opacity: 0.9;
}

.support__text + .support__text {
    margin-top: 20px;
}

.support__stats {
    display: flex;
    gap: 40px;
}

.support__stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support__stats-number {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
}

.support__stats-label {
    font-size: 14px;
    max-width: 170px;
    opacity: 0.8;
    margin-top: 10px;
    text-align: center;
}

.support__reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 20px;
}

.review-card:nth-child(1) {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.review-card:nth-child(2) {
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    max-width: 283px;
    align-self: flex-end;
}

.review-card:nth-child(3) {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;

}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
}

.review-card__name {
    font-weight: 500;
}

.review-card__stars {
    color: #ffffff;
    font-size: 18px;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

.contact {
    padding: 80px 0;
}

.contact__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(195, 207, 226, 1) 60%, rgba(255, 255, 255, 1) 130%);
    padding: 40px 60px;
}

.contact__title {
    font-family: 'Roboto', sans-serif;
    color: #1F2937;
    font-size: 30px;
    font-weight: 500;
}

.button--contact {
    padding: 8px 28px;
    background-color: #2563EB;
    color: #ffffff;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    transition: background-color 0.4s ease;
}

.button--contact:hover {
    background-color: #10B981;
}

.footer {
    background-color: #C3CFE2;
    color: #374151;
    padding: 60px 0;
    font-size: 14px;
}


.footer__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(107, 114, 128, 0.2);
}

.footer__title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 20px;
}

.footer__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}


.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #1F2937;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.footer__logo img {
    max-width: 120px;
}

.footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #6B7280;
}

.footer__copyright {
    text-align: center;
    flex-grow: 1;
    padding: 0 40px;
}

.footer__link--legal {
    text-decoration: underline;
    text-decoration-color: rgba(107, 114, 128, 0.5);
    transition: all 0.2s ease;
}

.footer__link--legal:hover {
    color: #1F2937;
    text-decoration-color: #1F2937;
}


@media (max-width: 992px) {

    .header__logo-link {
        max-width: 110px;
        position: relative;
        z-index: 101;
    }

    .header__logo-link img {
        width: 100%;
        height: auto;
    }

    .header {
        min-height: 80px;
    }

    .header__menu {
        display: none;
    }

    .header__btm--desktop {
        display: none;
    }

    .header__burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 30px;
        border: none;
        background-color: transparent;
        cursor: pointer;
        z-index: 101;

    }

    .header__burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #2563EB;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .header__menu.is-open {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        z-index: 100;
        animation: fadeIn 0.3s ease;
    }

    .is-open .header__list {
        flex-direction: column;
        text-align: center;
    }

    .is-open .header__link {
        font-size: 24px;
    }

    .is-open .header__btm--mobile {
        display: inline-block;
    }

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

    @keyframes fadeIn {
        from {opacity: 0;}
        to {opacity: 1;}
    }
    .no-scroll {
        overflow: hidden;
    }
}

@media (max-width: 768px){
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        min-height: auto;
        padding: 60px 20px;
        gap: 40x;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .hero__title {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 16px;
        font-weight: 400;
        max-width: 320px;
    }

    .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 15px;
        align-items: center;
    }

    .hero .button {
        font-size: 14px;
        padding: 12px 24px;
        width: 100%;
        max-width: 300px;
    }
    .hero__image {
        margin-top: 80px;
    }


    .advantages {
        padding: 60px 0;
    }

    .advantages__list {
        flex-direction: column;
    }


    .about {
        padding: 60px 0;
    }



    .about__title {
        font-size: 32px;
    }


    .about__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .about__content {
        align-items: center;
        text-align: center;
    }

    .experience-card {
        min-width: unset;
        width: 100%;
        max-width: 350px;
        padding: 30px;
    }

    .experience-card__label {
        font-size: 32px;
        padding-bottom: 10px;
    }

    .experience-card__context {
        top: 25px;
        right: 25px;
        padding: 8px 12px;
        font-size: 12px;
    }


    .support {
        padding: 60px 0;
    }

    .support__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .support__main {
        gap: 40px;
    }

    .support__title{
        font-size: 32px;
        text-align: center;
    }

    .support__text {
        text-align: center;
    }

    .support__stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .review-card:nth-child(2) {
        align-self: initial;
    }


    .contact {
        padding: 60px 0;
    }

    .contact__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .contact__title {
        font-size: 22px;
    }

    .footer {
        padding: 40px 0;
        text-align: center;
    }

    .footer__main {
        flex-direction: column;
        gap: 40px;
    }


    .footer__logo {

    }

    .footer__legal {
        flex-direction: column;
        gap: 20px;
    }

    .footer__copyright {
        padding: 0px;
    }


}


@media (max-width: 992px) {

    /* --- Хедер (Бургер меню) --- */
    .header__logo-link {
        max-width: 150px; /* Уменьшаем лого */
        position: relative;
        z-index: 101;
    }
    .header { min-height: 80px; }
    .header__menu { display: none; }
    .header__btm--desktop { display: none; }
    .header__burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 30px;
        border: none;
        background-color: transparent;
        cursor: pointer;
        z-index: 101;
    }
    .header__burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #2563EB;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .header__menu.is-open {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        z-index: 100;
        animation: fadeIn 0.3s ease;
    }
    .is-open .header__list { flex-direction: column; text-align: center; }
    .is-open .header__link { font-size: 24px; }
    .is-open .header__btm--mobile { display: inline-block; }
    .header__burger.is-active .header__burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .header__burger.is-active .header__burger-line:nth-child(2) { opacity: 0; }
    .header__burger.is-active .header__burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* --- Сетка Services (3 колонки) --- */
    .services__item {
        width: calc(50% - 10px); /* 2 колонки на планшете */
    }

    /* --- Сетка Stages (2 колонки) --- */
    .stages__list {
        grid-template-columns: 1fr 1fr;
    }
    .stages__item:nth-child(n) { /* Сбрасываем сложные правила для всех карточек */
        grid-column: auto;
        grid-row: auto;
    }

    /* --- Секция Support (перестраиваем в 1 колонку уже на планшете) --- */
    .support__wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
}


/* --- 2. Телефоны (основные изменения layout) --- */
@media (max-width: 768px) {

    /* --- Секция Hero --- */
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 60px 20px;
        gap: 40px;
    }
    .hero__content { align-items: center; gap: 25px; }
    .hero__title { font-size: 36px; line-height: 1.2; }
    .hero__subtitle { font-size: 16px; max-width: 320px; }
    .hero__actions { flex-direction: column; gap: 15px; width: 100%; align-items: center; }
    .hero .button { font-size: 16px; padding: 12px 24px; width: 100%; max-width: 300px; }
    .hero__image { display: none; } /* Скрываем картинку для экономии места */

    /* --- Секция Advantages --- */
    .advantages { padding: 60px 0; }
    .advantages__list { flex-direction: column; }

    /* --- Секция Services --- */
    .services { padding: 60px 0; }
    .services__section-title { font-size: 28px; margin-bottom: 40px; text-align: center; }
    .services__item {
        width: 100%;
        aspect-ratio: unset; /* Убираем квадратность */
        min-height: 350px;
    }

    /* --- Секция About --- */
    .about { padding: 60px 0; }
    .about__wrapper { flex-direction: column; align-items: center; gap: 40px; }
    .about__content { align-items: center; text-align: center; }
    .about__title { font-size: 32px; }
    .experience-card {
        min-width: unset;
        width: 100%;
        max-width: 350px;
        padding: 30px;
    }
    .experience-card__number { font-size: 140px; }
    .experience-card__label { font-size: 36px; padding-bottom: 10px; }
    .experience-card__context { top: 25px; right: 25px; padding: 8px 12px; font-size: 12px; }

    /* --- Секция Stages --- */
    .stages { padding: 60px 0; }
    .stages__title { font-size: 28px; margin-bottom: 40px; text-align: center; }
    .stages__list { grid-template-columns: 1fr; } /* Одна колонка */

    /* --- Секция Support --- */
    .support { padding: 60px 0; }
    .support__wrapper { padding: 40px 20px; }
    .support__main { gap: 40px; }
    .support__title { font-size: 32px; text-align: center; }
    .support__text { text-align: center; max-width: 100%; }
    .support__stats { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .review-card:nth-child(2) { align-self: initial; max-width: 100%; }
    .review-card { border-radius: 20px !important; } /* Упрощаем радиусы для всех отзывов */

    /* --- Секция Contact --- */
    .contact { padding: 60px 0; }
    .contact__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    .contact__title { font-size: 22px; }

    /* --- Футер --- */
    .footer { padding: 40px 0; text-align: center; }
    .footer__main { flex-direction: column; gap: 40px; }
    .footer__legal { flex-direction: column; gap: 20px; }
    .footer__copyright { padding: 0; order: 1; }
}

/* --- Вспомогательные классы для JS (остаются в конце) --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.no-scroll {
    overflow: hidden;
}




/* --- Стили для Попапа --- */

.popup {
    /* Позиционирование на весь экран */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Затемняющий фон (оверлей) */
    background-color: rgba(0, 0, 0, 0.6);

    /* Центрирование контента */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Плавное появление/исчезновение */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
}

/* Класс для показа попапа */
.popup.is-visible {
    opacity: 1;
    visibility: visible;
}

.popup__content {
    position: relative;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

    /* Анимация "вылета" */
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.popup.is-visible .popup__content {
    transform: translateY(0);
}

.popup__close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #aaaaaa;
    cursor: pointer;
    transition: color 0.2s ease;
}

.popup__close-btn:hover {
    color: #333333;
}

.popup__title {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    text-align: center;
    margin-bottom: 10px;
}

.popup__subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #6B7280;
}

.popup__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup__label {
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
}

.popup__input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popup__input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.popup__submit-btn {
    width: 100%;
    background-color: #2563EB;
    color: #ffffff;
    border: none;
}

.popup__submit-btn:hover {
    background-color: #1D4ED8;
}