body {
    margin: 0;
    /*font-family: 'Noto Sans', system-ui, sans-serif;*/
    font-family: "Comfortaa", sans-serif;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #e5e8ef;
}

.site-header__inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    width: 150px;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #19304f;
    text-decoration: none;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid #dce3ed;
    border-radius: 999px;
}

.lang-switch button {
    width: 35px;
    height: 26px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #14304e;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.lang-switch button.active {
    background: #e9001b;
    color: #fff;
}

.header-btn {
    height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: #08213d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.hero {
    padding: 50px 0 50px;
    background: #F2F2F2;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 600px;
    align-items: center;
    gap: 0px;
}

.hero__content {
    max-width: 720px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    margin-bottom: 35px;
    border: 1px solid #dbe3ee;

    color: #fff;
    font-size: 14px;
    line-height: 1;

    border-radius: 9999px;
    background: var(--Secondary-a, #FF738A)
}

.hero__badge span {
    color: #e9001b;
}

.hero__title {
    margin: 0;
    color: #002F6C;
    font-size: 56px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
    font-family: "Noto Serif",Georgia,serif;
}

.hero__title span {
    display: block;
    color: #e9001b;
}

.hero__title b {
    display: inline-block;
    padding: 2px 12px 5px;
    border-radius: 10px;
    background: #e9001b;
    color: #fff;
    line-height: 1;
    box-shadow: 0 7px 14px rgba(233, 0, 27, 0.25);
}

.hero__text {
    max-width: 780px;
    margin: 34px 0 0;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.55;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border: 1px solid #dce4ee;
    border-radius: 999px;
    background: #fff;
    color: #002F6C;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    box-shadow: 0 3px 8px rgba(8, 33, 61, 0.04);
}
.hero-chip svg {
    margin-right: 10px;
}

.hero__notice {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    padding: 13px 24px;
    border-radius: 999px;
    background: #e9001b;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(233, 0, 27, 0.28);
}

.hero__buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 46px;
    padding-left: 0px;
}

