*{
    font-family: 'Gilroy';
}

.top-cosmetics-header {
       position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 10;
}



.hero-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.hero-nav .hero-nav-item {
    position: relative;
}

.hero-nav .hero-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    line-height: 1.3;
}

.hero-nav .hero-nav-dropdown > .hero-nav-link::after {
    content: "?";
    font-size: 12px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.hero-nav .hero-nav-dropdown:hover > .hero-nav-link::after {
    transform: rotate(180deg);
}

.hero-nav .hero-submenu {
        position: absolute;
    top: calc(100% + 12px);
    left: -15px;
    /* min-width: 220px; */
    background: #fff;
    padding: 10px 0;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 9999;
}

.hero-nav .hero-nav-dropdown:hover .hero-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-nav .hero-submenu a {
    display: block;
    padding: 10px 18px;
    color: #222;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
}

.hero-nav .hero-submenu a:hover {
    background: #f5f5f5;
    color: #000;
}

.top-cosmetics-hero {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* =========================
   ПОЛНЫЕ СТИЛИ ДЛЯ .hero-topbar
   ========================= */
.top-cosmetics-hero .hero-topbar {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 10px 24px;
    background: rgb(255 255 255 / 60%);
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.top-cosmetics-hero .hero-topbar .hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.top-cosmetics-hero .hero-topbar .hero-logo img {
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.top-cosmetics-hero .hero-topbar .hero-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1 1 auto;
    flex-wrap: nowrap;
}

.top-cosmetics-hero .hero-topbar .hero-nav a {
    position: relative;

    align-items: center;
    justify-content: center;
    color: #2f2f2f;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.top-cosmetics-hero .hero-topbar .hero-nav a:hover {
    color: #000;
    opacity: 1;
}

.top-cosmetics-hero .hero-topbar .hero-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.25s ease;
}

.top-cosmetics-hero .hero-topbar .hero-nav a:hover::after {
    width: 100%;
}

/* =========================
   БАННЕР
   ========================= */
.top-cosmetics-banner {
    position: relative;
    min-height: 760px;
    padding: 210px 0 80px;
    background-image: url("../img/topcos-banner.jpg");
    background-size: cover;
    background-position: no-repeat;
    background-repeat: no-repeat;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
    overflow: hidden;
}

.top-cosmetics-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(96 88 80 / 41%);
    z-index: 1;
}

.top-cosmetics-banner .container {
    position: relative;
    z-index: 2;
}

.top-cosmetics-banner .banner-content {
    max-width: 650px;
    color: #fff;
}

.top-cosmetics-banner .banner-content h1 {
    margin: 0 0 28px;
    font-size: 72px;
    line-height: 0.95;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    color: #fff;
}

.top-cosmetics-banner .banner-content p {
    max-width: 560px;
    margin: 0 0 40px;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
}

.top-cosmetics-banner .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 34px;
    background: #fff;
    color: #2f2f2f;
    text-decoration: none;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.top-cosmetics-banner .hero-btn:hover {
    transform: translateY(-2px);
    color: #000;
    background: #fff;
}

.top-cosmetics-banner .hero-btn span {
    font-size: 22px;
    line-height: 1;
    display: inline-block;
}

/* =========================
   ADAPTIVE
   ========================= */
@media (max-width: 1199.98px) {
    .top-cosmetics-hero .hero-topbar {
        max-width: 100%;
    }

    .top-cosmetics-hero .hero-topbar .hero-nav {
        gap: 18px;
    }

    .top-cosmetics-banner .banner-content h1 {
        font-size: 58px;
    }
}

@media (max-width: 991.98px) {
    .top-cosmetics-header {
        top: 20px;
    }

    .top-cosmetics-hero .hero-topbar {
        padding: 12px 18px;
        gap: 18px;
        border-radius: 24px;
    }

    .top-cosmetics-hero .hero-topbar .hero-nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .top-cosmetics-hero .hero-topbar .hero-nav a {
        font-size: 12px;
    }

    .top-cosmetics-banner {
        min-height: 680px;
        padding: 190px 0 70px;
    }

    .top-cosmetics-banner .banner-content h1 {
        font-size: 48px;
    }

    .top-cosmetics-banner .banner-content p {
        font-size: 18px;
        max-width: 520px;
    }
}

@media (max-width: 767.98px) {
    .top-cosmetics-header {
        position: relative;
        top: 0;
        padding-top: 20px;
        margin-bottom: -140px;
        z-index: 10;
    }

    .top-cosmetics-hero .hero-topbar {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
        padding: 18px;
    }

    .top-cosmetics-hero .hero-topbar .hero-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .top-cosmetics-banner {
        min-height: 620px;
        padding: 170px 0 60px;
        border-bottom-left-radius: 26px;
        border-bottom-right-radius: 26px;
    }

    .top-cosmetics-banner .banner-content h1 {
        font-size: 38px;
        line-height: 1;
        margin-bottom: 18px;
    }

    .top-cosmetics-banner .banner-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 28px;
    }

    .top-cosmetics-banner .hero-btn {
        padding: 15px 24px;
        font-size: 16px;
    }
}




.about-section {
    padding: 80px 0;

}

/* Title */
.about-section .about-title {
    font-size: 44px;
    font-weight: 700;
    color: #3f3856;
    margin: 0;
}

.about-section .about-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #5e5a6b;
}

/* Cards */
.about-section .about-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 100%;
    padding: 30px;
    display: flex;
    align-items: flex-end;
    color: #2f2f2f;
}

.about-section .about-card-inner {
    position: relative;
    z-index: 2;
}

.about-section .about-card h3 {
       font-size: 20px;
    font-weight: 600;
    margin: 10px 0 15px;
}

.about-section .about-card p {
        font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Number */
.about-section .about-number {
    font-size: 12px;
    opacity: 0.7;
}

/* Backgrounds */
.about-section .about-card-1 {
    background: linear-gradient(rgba(255,200,190,0.6), rgba(255,200,190,0.6)),
        url('../img/about-home-img-1.jpg') bottom/cover no-repeat;
}

.about-section .about-card-2 {
    background: linear-gradient(rgba(210,210,240,0.6), rgba(210,210,240,0.6)),
        url('../img/about-home-img-2.png') center/cover no-repeat;
}

.about-section .about-card-3 {
    background: linear-gradient(rgba(170,220,220,0.6), rgba(170,220,220,0.6)),
        url('../img/about-home-img-3.jpg') center/cover no-repeat;
}

/* Stats */
.about-section .about-stats {
    position: relative;
    overflow: hidden;
    padding: 70px 65px 60px;
    border-radius: 46px;
    background-color: #efeff2b3;
    z-index: 1;
}

/* фон: серый слой + картинка справа */
.about-section .about-stats::before {
       content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(255 255 255), rgb(255 255 255 / 0%)), url(../img/Waves-back.svg) right center / cover no-repeat;
    z-index: -2;
}

.about-section .col-lg-4:nth-child(1) .about-card {
    align-items: flex-start;
}

.about-section .col-lg-4:nth-child(2) .about-card {
    align-items: center;
}

.about-section .col-lg-4:nth-child(3) .about-card {
    align-items: flex-end;
}

