/* ===== Hero ===== */

/* ===== Products ===== */
/*.products {
    padding: 50px 0;
}*/

.products__header {
    margin-bottom: 30px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    transition: all var(--transition);
    border: 1px solid var(--obvodka);
    border-radius: 30px;
    padding: 0px 0px 25px;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-card__icon {
    width: 47px;
    height: 53px;
    margin-bottom: 19px;
}

.product-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__title {
    line-height: normal;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--siniy);
}

.product-card__title:hover {
    color: var(--oranzh);
}

.product-card__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.product-card__links li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 18px;
    line-height: normal;
    color: var(--blue);
}

.product-card__links svg {
    flex-shrink: 0;
}

.product-card:last-child .product-card__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 12px;
}

.product-card__btn {
    margin-top: auto;
    align-self: flex-start;
    width: auto;
    font-weight: 600;
    font-size: 16px;
    line-height: 113%;
    border-radius: 100px;
    padding: 10px 20px;
    gap: 10px;
}


/* ===== New Equipment Slider ===== */
/*.new-equipment {
    padding: 50px 0;
    background: var(--bg-light);
}*/

/* ===== Feature (Concentrator) ===== */
/*.feature {
    padding: 50px 0;
}*/

.feature__outer {
    display: flex;
    align-items: center;
    position: relative;
}

.feature__slider-wrap {
    flex: 1;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    /*margin: 0 -30px;*/
    z-index: 0;
}

.feature__track {
    display: flex;
    transition: transform 0.5s ease;
}

.feature__slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

.feature__inner {
    display: flex;
    align-items: stretch;
    height: 402px;
    position: relative;
    background: url('../../../../assets/images/promo-bg.webp') center/cover no-repeat;
}

.feature__content {
    flex: 0 0 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.feature__content .section-title {
    font-size: 40px;
    color: var(--white);
    line-height: 122%;
    margin-bottom: 0;
    text-transform: uppercase;
}

.feature__content p {
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
    color: var(--white);
    line-height: normal;
}

.btn--feature {
    margin-top: 40px;
    padding: 20px 30px;
    font-size: 20px;
}

.feature__image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.feature__image img {
    position: absolute;
    top: 0;
    left: 10%;
    width: 85%;
    height: 149%;
    max-width: none;
    object-fit: cover;
}

.feature__nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.feature__nav-btn--prev {
    left: -29px;
}

.feature__nav-btn--next {
    right: -29px;
}

.feature__nav-btn:hover {
    background: #b8d0e8;
}

.feature__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 5;
}

.feature__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}

.feature__dot--active {
    width: 23px;
    height: 23px;
    background: var(--orange);
}

/* ===== Services ===== */
/*.services {
    padding: 50px 0;
    background: var(--bg-light);
}*/

.services__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.services__header-text {
    max-width: 900px;
}

.services__grid {
    display: grid;
    grid-template-columns: 719fr 497fr 497fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.service-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 345px;
    color: var(--white);
    border: 2px solid transparent;
    transition: border-color var(--transition);
}

.service-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover > img {
    transform: scale(1.05);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%, transparent 100%);
    border-radius: 30px;
    transition: background var(--transition);
}

.service-card:hover .service-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%, rgba(255, 255, 255, 0.15) 100%);
}

.service-card:hover {
    border: 2px solid var(--orange);
}

.service-card:hover .btn--orange-pill {
    background: var(--white);
    color: var(--orange);
    border-color: var(--orange);
}

.service-card__content {
    position: relative;
    z-index: 2;
    padding: 50px;
}