.hero-btn {
    min-width: 235px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border-radius: 9px;
    font-size: 19px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.hero-btn--red {
    border: 0;
    background: #e9001b;
    color: #fff;
    box-shadow: 0 20px 34px rgba(233, 0, 27, 0.25);
}

.hero-btn--white {
    border: 1px solid #b8c3d0;
    background: #fff;
    color: #08213d;
    box-shadow: 0 8px 18px rgba(8, 33, 61, 0.1);
}

.hero__image img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .container {
        width: min(100% - 32px, 1280px);
    }

    .site-nav {
        display: none;
    }

    .site-header__inner {
        height: 72px;
    }

    .site-logo img {
        width: 125px;
    }

    .header-btn {
        height: 38px;
        padding: 0 14px;
    }

    .hero {
        padding: 32px 0 60px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero__content {
        text-align: center;
        margin: 0 auto;
    }

    .hero__badge {
        margin-bottom: 28px;
        font-size: 12px;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .hero__title b {
        padding: 1px 7px 4px;
        border-radius: 7px;
    }

    .hero__text {
        margin-top: 26px;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero__chips {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 24px;
    }

    .hero-chip {
        max-width: 100%;
        padding: 9px 15px;
        font-size: 12px;
    }

    .hero__notice {
        margin-top: 18px;
        padding: 11px 17px;
        font-size: 12px;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 14px;
        margin-top: 32px;
        padding-left: 0;
    }

    .hero-btn {
        width: 195px;
        min-width: 195px;
        height: 53px;
        font-size: 15px;
    }

    .hero-btn--white {
        width: 190px;
    }

    .hero__image {
        max-width: 340px;
        margin: 0 auto;
    }
}

@media (max-width: 374px) {
    .container {
        width: min(100% - 24px, 1280px);
    }

    .site-logo img {
        width: 115px;
    }

    .lang-switch button {
        width: 30px;
    }

    .header-btn {
        padding: 0 10px;
        font-size: 12px;
    }
}

.program-section {
    padding: 58px 0 48px;
    background: #F2F2F2;
}

.program-title {
    margin: 0 0 34px;
    text-align: center;
    color: #e9001b;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 600;
    font-family: "Noto Serif",Georgia,serif;
}

.program-title span {
    color: #002F6C;
}

.program-audience {

    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.audience-card {
    height: fit-content;
    padding: 24px 22px 20px;
    background: #fff;
    border: 1px solid #dce3ec;
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(8, 33, 61, 0.06);
}

.audience-card__icon {
    margin-bottom: 16px;
    color: #e9001b;
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.audience-card h3 {
    margin: 0 0 10px;
    color: #e9001b;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
    font-family: "Noto Serif", Georgia, serif;
}

.audience-card p {
    margin: 0;
    color: #242b35;
    font-size: 14px;
    line-height: 1.35;
}

.path-title {
    margin: 52px 0 18px;
    text-align: center;
    color: #082f63;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 900;
}

.program-steps {

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

.step-card {
    min-height: 178px;
    padding: 21px 24px 24px;
    background: #fff;
    border: 1px solid #dce3ec;
    border-radius: 13px;
    box-shadow: 0 12px 26px rgba(8, 33, 61, 0.05);
}

.step-card__num {
    margin-bottom: 10px;
    color: #fa6f8a;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.step-card h3 {
    margin: 0 0 12px;
    color: #082f63;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 900;
}

.step-card p {
    margin: 0;
    color: #242b35;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 767px) {
    .program-section {
        padding: 30px 0 38px;
    }

    .program-title {
        max-width: 280px;
        margin: 0 auto 24px;
        font-size: 26px;
        line-height: 0.95;
    }

    .program-title span {
        display: inline;
    }

    .program-audience {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .audience-card {
        height: fit-content;
        display: grid;
        grid-template-columns: 36px 1fr;
        column-gap: 14px;
        align-items: center;
        padding: 14px 18px;
        border-radius: 10px;
    }

    .audience-card--abroad {
        order: 1;
    }

    .audience-card--school {
        order: 2;
    }

    .audience-card--parents {
        order: 3;
    }

    .audience-card--student {
        order: 4;
    }

    .audience-card__icon {
        grid-row: span 2;
        margin: 0;
        font-size: 24px;
    }

    .audience-card h3 {
        margin: 0 0 3px;
        font-size: 13px;
    }

    .audience-card p {
        font-size: 12px;
        line-height: 1.2;
    }

    .path-title {
        max-width: 300px;
        margin: 34px auto 20px;
        font-size: 17px;
        line-height: 1.05;
    }

    .program-steps {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .step-card {
        min-height: 98px;
        display: grid;
        grid-template-columns: 48px 1fr;
        column-gap: 12px;
        padding: 17px 16px;
        border-radius: 15px;
    }

    .step-card__num {
        margin: 0;
        font-size: 38px;
    }

    .step-card h3 {
        margin: 0 0 4px;
        font-size: 16px;
    }

    .step-card p {
        font-size: 12px;
        line-height: 1.08;
    }
}

.learning-paths {
    padding: 32px 0 30px;
    background: #f4f4f5;
    text-align: center;
}

.learning-paths__badge {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 5px 24px 6px;
    border-radius: 999px;
    background: #ff728b;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 1px;
}

.learning-paths__title {
    margin: 0;
    color: #D80621;
    font-family: "Noto Serif", Georgia, serif;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;
}

.learning-paths__subtitle {
    max-width: 980px;
    margin: 14px auto 54px;
    color: #4b6383;
    font-size: 18px;
    line-height: 1.3;
}

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

.path-card {
    position: relative;
    /*min-height: 290px;*/
    padding: 34px 24px 28px;
    border: 1px solid #dce4ee;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.path-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.55;
    pointer-events: none;
}

.path-card--red::before {
    background: radial-gradient(circle at 82% 12%, rgba(233, 0, 27, 0.16), transparent 34%);
}

.path-card--blue::before {
    background: radial-gradient(circle at 82% 12%, rgba(0, 49, 107, 0.13), transparent 34%);
}

.path-card > * {
    position: relative;
    z-index: 1;
}

.path-card__icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    font-size: 27px;
    font-weight: 900;
}


.path-card--red .path-card__label {
    background: #FF738A;
}


.path-card--blue .path-card__label {
    background: #066FF9;
}

.path-card__label {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 6px 18px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 1.2px;
}

.path-card h3 {
    margin: 0 0 6px;
    color: #002F6C;
    font-size: 20px;
    font-family: "Noto Serif", Georgia, serif;
    line-height: 1.1;
    font-weight: 700;
}

.path-card--red h3 {
    color: #D80621;
}

.path-card p {
    margin: 0 0 22px;
    color: #333;
    font-size: 18px;
    line-height: 1.3;
}

.path-card button {
    border: 0;
    background: transparent;
    color: #06396f;
    font-size: 15px;
    letter-spacing: 0.6px;
    cursor: pointer;

    position: absolute;
    bottom: 19px;
    transform: translate(-50%, 0px);
    left: 50%;

    display: flex;
    align-items: center;
}

.path-card button svg {
    margin-left: 8px;
}

.path-card--red button {
    color: #e9001b;
}

.learning-paths__note {
    max-width: 750px;
    margin: 60px auto 0;
    padding: 18px 34px;
    border-radius: 13px;
    background: #002F6C;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .learning-paths {
        padding: 24px 0 28px;
    }

    .learning-paths__badge {
        margin-bottom: 12px;
        padding: 5px 14px;
        font-size: 11px;
    }

    .learning-paths__title {
        font-size: 25px;
        line-height: 0.9;
    }

    .learning-paths__subtitle {
        margin: 10px auto 22px;
        font-size: 15px;
        line-height: 1.05;
    }

    .learning-paths__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .path-card {
        min-height: 238px;
        padding: 20px 12px 18px;
        border-radius: 11px;
    }

    .path-card__icon {
        width: 49px;
        height: 49px;
        margin-bottom: 14px;
        border-radius: 12px;
        font-size: 22px;
    }

    .path-card__label {
        margin-bottom: 13px;
        padding: 5px 12px;
        font-size: 8px;
    }

    .path-card h3 {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .path-card p {
        margin-bottom: 13px;
        font-size: 15px;
        line-height: 1.45;
    }

    .path-card button {
        font-size: 11px;
    }

    .learning-paths__note {
        margin-top: 28px;
        padding: 14px 18px;
        border-radius: 9px;
        font-size: 14px;
        line-height: 1.4;
    }
}
.path-details {
    margin-top: 42px;
    padding: 42px 46px;
    border: 2px solid #ff9da8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 35px rgba(8, 33, 61, 0.08);
    text-align: left;
}

.path-details.is-blue {
    border-color: #98a5b5;
}

.path-details__head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.path-details__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;

    color: #fff;
    font-size: 28px;
    font-weight: 900;

}

.path-details.is-blue .path-details__icon {
    background: #082f63;
}

.path-details h3 {
    margin: 0 0 8px;
    color: #e9001b;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
}

.path-details.is-blue h3 {
    color: #082f63;
}

.path-details__head p {
    margin: 0;
    color: #4b6383;
    font-size: 18px;
    line-height: 1.35;
}

.path-details__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.path-details__box {
    padding: 26px 28px;
    border: 1px solid #ff9da8;
    border-radius: 14px;
    background: #fff5f6;
}

.path-details.is-blue .path-details__box {
    border-color: #98a5b5;
    background: #f4f5f7;
}

.path-details__box h4 {
    margin: 0 0 20px;
    color: #e9001b;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: "Noto Serif", Georgia, serif;
}

.path-details.is-blue .path-details__box h4 {
    color: #082f63;
}

.path-details__box ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.path-details__box li {
    position: relative;
    padding-left: 20px;
    color: #08213d;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 500;
}

.path-details__box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e9001b;
}

.path-details.is-blue .path-details__box li::before {
    background: #082f63;
}

.path-details__box--universities {
    background: #fff;
    box-shadow: 0 10px 22px rgba(8, 33, 61, 0.12);
}

.path-details__box--universities h4 {
    width: fit-content;
    padding: 9px 20px;
    border-radius: 999px;
    background: #e9001b;
    color: #fff;
    display: flex;
    align-items: center;
}

.path-details__box--universities h4 svg {
    margin-right: 10px;
}
.path-details.is-blue .path-details__box--universities h4 {
    background: #082f63;
    color: #fff;
}

.path-details__box--universities li {
    padding: 12px 16px 12px 34px;
    border-radius: 12px;
    background: #fff1f2;
    color: #e9001b;
}

.path-details.is-blue .path-details__box--universities li {
    background: #eef0f3;
    color: #082f63;
}

.path-details__box--universities li::before {
    left: 14px;
    top: 21px;
}

@media (max-width: 767px) {
    .path-details {
        margin-top: 24px;
        padding: 24px 16px;
        border-radius: 18px;
    }

    .path-details__head {
        gap: 14px;
        margin-bottom: 22px;
    }

    .path-details__icon {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        font-size: 22px;
    }

    .path-details h3 {
        font-size: 26px;
    }

    .path-details__head p {
        font-size: 15px;
    }

    .path-details__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .path-details__box {
        padding: 20px;
    }

    .path-details__box li {
        font-size: 15px;
    }
}
.path-details {
    display: none;
}

.path-details.is-visible {
    display: block;
}

.plan-info {
    padding: 32px 0 46px;
    background: #f4f4f5;
}

.live-lessons-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 36px;
    border: 2px solid #748aaa;
    border-radius: 20px;
    /*background: linear-gradient(160deg, #f8f8f8 0%, #e5edf5 35%, #ffd2d7 100%);*/
    box-shadow: 0 10px 24px rgba(8, 33, 61, 0.14);
    background-image: url("../images/bg.png");
    background-size: cover;
    background-position: 50% 50%;
}

.live-lessons-box__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #06396f;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.live-lessons-box h3,
.switch-plan-box h3 {
    margin: 0;
    color: #082f63;
    font-family: "Noto Serif", Georgia, serif;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
}

.live-lessons-box h3 span {
    display: inline-block;
    padding: 3px 8px 4px;
    border-radius: 4px;
    background: #e9001b;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    vertical-align: middle;
}

.live-lessons-box p,
.switch-plan-box p {
    margin: 10px 0 0;
    color: #4b6383;
    font-size: 16px;
    line-height: 1.4;
}

.switch-plan-box {
    margin-top: 32px;
    padding: 32px 36px;
    border: 1px solid #dce4ee;
    border-radius: 18px;
    background: #fff;
}

.switch-plan-box__top {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.switch-plan-box__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #ffe7ea;
    color: #e9001b;
    font-size: 22px;
    font-weight: 900;
}

.switch-plan-box__example {
    margin-top: 14px;
    margin-left: 64px;
    padding: 13px 20px;
    border-radius: 10px;
    background: #06396f;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .plan-info {
        padding: 28px 0 36px;
    }

    .live-lessons-box {
        align-items: flex-start;
        gap: 16px;
        padding: 21px 22px;
        border-radius: 19px;
    }

    .live-lessons-box__icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
        font-size: 19px;
    }

    .live-lessons-box h3,
    .switch-plan-box h3 {
        font-size: 20px;
        line-height: 1.05;
    }

    .live-lessons-box h3 span {
        display: inline-block;
        margin: 2px 0;
        font-size: 18px;
        padding: 3px 7px;
    }

    .live-lessons-box p,
    .switch-plan-box p {
        font-size: 15px;
        line-height: 1.05;
    }

    .switch-plan-box {
        margin-top: 30px;
        padding: 20px 20px 23px;
        border-radius: 18px;
    }

    .switch-plan-box__top {
        gap: 14px;
    }

    .switch-plan-box__icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .switch-plan-box__example {
        margin: 22px 0 0;
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 15px;
        line-height: 1.15;
    }
}
/*//teachers*/
.teachers-section {
    padding: 42px 0 64px;
    background: #f4f4f5;
}

.teachers-title {
    margin: 0;
    text-align: center;
    color: #082f63;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    font-family: "Noto Serif", Georgia, serif;
}

.teachers-title span {
    color: #e9001b;
}

.teachers-subtitle {
    margin: 6px 0 30px;
    text-align: center;
    color: #495F79;
    font-size: 24px;
}

.teachers-slider {
    width: 100%;
    overflow: visible;
}

.teachers-grid {
    display: grid!important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.teachers-grid .swiper-slide {
    width: auto !important;
    height: auto !important;
}

.teacher-card {
    overflow: hidden;
    border: 1px solid #dce4ee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(8, 33, 61, 0.08);
}

.teacher-card__photo {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.teacher-card__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.teacher-card__body {
    padding: 14px 16px 18px;
}
.teacher-card__photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 95px;
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.9) 65%,
            #fff 100%
    );
    pointer-events: none;
}

.teacher-card__body {
    position: relative;
    z-index: 2;
    margin-top: -56px;
    padding: 0 16px 18px;
}

.teacher-card h3 {
    margin: 0 0 6px;
    color: #e9001b;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    font-family: "Noto Serif", Georgia, serif;
}

.teacher-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}