/* дополнительная мягкая подсветка справа */
.about-section .about-stats::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8%;
    width: 58%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(232, 223, 241, 0.65) 0%, rgba(232, 223, 241, 0.18) 55%, rgba(232, 223, 241, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.about-section .stat-item {
    position: relative;
}

/* лесенка */
.about-section .stat-item--1 {
    margin-top: 0;
}

.about-section .stat-item--2 {
    margin-top: 72px;
}

.about-section .stat-item--3 {
    margin-top: 0;
}

.about-section .stat-item--4 {
    margin-top: 72px;
}

.about-section .stat-number {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 76px;
    line-height: 0.95;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #9d90d8 0%, #c7acd6 48%, #e0b5b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-section .stat-text {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
    color: #3f4350;
    text-transform: uppercase;
    max-width: 220px;
}

.about-section .about-stats {
    position: relative;
    overflow: hidden;
    padding: 70px 60px;
    border-radius: 40px;
    background:
        linear-gradient(135deg, #efeff2b3, #efeff2b3),
        url('../img/Waves-back.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-section .stats-row {
    align-items: flex-start;
}

.about-section .stats-col {
    position: relative;
}

/* вот сама лесенка */
.about-section .stats-col-1 {
    transform: translateY(0);
}

.about-section .stats-col-2 {
    transform: translateY(40px);
}

.about-section .stats-col-3 {
    transform: translateY(0);
}

.about-section .stats-col-4 {
    transform: translateY(40px);
}

.about-section .stat-item {
    text-align: left;
}

.about-section .stat-number {
    margin-bottom: 16px;
    font-size: 72px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #9f90df 0%, #b79fd8 55%, #e4b2bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.stat-text {
    font-size: 15px;
    line-height: 1.25;
    font-weight: 500;
    text-transform: uppercase;
    color: #3f4350;
    max-width: 220px;
}

/* планшет */
@media (max-width: 1199px) {
    .about-section .about-stats {
        padding: 55px 35px;
    }

    .about-section .stat-number {
        font-size: 58px;
    }

    .about-section .stats-col-2,
    .about-section .stats-col-4 {
        transform: translateY(28px);
    }
}

/* мобилка */
@media (max-width: 991px) {
    .about-section .about-stats {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .stats-col-1,
    .stats-col-2,
    .stats-col-3,
    .stats-col-4 {
        transform: none;
    }

    .about-section .stat-number {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .about-section .stat-text {
        font-size: 13px;
        max-width: 100%;
    }
}

/* Tablet */
@media (max-width: 1199px) {
    .about-section .about-stats {
        padding: 55px 40px 45px;
        border-radius: 34px;
    }

    .about-section .stat-number {
        font-size: 58px;
    }

    .about-section .stat-item--2,
    .about-section .stat-item--4 {
        margin-top: 50px;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .about-section .about-stats {
        padding: 35px 24px 30px;
        border-radius: 26px;
    }

    .about-section .about-stats::before {
        background:
            linear-gradient(135deg, rgba(239, 239, 242, 0.96), rgba(239, 239, 242, 0.9)),
            url('../img/Waves-back.svg') center center / cover no-repeat;
    }

    .about-section .stat-item {
        margin-top: 0 !important;
    }

    .about-section .stat-number {
        font-size: 42px;
        margin-bottom: 12px;
    }

    .about-section .stat-text {
        font-size: 13px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .about-section .about-stats {
        padding: 28px 18px 24px;
        border-radius: 22px;
    }

    .about-section .stat-number {
        font-size: 44px;
    }

    .about-section .stat-text {
        font-size: 12px;
        line-height: 1.25;
    }
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 72px;
    padding: 18px 28px;
    border: 1.5px solid #4b4f59;
    border-radius: 999px;
    background: transparent;
    text-decoration: none;
    transition: all 0.25s ease;
        margin-top: 32px;
}

.about-btn__text {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    color: #4b4f59;
}

.about-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b4f59;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.about-btn:hover {
    background: #4b4f59;
    border-color: #4b4f59;
}

.about-btn:hover .about-btn__text,
.about-btn:hover .about-btn__icon {
    color: #ffffff;
}

.about-btn:hover .about-btn__icon {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .about-btn {
        min-height: 58px;
        padding: 14px 22px;
        gap: 14px;
                width: 100%;
    }

    .about-btn__text {
        font-size: 16px;
    }

    .about-btn__icon svg {
        width: 9px;
        height: 15px;
    }
}







.brands-section {
    padding: 40px 0;
}


   .brands-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    border-radius: 64px;
    padding: 64px;
    background: linear-gradient(180deg, #f8f9fa 0%, #f1f3f500 100%), url(../img/brands-back.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: cover, cover;

}





.brands-title {
       margin: 0 0 36px;
    text-align: center;
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    color: #3e3568;
}

.brands-carousel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-bottom: 26px;
}

.brands-nav {
    width: 30px;
    height: 30px;
    border: 1px solid #dfdfe3;
    border-radius: 6px;
    background: #f7f7f8;
    color: #666a73;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.brands-nav:hover {
    background: #3e3568;
    border-color: #3e3568;
    color: #fff;
}

.brands-carousel {
    width: 100%;;
}

.brands-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.brand-slide {
    padding: 8px 10px;
}

.brand-card {
    height: 164px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e8e8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    transition: all 0.3s ease;
    opacity: 0.8;
    transform: scale(0.92);
    box-shadow: none;
}

.brand-card img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.brands-carousel .owl-item.center .brand-card {
    background: linear-gradient(135deg, #ddd7ea 0%, #ecdde1 100%);
    border-color: #e2d8e8;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(130, 111, 160, 0.08);
}

.brands-carousel .owl-item:not(.center) .brand-card {
    background: #fafafa;
}

.brands-description {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
    color: #555965;
}

.brands-bottom {
    position: relative;
    margin-top: 40px;
    min-height: 72px;
}

.brands-dots-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands-dots-wrap .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.brands-dots-wrap .owl-dot {
    margin: 0;
        background: no-repeat;
    border: 0px;
}

.brands-dots-wrap .owl-dot span {
    display: block;
    width: 9px;
    height: 9px;
    margin: 0;
    border-radius: 50%;
    background: #d8d8dd;
    transition: all 0.25s ease;
}

.brands-dots-wrap .owl-dot.active span {
    background: #aeb4bc;
}

.brands-btn {
    position: absolute;
    right: 0;
    top: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 60px;
    padding: 30px 70px;
    border: 1.5px solid #50545e;
    border-radius: 999px;
    background: transparent;
    text-decoration: none;
    transition: all 0.25s ease;
}

.brands-btn__text {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    color: #50545e;
}

.brands-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #50545e;
    transition: transform 0.25s ease;
}

.brands-btn:hover {
    background: #50545e;
    border-color: #50545e;
}

.brands-btn:hover .brands-btn__text,
.brands-btn:hover .brands-btn__icon {
    color: #fff;
}

.brands-btn:hover .brands-btn__icon {
    transform: translateX(3px);
}

/* tablet */
@media (max-width: 1199px) {
    .brands-box {
        padding: 55px 35px 110px;
    }

    .brands-title {
        font-size: 44px;
    }

    .brands-description {
        font-size: 16px;
        max-width: 500px;
    }
}

/* mobile */
@media (max-width: 991px) {
    .brands-box {
        padding: 40px 20px 95px;
        border-radius: 24px;
    }

    .brands-title {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .brands-carousel-wrap {
        gap: 10px;
    }

    .brand-card {
        height: 82px;
        border-radius: 16px;
        padding: 14px;
    }

    .brands-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .brands-btn {
        position: static;
        margin: 28px auto 0;
        display: inline-flex;
    }

    .brands-bottom {
        min-height: auto;
        margin-top: 28px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .brands-nav {
        width: 28px;
        height: 28px;
    }

    .brands-title {
        font-size: 36px;
                text-align: justify;
    }

    .brands-description {
        font-size: 14px;
    }

    .brands-btn {
        min-height: 54px;
        padding: 14px 24px;
        width: 100%;
    }

    .brands-btn__text {
        font-size: 16px;
    }
}



.advantages-section {
    padding: 80px 0;
}

.advantages-section .advantages-title {
   margin: 0 0 36px;
    text-align: center;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: #3e3568;
}

/* карточка */
.advantages-section .adv-card {

    gap: 18px;
    padding: 26px 30px;
    border-radius: 24px;
    background: #f3f4f6;
    transition: all 0.25s ease;
}

.advantages-section .adv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* иконка */
.advantages-section .adv-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-bottom: 24px;
}


.advantages-section .adv-text {
    font-size: 16px;
    line-height: 1.4;
    color: #4a4f5c;
}

/* адаптив */
@media (max-width: 991px) {
    .advantages-section .advantages-title {
        margin-bottom: 30px;
                font-size: 36px;
    }

    .advantages-section .adv-card {
        padding: 20px;
    }

   .advantages-section  .adv-text {
        font-size: 14px;
    }
}



.advantages-video-section {
    padding: 20px 0 0;
}

.advantages-video {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    background: #d9d9d9;
}

.advantages-video img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 640px;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* легкое высветление как на макете */
.advantages-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 51%);
    z-index: 1;
    transition: background 0.3s ease;
}

.advantages-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.advantages-video:hover img {
    transform: scale(1.03);
}

.advantages-video:hover::before {
    background: rgba(255, 255, 255, 0.28);
}

.advantages-video:hover .advantages-video__play {
    transform: translate(-50%, -50%) scale(1.08);
}

@media (max-width: 991px) {
    .advantages-video-section {
        padding: 40px 0 0;
    }

    .advantages-video img {
        min-height: 240px;
    }

    .advantages-video__play {
        width: 68px;
        height: 68px;
    }

    .advantages-video__play svg {
        width: 28px;
        height: 32px;
    }
}

@media (max-width: 575px) {
    .advantages-video img {
        min-height: 190px;
    }

    .advantages-video__play {
        width: 58px;
        height: 58px;
    }

    .advantages-video__play svg {
        width: 24px;
        height: 28px;
    }
}




.training-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.training-top {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 40px;
    align-items: start;
    margin-bottom: 28px;
}

.training-title {
    margin: 0;
    font-size: 60px;
    line-height: 1;
    font-weight: 600;
    color: #3f3568;
}

.training-text {
    font-size: 18px;
    line-height: 1.65;
    color: #555965;
}

.training-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 28px;
}

.training-nav-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.training-nav {
    width: 32px;
    height: 32px;
    border: 1px solid #ececef;
    border-radius: 6px;
    background: #fcfcfc;
    color: #666a73;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.training-nav:hover {
    background: #3d434d;
    border-color: #3d434d;
    color: #fff;
}

.training-month {
    min-width: 110px;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    color: #4c4f59;
    text-transform: uppercase;
}

.training-row {
    margin-bottom: 28px;
}

.training-card {
    position: relative;
    height: 100%;
    padding: 26px 20px 20px;
    border: 1px solid #ececef;
    border-radius: 28px;
    background: #f3f4f6;
}

.training-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-transform: lowercase;
}

.training-badge--pink {
    background: #efb6d2;
    color: #6a4e63;
}

.training-badge--purple {
    background: #b8a8ea;
    color: #4f476f;
}

.training-card-title {
    margin: 0 0 18px;
    padding-right: 110px;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 500;
    color: #3d434d;
}

.training-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.training-author img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.training-author span {
    font-size: 14px;
    line-height: 1.2;
    color: #4f5461;
    text-transform: uppercase;
}

.training-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 18px;
}

.training-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    line-height: 1.2;
    color: #6a5d8c;
}

.training-meta-item svg {
    flex-shrink: 0;
}

.training-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #5c616d;
    margin-bottom: 22px;
}