.service-card__content h3 {
    font-size: 22px;
    line-height: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card__content p {
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    margin-top: 17px;
}

.service-card--wide .service-card__content p {
    max-width: 50%;
}

.service-card--large .service-card__content p {
    max-width: 55%;
}

.service-card__content .btn {
    margin-top: 30px;
}

.service-card--large {
    grid-row: span 2;
    min-height: 707px;
}

.service-card--wide {
    grid-column: span 2;
}

.service-card:hover .btn--outline-orange {
    background: var(--orange);
    color: var(--white);
}

/* ===== About ===== */
/*.about {
    padding: 50px 0;
}*/

.about__inner {
    background: var(--blue);
    border-radius: 30px;
    padding: 100px 50px;
}

.about__inner .section-title {
    color: var(--white);
    font-size: 36px;
}

.about__inner .section-title .accent {
    color: var(--orange);
}

.about__top {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about__text-col {
    flex: 1;
}

.about__description {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    line-height: normal;
    margin-top: 30px;
}

.about__description--second {
    margin-top: 15px;
}

.about__description + .btn,
.about__description--second + .btn {
    margin-top: 30px;
}

.about__video {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.about__video img {
    width: 100%;
    height: 441px;
    object-fit: cover;
}

.about__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 149px;
    height: 153px;
    background: rgba(255, 255, 255, 0.60);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 12px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.about__play-icon {
    display: inline-block;
    width: 89px;
    height: 87px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='66' height='78' viewBox='0 0 66 78' fill='none'%3E%3Cpath d='M65.25 38.5381L0 77.0762V-4.57764e-05L65.25 38.5381Z' fill='white'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

.about__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.video-modal__content {
    position: relative;
    width: 80vw;
    max-width: 960px;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.video-modal__content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 10;
    font-size: 36px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.about__stats {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(4, 1fr);
    gap: 75px;
    margin-top: 60px;
}

.about__stat {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    min-height: 173px;
}

.about__stat-label {
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    text-align: center;
}

.about__stat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 65px;
    line-height: normal;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: var(--blue);
}

/* ===== Partners ===== */
/*.partners {
    padding: 50px 0;
}*/

/* ===== News ===== */
/*.news {
    padding: 50px 0;
}*/

.news__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.news__header-text {
    max-width: 900px;
}

.news__grid {
    display: flex;
    gap: 20px;
}

.news__grid .news-card {
    flex-shrink: 0;
}

.news-card {
    border-radius: 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-card__image {
    width: 100%;
    height: 214px;
    overflow: hidden;
}

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

.news-card__body {
    padding: 20px 20px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card__date {
    font-size: 16px;
    line-height: normal;
    color: var(--light-blue);
    display: inline-block;
    margin-bottom: 15px;
}

.news__slider-outer {
    display: flex;
    align-items: center;
    position: relative;
}

.news__slider-wrap {
    flex: 1;
    overflow: hidden;
    /*margin: 0 -30px;*/
}

.news__nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.news__nav-btn--prev {
    left: -29px;
}

.news__nav-btn--next {
    right: -29px;
}

.news__nav-btn:hover {
    background: #b8d0e8;
}

.news-card__title {
    font-size: 18px;
    line-height: normal;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
}

.news-card__text {
    font-size: 16px;
    line-height: normal;
    color: var(--blue);
    flex: 1;
    margin-top: 15px;
}

.news-card .btn {
    align-self: flex-start;
    margin-top: 20px;
}

/* ===== Contacts ===== */
/*.contacts {
    padding: 50px 0;
    background: var(--bg-light);
}*/

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

.contacts__info {
    width: 41.2%;
}

.contacts__details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contacts__label {
    display: block;
    font-size: 14px;
    line-height: normal;
    color: var(--light-blue);
    margin-bottom: 10px;
}

.contacts__value {
    font-size: 24px;
    line-height: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.contacts__value a {
    color: inherit;
}

.contacts__socials {
    display: flex;
    gap: 34px;
    align-items: center;
    margin-top: 54px;
}

.contacts__socials a {
    transition: opacity var(--transition);
}

.contacts__socials a:hover {
    opacity: 0.7;
}

.contacts__socials img {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
}

.contacts__map {
    width: 54%;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.contacts__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Feedback Form ===== */
.feedback-section {
    padding: 0 var(--container-pad);
    /*margin-bottom: 100px;*/
}

.feedback__inner {
    display: flex;
    min-height: 600px;
    border-radius: 30px;
    overflow: hidden;
    max-width: var(--container);
    margin: 0 auto;
}

.feedback__form-side {
    flex: 0 0 55%;
    padding: 60px;
    background: var(--blue);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.feedback__form-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><rect width="20" height="20" fill="none"/><path d="M0 10h20M10 0v20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    pointer-events: none;
}

.feedback__image-side {
    flex: 1;
    position: relative;
}

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

@media (max-width: 1650px) {
    .about__stats {
        gap: 30px;
    }
}

@media (max-width: 1440px) {

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

    .service-card--large {
        grid-row: span 1;
        min-height: 400px;
    }

    .service-card--wide {
        grid-column: span 2;
    }

    .about__stat-row {
        font-size: 46px;
    }

    .about__stat-label {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {

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

    .news__grid .news-card {
        min-width: calc(50% - 10px);
    }

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

    .about__stat-number {
        font-size: 36px;
    }

    .contacts__form-wrap {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }

    .contacts__value {
        font-size: 20px;
    }

    .about__stat {
        min-height: 140px;
    }

    .about__description {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {

    .feature__inner {
        flex-direction: column;
        height: 100%;
    }

    .feature__image {
        min-height: 220px;
        flex: none;
    }

    .feature__image img {
        position: relative;
        left: 0;
        width: 100%;
        height: 220px;
    }

    .feature__content {
        padding: 30px;
        flex: none;
    }

    .feature__content .section-title {
        font-size: 28px;
    }

    .feature__nav-btn {
        width: 40px;
        height: 40px;
    }

    .feature__nav-btn--prev {
        left: -14px;
    }

    .feature__nav-btn--next {
        right: -14px;
    }

    .news__nav-btn {
        width: 40px;
        height: 40px;
    }

    .news__nav-btn--prev {
        left: -14px;
    }

    .news__nav-btn--next {
        right: -14px;
    }

    .about__top {
        flex-direction: column;
    }

    .about__inner {
        padding: 40px;
    }

    .about__video img {
        height: 300px;
    }

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

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

    .service-card--large {
        min-height: 350px;
    }

    .service-card--wide {
        grid-column: span 1;
    }

    .contacts__inner {
        flex-direction: column;
    }

    .contacts__info {
        flex: none;
        width: 100%;
        padding-right: 0;
    }

    .contacts__map {
        width: 100%;
        height: 300px;
        border-radius: 20px;
    }

    .feedback__inner {
        flex-direction: column;
    }

    .feedback__form-side {
        flex: none;
        padding: 40px 20px;
    }

    .feedback__image-side {
        height: 300px;
    }

    /*.feature__nav-btn {
        display: none;
    }*/
    /*.slider-side-btn {
        display: none;
    }*/
}

@media (max-width: 768px) {

    /*.products {
        padding: 50px 0;
    }*/
    .products__grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 20px;
    }

    .product-card__title {
        font-size: 18px;
        line-height: normal;
    }

    .product-card__links li {
        font-size: 16px;
    }

    .products__header {
        margin-bottom: 20px;
    }

    .product-card__icon {
        width: 40px;
        height: 45px;
    }

    /*.new-equipment {
        padding: 50px 0;
    }*/
    /*.feature {
        padding: 30px 0;
    }*/
    .feature__slider-wrap {
        border-radius: 30px;
    }

    .feature__content {
        padding: 29.5px 17px 0 15px;
    }

    .feature__content .section-title {
        font-size: 22px;
        line-height: 122%;
    }

    .feature__content p {
        font-size: 16px;
        line-height: normal;
        margin-top: 15px;
    }

    .btn--feature {
        padding: 13.5px 30px;
        font-size: 16px;
        margin-top: 20px;
    }

    .feature__content p {
        font-size: 16px;
    }

    .feature__image {
        min-height: auto;
        height: 226px;
        border-radius: 30px;
        box-shadow: 2px 10px 9.4px 0 rgba(0, 0, 0, 0.25);
    }

    .feature__image img {
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }

    .feature__nav-btn {
        top: 64%;
    }

    /*.services {
         padding: 50px 0;
     }*/
    .service-card {
        min-height: 250px;
        justify-content: center;
    }

    .service-card--large {
        min-height: 250px;
    }

    .service-card__content {
        padding: 20px;
    }

    .service-card__content h3 {
        font-size: 18px;
        line-height: normal;
    }

    .service-card__content p {
        font-size: 16px;
        line-height: normal;
    }

    .service-card--wide .service-card__content p,
    .service-card--large .service-card__content p {
        max-width: 100%;
    }

    .services__header {
        margin-bottom: 20px;
    }

    .services__footer {
        text-align: center;
        margin-top: 20px;
    }

    /*.about {
        padding: 50px 0;
    }*/
    .about__inner .section-title {
        font-size: 22px;
        line-height: normal;
    }

    .about__description {
        font-weight: 400;
        margin-top: 15px;
    }

    .about {
        background-color: #364C63;
    }

    .about__inner {
        padding: 50px 15px;
        border-radius: 30px;
    }

    .about__top {
        gap: 30px;
        align-items: stretch;
    }

    .about__video,
    .about__text-col {
        flex: none;
    }

    .about__video img {
        height: 174px;
    }

    .about__play {
        width: 75px;
        height: 76px;
    }

    .about__play-icon {
        width: 48px;
        height: 48px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='42' viewBox='0 0 36 42' fill='none'%3E%3Cpath d='M36 20.7852L0 41.5698V0.000547409L36 20.7852Z' fill='white'/%3E%3C/svg%3E");
    }

    .about__stats {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        margin-top: 30px;
    }

    .about__stat {
        min-height: 110px;
        padding: 15px;
    }

    .about__stat-row {
        font-size: 40px;
        line-height: normal;
    }

    .about__stat-label {
        font-size: 18px;
        line-height: normal;
        font-weight: 800;
    }

    /*.partners {
        padding: 50px 0;
    }*/
    /*.news {
        padding: 50px 0;
    }*/
    .news__grid .news-card {
        min-width: calc(100% - 10px);
    }

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

    .news-card__image {
        height: 166px;
    }

    .news-card__body {
        padding: 20px 15px;
    }

    .news-card__title {
        font-size: 18px;
    }

    .news-card__date {
        margin-bottom: 12px;
    }

    .news-card__text {
        margin-top: 12px;
    }

    /*.contacts {
        padding: 50px 0;
    }*/
    .contacts__inner {
        gap: 30px;
    }

    .contacts__value {
        font-size: 18px;
    }

    .contacts__map {
        height: 674px;
        border-radius: 30px;
    }

    .contacts__label {
        font-size: 16px;
    }

    .contacts__socials {
        margin-top: 30px;
        justify-content: center;
    }

    .news__nav-btn {
        top: 41%;
    }

    .feedback-section {
        padding: 0;
    }

    .feedback__inner {
        border-radius: 0;
    }

    .feedback__form-side {
        padding: 50px 15px;
        background-color: #225179;
    }

    .product-card {
        padding: 0;
        border-radius: 20px;
    }

    .product-card__image-wrapper {
        height: 92px;
        border-radius: 20px 20px 0 0;
    }

    .product-card__body {
        margin: 0 5px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .product-card__title {
        font-weight: 700;
        font-size: 16px;
        color: var(--siniy);
        margin-bottom: 15px;
    }

    .product-card__specs {
        display: none;
    }

    .product-card__btn {
        font-weight: 600;
        font-size: 14px;
        width: 100%;
        padding: 10px;
    }

    .catalog-page {
        padding-bottom: 50px;
    }

}