.teacher-card__tags span {
    padding: 3px 7px;
    border-radius: 999px;
    background: #ffe5e8;
    color: #e9001b;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
}

.teacher-card__education {
    margin-bottom: 11px;
    color: #06396f;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.7px;
}

.teacher-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.teacher-card li {
    position: relative;
    padding-left: 25px;
    color: #222;
    font-size: 13px;
    line-height: 1.25;
}

.teacher-card li::before {
    content: url("../images/icons/5.svg");
    position: absolute;
    left: 0;
    top: 0;
    color: #e9001b;
    font-size: 10px;
    line-height: 1;
}

.teachers-pagination {
    display: none;
}

@media (max-width: 767px) {
    .teachers-section {
        padding: 34px 0 54px;
        overflow: hidden;
    }

    .teachers-title,
    .teachers-subtitle {
        display: none;
    }



    .teacher-card {
        height: auto;
        border-radius: 10px;
        box-shadow: 0 7.665px 28.743px -11.497px rgba(15, 41, 72, 0.12)
    }

    .teacher-card__photo {
        height: 400px;
    }

    .teacher-card__body {
        padding: 22px;
    }

    .teacher-card h3 {
        font-size: 14px;
    }

    .teacher-card__tags {
        margin-bottom: 18px;
    }

    .teacher-card li {
        font-size: 8.5px;
    }

    .teachers-pagination {
        display: flex;
        justify-content: center;
        margin-top: 28px;
        position: static!important;
    }

    .teachers-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        opacity: 1;
        background: #d4d4d4;
    }

    .teachers-pagination .swiper-pagination-bullet-active {
        width: 20px;
        border-radius: 999px;
        background: #e9001b;
    }
}
@media (max-width: 767px) {
    .teachers-slider {
        overflow: visible;
    }

    .teachers-grid {
        display: flex!important;
        gap: 0;
    }

    .teachers-grid .swiper-slide {
        width: auto !important;
    }
}

/*//ai*/
.ai-teacher-section {
    padding: 32px 0 72px;
    background: #f4f4f5;
    overflow: hidden;
}

.ai-teacher__badge {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 7px 22px;
    border-radius: 999px;
    background: #ff728b;
    color: #fff;
    font-size: 15px;
    line-height: 1;
}

.ai-teacher__title {
    margin: 0 0 64px;
    text-align: center;
    color: #D80621;
    font-size: 52px;
    line-height: 1;
    font-weight: 600;
    font-family: "Noto Serif", Georgia, serif;
}

.ai-teacher__title span {
    color: #002F6C;
}

.ai-teacher__wrap {
    display: grid;
    grid-template-columns: 1fr 350px 1fr;
    align-items: center;
    gap: 34px;
}

.ai-teacher__cards {
    display: grid;
    gap: 24px;
}

.ai-feature-card {
    min-height: 112px;
    display: grid;
    position: relative;
    z-index: 10;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #dce4ee;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 33, 61, 0.06);
}

.ai-feature-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #fff1f3;
    color: #e9001b;
    font-size: 25px;
    font-weight: 700;
}