.training-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 16px 22px;
    border-radius: 999px;
    background: #343a43;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    transition: all 0.25s ease;
}

.training-card-btn:hover {
    background: #20252c;
    color: #fff;
}

.training-bottom {
    display: flex;
    justify-content: flex-end;
}

.training-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 64px;
    padding: 16px 34px;
    border: 1.5px solid #50545e;
    border-radius: 999px;
    background: transparent;
    color: #50545e;
    text-decoration: none;
    transition: all 0.25s ease;
}

.training-more-btn:hover {
    background: #50545e;
    color: #fff;
}

.training-more-btn span {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .training-title {
        font-size: 48px;
    }

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

    .training-month {
        font-size: 24px;
    }

    .training-card-title {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .training-section {
        padding: 60px 0;
    }

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

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

    .training-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .training-nav-wrap {
        justify-content: flex-start;
    }

    .training-month {
        min-width: auto;
    }

    .training-card-title {
        padding-right: 0;
        font-size: 20px;
    }

    .training-badge {
        position: static;
        margin-bottom: 16px;
    }

    .training-bottom {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .training-title {
        font-size: 32px;
    }

    .training-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .training-card {
        padding: 20px 16px 16px;
        border-radius: 22px;
    }

    .training-card-title {
        font-size: 18px;
        line-height: 1.35;
    }

    .training-author span,
    .training-meta-item,
    .training-desc {
        font-size: 13px;
    }

    .training-card-btn,
    .training-more-btn {
        min-height: 56px;
    }

    .training-more-btn span {
        font-size: 16px;
    }
}



.programs-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.programs-section .programs-title {
       margin: 0 0 42px;
    text-align: center;
    font-size: 41px;
    line-height: 1;
    font-weight: 600;
    color: #3f3568;
}

.programs-section .programs-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.programs-section .program-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 22px;
    padding: 14px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #edf0f2;
}

.programs-section .program-card__image {
    border-radius: 22px;
    overflow: hidden;
    min-height: 165px;
}

.programs-section .program-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 165px;
    object-fit: cover;
}

.programs-section .program-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 6px 6px 0 0;
}

.programs-section .program-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.programs-section .program-card__title {
    margin: 0;
    max-width: 520px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    color: #2f333b;
}

.programs-section .program-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.programs-section .program-card__badge--green {
    background: #bfe8e2;
    color: #4d8079;
}

.programs-section .program-card__badge--gray {
    background: #d9dde1;
    color: #7e858d;
}

.programs-section .program-card__text {
    max-width: 590px;
    font-size: 15px;
    line-height: 1.7;
    color: #59606c;
    margin-bottom: 18px;
}

.programs-section .program-card__bottom {
    display: flex;
    justify-content: flex-end;
}

.programs-section .program-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #343a43;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    transition: all 0.25s ease;
}

.programs-section .program-card__btn:hover {
    background: #20252c;
    color: #fff;
}

.programs-section .programs-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
}

.programs-section .programs-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 58px;
    padding: 14px 28px;
    border: 1.5px solid #50545e;
    border-radius: 999px;
    background: transparent;
    color: #50545e;
    text-decoration: none;
    transition: all 0.25s ease;
}

.programs-section .programs-more-btn:hover {
    background: #50545e;
    color: #fff;
}

.programs-section .programs-more-btn span {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .programs-section .programs-title {
        font-size: 44px;
    }

    .programs-section .program-card {
        grid-template-columns: 210px 1fr;
    }

    .programs-section .program-card__title {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .programs-section .programs-section {
        padding: 60px 0;
    }

    .programs-section .program-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .programs-section .program-card__image,
    .programs-section .program-card__image img {
        min-height: 220px;
    }

    .programs-section .program-card__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .programs-section .program-card__title,
    .programs-section .program-card__text {
        max-width: 100%;
    }

    .programs-section .program-card__bottom,
    .programs-section .programs-bottom {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .programs-section .programs-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

   .programs-section  .program-card {
        padding: 12px;
        border-radius: 22px;
    }

    .programs-section .program-card__image {
        border-radius: 18px;
    }

    .programs-section .program-card__image,
    .programs-section .program-card__image img {
        min-height: 180px;
    }

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

    .programs-section .program-card__text {
        font-size: 14px;
        line-height: 1.6;
    }

    .programs-section .program-card__btn {
        width: 100%;
        min-width: 0;
    }

    .programs-section .programs-more-btn {
        width: 100%;
    }
}






.industry-banner-section {
    padding: 0;
}

.industry-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
}

.industry-banner img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.industry-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 25, 35, 0.32);
}

.industry-banner__content {
    position: absolute;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1320px;
    padding: 0 32px;
    z-index: 2;
}

.industry-banner__content h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

@media (max-width: 1199px) {
    .industry-banner {
        min-height: 360px;
    }

    .industry-banner img {
        min-height: 360px;
    }

    .industry-banner__content h2 {
        font-size: 44px;
    }
}

@media (max-width: 991px) {
    .industry-banner {
        min-height: 300px;
    }

    .industry-banner img {
        min-height: 300px;
    }

    .industry-banner__content {
        bottom: 28px;
        padding: 0 20px;
    }

    .industry-banner__content h2 {
        font-size: 34px;
        line-height: 1.15;
    }
}

@media (max-width: 575px) {
    .industry-banner {
        min-height: 240px;
    }

    .industry-banner img {
        min-height: 240px;
    }

    .industry-banner__content h2 {
        font-size: 36px;
    }
}







.app-section {
    position: relative;
    padding: 100px 0;
    background: #f4f5f7;
    overflow: hidden;
}

/* фон волна */
.app-section::before {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: url(../img/app-back.png);
    z-index: 0;
}

