

/* Reset / Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    /*background: #fff;*/

    background: #F6F8FF
}

main {
    display: block;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

textarea {
    resize: vertical;
}

input,
textarea,
select,
button {
    outline: none;
}

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    margin: 100px 0;
}

@media (max-width: 1024px) {
    .section {
        margin: 50px 0;
    }
}

@media (max-width: 768px) {
    .section {
        margin: 50px 0;
    }
}

/* ===== HEADER ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
}

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

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo img {
    width: 110px;
    height: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
}

.header__nav a {
    transition: opacity 0.3s ease;
}

.header__nav a:hover {
    opacity: 0.7;
}

.header__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #3e63f4 0%, #1f46d8 100%);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}


/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 820px;
    padding: 150px 0 70px;
    overflow: visible;
    color: #fff;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("../img/1/1.png");
    background-size: cover;
    background-position: 50% 50%;
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 760px;
}

.hero__title {
    max-width: 700px;
    font-size: 72px;
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero__subtitle {
    margin-top: 56px;
    font-size: 20px;
    line-height: 1.2;
    max-width: 900px;
}


/* ===== PROGRAMS ===== */
.hero__programs {
    margin-top: 44px;
    display: flex;
    align-items: stretch;
    gap: 18px;
    flex-wrap: wrap;
}