.ai-feature-card h3 {
    margin: 0 0 6px;
    color: #e9001b;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 500;
    font-family: "Noto Serif", Georgia, serif;
}

.ai-feature-card p {
    margin: 0;
    color: #272727;
    font-size: 14px;
    line-height: 1.12;
}

.ai-teacher__image {
    position: relative;
    display: flex;
    justify-content: center;
}

.ai-teacher__image img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -75%) scale(2.5);
    width: 100%;
    max-width: 480px;
    height: auto;
}

@media (max-width: 991px) {
    .ai-teacher-section {
        padding: 28px 0 48px;
    }

    .ai-teacher__badge {
        margin-bottom: 14px;
        padding: 6px 16px;
        font-size: 12px;
    }

    .ai-teacher__title {
        margin-bottom: 22px;
        font-size: 28px;
        line-height: 0.95;
    }

    .ai-teacher__title span {
        display: block;
    }

    .ai-teacher__wrap {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .ai-teacher__cards {
        width: 100%;
        gap: 8px;
    }

    .ai-teacher__cards--left {
        order: 1;
    }

    .ai-teacher__image {
        order: 2;
        width: calc(100% + 30px);
        margin: -4px -15px -6px;
    }

    .ai-teacher__cards--right {
        order: 3;
    }

    .ai-feature-card {
        min-height: 86px;
        grid-template-columns: 46px 1fr;
        gap: 14px;
        padding: 15px 18px;
        border-radius: 10px;
    }

    .ai-feature-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 21px;
    }

    .ai-feature-card h3 {
        margin-bottom: 4px;
        font-size: 15px;
    }

    .ai-feature-card p {
        font-size: 13px;
        line-height: 1.05;
    }

    .ai-teacher__image img {
        max-width: 100%;
    }
    .ai-teacher__image img {
        display: block;
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -16%) scale(1.7);
    }
}

.child-benefits {
    padding: 40px 0 64px;
    background: #f4f4f5;
}

.child-benefits__title {
    margin: 0 0 42px;
    text-align: center;
    color: #082f63;
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    font-family: "Noto Serif", Georgia, serif;
}

.child-benefits__title span {
    color: #e9001b;
}

.child-benefits__wrap {
    display: grid;
    grid-template-columns: 410px 1fr;
    gap: 30px;
    align-items: stretch;
}

.child-benefits__image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(8, 33, 61, 0.16);
}

.child-benefits__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
}

.child-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    min-height: 154px;
    display: flex;
    flex-direction: column;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 30px;
    border: 1px solid #dce4ee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(8, 33, 61, 0.06);
}

.benefit-card__icon {
    color: #06396f;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
}

.benefit-card h3 {
    margin: 0 0 12px;
    color: #e9001b;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    font-family: "Noto Serif", Georgia, serif;
}

.benefit-card p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.25;
}

.child-benefits__btn {
    min-width: 375px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 46px auto 0;
    padding: 0 28px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #e9001b, #ff314b);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 14px 28px rgba(233, 0, 27, 0.18);
    cursor: pointer;
}

@media (max-width: 767px) {
    .child-benefits {
        padding: 30px 0 42px;
    }

    .child-benefits__title {
        max-width: 300px;
        margin: 0 auto 26px;
        font-size: 34px;
        line-height: 0.9;
    }

    .child-benefits__title span {
        display: block;
    }

    .child-benefits__wrap {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .child-benefits__image {
        border-radius: 16px;
    }

    .child-benefits__image img {
        min-height: 335px;
    }

    .child-benefits__grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .benefit-card {
        min-height: 76px;
        display: grid;
        grid-template-columns: 44px 1fr;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
        border-radius: 13px;
        background: linear-gradient(110deg, #fff 0%, #fff 55%, #ffe7ea 100%);
    }

    .benefit-card__icon {
        font-size: 30px;
    }

    .benefit-card h3 {
        margin-bottom: 3px;
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 14px;
        line-height: 1.25;
    }

    .child-benefits__btn {
        width: 100%;
        min-width: 0;
        height: 48px;
        margin-top: 30px;
        font-size: 16px;
    }
}


.guarantees-section {
    padding: 70px 0 86px;
    background: #f4f4f5;
}

.guarantees-badge {
    width: fit-content;
    margin: 0 auto 28px;
    padding: 9px 24px;
    border-radius: 999px;
    background: #ff728b;
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

.guarantees-title {
    margin: 0 0 56px;
    text-align: center;
    color: #002F6C;
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    font-family: "Noto Serif", Georgia, serif;
}

.guarantees-title span {
    color: #D80621;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.guarantee-card {
    padding: 38px 38px 34px;
    border: 1px solid #dce4ee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(8, 33, 61, 0.06);
}

.guarantee-card:nth-child(2) {
    box-shadow: 0 28px 52px rgba(233, 0, 27, 0.14);
}

.guarantee-card__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f10826;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.guarantee-card h3 {
    margin: 0 0 26px;
    color: #e9001b;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    font-family: "Noto Serif", Georgia, serif;
}

.guarantee-card p {
    margin: 0;
    color: #282828;
    font-size: 14px;
    line-height: 1.1;
}

@media (max-width: 767px) {
    .guarantees-section {
        padding: 30px 0 40px;
    }

    .guarantees-badge {
        margin-bottom: 22px;
        padding: 9px 22px;
        font-size: 16px;
    }

    .guarantees-title {
        margin-bottom: 28px;
        font-size: 32px;
        line-height: 1;
        white-space: nowrap;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .guarantee-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 76px 1fr;
        gap: 20px;
        align-items: flex-start;
        padding: 36px 36px;
        border-radius: 16px;
    }

    .guarantee-card__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
        border-radius: 17px;
        font-size: 34px;
    }

    .guarantee-card h3 {
        margin-bottom: 12px;
        font-size: 20px;
        line-height: 1.1;
    }

    .guarantee-card p {
        font-size: 14px;
        line-height: 1.1;
    }
}

@media (max-width: 374px) {
    .guarantees-title {
        font-size: 34px;
    }

    .guarantee-card {
        padding: 28px 24px;
        grid-template-columns: 64px 1fr;
    }

    .guarantee-card__icon {
        width: 58px;
        height: 58px;
        font-size: 28px;
    }

    .guarantee-card h3 {
        font-size: 23px;
    }

    .guarantee-card p {
        font-size: 18px;
    }
}

.universities-section {
    padding: 58px 0 44px;
    background: #f4f4f5;
    text-align: center;
}

.universities-title {
    margin: 0;
    color: #082f63;
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    font-family: "Noto Serif", Georgia, serif;
}

.universities-title span {
    color: #e9001b;
}

.universities-subtitle {
    margin: 18px 0 34px;
    color: #4b6383;
    font-size: 16px;
    line-height: 1.25;
}

.scholarship-box {
    position: relative;
    overflow: hidden;
    padding: 68px 40px 54px;
    border-radius: 24px;
    background: #e9001b;
    color: #fff;
    box-shadow: 0 18px 36px rgba(233, 0, 27, 0.18);
}

.scholarship-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/bg2.png");
    background-size: cover;
    background-position: 50% 50%;
}

.scholarship-box > * {
    position: relative;
    z-index: 1;
}

.scholarship-box__icon {
    margin-bottom: 32px;
    color: #fff;
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
}

.scholarship-box__label {
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 4px;
}

.scholarship-box__amount {
    margin-bottom: 16px;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
}

.white-arrow-btn {
    width: 315px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 34px 0 36px;
    border-radius: 10px;
    background: #fff;
    color: #082f63;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
    box-shadow: 0 12px 28px rgba(8, 33, 61, 0.08);
}

.white-arrow-btn span {
    font-size: 24px;
    line-height: 1;
}

.scholarship-box__amount2 {
    font-family: "Noto Serif", Georgia, serif!important;
}

.scholarship-box p {
    max-width: 920px;
    margin: 0 auto;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

@media (max-width: 767px) {

    .white-arrow-btn {
        width: fit-content;
    }
    .universities-section {
        padding: 34px 0 32px;
    }

    .universities-title {
        font-size: 39px;
        line-height: 0.95;
    }

    .universities-subtitle {
        margin: 18px 0 28px;
        font-size: 22px;
        line-height: 1.05;
    }

    .scholarship-box {
        padding: 42px 28px 34px;
        border-radius: 22px;
    }

    .scholarship-box__icon {
        margin-bottom: 24px;
        font-size: 54px;
    }

    .scholarship-box__label {
        margin-bottom: 18px;
        font-size: 20px;
        letter-spacing: 3px;
    }

    .scholarship-box__amount {
        margin-bottom: 18px;
        font-size: 48px;
        line-height: 0.95;
    }
    .scholarship-box__amount2 {
        font-size: 24px;
    }

    .scholarship-box p {
        font-size: 19px;
        line-height: 1.1;
    }
}
.partner-universities {
    padding: 34px 0 60px;
    background: #f4f4f5;
    overflow: hidden;
}
.partner-universities .swiper {
    overflow: visible;
}

.partner-universities__slider {
    overflow: visible;
}

.university-card {
    height: auto;
    min-height: 530px;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ff8d9b;
}

.university-card--blue {
    border-color: #8fa8c7;
}

.university-card__image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.university-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.75) 88%,
            #fff 100%
    );
}