.app-section .app-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.app-section .app-content {
    max-width: 520px;
}

.app-section .app-title {
       margin: 0 0 32px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;
    color: #3e3568;
}

.app-section .app-text {
    font-size: 17px;
    line-height: 1.7;
    color: #5b5f6b;
    margin-bottom: 28px;
}

.app-section .app-buttons {
    display: flex;
    gap: 16px;
}

.app-section .app-store-btn img {
    height: 52px;
    display: block;
}

/* телефоны */
.app-section .app-phones {
    position: relative;
    width: 420px;
    height: 480px;
}

.app-section .phone {
    position: absolute;
    height: auto;
}

/* правый телефон */
.app-section .phone-1 {
    right: 0;
    top: 0;
    transform: rotate(10deg);
}

/* левый */
.app-section .phone-2 {
    left: 40px;
    bottom: 0;
    transform: rotate(-8deg);
}

/* адаптив */
@media (max-width: 1199px) {
    .app-section .app-title {
        font-size: 46px;
    }

    .app-section .app-phones {
        width: 340px;
        height: 420px;
    }

    .app-section .phone {
        max-width: 220px;
    }
}

@media (max-width: 991px) {
    .app-section .app-row {
        flex-direction: column;
        text-align: center;
    }

    .app-section .app-content {
        max-width: 100%;
    }

    .app-section .app-buttons {
        justify-content: center;
    }

    .app-section .app-phones {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .app-section {
        padding: 60px 0;
    }

    .app-section .app-title {
        font-size: 32px;
    }

    .app-section .app-text {
        font-size: 15px;
    }

    .app-section .app-store-btn img {
        height: 44px;
    }

    .app-section .app-phones {
        width: 260px;
        height: 320px;
    }

    .app-section .phone {
        max-width: 160px;
    }
}


.news-section {
    padding: 100px 0;
    background: #f3f4f6;
    border-radius: 40px;
}

.news-section .news-title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #3e3568;
}

/* карточка */
.news-section .news-card {
    height: 100%;
    border-radius: 30px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.news-section .news-card__image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-section .news-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* контент */
.news-section .news-card__title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #2f333b;
}

.news-section .news-card__date {
    font-size: 14px;
    color: #8a8f9b;
    margin-bottom: 12px;
}

.news-section .news-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #5b5f6b;
    margin-bottom: 20px;
}

/* кнопка */
.news-section .news-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1.5px solid #50545e;
    text-decoration: none;
    color: #50545e;
    font-size: 14px;
    transition: 0.25s;
}

.news-section .news-card__btn:hover {
    background: #50545e;
    color: #fff;
}

/* низ */
.news-section .news-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.news-section .news-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1.5px solid #50545e;
    text-decoration: none;
    color: #50545e;
    transition: 0.25s;
}

.news-section .news-more-btn:hover {
    background: #50545e;
    color: #fff;
}

/* адаптив */
@media (max-width: 991px) {
    .news-section .news-title {
        font-size: 36px;
    }

    .news-section .news-card__image img {
        height: 180px;
    }

    .news-section .news-bottom {
        justify-content: center;
    }
}





.site-footer {
    padding: 40px 0 0px;
    background: #ffffff;
}

.site-footer .footer-top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.site-footer .footer-top-menu a {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #3f434d;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer .footer-top-menu a:hover {
    color: #3f3568;
}

.site-footer .footer-address{
        color: white;
    display: block;
}
.site-footer .footer-phone{
        color: white;
    display: block;
    margin-top: 24px;
}
.site-footer .footer-phone a{
    color: white;
    text-decoration: none;
}
.site-footer .footer-email{
    color: white;
}
.site-footer .footer-email a{
    color: white;
    text-decoration: none;
}
.site-footer .footer-sale-points{
        color: white;
    display: block;
    margin-top: 24px;
}

.site-footer .footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding: 44px 52px;
    border-radius: 64px;
    background: #1e1535;
}
.site-footer   .footer-bottom-wrap{
          background: #F1F3F5;
    padding: 24px 0;
  }

.site-footer .footer-col--left {
    text-align: left;
}

.site-footer .footer-col--center {
    text-align: center;
}

.site-footer .footer-col--right {
    text-align: right;
}

.site-footer .footer-logo {
    margin-bottom: 28px;
}

.site-footer .footer-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.site-footer .footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.site-footer .footer-socials a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-footer .footer-socials a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.site-footer .footer-text {
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
    color: #ffffff;
}

.footer-text + .footer-text {
    margin-top: 28px;
}