.hero__program {
    width: 132px;
    min-height: 146px;
    padding: 18px 14px 16px;
    border-radius: 24px;
    /*background: rgba(255, 255, 255, 0.04);*/
    /*backdrop-filter: blur(8px);*/
    text-align: center;
    transition: all linear 0.3s;
    position: relative;
}
.hero__program:hover {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.hero__program--active {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero__program-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__program-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero__program-text {
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}


/* ===== FORM OVERLAP ===== */
.hero__form-wrap {
    position: absolute;
    left: 50%;
    bottom: -250px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    padding: 0 20px;
}

.hero__form-box {
    background: #f8f8f8;
    color: #222;
    border-radius: 28px;
    padding: 28px 36px 24px;
    box-shadow: 0 18px 60px rgba(17, 31, 78, 0.12);
}

.hero__form-top {
    margin-bottom: 24px;
}

.hero__form-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

.hero__form-subtitle {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.3;
    color: #555;
}

.hero__form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 270px;
    gap: 14px;
    align-items: center;
}

.hero__form input {
    width: 100%;
    height: 56px;
    border: 1px solid #e4e4e4;
    border-radius: 999px;
    padding: 0 22px;
    background: #fff;
    color: #222;
    font-size: 16px;
}

.hero__form input::placeholder {
    color: #999;
}

.hero__form button {
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(180deg, #3e63f4 0%, #1f46d8 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.hero__form button:hover {
    opacity: 0.9;
}

.hero__checkbox {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hero__checkbox input {
    display: none;
}

.hero__checkbox-mark {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #d2d2d2;
    background: #fff;
}

.hero__checkbox input:checked + .hero__checkbox-mark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #ff4b4b;
    border-bottom: 2px solid #ff4b4b;
    transform: rotate(45deg);
}

.hero__checkbox-text {
    font-size: 14px;
    line-height: 1.3;
    color: #555;
}
@media (max-width: 1200px) {
    .hero {
        min-height: 860px;
        padding: 140px 0 170px;
    }

    .hero__title {
        font-size: 62px;
    }

    .hero__subtitle {
        font-size: 26px;
        margin-top: 42px;
    }

    .hero__form {
        grid-template-columns: 1fr 1fr;
    }

    .hero__form button {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .hero {
        min-height: 820px;
        padding: 130px 0 190px;
    }

    .hero__title {
        font-size: 52px;
        max-width: 560px;
    }

    .hero__subtitle {
        font-size: 22px;
        margin-top: 30px;
        max-width: 600px;
    }

    .hero__programs {
        gap: 14px;
    }

    .hero__program {
        width: calc(33.333% - 10px);
        min-width: 140px;
    }

    .hero__form-wrap {
        bottom: 0px;
        padding: 0;
        position: relative;
    }

    .hero__form-box {
        padding: 24px 22px;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 0;
    }

    .header__phone {
        min-height: 42px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .hero {
        min-height: auto;
        padding: 110px 0 220px;
    }

    .hero__title {
        font-size: 40px;
        max-width: 100%;
    }

    .hero__subtitle {
        margin-top: 22px;
        font-size: 18px;
    }

    .hero__programs {
        margin-top: 28px;
        flex-wrap: wrap;
        overflow-x: auto;
        justify-content: center;
        padding-bottom: 6px;
    }
    .hero__program-text {
        font-size: 12px;
        line-height: 100%;
        color: #fff;
    }

    .hero__program {
        flex: 0 0 100px;
        padding: 0;
        width: 100px;
        min-height: 100px;
        min-width: 100px;
    }

    .hero__form-wrap {

    }

    .hero__form-box {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .hero__form-title {
        font-size: 20px;
    }

    .hero__form-subtitle {
        font-size: 14px;
    }

    .hero__form {
        grid-template-columns: 1fr;
    }

    .hero__form button {
        grid-column: auto;
    }

    .hero__form input,
    .hero__form button {
        height: 54px;
    }

    .hero__checkbox {
        align-items: flex-start;
    }

    .hero__checkbox-text {
        font-size: 13px;
    }

    .hero__bg {
        background-position: 21% 51%;
    }

}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero__title {
        font-size: 34px;
        text-align: center;
    }

    .hero__subtitle {
        font-size: 16px;
        text-align: center;
    }

    .hero__form-wrap {
        bottom: 0px;
    }
}

/* ===== PROGRAMS SECTION ===== */

.programs-section {
    position: relative;
    background-image: url("../img/2/bg.png");
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 30px;
    margin: 100px 0;
    margin-top: 200px;
}

.programs {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 615px) minmax(0, 500px);
    justify-content: center;
    gap: 90px;
    min-height: 1160px;
    padding: 100px 0;
    border-radius: 32px;
    /*overflow: hidden;*/
    overflow: visible;
    color: #fff;

}

/* декоративные ромбики */
.programs::before,
.programs::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 3px;
    opacity: 0.95;
    z-index: 1;
}

.programs::before {
    left: -50px;
    top: 420px;
}

.programs::after {
    right: 0px;
    z-index: 9;
    top: 390px;
    width: 34px;
    height: 34px;
    border-radius: 5px;
}

.programs__left,
.programs__right {
    position: relative;
    z-index: 2;
}

.programs__sticky {
    position: sticky;
    top: 100px;
    padding-top: 0;
}

.programs__title {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.programs__age {
    width: fit-content;
    min-width: 180px;
    margin: 28px 0 38px auto;
    padding: 8px 26px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    text-align: center;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
}

.programs__text {
    display: grid;
    gap: 12px;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
}

.programs__list-title {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 600;
}

.programs__list {
    margin-top: 10px;
    display: grid;
    gap: 7px;
    padding-left: 15px;
    list-style: disc;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.86);
}

.programs__list li::marker {
    color: #fff;
}

.programs__note {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
}

.programs__btn {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 430px;
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #fff;
    color: #143b9f;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.programs__btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* ===== RIGHT CARDS ===== */

.programs__right {
    display: grid;
    gap: 26px;
}

.program-card {
    position: relative;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    background: rgba(31, 72, 176, 0.22);
    backdrop-filter: blur(4px);
}

.program-card__image {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 386 / 250;
}

.program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-card__meta {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.program-card__date,
.program-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
}

.program-card__date::before {
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 7px;
    background: url("../img/2/icon-calendar.svg") center / contain no-repeat;
}

.program-card__title {
    margin-top: 20px;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.program-card__text {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
}

.program-card__subtitle {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.program-card__list {
    margin-top: 8px;
    padding-left: 15px;
    list-style: disc;
    display: grid;
    gap: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.84);
}

.program-card__list li::marker {
    color: #fff;
}
@media (max-width: 1200px) {
    .programs {
        grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
        gap: 50px;
        padding: 60px 50px 80px;
    }

    .programs__title {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    .programs {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 42px;
        padding: 50px 32px;
        border-radius: 28px;
    }

    .programs__sticky {
        position: static;
    }

    .programs__age {
        margin: 24px 0 28px;
    }

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

    .program-card {
        padding: 18px;
        border-radius: 24px;
    }

    .program-card__title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {

    .programs-section {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .programs {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .programs::before,
    .programs::after {
        display: none;
    }

    .programs__title {
        font-size: 34px;
    }

    .programs__age {
        min-width: 150px;
        font-size: 18px;
    }

    .programs__right {
        grid-template-columns: 1fr;
    }

    .program-card {
        padding: 16px;
    }

    .program-card__title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .programs {
        padding: 30px 0px;
        border-radius: 22px;
    }

    .programs__title {
        font-size: 30px;
    }

    .programs__text {
        font-size: 13px;
    }

    .programs__note {
        font-size: 14px;
    }

    .programs__btn {
        min-height: 46px;
    }

    .program-card__image {
        border-radius: 10px;
    }
}

/* ===== CYPRUS SECTION ===== */

.cyprus-section {
    position: relative;
    overflow: hidden;
}
.cyprus__subtitle {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.cyprus {
    position: relative;

    /*overflow: hidden;*/
}

/*.cyprus::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    right: -120px;*/
/*    bottom: -160px;*/
/*    width: 520px;*/
/*    height: 520px;*/
/*    background: rgba(35, 74, 199, 0.06);*/
/*    transform: rotate(45deg);*/
/*    z-index: 0;*/
/*}*/

.cyprus__title {
    position: relative;
    z-index: 1;
    margin-bottom: 44px;
    text-align: center;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #161616;
    letter-spacing: -0.02em;
}

.cyprus__slider {
    position: relative;
    z-index: 1;
    overflow: visible;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.cyprus__slider .swiper-wrapper {
    align-items: stretch;
}

.cyprus__slider .swiper-slide {
    height: auto;
}

.cyprus-card {
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 14px;
    background: #fff;
    color: #111;
}

.cyprus-card__image {
    width: 100%;
    aspect-ratio: 282 / 158;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
}

.cyprus-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}


.cyprus-card__title {
    /*min-height: 58px;*/
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 1.08;
    font-weight: 500;
    color: #143b9f;
    letter-spacing: -0.02em;
}

.orange {
    background:  #FFB800;
}
.green {
    background: #6FCA14;
}
.pink {
    background: #FF7079;
}
.purple {
    background: #708AE3;
}


.cyprus-card__content {
    display: grid;
    gap: 13px;
    font-size: 14px;
    line-height: 1.42;
    color: #1c1c1c;
}

.cyprus-card__content ul {
    display: grid;
    gap: 8px;
    padding-left: 17px;
    list-style: disc;
}

.cyprus-card__content li::marker {
    color: #111;
}

.cyprus-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cyprus-card__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 13px;
    border-radius: 999px;
    background: #eef1fb;
    color: #24305b;
    font-size: 12px;
    line-height: 1.2;
}

.cyprus-card__meta {
    margin-top: auto;
    padding-top: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cyprus-card__date,
.cyprus-card__age {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px;


    color: #143b9f;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

.cyprus-card__age {
    border-radius: 6px;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;

    z-index: 99;
}

.cyprus-card__date::before {
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 7px;
    background: url("../img/3/icon-calendar-blue.svg") center / contain no-repeat;
}

.cyprus-card__btn {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    /*background: linear-gradient(180deg, #315de5 0%, #173aa5 100%);*/
    color: #173aa5;
    border: 1px solid #173aa5;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cyprus-card__btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* arrows */

.cyprus__nav {
    position: relative;
    z-index: 1;
    margin-top: 58px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.cyprus__arrow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 12px 30px rgba(18, 38, 86, 0.06);
    transition: opacity 0.3s ease, transform 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cyprus__arrow.swiper-button-disabled {
    opacity: 0.45;
    pointer-events: none;
}
@media (max-width: 1200px) {
    .cyprus {
        padding: 60px 0 80px;
    }

    .cyprus-card {
        padding: 24px 22px;
    }

    .cyprus-card__title {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .cyprus {
        padding: 50px 0 70px;
    }

    .cyprus__title {
        margin-bottom: 34px;
        font-size: 36px;
    }

    .cyprus__nav {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {

    .cyprus__subtitle {
        font-size: 16px;
    }
    .cyprus {
        padding: 44px 0 60px;
    }

    .cyprus__title {
        font-size: 32px;
    }

    .cyprus-card {
        padding: 20px;
    }

    .cyprus-card__title {
        min-height: auto;
        font-size: 24px;
    }

    .cyprus-card__content {
        font-size: 13px;
    }

    .cyprus__arrow {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .cyprus__slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cyprus__slider {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }
}
@media (max-width: 480px) {
    .cyprus {
        padding: 38px 0 54px;
    }

    .cyprus__title {
        font-size: 28px;
    }

    .cyprus-card {
        padding: 18px;
        border-radius: 12px;
    }

    .cyprus-card__image {
        margin-bottom: 20px;
    }

    .cyprus-card__title {
        font-size: 22px;
    }

    .cyprus-card__date,
    .cyprus-card__age {
        font-size: 11px;
    }

    .cyprus__nav {
        margin-top: 32px;
    }
}

/* ===== CTA FORM SECTION ===== */

.cta-section {
    position: relative;
}

.cta {
    position: relative;
    min-height: 500px;

    display: flex;
    flex-direction: column;
    justify-content:  flex-end;
    border-radius: 32px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 45px rgba(17, 31, 78, 0.12);
}

.cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.5) 0%,
                    rgba(0, 0, 0, 0.3) 48%,
                    rgba(0, 0, 0, 0.08) 100%
            ),
            linear-gradient(
                    0deg,
                    rgba(0, 0, 0, 0.35) 0%,
                    rgba(0, 0, 0, 0.02) 65%
            );
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__content {
    position: relative;
    z-index: 1;

    padding: 40px;

}

.cta__title {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.cta__form {
    width: 100%;
}

.cta__fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 230px;
    gap: 14px;
    align-items: center;
}

.cta__fields input {
    width: 100%;
    height: 55px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
}

.cta__fields input::placeholder {
    color: rgba(255, 255, 255, 0.88);
}

.cta__fields .form__input, .form__select {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    color: #fff;
}

.cta__fields .form__input, .form__select option {
    color: #fff;
}
/*.cta__fields  .form__select option[value=""] {*/
/*    color: #fff;*/
/*}*/
.cta__fields .form__select.is-selected {
    color: #fff
}
.iti__country-list {
    color: #222;
}
.cta__fields .form__select option[value=""] {
    color: #ffffff;
}
.cta__fields button {
    height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #315de5 0%, #173aa5 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cta__fields button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.cta__checkbox {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}

.cta__checkbox input {
    display: none;
}

.cta__checkbox-mark {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.cta__checkbox input:checked + .cta__checkbox-mark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.cta__checkbox-text {
    font-size: 11px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 1200px) {
    .cta__content {
        max-width: 840px;
        padding: 190px 50px 42px;
    }

    .cta__title {
        font-size: 31px;
    }

    .cta__fields {
        grid-template-columns: 1fr 1fr;
    }

    .cta__fields button {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .cta {
        min-height: 420px;
        border-radius: 28px;
    }

    .cta__content {
        padding: 170px 34px 38px;
    }

    .cta__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .cta {
        min-height: auto;
        border-radius: 24px;
    }

    .cta__content {
        padding: 190px 22px 28px;
    }

    .cta__title {
        font-size: 26px;
    }

    .cta__fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cta__fields button {
        grid-column: auto;
    }

    .cta__fields input,
    .cta__fields button {
        height: 50px;
    }

    .cta__checkbox {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .cta {
        border-radius: 22px;
    }

    .cta__content {
        padding: 170px 18px 24px;
    }

    .cta__title {
        font-size: 23px;
    }

    .cta__title br {
        display: none;
    }
}

/* ===== ABOUT SECTION ===== */

.about-section {
    position: relative;
}

.about {
    position: relative;
    margin: 0 auto;
    color: #171717;
}

/*.about::before,*/
/*.about::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 260px;*/
/*    height: 260px;*/
/*    border-radius: 46px;*/
/*    background: rgba(35, 74, 199, 0.06);*/
/*    transform: rotate(45deg);*/
/*    z-index: -1;*/
/*}*/

.about::before {
    right: -20px;
    top: -110px;
}

.about::after {
    right: -300px;
    top: -88px;
}

.about__title {
    margin-bottom: 32px;
    text-align: center;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about__intro {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 34px;
    min-height: 104px;
    padding: 24px 40px;
    border-radius: 22px;
    background: #fff;
}

.about__logo img {
    width: 110px;
    height: auto;
}

.about__intro-text {
    max-width: 840px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.about__icon {
    display: flex;
    justify-content: flex-end;
}

.about__icon img {
    width: 54px;
    height: auto;
}

.about__text {
    margin-top: 28px;
    display: grid;
    gap: 18px;
    font-size: 18px;
    line-height: 1.35;
    color: #171717;
}

.about__stats {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 30px;
    border-radius: 16px;
    background: #fff;
}

.about-stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-stat__icon {
    height: 42px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.about-stat__icon img {
    max-width: 90px;
    max-height: 42px;
    object-fit: contain;
}

.about-stat--cambridge .about-stat__icon img {
    max-width: 42px;
}

.about-stat strong {
    margin-bottom: 12px;
    display: block;
    font-size: 58px;
    line-height: 0.9;
    font-weight: 400;
    color: #143b9f;
    letter-spacing: -0.04em;
}

.about-stat p {
    font-size: 16px;
    line-height: 1.25;
    color: #171717;
}
@media (max-width: 1200px) {
    .about {
        max-width: 100%;
    }

    .about__title {
        font-size: 38px;
    }

    .about__stats {
        gap: 20px;
        padding: 30px;
    }

    .about-stat strong {
        font-size: 46px;
    }
}

@media (max-width: 1024px) {


    .about-stat {
        align-items: center;
    }


    .about__logo, .about__icon {
        margin: 0 auto;
    }
    .about__intro {
        text-align: center;
    }
    .about__intro {
        grid-template-columns: 120px minmax(0, 1fr) 60px;
        gap: 24px;
        padding: 22px 28px;
    }

    .about__intro-text {
        font-size: 17px;
    }

    .about__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat strong {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .about::before,
    .about::after {
        display: none;
    }

    .about__title {
        margin-bottom: 24px;
        font-size: 31px;
    }

    .about__intro {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 22px;
        border-radius: 20px;
    }

    .about__logo img {
        width: 120px;
    }

    .about__icon {
        justify-content: flex-start;
    }

    .about__intro-text {
        font-size: 17px;
    }

    .about__text {
        margin-top: 24px;
        font-size: 15px;
    }

    .about__stats {
        margin-top: 24px;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 26px 22px;
        border-radius: 20px;
    }

    .about-stat__icon {
        margin-bottom: 12px;
    }

    .about-stat strong {
        font-size: 46px;
    }

    .about-stat p {
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about__title {
        font-size: 28px;
    }

    .about__intro-text {
        font-size: 16px;
    }

    .about__text {
        font-size: 14px;
    }
}
/* ===== SUPPORT SECTION ===== */

.support-section {
    position: relative;

}

.support {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: #151515;
}

.support__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}


.support__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(0, 540px);
    justify-content: center;
    align-items: center;
    gap: 44px;
    padding: 70px 40px;
}

/* left cards */

.support__list {
    display: grid;
    gap: 12px;
}

.support-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 116px;
    padding: 20px 34px 20px 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 34px rgba(17, 31, 78, 0.04);
}

.support-item__number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #143b9f;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    transform: rotate(45deg);
}
.support-item__number span {
    transform: rotate(-45deg);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.support-item__number::before {
    content: attr(class);
    display: none;
}

.support-item__number {
    position: relative;
}

.support-item__number {
    font-size: 0;
}

.support-item__number::after {
    content: attr(data-number);
}

/* если не хочешь data-number, используй этот вариант ниже */
.support-item__number {
    font-size: 22px;
}

.support-item__number {
    transform: rotate(45deg);
}

.support-item__number {
    line-height: 1;
}

.support-item__number {
    color: transparent;
}

.support-item__number::after {
    content: "";
}

/* нормальный вариант для текста внутри ромба */
.support-item__number {
    color: #fff;
}

.support-item__number span {
    transform: rotate(-45deg);
}

.support-item__content h3 {
    margin-bottom: 7px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.support-item__content p {
    font-size: 16px;
    line-height: 1.25;
    color: #222;
}

/* right form */

.support-form {
    position: relative;
    overflow: hidden;
    min-height: 800px;
    padding: 38px 44px 44px;
    border-radius: 38px;
    background:
            linear-gradient(180deg, #315de5 0%, #143b9f 100%);
    color: #fff;
}

.support-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/support-blue-pattern.svg") center / cover no-repeat;
    opacity: 0.22;
    pointer-events: none;
}

.support-form > * {
    position: relative;
    z-index: 1;
}

.support-form__image {
    width: 100%;
    margin: 0 auto 34px;
}

.support-form__image img {
    width: 100%;
    height: auto;
}

.support-form__title {
    margin-bottom: 24px;
    text-align: center;
    font-size: 36px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.support-form__form {
    display: grid;
    gap: 12px;
}

.support-form__form input {
    width: 100%;
    height: 50px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 14px;
}

.support-form__form input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.support-form__checkbox {
    margin: 8px 0 4px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}

.support-form__checkbox input {
    display: none;
}

.support-form__checkbox-mark {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.support-form__checkbox input:checked + .support-form__checkbox-mark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.support-form__checkbox-text {
    font-size: 11px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.78);
}

.support-form__form button {
    margin-top: 4px;
    width: 100%;
    height: 54px;
    border-radius: 999px;
    background: #fff;
    color: #143b9f;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.support-form__form button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
@media (max-width: 1200px) {
    .support__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
        gap: 32px;
        padding: 60px 30px;
    }

    .support-form {
        padding: 34px 34px 38px;
    }

    .support-form__title {
        font-size: 30px;
    }

    .support-item {
        padding: 18px 24px;
    }
}

@media (max-width: 1024px) {
    .support__inner {
        grid-template-columns: 1fr;
        padding: 50px 28px;
    }

    .support-form {
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
    }

    .support-item {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .support {
        min-height: auto;
    }

    .support__inner {
        padding: 40px 20px;
    }

    .support-item {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
        border-radius: 14px;
    }

    .support-item__number {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .support-item__number span {
        font-size: 18px;
    }

    .support-item__content h3 {
        font-size: 20px;
    }

    .support-item__content p {
        font-size: 13px;
    }

    .support-form {
        min-height: auto;
        padding: 30px 22px 28px;
        border-radius: 28px;
    }

    .support-form__image {
        max-width: 300px;
        margin-bottom: 28px;
    }

    .support-form__title {
        font-size: 27px;
    }

    .support-form__title br {
        display: none;
    }
}

@media (max-width: 480px) {
    .support__inner {
        padding: 34px 0;
    }

    .support__list {
        gap: 10px;
    }

    .support-item {
        grid-template-columns: 1fr;
    }

    .support-item__number {
        margin-left: 4px;
    }

    .support-form {
        border-radius: 24px;
    }

    .support-form__title {
        font-size: 24px;
    }

    .support-form__form input,
    .support-form__form button {
        height: 50px;
    }
}

/* ===== FOOTER ===== */

.footer {
    padding: 30px 0;
    background: #f4f6fb;
    color: #171717;
}

.footer__top {
    display: grid;
    grid-template-columns: 140px 250px 260px 260px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 36px;
}

.footer__logo {
    display: flex;
    align-items: center;
}

.footer__logo img {
    width: 112px;
    height: auto;
}

.footer__description {
    font-size: 16px;
    min-width: 300px;
    line-height: 1.35;
    color: #171717;
}

.footer__contacts {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #315de5 0%, #173aa5 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__social {
    /*width: 36px;*/
    /*height: 36px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 2px solid #143b9f;*/
    border-radius: 9px;
    color: #143b9f;
}

.footer__social img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.footer__address span {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.3;
    color: rgba(23, 23, 23, 0.48);
}

.footer__address p {
    font-size: 14px;
    line-height: 1.35;
    color: #171717;
}

.footer__line {
    margin: 56px 0 28px;
    width: 100%;
    height: 1px;
    background: rgba(20, 59, 159, 0.12);
}

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

.footer__copy {
    flex-shrink: 0;
    font-size: 12px;
    line-height: 1.3;
    color: #171717;
}

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

.footer__nav a {
    font-size: 12px;
    line-height: 1.3;
    color: #171717;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer__nav a:hover {
    color: #143b9f;
}

@media (max-width: 1200px) {
    .footer__top {
        grid-template-columns: 130px 230px 240px 240px;
        gap: 28px;
    }

    .footer__nav {
        gap: 22px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 56px 0 30px;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 34px 40px;
    }

    .footer__contacts {
        justify-content: flex-start;
    }

    .footer__line {
        margin: 42px 0 26px;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column-reverse;
    }

    .footer__nav {
        justify-content: flex-start;
        gap: 18px 24px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 46px 0 28px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer__description br {
        display: none;
    }

    .footer__contacts {
        flex-wrap: wrap;
    }

    .footer__line {
        margin: 34px 0 24px;
    }

    .footer__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .footer__phone {
        width: 100%;
    }

    .footer__socials {
        width: 100%;
    }

    .footer__social {
        width: 40px;
        height: 40px;
    }
}

/* ===== GALLERY SECTION ===== */

.gallery-section {
    position: relative;
}

.gallery {
    position: relative;
    overflow: hidden;
    color: #171717;
}

/*.gallery::before,*/
/*.gallery::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    border-radius: 48px;*/
/*    background: rgba(35, 74, 199, 0.06);*/
/*    transform: rotate(45deg);*/
/*    z-index: 0;*/
/*}*/

/*.gallery::before {*/
/*    left: -60px;*/
/*    top: 210px;*/
/*    width: 250px;*/
/*    height: 250px;*/
/*}*/

/*.gallery::after {*/
/*    left: 0;*/
/*    bottom: -160px;*/
/*    width: 310px;*/
/*    height: 310px;*/
/*}*/

.gallery__title {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    text-align: center;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gallery__grid {
    position: relative;
    z-index: 1;

    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 305px 300px 305px;
    gap: 8px;
    align-items: start;
}

.gallery__col {
    display: grid;
    gap: 8px;
}

.gallery__item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #dfe4f2;
    cursor: pointer;
}

.gallery__item--sm {
    height: 230px;
}

.gallery__item--lg {
    height: 400px;
}

.gallery__item--xl {
    height: 230px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__btn {
    position: relative;
    z-index: 1;
    width: fit-content;
    min-width: 205px;
    min-height: 46px;
    margin: 50px auto 0;
    padding: 14px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ed0600;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery__btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
@media (max-width: 1024px) {
    .gallery__grid {
        max-width: 720px;
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery__item--sm {
        height: 130px;
    }

    .gallery__item--lg,
    .gallery__item--xl {
        height: 268px;
    }
}

@media (max-width: 768px) {

    .gallery__title {
        font-size: 32px;
    }
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery__col {
        gap: 8px;
    }

    .gallery__item--sm,
    .gallery__item--lg,
    .gallery__item--xl {
        height: 170px;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--sm,
    .gallery__item--lg,
    .gallery__item--xl {
        height: 220px;
    }
}


.form__input,
.form__select {
    width: 100%;
    height: 56px;
    border: 1px solid #e4e4e4;
    border-radius: 999px;
    padding: 0 22px;
    background: #fff;
    color: #222;
    font-size: 16px;
    outline: none;
}

.form__input::placeholder {
    color: #999;
}

.form__select {
    appearance: none;
    cursor: pointer;
    color: #222;
    background-image: url("img/icon-select-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 22px center;
    background-size: 12px 8px;
    padding-right: 46px;
}

.form__select.is-selected {
    color: #222;
}

.form__submit {
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(180deg, #3e63f4 0%, #1f46d8 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.form__submit:hover {
    opacity: 0.9;
}

.form__checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form__checkbox input {
    display: none;
}

.form__checkbox-mark {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #d2d2d2;
    background: #fff;
}

.form__checkbox input:checked + .form__checkbox-mark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #ff4b4b;
    border-bottom: 2px solid #ff4b4b;
    transform: rotate(45deg);
}

.form__checkbox-text {
    font-size: 14px;
    line-height: 1.3;
    color: #555;
}

.iti--separate-dial-code .iti__selected-flag {
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}