.university-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.university-card__country {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 7px 16px;
    border-radius: 999px;
    background: #fff;
    color: #e9001b;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(8, 33, 61, 0.16);
}

.university-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e9001b;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
}

.university-card--blue .university-card__badge {
    background: #06396f;
}

.university-card__body {
    padding: 18px 22px 24px;
}

.university-card__label {
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #ffe7ea;
    color: #e9001b;
    display: flex;
    align-items: center;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.university-card__label svg {
    margin-right: 10px;
}
.university-card--blue .university-card__country {
    color: #06396f;
}
.university-card--blue .university-card__label {
    background: #e8f0fa;
    color: #06396f;
}

.university-card h3 {
    margin: 0 0 10px;
    color: #082f63;
    font-size: 19px;
    line-height: 1.12;
    font-weight: 700;
    font-family: "Noto Serif", Georgia, serif;
}

.university-card p {
    margin: 0 0 18px;
    color: #4b6383;
    font-size: 13px;
    line-height: 1.35;
    font-style: italic;
}

.university-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.university-card li {
    position: relative;
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 7px 12px 7px 52px;
    border: 1px solid #ff8d9b;
    border-radius: 7px;
    color: #e9001b;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 700;
}
.university-card--red li {

    border-left: 4px solid #e9001b;
}
.university-card--blue li {
    border-color: #8fa8c7;
    color: #06396f;
    border-left: 4px solid #06396f;
}

.university-card--blue  li::before {
    content: url("../images/icons/6.svg");
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);

}

.university-card--red li::before {
    content: url("../images/icons/7.svg");
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);

}

.partner-universities__bottom {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.partner-universities__btn {
    min-width: 250px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    background: #082f63;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .partner-universities {
        padding: 28px 0 44px;
    }

    .university-card {
        min-height: 520px;
    }

    .university-card__image {
        height: 190px;
    }

    .university-card h3 {
        font-size: 17px;
    }

    .university-card li {
        font-size: 11px;
    }
}

.logos-marquee {
    padding: 36px 0;
    background: #f4f4f5;
    overflow: hidden;
}

.logos-marquee__track {
    display: flex;
    width: max-content;
    animation: logosMarquee 28s linear infinite;
}

.logos-marquee__row {
    display: flex;
    gap: 24px;
    padding-right: 24px;
}

.logo-card {
    width: 155px;
    height: 82px;
    flex: 0 0 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 26px;
    border: 1px solid #dce4ee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 33, 61, 0.06);
}

.logo-card img {
    max-width: 100%;
    max-height: 46px;
    display: block;
    object-fit: contain;
}

@keyframes logosMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .logos-marquee {
        padding: 28px 0;
    }

    .logos-marquee__track {
        animation-duration: 22s;
    }

    .logos-marquee__row {
        gap: 14px;
        padding-right: 14px;
    }

    .logo-card {
        width: 130px;
        height: 68px;
        flex-basis: 130px;
        padding: 14px 20px;
        border-radius: 10px;
    }

    .logo-card img {
        max-height: 38px;
    }
}


/*//video*/
.video-reviews {
    padding: 44px 0 70px;
    background: #f4f4f5;
}

.video-reviews__badge {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 8px 22px;
    border-radius: 999px;
    background: #ff728b;
    color: #fff;
    font-size: 14px;
}

.video-reviews__title {
    margin: 0;
    text-align: center;
    color: #D80621;
    font-size: 46px;
    line-height: 1;
    font-weight: 600;
    font-family: "Noto Serif", Georgia, serif;
}

.video-reviews__title span {
    color: #0F2948;
}

.video-reviews__subtitle {
    margin: 16px 0 48px;
    text-align: center;
    color: #4b6383;
    font-size: 18px;
}

.video-reviews__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

.video-review-card {
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(8, 33, 61, 0.12);
    cursor: pointer;
}

.video-review-card__media {
    position: relative;
    height: 390px;
    overflow: hidden;
    background: #222;
}

.video-review-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.video-review-card__media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-review-card__quote {
    position: absolute;
    top: 18px;
    left: 16px;
    right: 16px;
    z-index: 2;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.72);
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
}

.video-review-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 62px;
    height: 62px;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;
    background: rgba(233, 0, 27, 0.88);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.video-review-card__body {
    position: relative;
    padding: 20px 22px 24px;
}