.site-footer .footer-text a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer .footer-text a:hover {
    text-decoration: underline;
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy,
.footer-links,
.footer-links a,
.footer-links span {
    font-size: 15px;
    line-height: 1.3;
    color: #9aa0ab;
    text-decoration: none;
}

.site-footer .footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-footer .footer-links a:hover {
    color: #3f3568;
}
.site-footer .footer-main-wrap{
        border-radius: 64px 64px 0px 0px;
    background: #1e1535;
}

@media (max-width: 1199px) {
    .footer-main {
        padding: 36px 32px;
        border-radius: 40px;
        gap: 24px;
    }

    .footer-logo img {
        max-width: 240px;
    }

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

@media (max-width: 991px) {
    .footer-top-menu {
        justify-content: center;
        margin-bottom: 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 20px;
    }

    .footer-col--left,
    .footer-col--center,
    .footer-col--right {
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-text + .footer-text {
        margin-top: 18px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

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

    .footer-top-menu a {
        font-size: 14px;
    }

    .footer-main {
        border-radius: 26px;
    }

    .footer-text {
        font-size: 15px;
    }

    .footer-copy,
    .footer-links,
    .footer-links a,
    .footer-links span {
        font-size: 13px;
    }

    .footer-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}




.contact-page-form .cf7-custom-contact-form {
    width: 100%;
    max-width: 640px;
}

.contact-page-form .cf7-custom-contact-form .cf7-field {
    margin-bottom: 20px;
}

.contact-page-form .cf7-custom-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: #2d3137;
}
.contact-page-form br{
    display: none;
}
.contact-page-form{
    padding: 120px 0;
}

.contact-page-form .cf7-custom-contact-form input[type="text"],
.contact-page-form .cf7-custom-contact-form input[type="tel"],
.contact-page-form .cf7-custom-contact-form input[type="email"],
.contact-page-form .cf7-custom-contact-form textarea {
    width: 100%;
    height: 62px;
    padding: 0 12px;
    border: none;
    outline: none;
    border-radius: 24px;
    background: #f0f2f4;
    color: #2d3137;
    font-size: 13px;
    font-weight: 400;
    box-sizing: border-box;
}

.contact-page-form .cf7-custom-contact-form textarea {
    height: 123px;
    resize: none;
    padding-top: 16px;
    border-radius: 24px;
}

.contact-page-form .cf7-custom-contact-form input::placeholder,
.contact-page-form .cf7-custom-contact-form textarea::placeholder {
    color: #b7bec7;
    opacity: 1;
}

.contact-page-form .cf7-custom-contact-form .wpcf7-form-control-wrap {
    display: block;
}

.contact-page-form .cf7-submit-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
}

.contact-page-form .cf7-submit-wrap input[type="submit"] {
    width: 173px;
    height: 45px;
    padding: 0 52px 0 42px;
    border: 1px solid #2d3137;
    border-radius: 28px;
    background: transparent;
    color: #2d3137;
    font-size: 13px;
    font-weight: 600;
    line-height: 45px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.contact-page-form .cf7-submit-wrap input[type="submit"]:hover {
    background: #2d3137;
    color: #fff;
}

.contact-page-form .cf7-submit-arrow {
    position: absolute;
    right: 43px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #2d3137;
    border-right: 1.5px solid #2d3137;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: all 0.25s ease;
}

.contact-page-form .cf7-submit-wrap:hover .cf7-submit-arrow {
    border-color: #fff;
    right: 38px;
}

/* CF7 loader */
.contact-page-form .cf7-custom-contact-form .wpcf7-spinner {
    position: absolute;
    right: -35px;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
}

/* Ошибки */
.contact-page-form .cf7-custom-contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12px;
    color: #d63638;
}

.contact-page-form .cf7-custom-contact-form .wpcf7-response-output {
    margin: 18px 0 0;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
}

/* Mobile */
@media (max-width: 575px) {
    .contact-page-form .cf7-custom-contact-form {
        max-width: 100%;
    }

    .contact-page-form .cf7-custom-contact-form input[type="text"],
    .contact-page-form .cf7-custom-contact-form input[type="tel"],
    .contact-page-form .cf7-custom-contact-form input[type="email"],
    .contact-page-form .cf7-custom-contact-form textarea {
        height: 44px;
    }

    .contact-page-form .cf7-custom-contact-form textarea {
        height: 123px;
    }
}


.contact-page-form .text-block h3{
        margin: 0 0 48px;
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    color: #3B315B;
}
.contact-page-form .text-block p{
        font-size: 20px;
    padding-right: 120px;
}






.tc-brand-page-wrap__hero{
        position: relative;
    min-height: 600px;
    padding: 210px 0 80px;
    background-image: url(../img/brand-banner.jpg);
    background-size: cover;
    background-position: no-repeat;
    background-repeat: no-repeat;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
    overflow: hidden;
}
.tc-brand-page-wrap__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(96 88 80 / 64%);
    z-index: 1;
}

.tc-brand-page-wrap__hero .banner-content h1 {
       font-size: 52px;
    line-height: 0.95;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: -1.5px;
    margin: 0 0 40px;
    color: #fff;
    max-width: 70%;
}

.tc-brand-page-wrap__hero .banner-content{
    z-index: 9;
    position: relative;
}

.tc-brand-page-wrap__hero .wrap-btn a{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 34px;
    background: #fff;
    color: #2f2f2f;
    text-decoration: none;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.tc-brand-page-wrap__hero .wrap-btn span {
    font-size: 22px;
    line-height: 1;
    display: inline-block;
}


.about-section.about-brand{
        background: linear-gradient(135deg, #F9F8FD 0%, #FDF7FA 50%, #FFFCFB 100%);
}

.about-section.about-brand .stat-number{
    background: #3B315B;
        -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}




.christina-problems-section {
    padding: 120px 0 120px;
    background: #ffffff;
    font-family: inherit;
}

.christina-problems-section .container {
    margin: 0 auto;
    padding: 0 15px;
}

.christina-problems-title {
       margin: 0px 0 48px;
    text-align: center;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #3f365f;
}

.christina-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
}

.christina-problem-item {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #2f2f3a;
}
.christina-problem-item span{
    font-size: 18px;
}

.christina-problem-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
}

.christina-problem-icon i {
    line-height: 1;
}

/* Items colors */
.christina-problem-item.item-pink {
    background: #fdeeee;
}

.christina-problem-item.item-pink .christina-problem-icon {
    background: #f6aaa2;
}

.christina-problem-item.item-rose {
    background: #f8e7ef;
}

.christina-problem-item.item-rose .christina-problem-icon {
    background: #df82ad;
}

.christina-problem-item.item-purple {
    background: #f0eef8;
}

.christina-problem-item.item-purple .christina-problem-icon {
    background: #aaa3dd;
}

.christina-problem-item.item-yellow {
    background: #fff5d7;
}

.christina-problem-item.item-yellow .christina-problem-icon {
    background: #ffc846;
}

.christina-problem-item.item-mint {
    background: #def3ef;
}

.christina-problem-item.item-mint .christina-problem-icon {
    background: #70c7bd;
}

.christina-problem-item.item-blue {
    background: #edf4fb;
}

.christina-problem-item.item-blue .christina-problem-icon {
    background: #b8d8f3;
}

/* Mobile */
@media (max-width: 767px) {
    .christina-problems-section {
        padding: 30px 0;
    }

    .christina-problems-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .christina-problems-title br {
        display: none;
    }

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

    .christina-problem-item {
        min-height: 54px;
        border-radius: 16px;
        font-size: 15px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .christina-problems-title {
        font-size: 23px;
    }
}







.christina-lines-section {
    position: relative;
    padding: 42px 0 78px;
    background: #ffffff;
    overflow: hidden;
}

.christina-lines-bg {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -90px;
    height: 300px;
    background: #f7f8fb;
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
    z-index: 1;
}

.christina-lines-container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 18px;
}

.christina-lines-title {
       margin: 0px 0 48px;
    text-align: center;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #3f365f;
}

.christina-lines-carousel {
    position: relative;
}

.christina-line-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 10px 10px 28px;
    min-height: 535px;
    border: 1px solid #e9eaf1;
    box-shadow: 0 10px 24px rgba(42, 48, 72, 0.09);
    overflow: hidden;
    transition: 0.3s ease;
}
.christina-lines-carousel .owl-item {
    padding: 10px 8px 18px;
    box-sizing: border-box;
}

.christina-line-img {
    width: 100%;
    height: 290px;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f4f6;
}

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

.christina-line-content {
    padding: 18px 2px 0;
}

.christina-line-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    color: #30333b;
}

.christina-line-content p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 400;
    color: #4d5059;
}

/* Owl arrows */
.christina-lines-carousel .owl-nav {
    margin: 0;
}

.christina-lines-carousel .owl-nav button.owl-prev,
.christina-lines-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 250px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 16px rgba(30, 35, 60, 0.14);
    border: 1px solid rgba(230, 232, 240, 0.9) !important;
    color: #20232a !important;
    font-size: 0 !important;
    transition: 0.25s ease;
}

.christina-lines-carousel .owl-nav button.owl-prev {
    left: -2px;
}

.christina-lines-carousel .owl-nav button.owl-next {
    right: -2px;
}

.christina-lines-carousel .owl-nav button.owl-prev:hover,
.christina-lines-carousel .owl-nav button.owl-next:hover {
    background: #f7f7fb !important;
}

.christina-lines-carousel .owl-nav button.owl-prev:before,
.christina-lines-carousel .owl-nav button.owl-next:before {
    font-size: 26px;
    line-height: 38px;
    font-weight: 300;
    color: #343743;
}

.christina-lines-carousel .owl-nav button.owl-prev:before {
    content: "<";
}

.christina-lines-carousel .owl-nav button.owl-next:before {
    content: ">";
}

.christina-lines-carousel .owl-dots {
    display: none;
}

.christina-lines-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 72%;
    background-image: url('/wp-content/uploads/2026/04/brand-product-back-1.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .christina-lines-container {
        max-width: 720px;
    }

    .christina-lines-title {
        font-size: 32px;
    }

    .christina-line-card {
        min-height: 510px;
    }

    .christina-line-img {
        height: 270px;
    }
}

@media (max-width: 767px) {
    .christina-lines-section {
        padding: 34px 0 60px;
    }

    .christina-lines-title {
        font-size: 28px;
        margin-bottom: 26px;
    }

    .christina-line-card {
        min-height: auto;
    }

    .christina-line-img {
        height: 260px;
    }

    .christina-lines-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .christina-lines-carousel .owl-nav button.owl-next {
        right: 0;
    }
}




.christina-benefits-section {
    padding: 120px 0 70px;
    background: linear-gradient(135deg, #F9F8FD 0%, #FDF7FA 50%, #FFFCFB 100%);
    position: relative;
}

.christina-benefits-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.christina-benefits-title {
       margin: 0px 0 48px;
    text-align: center;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #3f365f;
}

.christina-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 18px;
}

.christina-benefit-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px 24px 26px;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 6px 18px rgba(57, 53, 87, 0.04);
}

.christina-benefit-card.small-card {
    min-height: 110px;
}

.christina-benefit-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}


.christina-benefit-icon.purple {
    background: #aaa1de;
}

.christina-benefit-icon.green {
    background: #6fc9be;
}

.christina-benefit-icon.peach {
    background: #efb4a2;
}

.christina-benefit-icon.blue {
    background: #b6cff0;
}

.christina-benefit-icon.pink {
    background: #de9bc3;
}

.christina-benefit-icon.yellow {
    background: #f1c33a;
}

.christina-benefit-text {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #53535e;
}

.christina-benefits-btn-wrap {
    text-align: center;
    margin-top: 48px;
}

.christina-benefits-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 18px 34px;
    border-radius: 999px;
    background: #343b45;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.christina-benefits-btn:hover {
    background: #2b3139;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .christina-benefits-title {
        font-size: 34px;
    }

    .christina-benefit-text {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .christina-benefits-section {
        padding: 60px 0 55px;
    }

    .christina-benefits-title {
        font-size: 28px;
        margin-bottom: 34px;
    }

    .christina-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .christina-benefit-card,
    .christina-benefit-card.small-card {
        min-height: auto;
        padding: 22px 20px 24px;
        border-radius: 24px;
    }

    .christina-benefit-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .christina-benefits-btn {
        width: 100%;
        min-width: unset;
        padding: 16px 22px;
        font-size: 16px;
    }
}


@media (max-width: 480px) {
    .christina-lines-container {
        padding: 0 14px;
    }

    .christina-lines-title {
        font-size: 26px;
    }

    .christina-line-img {
        height: 245px;
    }

    .christina-line-content h3 {
        font-size: 19px;
    }

    .christina-line-content p {
        font-size: 13px;
    }
}








.christina-training-section {
    padding: 120px 0 120px;
}

.christina-training-title {
      margin: 0px 0 48px;
    text-align: center;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #3f365f;
}



.christina-training-card {
    display: flex;
    align-items: stretch;
    gap: 18px;
    padding: 10px;
    margin-bottom: 14px;
    background: #ffffff;
    border: 1px solid #e7e4ea;
    border-radius: 38px;
    overflow: hidden;
}

.christina-training-card:last-child {
    margin-bottom: 0;
}

.christina-training-card-image {
    width: 342px;
    min-width: 342px;
    border-radius: 28px;
    overflow: hidden;
}

.christina-training-card-image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    display: block;
    object-fit: cover;
}

.christina-training-card-content {
    flex: 1;
    padding: 8px 12px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.christina-training-card-content h3 {
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #3c4048;
}

.christina-training-card-text {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: #555862;
}

.christina-training-card-btn-wrap {
    margin-top: auto;
    padding-top: 24px;
    text-align: right;
}

.christina-training-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 255px;
    padding: 18px 34px;
    border-radius: 999px;
    background: #353c46;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.christina-training-card-btn:hover {
    background: #2c323a;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .christina-training-title {
        font-size: 34px;
    }

    .christina-training-card {
        flex-direction: column;
        border-radius: 30px;
    }

    .christina-training-card-image {
        width: 100%;
        min-width: 100%;
    }

    .christina-training-card-image img {
        min-height: 280px;
    }

    .christina-training-card-content {
        padding: 8px 10px 14px;
    }

    .christina-training-card-text {
        max-width: 100%;
    }

    .christina-training-card-btn-wrap {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .christina-training-section {
        padding: 60px 0 55px;
    }

    .christina-training-title {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .christina-training-card {
        padding: 8px;
        border-radius: 24px;
        gap: 14px;
    }

    .christina-training-card-image {
        border-radius: 20px;
    }

    .christina-training-card-image img {
        min-height: 220px;
    }

    .christina-training-card-content h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .christina-training-card-text {
        font-size: 14px;
        line-height: 1.65;
    }

    .christina-training-card-btn-wrap {
        padding-top: 20px;
    }

    .christina-training-card-btn {
        width: 100%;
        min-width: 100%;
        padding: 16px 22px;
        font-size: 15px;
    }
}





.brand-page-about-section {
    padding: 70px 0 64px;
    background: #fbf7fb;
}

.brand-page-about-wrap {
    margin: 0 auto;
    display: flex;
    gap: 62px;
}

.brand-page-about-content {
    width: 48%;
}

.brand-page-about-title {
    margin: 0 0 28px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #43396a;
}

.brand-page-about-text p {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
    color: #4d5059;
}

.brand-page-about-text p:last-child {
    margin-bottom: 0;
}

.brand-page-about-image {
    width: 52%;
    border-radius: 22px;
    overflow: hidden;
}

.brand-page-about-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 22px;
}

@media (max-width: 991px) {
    .brand-page-about-wrap {
        gap: 36px;
        align-items: flex-start;
    }

    .brand-page-about-title {
        font-size: 32px;
    }

    .brand-page-about-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .brand-page-about-image img {
        height: 390px;
    }
}

@media (max-width: 767px) {
    .brand-page-about-section {
        padding: 55px 0;
    }

    .brand-page-about-wrap {
        flex-direction: column;
        gap: 28px;
    }

    .brand-page-about-content,
    .brand-page-about-image {
        width: 100%;
    }

    .brand-page-about-title {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .brand-page-about-image {
        order: -1;
    }

    .brand-page-about-image img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .brand-page-about-title {
        font-size: 26px;
    }

    .brand-page-about-text p {
        font-size: 13.5px;
    }

    .brand-page-about-image img {
        height: 280px;
    }
}



:root {
    --header-height: 120px; /* поставь свою реальную высоту хедера */
}

.contacts-hero {
       width: 100%;
    background: linear-gradient(90deg, #E2E0F4 0%, #FCEFEC 100%);
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
    padding: 54px 0 48px;
    margin-bottom: 70px;
}

.contacts-hero__title {
   

        margin: 0 0 22px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    color: #2f2946;
    letter-spacing: -0.02em;
    margin-top: 100px;
}

.contacts-office-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.contacts-office-title {
    margin: 0 0 48px;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: #3B315B;
}


.tochki-prodazhu .title-block h3 {
    margin: 0 0 48px;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: #3B315B;
}
.tochki-prodazhu .text-block p{
        font-size: 20px;
    color: #343A40;
}

.contacts-map-card,
.contacts-info-card {
    height: 100%;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid #eef0f3;
    overflow: hidden;
}

.contacts-map-card img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    display: block;
}

.contacts-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 34px;
}

.contacts-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
}

.contacts-info-item + .contacts-info-item {
    border-top: 1px solid #ececf1;
}

.contacts-info-icon {
    width: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f5ea8;
}



.tc-programs-page-wrap__hero {
    width: 100%;
    background: linear-gradient(90deg, #E2E0F4 0%, #FCEFEC 100%);
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
    padding: 54px 0 48px;
}

.tc-programs-page-wrap__title {
    margin: 0 0 22px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    color: #2f2946;
    letter-spacing: -0.02em;
    margin-top: 120px;
}
.tc-programs-page-wrap__desc {
    max-width: 880px;
    font-size: 24px;
    line-height: 1.55;
    font-weight: 400;
    color: #4f4960;
}


.bys-programs-page {
    padding: 40px 0 70px;
}

.bys-program-card__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    border: 1px solid #e8eaee;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 4px 18px rgba(17, 24, 39, 0.04);
}

.bys-program-card__image-wrap {
    width: 360px;
    min-width: 360px;
}

.bys-program-card__image {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 22px;
}

.bys-program-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 4px 6px 4px 0;
}

.bys-program-card__badge {
   display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 30px;
    padding: 12px 16px;
    margin: 0 0 14px;
    border-radius: 999px;
    background: #98ddd2;
    color: #325b58;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: absolute;
    right: 0;
    top: 20px;
}
.program-single-head{
    position: relative;
}

.bys-single-program .bys-single-program__badge{
        display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 30px;
    padding: 12px 16px;
    margin: 0 0 14px;
    border-radius: 999px;
    background: #98ddd2;
    color: #325b58;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;

    margin-bottom: 40px;
}
.bys-single-program .bys-single-program__image-wrap img{
        border-radius: 40px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    margin-bottom: 40px;
}

.bys-single-program__content-wrap ul{
        margin-left: 0;
    padding: 0px 15px;
}

.bys-program-card__title {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
    color: #2f3742;
}

.bys-program-card__excerpt {
    font-size: 15px;
    line-height: 1.55;
    color: #5f6772;
    margin-bottom: 18px;
    max-width: 760px;
}

.bys-program-card__bottom {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.bys-program-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: #343b45;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    transition: all 0.25s ease;
}



.bys-programs-desc {
    max-width: 860px;
    font-size: 20px;
    line-height: 1.65;
    color: #4f5660;
}

.bys-programs-desc p:last-child {
    margin-bottom: 0;
}

.bys-programs-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.bys-program-card {
    width: 100%;
}