.video-review-card h3 {
    max-width: 120px;
    margin: 0 0 6px;
    color: #082f63;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    font-family: "Noto Serif", Georgia, serif;
}

.video-review-card__stars {
    position: absolute;
    top: 20px;
    right: 18px;
    color: #ffb000;
    font-size: 16px;
    letter-spacing: 1px;
}

.video-review-card p {
    margin: 0;
    color: #333;
    font-size: 14px;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.78);
}

.video-modal.is-open {
    display: flex;
}

.video-modal__content {
    width: min(100%, 420px);
    max-height: 90vh;
}

.video-modal__content video {
    width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: 16px;
    background: #000;
}

.video-modal__close {
    position: absolute;
    top: 22px;
    right: 28px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 991px) {
    .video-reviews__grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .video-review-card {
        min-width: 230px;
        scroll-snap-align: start;
    }

    .video-review-card__media {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .video-reviews {
        padding: 34px 0 48px;
    }

    .video-reviews__title {
        font-size: 32px;
    }

    .video-reviews__subtitle {
        margin-bottom: 28px;
        font-size: 16px;
    }
}

.faq-section {
    padding: 64px 0 72px;
    background: #f4f4f5;
}

.faq-badge {
    width: fit-content;
    margin: 0 auto 20px;
    padding: 9px 22px;
    border-radius: 999px;
    background: #ff728b;
    color: #fff;
    font-size: 17px;
    line-height: 1;
}

.faq-title {
    margin: 0;
    text-align: center;
    color: #e9001b;
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    font-family: "Noto Serif", Georgia, serif;
}

.faq-subtitle {
    margin: 16px 0 42px;
    text-align: center;
    color: #4b6383;
    font-size: 18px;
    line-height: 1.2;
}

.faq-list {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #e0e6ee;
    border-radius: 16px;
    background: #fff;
}

.faq-question {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 32px;
    border: 0;
    background: #fff;
    color: #082f63;
    text-align: left;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    font-family: "Noto Serif", Georgia, serif;
    cursor: pointer;
}

.faq-question span {
    color: #222;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.faq-answer {
    display: none;
    padding: 0 32px 26px;
    color: #4b6383;
    font-size: 18px;
    line-height: 1.45;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open .faq-question span {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0 48px;
    }

    .faq-title {
        font-size: 38px;
    }

    .faq-subtitle {
        margin-bottom: 28px;
        font-size: 19px;
    }

    .faq-question {
        min-height: 60px;
        padding: 0 18px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 18px 20px;
        font-size: 15px;
    }
}

.site-footer {
    padding: 46px 0 38px;
    background: #f4f4f5;
    border-top: 1px solid #dce4ee;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr 280px 220px;
    gap: 80px;
    align-items: flex-start;
    padding-bottom: 44px;
    border-bottom: 1px solid #dce4ee;
}

.site-footer__logo img {
    width: 140px;
    display: block;
    margin-bottom: 24px;
}

.site-footer__brand p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.35;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #e9001b;
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    font-family: "Noto Serif", Georgia, serif;
}

.site-footer__contacts {
    display: grid;
    gap: 12px;
}

.site-footer__contacts a {
    color: #333;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
}

.site-footer__social-links {
    display: flex;
    gap: 12px;
}

.site-footer__social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce4ee;
    border-radius: 10px;
    background: #fff;
    color: #06396f;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
}

.site-footer__bottom {
    padding-top: 8px;
    text-align: center;
    color: #333;
    font-size: 13px;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 26px 0 28px;
    }

    .site-footer__top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
        border-bottom: 0;
        text-align: center;
    }

    .site-footer__brand {
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #dce4ee;
    }

    .site-footer__logo img {
        width: 125px;
        margin: 0 auto 18px;
    }

    .site-footer__brand p {
        font-size: 15px;
        line-height: 1.25;
    }

    .site-footer h3 {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .site-footer__contacts {
        gap: 9px;
    }

    .site-footer__contacts a {
        font-size: 14px;
    }

    .site-footer__social-links {
        justify-content: center;
    }

    .site-footer__bottom {
        padding-top: 22px;
        font-size: 12px;
    }
}

/*//learning*/
.pricing-section {
    padding: 50px 0 70px;
    background: #f4f4f5;
}

.pricing-top-badge {
    width: fit-content;
    margin: 0 auto 28px;
    padding: 17px 90px;
    border: 1px solid #8fa0b4;
    border-radius: 10px;
    background: #e8edf3;
    color: #082f63;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(8, 33, 61, 0.12);
}

.pricing-top-badge span {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 7px;
    background: #e9001b;
    color: #fff;
}

.pricing-title {
    margin: 0 0 28px;
    text-align: center;
    color: #5c1b35;
    font-size: 48px;
    line-height: 1;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 700;
}

.pricing-title span {
    color: #e9001b;
}

.pricing-controls {
    text-align: center;
}

.pricing-control-label {
    margin-bottom: 8px;
    color: #4b6383;
    font-size: 12px;
    letter-spacing: 1.4px;
}

.pricing-tabs {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px solid #d4dde8;
    border-radius: 15px;
    background: #fff;
}

.pricing-tabs button {
    min-width: 90px;
    height: 36px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #4b6383;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.pricing-tabs button.active {
    background: #082f63;
    color: #fff;
}

.pricing-grade-note {
    margin: 14px 0 42px;
    color: #4b6383;
    font-size: 14px;
}

.pricing-tabs--billing {
    position: relative;
    margin-bottom: 42px;
    border-radius: 999px;
}

.pricing-tabs--billing button {
    min-width: 70px;
    border-radius: 999px;
}