.bys-program-card__inner {
    display: flex;
    align-items: center;
    gap: 26px;
    background: #ffffff;
    border: 1px solid #ebedf0;
    border-radius: 26px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.bys-program-card__image-wrap {
    width: 360px;
    min-width: 360px;
}

.bys-program-card__image-link {
    display: block;
    text-decoration: none;
}

.bys-program-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.bys-program-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bys-program-card__title {
    margin: 0 0 14px;
    font-size: 37px;
    line-height: 1.15;
    font-weight: 600;
    color: #323943;
        float: left;
            width: 80%;
}

.bys-program-card__title a {
    color: #1e1535;
    text-decoration: none;
    font-size: 28px;
    margin: 24px 0 28px;
    display: block;
}

.bys-program-card__title a:hover {
    color: inherit;
    text-decoration: none;
}

.bys-program-card__excerpt {
    font-size: 17px;
    line-height: 1.6;
    color: #626b75;
    margin-bottom: 22px;
}

.bys-program-card__excerpt p:last-child {
    margin-bottom: 0;
}

.bys-program-card__bottom {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.bys-program-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    background: #343b45;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    transition: all 0.25s ease;
}

.bys-program-card__btn:hover {
    background: #222831;
    color: #ffffff;
    text-decoration: none;
}

.bys-programs-empty {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    font-size: 18px;
    color: #555;
}

@media (max-width: 1199px) {
    .bys-programs-title {
        font-size: 42px;
    }

    .bys-program-card__title {
        font-size: 30px;
    }

    .bys-program-card__image-wrap {
        width: 320px;
        min-width: 320px;
    }
}

@media (max-width: 991px) {
    .bys-programs-page {
        padding: 25px 0 50px;
    }

    .bys-programs-top {
        padding: 28px 24px;
        border-radius: 0 0 24px 24px;
    }

    .bys-programs-title {
        font-size: 34px;
    }

    .bys-programs-desc {
        font-size: 17px;
        line-height: 1.55;
    }

    .bys-program-card__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .bys-program-card__image-wrap {
        width: 100%;
        min-width: 0;
    }

    .bys-program-card__image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .bys-program-card__title {
        font-size: 26px;
    }

    .bys-program-card__excerpt {
        font-size: 15px;
    }

    .bys-program-card__bottom {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .bys-programs-top {
        padding: 24px 18px;
    }

    .bys-programs-title {
        font-size: 30px;
    }

    .bys-program-card__inner {
        border-radius: 20px;
        padding: 12px;
    }

    .bys-program-card__image {
        border-radius: 16px;
    }

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

    .bys-program-card__btn {
        width: 100%;
    }
}


.bys-single-program{
    padding: 100px 0;
}
.bys-single-program .bys-single-program__title{
        margin-top: 60px;
    font-size: 52px;
    font-weight: 600;
    color: #3B315B;
}



.contacts-info-text {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    color: #4a4f59;
    text-transform: uppercase;
}

.contacts-info-text a {
    color: inherit;
    text-decoration: none;
}

.contacts-info-text a:hover {
    text-decoration: underline;
}

@media (max-width: 1199px) {
    :root {
        --header-height: 100px;
    }

    .contacts-hero__title {
        font-size: 64px;
    }

    .contacts-office-title {
        font-size: 48px;
    }

    .contacts-info-text {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 80px;
    }

    .contacts-hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 45px;
        border-radius: 0 0 28px 28px;
    }

    .contacts-hero__title {
        font-size: 48px;
    }

    .contacts-office-section {
        padding: 50px 0 70px;
    }

    .contacts-office-title {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .contacts-map-card img {
        min-height: 260px;
    }

    .contacts-info-card {
        padding: 18px 22px;
        border-radius: 26px;
    }

    .contacts-map-card {
        border-radius: 26px;
    }

    .contacts-info-item {
        align-items: flex-start;
        padding: 18px 0;
    }

    .contacts-info-text {
        font-size: 17px;
        line-height: 1.4;
    }
}

@media (max-width: 575px) {
    .contacts-hero__title {
        font-size: 36px;
    }

    .contacts-office-title {
        font-size: 30px;
    }

    .contacts-info-text {
        font-size: 15px;
    }

    .contacts-info-icon {
        width: 24px;
        min-width: 24px;
    }
}




.tc-teach-page-wrap__hero {
    width: 100%;
    background: linear-gradient(90deg, #E2E0F4 0%, #FCEFEC 100%);
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
    padding: 54px 0 48px;
    margin-bottom: 70px;
}
.tc-teach-page-wrap__hero h1 {
    margin: 0 0 22px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    color: #2f2946;
    letter-spacing: -0.02em;
    margin-top: 100px;
}

.teach-center-block {
    padding: 60px 0 60px ;
}


.teach-center-title {
      margin: 0 0 36px;
    line-height: 1;
    font-weight: 700;
    color: #3b3567;
    letter-spacing: -0.03em;
    font-size: 44px;
}

.teach-center-content {
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

.teach-center-image {
    flex: 0 0 48%;
}

.teach-center-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
    object-fit: cover;
}

.teach-center-text {
    flex: 1 1 auto;
    padding-top: 2px;
}

.teach-center-text p {
        margin: 0 0 22px;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
    color: #5d5d5d;
    margin-bottom: 30px;
}

.teach-center-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .teach-center-title {
        font-size: 44px;
    }

    .teach-center-text p {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .teach-center-block {
        padding: 50px 0;
    }

    .teach-center-content {
        flex-direction: column;
        gap: 24px;
    }

    .teach-center-image,
    .teach-center-text {
        flex: 0 0 100%;
        width: 100%;
    }

    .teach-center-title {
        font-size: 36px;
        margin-bottom: 22px;
    }

    .teach-center-text p {
        font-size: 18px;
        line-height: 1.65;
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .teach-center-block {
        padding: 40px 0;
    }

    .teach-center-title {
        font-size: 28px;
        line-height: 1.15;
    }

    .teach-center-image img {
        border-radius: 18px;
    }

    .teach-center-text p {
        font-size: 16px;
        line-height: 1.6;
    }
}







.teach-schedule-section {
    padding: 70px 0 90px;
    background: #f6f6f6;
}

.teach-schedule-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.teach-schedule-title {
    margin: 0 0 24px;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 700;
    color: #3d3564;
}

.teach-schedule-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.teach-schedule-filters select {
    min-width: 170px;
    height: 46px;
    padding: 0 18px;
    border: 1px solid #e4e2ea;
    border-radius: 30px;
    background: #fff;
    font-size: 15px;
    color: #6a6a6a;
    outline: none;
}

.teach-schedule-month-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.teach-month-prev,
.teach-month-next {
    width: 36px;
    height: 36px;
    border: 1px solid #e3e1e9;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.teach-current-month-label {
    min-width: 110px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #4a4a4a;
}

.teach-schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.teach-card {
    position: relative;
    padding: 28px 28px 24px;
    border: 1px solid #e5e3ea;
    border-radius: 30px;
    background: #f8f8f8;
}

.teach-card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
}

.teach-card-badge.badge-new {
    background: #f5aac2;
    color: #7a3051;
}

.teach-card-badge.badge-popular {
    background: #d9d5ff;
    color: #5c52a6;
}

.teach-card-title {
    margin: 0 0 24px;
    padding-right: 120px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #333;
}

.teach-card-speaker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.teach-card-speaker img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.teach-card-speaker span {
    font-size: 13px;
    text-transform: uppercase;
    color: #6a6a6a;
}

.teach-card-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: 14px;
    color: #5a5480;
}

.teach-card-desc {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.teach-card-btn {
    width: 100%;
    height: 62px;
    border: 0;
    border-radius: 40px;
    background: #2f3640;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.teach-no-results {
    padding: 40px 20px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    font-size: 18px;
    color: #666;
}

#teach-schedule-results.is-loading {
    opacity: .5;
    pointer-events: none;
}

.teach-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 9998;
}

.teach-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 30px);
    max-width: 640px;
    background: #fff;
    border-radius: 24px;
    padding: 34px 28px 28px;
    transform: translate(-50%, -50%) scale(.96);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 9999;
}

.teach-modal.active,
.teach-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.teach-modal.active {
    transform: translate(-50%, -50%) scale(1);
}

.teach-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.teach-modal-title {
    margin: 0 0 18px;
    font-size: 28px;
    color: #3d3564;
}

.teach-modal-event-info {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f6f6f9;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .teach-schedule-grid {
        grid-template-columns: 1fr;
    }

    .teach-schedule-top {
        flex-direction: column;
        align-items: stretch;
    }

    .teach-schedule-month-nav {
        justify-content: space-between;
    }

    .teach-card-title {
        padding-right: 0;
    }
}

















.top-cosmetics-header .hero-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.top-cosmetics-header .hero-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.top-cosmetics-header .hero-logo img {
    display: block;
    max-width: 120px;
    height: auto;
}

.top-cosmetics-header .hero-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-cosmetics-header .hero-nav-item {
    position: relative;
}

.top-cosmetics-header .hero-nav-link {
    display: inline-flex;
    align-items: center;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.top-cosmetics-header .hero-nav-link:hover {
    color: #8b78b8;
}

.top-cosmetics-header .hero-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    padding: 12px 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s ease;
    z-index: 20;
}

.top-cosmetics-header .hero-submenu a {
    display: block;
    padding: 9px 18px;
    color: #222;
    font-size: 14px;
    text-decoration: none;
    transition: 0.25s ease;
}

.top-cosmetics-header .hero-submenu a:hover {
    background: #f4f0fb;
    color: #8b78b8;
}

.top-cosmetics-header .hero-nav-dropdown:hover .hero-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-cosmetics-header .hero-burger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.top-cosmetics-header .hero-burger span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background: #222;
    border-radius: 10px;
    transition: 0.25s ease;
}

.top-cosmetics-header .hero-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 998;
}

.top-cosmetics-header .hero-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 78%;
    max-width: 330px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
}

.top-cosmetics-header .hero-mobile-menu::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 280px;
    height: 360px;
    background: rgba(150, 125, 190, 0.08);
    border-radius: 55% 0 0 0;
    pointer-events: none;
}

.top-cosmetics-header .hero-mobile-menu-inner {
    position: relative;
    z-index: 2;
    min-height: 100%;
    padding: 24px 22px 40px;
}

.top-cosmetics-header .hero-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.top-cosmetics-header .hero-mobile-logo {
    display: inline-flex;
    align-items: center;
}

.top-cosmetics-header .hero-mobile-logo img {
    display: block;
    max-width: 48px;
    height: auto;
}

.top-cosmetics-header .hero-mobile-close {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.top-cosmetics-header .hero-mobile-nav {
    display: flex;
    flex-direction: column;
}

.top-cosmetics-header .hero-mobile-item {
    border-bottom: 1px solid transparent;
}

.top-cosmetics-header .hero-mobile-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
}

.top-cosmetics-header .hero-mobile-link.active {
    color: #6f5ca8;
    border-bottom: 1px solid #9b8cc4;
}

.top-cosmetics-header .hero-mobile-dropdown-toggle::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
    color: #6f5ca8;
    transition: 0.25s ease;
}

.top-cosmetics-header .hero-mobile-dropdown.active .hero-mobile-dropdown-toggle::after {
    content: "?";
}

.top-cosmetics-header .hero-mobile-submenu {
    display: none;
    padding: 3px 0 10px 12px;
}

.top-cosmetics-header .hero-mobile-submenu a {
    display: block;
    padding: 7px 0;
    color: #555;
    font-size: 13px;
    text-decoration: none;
}

.top-cosmetics-header .hero-mobile-submenu a:hover {
    color: #6f5ca8;
}

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

body.hero-menu-open .top-cosmetics-header .hero-mobile-overlay {
    opacity: 1;
    visibility: visible;
}

body.hero-menu-open .top-cosmetics-header .hero-mobile-menu {
    transform: translateX(0);
}

@media (max-width: 991px) {
    .top-cosmetics-header .hero-nav {
        display: none;
    }
    .top-cosmetics-header .hero-nav{
        display: none !important;
    }

    .top-cosmetics-header .hero-burger {
        display: block;
    }

    .top-cosmetics-header .hero-topbar {

        display: flex;
        flex-direction: row;
        padding: 14px 16px;
    }

    .top-cosmetics-header .hero-logo img {
        max-width: 95px;
    }
    .top-cosmetics-banner{
        min-height: auto;
        padding: 170px 0 40px;
    }
    .about-section .about-title{
            margin-bottom: 24px;
    font-size: 36px;
    }
    .about-section{
        padding: 40px 0;
    }
    .about-section .stats-col-2, .about-section .stats-col-4{
        transform: inherit;

    }
    .about-section .stat-item{
        text-align: center;
        margin-bottom: 24px;
    }
    .brands-section{
        padding: 6px 0;
    }
    .zanyattya-schedule-block .zanyattya-schedule-month-label{
        width: 60%;
    }
    .zanyattya-learning-more{
        width: 100%;
    }
    .bys-program-card__badge{
        position: relative;
    }
    .bys-program-card__title a{
        font-size: 22px;
    }
    .bys-program-card__content {
    flex: 2;
    display: flex;
    flex-direction: inherit;
    min-width: 0;
}
    .bys-program-card__title{
        width: 100%;
    }
    .bys-program-card__title a{
        margin: 12px 0;
    }
    .news-section{
        padding: 40px 0;
    }
    .news-section .news-more-btn{
        width: 100%;
                justify-content: center;
    }

}


@media (max-width: 767px) {

    .footer-main-wrap {
        padding: 0 15px;
    }

    .footer-main-wrap .container {
        padding-left: 0;
        padding-right: 0;
    }

    .site-footer .footer-main {
        background: #181429;
        padding: 38px 22px 34px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: #ffffff;
            gap: 0px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col--center {
        order: 1;
    }

    .footer-col--left {
        order: 2;
    }

    .footer-col--right {
        order: 3;
    }

    .footer-logo {
        margin-bottom: 38px;
    }

    .site-footer .footer-logo img{
            max-width: 240px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    }

    .footer-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 28px;
        margin-bottom: 45px;
    }

    .footer-socials a {
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .footer-socials svg {
        width: 17px;
        height: 17px;
    }

    .footer-socials a[aria-label="Facebook"] svg {
        width: 9px;
        height: 18px;
    }

    .footer-address {
        font-size: 16px;
        line-height: 1.6;
        font-weight: 400;
        margin-bottom: 26px;
        color: #ffffff;
                text-align: center;
    }
    .site-footer .footer-bottom{
            justify-content: center;
    }

    .footer-phone {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 46px;
        color: #ffffff;
    }

    .footer-phone a,
    .footer-email a {
        color: #ffffff;
        text-decoration: none;
    }

    .footer-email {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 28px;
        color: #ffffff;
        text-align: center;
    }

    .footer-sale-points {
        font-size: 16px;
        line-height: 1.55;
        color: #ffffff;
            text-align: center;
    }
    .site-footer .footer-top-menu{
            justify-content: center;
    }
    .tc-programs-page-wrap__title{
        font-size: 44px;
    }
    .zanyattya-schedule-block .zanyattya-schedule-head-left{
        display: block !important;
    }
    .zanyattya-schedule-block .zanyattya-schedule-filters{
                  gap: 0px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center;
        flex-direction: initial !important;
        flex-wrap: nowrap !important;
                margin-top: 24px;
    }
    .tc-news-page-wrap__item-title a{
        font-size: 22px;
    }
    .tc-single-news-page__article{
        padding: 40px 0 0;
    }
   .bys-single-program .bys-single-program__title{
       font-size: 36px;
   }
   .bys-single-program .bys-single-program__image-wrap img{
       height: auto;
   }
   .tochki-prodazhu .title-block h3{
       font-size: 36px;
   }
   .tc-promo-wrap__desc{
       font-size: 16px;
   }
   .aptos-hero-content {
        max-width: max-content;
        padding: 160px 0 9px;
        max-height: max-content;
    }


}

@media (min-width: 992px) {
    .top-cosmetics-header .hero-mobile-overlay,
    .top-cosmetics-header .hero-mobile-menu {
        display: none;
    }
}








.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #3e3568;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #ddd7ea 0%, #ecdde1 100%);
    color: #3e3568
}

@media (max-width: 767px) {
    .scroll-top-btn {
        right: 15px;
        bottom: 15px;
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
}