.pricing-tabs--billing span {
    position: absolute;
    top: -20px;
    right: -20px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #e9001b;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.pricing-cards {
    /*max-width: 900px;*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: 34px 36px 36px;
    border: 1px solid #dce4ee;
    border-radius: 18px;
    background: #fff;
    color: #082f63;
    box-shadow: 0 14px 34px rgba(8, 33, 61, 0.08);
}

.pricing-card--mentor {
    border-color: #e9001b;
}

.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 36px;
    min-height: 24px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #e9001b;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
}

.pricing-card__badge:empty {
    display: none;
}

.pricing-card h3 {
    margin: 0 0 18px;
    color: #082f63;
    font-size: 32px;
    line-height: 1;
    font-family: "Noto Serif", Georgia, serif;
    font-weight: 600;
}

.pricing-card--mentor h3,
.pricing-card--mentor .pricing-card__desc,
.pricing-card--mentor .pricing-card__link {
    color: #e9001b;
}

.pricing-card__desc {
    margin: 0 0 22px;
    color: #082f63;
    font-size: 16px;
    font-weight: 800;
}

.pricing-card__link {
    display: block;
    margin: -12px 0 28px;
    color: #e9001b;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.pricing-card__old {
    min-height: 18px;
    color: #082f63;
    font-size: 15px;
    font-weight: 800;
    text-decoration: line-through;
}

.pricing-card__price {
    display: flex;
    align-items: center;
    gap: 9px;
}

.pricing-card__price strong {
    color: #082f63;
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
}

.pricing-card--mentor .pricing-card__price strong {
    color: #e9001b;
}

.pricing-card__price span {
    color: #082f63;
    font-size: 16px;
}

.pricing-card__price b {
    padding: 8px 12px;
    border-radius: 999px;
    background: #e9001b;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(233, 0, 27, 0.25);
}

.pricing-card__price b:empty {
    display: none;
}

.pricing-card__year {
    margin: 12px 0 2px;
    color: #082f63;
    font-size: 15px;
    font-weight: 900;
}

.pricing-card__small {
    margin: 0 0 28px;
    color: #4b6383;
    font-size: 12px;
}

.pricing-card__line,
.pricing-card__total {
    padding: 14px 0;
    border-top: 1px solid #dce4ee;
    color: #4b6383;
    font-size: 14px;
}

.pricing-card__line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.pricing-card__total {
    color: #082f63;
    font-weight: 900;
}

.pricing-card__toggle {
    width: 100%;
    height: 38px;
    margin: 14px 0 22px;
    border: 1px solid #cbd6e3;

    border-radius: 999px;
    background: #fff;
    color: #082f63;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.pricing-card__toggle span svg {
    position: relative;
    top: 2px;
}
.rotate-180 {
    transform: rotate(180deg);
    display: inline-block;
    position: relative;
    top: 2px;
}

.pricing-card--mentor .pricing-card__toggle {
    border-color: #ff8d9b;
    color: #e9001b;
}

.pricing-card__hidden {
    display: none;
    padding-top: 10px;
    border-top: 1px solid #dce4ee;
}

.pricing-card.is-open .pricing-card__hidden {
    display: block;
}

.pricing-card__text {
    margin: 0 0 24px;
    color: #4b6383;
    font-size: 14px;
    line-height: 1.4;
}

.pricing-card__section {
    margin-top: 22px;
}

.pricing-card__section h4 {
    margin: 0 0 12px;
    color: #6b7c91;
    font-size: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    /*font-family: "Noto Serif", Georgia, serif;*/
}
.pricing-card__check-list li {
    background: transparent!important;
    padding:  3px 8px 3px 10px!important;
}
.pricing-card__check-list {
    gap: 2px!important;
}

.pricing-card__section ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}


.pricing-card__section li {
    position: relative;
    padding-left: 0px;
    color: #082f63;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
}

.pricing-card__section li small {
    display: block;
    color: #4b6383;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}
.pricing-feature__icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.pricing-feature__content {
    display: flex;
    flex-direction: column;
}
.pricing-card__section ul li.pricing-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 5px;
}

.pricing-feature__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-feature__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.pricing-card--basic .pricing-feature__icon {
    background: #dfe4eb;
    color: #002f6c;
}

.pricing-card--mentor .pricing-feature__icon {
    background: #fde0e3;
    color: #e60023;
}

.pricing-card--mentor .pricing-feature__content {
    color: #333333;
}


/*.pricing-card__section li::before {*/
/*    content: "✓";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: -2px;*/
/*    width: 22px;*/
/*    height: 22px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    border-radius: 50%;*/
/*    background: #dce4ee;*/
/*    color: #082f63;*/
/*    font-size: 12px;*/
/*    font-weight: 900;*/
/*}*/

.pricing-card--mentor .pricing-card__section:not(:last-child) li {
    padding: 5px;
    border-radius: 8px;
    /*background: #fff2f3;*/
}

.pricing-card--mentor .pricing-card__section:not(:last-child) li::before {
    left: -10px;
    top: 6px;
    background: #ffd9de;
    color: #e9001b;
}

.pricing-card__check-list li::before {
    background: transparent!important;
    content: url("../images/icons/10.svg");

    position: absolute;
    left: -11px;
}

.pricing-card__included {
    margin-top: 26px;
    padding: 14px 20px;
    /*border: 1px solid #8fa0b4;*/
    border-radius: 50px;
    /*background: #e1e7ee;*/
    color: #082f63;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    /*box-shadow: 0 8px 18px rgba(8, 33, 61, 0.12);*/

    background: #dce2e8;
    border: 1px solid #9aa9ba;
    box-shadow: 0 10px 15px -3px rgba(15, 41, 72, 0.15),
    0 4px 6px -4px rgba(15, 41, 72, 0.15);
}
.pricing-card__included svg {
    margin-right: 10px;
}

.pricing-card__included--red {
    border-color: #e9001b;
    background: #fff4f5;
    color: #e9001b;
    text-align: left;
}

.pricing-card--mentor svg path {
    stroke: #e9001b!important;
}
.pricing-card__actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.pricing-btn {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.pricing-btn--outline {
    border: 1px solid #ff8d9b;
    background: #fff0f2;
    color: #e9001b;
}

.pricing-btn--solid {
    background: #e9001b;
    color: #fff;
    position: relative;
}

.pricing-btn--solid:after {
    content: url("../images/icons/9.svg");
    position: absolute;
    right: -38px;
    bottom: -30px;
    transition: opacity 0.2s ease;
}
.pricing-card--basic .pricing-btn--solid.fast-track-blue {
    background: #184f86;
}

@media (max-width: 767px) {
    .pricing-section {
        padding: 36px 0 48px;
    }

    .pricing-top-badge {
        padding: 14px 18px;
        font-size: 13px;
        text-align: center;
    }

    .pricing-title {
        font-size: 36px;
    }

    .pricing-tabs--grade button {
        min-width: 84px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pricing-card {
        padding: 28px 24px 30px;
    }

    .pricing-card h3 {
        font-size: 28px;
    }

    .pricing-card__price strong {
        font-size: 42px;
    }
}
/*//popup*/
.trial-popup,
.trial-popup * {
    box-sizing: border-box;
}

.trial-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    padding: 16px;
}

.iti,
.trial-form .iti {
    width: 100%;
}

.trial-form .iti input {
    width: 100%;
}

.trial-popup.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.trial-popup__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 28px 30px 26px;
    border: 1px solid #dce4ee;
    border-radius: 16px;
    background: #fff;
}

.trial-popup__close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: 0;
    background: transparent;
    color: #4b6383;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.trial-popup__title {
    margin: 0 0 12px;
    padding-right: 34px;
    color: #e9001b;
    font-size: 26px;
    line-height: 1;
    font-weight: 500;
    font-family: "Noto Serif", Georgia, serif;
}

.trial-popup__subtitle {
    margin: 0 0 22px;
    color: #4b6383;
    font-size: 15px;
    line-height: 1.3;
}

.trial-form__section-title {
    margin-bottom: 16px;
    color: #082f63;
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}
.trial-form__section-title svg {
    margin-right: 10px;
}

.trial-lessons {
    display: grid;
    gap: 5px;
}

.trial-lesson input {
    display: none;
}

.trial-lesson span {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 16px;
    border: 1px solid #dce4ee;
    border-radius: 12px;
    background: #fff;
    color: #082f63;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.trial-lesson.is-active span {
    border-color: #e9001b;
    background: #fff8f8;
}

.trial-lesson.is-active span::after {
    content: url("../images/icons/check.svg");
    flex: 0 0 auto;
    color: #e9001b;
    font-size: 22px;
}

.trial-form__divider {
    height: 1px;
    margin: 18px 0;
    background: #dce4ee;
}

.trial-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.trial-form__grid .form_item {
    min-width: 0;
}

.trial-form .form_item {
    margin-bottom: 16px;
}

.trial-form label {
    display: block;
    margin-bottom: 8px;
    color: #082f63;
    font-size: 14px;
    font-weight: 700;
}

.trial-form .form__input {
    width: 100%;
    max-width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #dce4ee;
    border-radius: 11px;
    background: #fff;
    color: #082f63;
    font-size: 14px;
    outline: none;
}

.trial-form .form__input::placeholder {
    color: #4b6383;
}

.trial-form .form__input:focus {
    border-color: #e9001b;
}

.trial-form__submit {
    width: 100%;
    height: 54px;
    margin-top: 4px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #e9001b, #ff314b);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 575px) {
    .trial-popup {
        padding: 10px;
    }

    .trial-popup__content {
        max-width: 100%;
        padding: 24px 18px 22px;
        border-radius: 15px;
    }

    .trial-popup__title {
        font-size: 28px;
    }

    .trial-popup__subtitle {
        font-size: 16px;
    }

    .trial-form__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .trial-lesson span {
        font-size: 15px;
    }
}

.consult-popup,
.consult-popup * {
    box-sizing: border-box;
}

.consult-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    padding: 16px;
}

.consult-popup.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consult-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.consult-popup__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 34px 36px 30px;
    border: 1px solid #dce4ee;
    border-radius: 16px;
    background: #fff;
}

.consult-popup__close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: 0;
    background: transparent;
    color: #4b6383;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.consult-popup__title {
    margin: 0 0 16px;
    padding-right: 34px;
    color: #e9001b;
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    font-family: "Noto Serif", Georgia, serif;
}

.consult-popup__subtitle {
    margin: 0 0 28px;
    color: #4b6383;
    font-size: 18px;
    line-height: 1.45;
}

.consult-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.consult-form__grid .form_item {
    min-width: 0;
}

.consult-form .form_item {
    margin-bottom: 18px;
}

.consult-form label {
    display: block;
    margin-bottom: 8px;
    color: #082f63;
    font-size: 14px;
    font-weight: 700;
}

.consult-form .form__input {
    width: 100%;
    max-width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #dce4ee;
    border-radius: 11px;
    background: #fff;
    color: #082f63;
    font-size: 16px;
    outline: none;
}

.consult-form .form__input::placeholder {
    color: #4b6383;
}

.consult-form .form__input:focus {
    border-color: #e9001b;
}

.consult-form .iti {
    width: 100%;
}

.consult-form .iti input {
    width: 100%;
}

.consult-form__submit {
    width: 100%;
    height: 54px;
    margin-top: 6px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #e9001b, #ff314b);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 575px) {
    .consult-popup {
        padding: 10px;
    }

    .consult-popup__content {
        max-width: 100%;
        padding: 28px 18px 24px;
        border-radius: 15px;
    }

    .consult-popup__title {
        font-size: 30px;
    }

    .consult-popup__subtitle {
        font-size: 16px;
    }

    .consult-form__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


.thank-page {
    min-height: 100vh;
    padding: 72px 0 60px;
    background: #fff;
    text-align: center;
}

.thank-status {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-bottom: 46px;
}

.thank-status__icon {
    width: 114px;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f21b35;
    color: #fff;
    font-size: 52px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(233, 0, 27, 0.18);
}

.thank-status__label {
    margin-left: -6px;
    padding: 14px 28px;
    border: 1px solid #ff9da8;
    border-radius: 999px;
    background: #fff7f8;
    color: #e9001b;
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
}

.thank-page h1 {
    margin: 0;
    color: #e9001b;
    font-size: 60px;
    line-height: 1;
    font-weight: 900;
    font-family: "Noto Serif", Georgia, serif;
}

.thank-subtitle {
    max-width: 760px;
    margin: 28px auto 72px;
    color: #4b6383;
    font-size: 22px;
    line-height: 1.45;
}

.thank-next {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 52px;
    border: 1px solid #dce4ee;
    border-radius: 18px;
    background: #fff;
}

.thank-next h2 {
    margin: 0 0 34px;
    color: #082f63;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: "Noto Serif", Georgia, serif;
}

.thank-next__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
}

.thank-next__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffe7ea;
    color: #e9001b;
    font-size: 28px;
    font-weight: 900;
}

.thank-next__item h3 {
    margin: 0 0 10px;
    color: #082f63;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
}

.thank-next__item p {
    margin: 0;
    color: #4b6383;
    font-size: 18px;
    line-height: 1.35;
}

.thank-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.thank-btn {
    min-width: 280px;
    height: 64px;
    padding: 0 32px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: 0.3s ease;
}

.thank-btn--red {
    background: linear-gradient(135deg, #e9001b, #ff314b);
    color: #fff;
    box-shadow: 0 15px 40px rgba(233, 0, 27, 0.18);
}

.thank-btn--blue {
    background: #082f63;
    color: #fff;
    box-shadow: 0 15px 40px rgba(8, 47, 99, 0.18);
}

.thank-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .thank-page {
        padding: 44px 0 40px;
    }

    .thank-status {
        margin-bottom: 34px;
    }

    .thank-status__icon {
        width: 86px;
        height: 86px;
        font-size: 40px;
    }

    .thank-status__label {
        padding: 11px 18px;
        font-size: 13px;
    }

    .thank-page h1 {
        font-size: 38px;
    }

    .thank-subtitle {
        margin: 22px auto 42px;
        font-size: 16px;
        line-height: 1.35;
    }

    .thank-next {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .thank-next h2 {
        margin-bottom: 28px;
        font-size: 19px;
    }

    .thank-next__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .thank-next__icon {
        margin-bottom: 14px;
    }

    .thank-next__item h3 {
        font-size: 19px;
    }

    .thank-next__item p {
        font-size: 16px;
    }

    .thank-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 36px;
    }

    .thank-btn {
        width: 100%;
        padding: 0;
        /*max-width: 320px;*/
        min-width: auto;
        height: 56px;
        font-size: 18px;
    }
}