body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #111;
    background: #fff;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

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

.header-logo img {
    max-height: 70px;
    width: auto;
}

.text-logo {
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    color: #111;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    list-style: none;
}

.main-menu a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.main-menu .current-menu-item a,
.main-menu a:hover {
    color: #1666d8;
}

.main-menu .current-menu-item a::after,
.main-menu a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #1666d8;
    border-radius: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-lang ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-lang li {
    list-style: none;
}

.header-lang a,
.header-lang span {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
}

.header-lang .current-lang a,
.header-lang .current-lang span {
    color: #1666d8;
}

.header-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.header-phone-icon {
    font-size: 26px;
    line-height: 1;
    color: #1666d8;
}

.header-phone {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    margin-bottom: 4px;
}

.header-support-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #20c05c;
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 1100px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-nav {
        order: 3;
        width: 100%;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-right {
        flex-direction: column;
        gap: 12px;
    }

    .header-contact {
        justify-content: center;
    }

    .header-inner {
        flex-direction: column;
    }
}



.hero-slider-section {
    padding: 24px 0 40px;
    background: #ffffff;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.hero-slide {
    min-height: 680px;
    background: #f7f8fa;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 520px 1fr;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.hero-slide__content {
    padding: 90px 40px 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(247,248,250,0.98) 0%, rgba(247,248,250,0.94) 55%, rgba(247,248,250,0.72) 75%, rgba(247,248,250,0) 100%);
}

.hero-slide__title {
    margin: 0 0 26px;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    color: #111111;
}

.hero-slide__title strong,
.hero-slide__title span {
    color: #1666d8;
}

.hero-slide__subtitle {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-slide__text {
    max-width: 430px;
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 34px;
}

.hero-slide__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    min-width: 230px;
    min-height: 64px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.hero-btn--primary {
    background: #1666d8;
    color: #ffffff;
    border: 2px solid #1666d8;
}

.hero-btn--primary:hover {
    background: #0f56bb;
    border-color: #0f56bb;
}

.hero-btn--secondary {
    background: transparent;
    color: #111111;
    border: 2px solid #8ab0f1;
}

.hero-btn--secondary:hover {
    border-color: #1666d8;
    color: #1666d8;
}

.hero-slide__image {
    position: relative;
    height: 100%;
}

.hero-slide__image img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    display: block;
}

.hero-slider__pagination {
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    bottom: 24px !important;
    text-align: center;
    z-index: 5;
}

.hero-slider__pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    opacity: 1;
    background: #d9d9d9;
    margin: 0 6px !important;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
    background: #1666d8;
}

.hero-slider__prev,
.hero-slider__next {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    color: #1666d8 !important;
}

.hero-slider__prev::after,
.hero-slider__next::after {
    font-size: 22px !important;
    font-weight: 700;
}

.hero-slider__prev {
    left: 22px !important;
}

.hero-slider__next {
    right: 22px !important;
}

@media (max-width: 1400px) {
    .hero-slide {
        grid-template-columns: 470px 1fr;
        min-height: 620px;
    }

    .hero-slide__title {
        font-size: 54px;
    }

    .hero-slide__subtitle {
        font-size: 31px;
    }

    .hero-slide__image img {
        min-height: 620px;
    }
}

@media (max-width: 1100px) {
    .hero-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-slide__content {
        background: #f7f8fa;
        padding: 50px 28px 30px;
    }

    .hero-slide__image img {
        min-height: 380px;
    }

    .hero-slide__title {
        font-size: 44px;
    }

    .hero-slide__subtitle {
        font-size: 28px;
    }

    .hero-slide__text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-slider-section {
        padding: 18px 0 28px;
    }

    .hero-slide {
        border-radius: 18px;
    }

    .hero-slide__content {
        padding: 34px 20px 24px;
    }

    .hero-slide__title {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .hero-slide__subtitle {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .hero-slide__text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-btn {
        width: 100%;
        min-width: 100%;
        min-height: 54px;
        font-size: 17px;
    }

    .hero-slider__prev,
    .hero-slider__next {
        width: 48px !important;
        height: 48px !important;
    }

    .hero-slide__image img {
        min-height: 250px;
    }
}


.products-section {
    position: relative;
    padding: 92px 0 105px;
    background:
        radial-gradient(circle at 12% 10%, rgba(29, 103, 217, 0.06) 0, rgba(29, 103, 217, 0) 34%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    overflow: hidden;
}

.products-section .container {
    max-width: 1380px;
}

.products-section__head {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.products-section__label {
    display: none;
}

.products-section__title {
    margin: 0;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: none;
    color: #101827;
    letter-spacing: -0.04em;
}

.products-section__divider {
    width: 112px;
    height: 18px;
    margin: 18px auto 18px;
    position: relative;
}

.products-section__divider::before,
.products-section__divider::after {
    content: "";
    position: absolute;
    top: 8px;
    height: 2px;
    border-radius: 2px;
    background: #dbe4ef;
}

.products-section__divider::before {
    left: 0;
    width: 38px;
}

.products-section__divider::after {
    right: 0;
    width: 38px;
}

.products-section__divider {
    background: linear-gradient(#1d67d9, #1d67d9) center 8px / 30px 3px no-repeat;
}

.products-section__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #536173;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 30px;
    align-items: stretch;
}

.product-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(210px, 0.78fr) minmax(340px, 1.22fr);
    gap: 28px;
    min-height: 360px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(220, 229, 240, 0.95);
    box-shadow: 0 18px 46px rgba(15, 35, 70, 0.07);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
}

.product-card::before {
    content: "";
    position: absolute;
    left: -9%;
    right: 34%;
    bottom: -34%;
    height: 58%;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(135deg, rgba(29, 103, 217, 0.10) 0%, rgba(29, 103, 217, 0.04) 46%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.product-card::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: 76px;
    width: 125px;
    height: 65px;
    opacity: 0.45;
    background-image: radial-gradient(rgba(29, 103, 217, 0.22) 1.1px, transparent 1.1px);
    background-size: 10px 10px;
    z-index: -1;
}

.product-card__top {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 14px 0 26px;
}

.product-card__index {
font-size: 15px;
  line-height: 25px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #1d67d9;
  flex-shrink: 0;
max-width: 100%;}

.product-card__line {
    width: 84px;
    height: 1px;
    flex: none;
    background: linear-gradient(90deg, rgba(29, 103, 217, 0.44) 0%, rgba(29, 103, 217, 0) 100%);
}

.product-card__body {
    grid-column: 1;
    position: relative;
    z-index: 2;
}

.product-card__title {
    margin: 0 0 18px;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.12;
    font-weight: 800;
    text-transform: none;
    color: #111827;
    letter-spacing: -0.035em;
    word-break: break-word;
}

.product-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #334155;

    max-height: 230px;
    overflow: hidden;

    white-space: normal;
    position: relative;
}

.product-card__text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        #ffffff
    );
    pointer-events: none;
}

.product-card__gallery {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: minmax(170px, 1fr) 86px;
    gap: 14px;
    align-self: stretch;
    min-height: 302px;
    padding-top: 0;
    margin-top: 0;
}

.product-card__gallery::before {
    content: "";
    position: absolute;
    right: -28px;
    bottom: 76px;
    width: 70%;
    height: 36%;
    border-radius: 100px 0 0 0;
    background: linear-gradient(135deg, rgba(29, 103, 217, 0.14), rgba(29, 103, 217, 0.05));
    pointer-events: none;
    z-index: -1;
}

.product-card__photo-main,
.product-card__photo-thumb {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid rgba(203, 213, 225, 0.84);
    box-shadow: 0 12px 26px rgba(15, 35, 70, 0.07);
}

.product-card__photo-main {
    min-height: 188px;
    border-radius: 18px;
}

.product-card__photo-main img,
.product-card__photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__photo-main img {
    min-height: 188px;
}

.product-card__photo-thumbs {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-card__photo-thumb {
    min-height: 86px;
    border-radius: 16px;
}

.product-card__photo-thumbs:empty {
    display: none;
}

.product-card__gallery--video {
    grid-template-rows: 1fr;
}

.product-card__video-wrap {
    position: relative;
    z-index: 2;
    min-height: 302px;
    border-radius: 20px;
    overflow: hidden;
    background: #0f1728;
    border: 1px solid rgba(203, 213, 225, 0.84);
    box-shadow: 0 16px 32px rgba(15, 35, 70, 0.12);
}

.product-card__video {
    width: 100%;
    height: 100%;
    min-height: 302px;
    display: block;
    object-fit: cover;
    background: #0f1728;
}

.product-card__sound {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(15, 23, 40, 0.74);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.product-card__sound:hover {
    transform: translateY(-2px);
    background: rgba(22, 102, 216, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

.product-card__sound-icon {
    font-size: 15px;
    line-height: 1;
}

.product-card:has(.product-card__photo-thumbs:empty) .product-card__gallery {
    grid-template-rows: 1fr;
}

@media (max-width: 1200px) {
    .products-section .container {
        max-width: 980px;
    }

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

    .product-card {
        grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1.28fr);
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 64px 0 74px;
    }

    .products-section__head {
        margin-bottom: 30px;
    }

    .products-section__subtitle {
        font-size: 16px;
    }

    .products-grid {
        gap: 20px;
    }

    .product-card {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: auto;
        padding: 22px 18px 20px;
        border-radius: 22px;
    }

    .product-card::after {
        display: none;
    }

    .product-card__top,
    .product-card__body,
    .product-card__gallery {
        grid-column: 1;
    }

    .product-card__top {
        margin: 2px 0 0;
    }

    .product-card__title {
        margin-bottom: 12px;
    }

    .product-card__text {
        max-width: 100%;
        font-size: 15px;
    }

    .product-card__gallery {
        grid-row: auto;
        grid-template-rows: minmax(190px, auto) 72px;
        min-height: auto;
    }

    .product-card__photo-main,
    .product-card__photo-main img {
        min-height: 190px;
    }

    .product-card__photo-thumb {
        min-height: 72px;
        border-radius: 14px;
    }

    .product-card__video-wrap,
    .product-card__video {
        min-height: 240px;
    }
}


.about-section {
    padding: 40px 0 100px;
    background: #f7f8fa;
}

.about-block {
    display: grid;
    grid-template-columns: 60% 40%; 
    gap: 0;
    align-items: center;
    background: #0f1728;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(10, 25, 50, 0.16);
}

.about-block__content {
    padding: 64px 54px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.about-block__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8ab4ff;
}

.about-block__label::before {
    content: "";
    width: 46px;
    height: 2px;
    background: #1666d8;
    display: inline-block;
}

.about-block__title {
    margin: 0 0 22px;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    color: #ffffff;
    
}

.about-block__text {
    font-size: 18px;
    line-height: 1.85;
    color: rgba(255,255,255,0.84);
    max-width: 620px;
}

.about-block__text p {
    margin: 0 0 16px;
}

.about-block__text p:last-child {
    margin-bottom: 0;
}

.about-block__media {
    position: relative;
  
    overflow: hidden;
    background: #111827;
    border-radius: 28px;
    margin: 42px 42px 42px 0;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.about-block__media::before {
    content: "";
    position: absolute;
    inset: 0;
   
    z-index: 1;
    pointer-events: none;
}

.about-block__media::after {
    content: "";
    position: absolute;
    inset: auto 28px 28px auto;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(22, 102, 216, 0.32), rgba(22, 102, 216, 0));
    pointer-events: none;
    z-index: 2;
}

.about-block__media img,
.about-video__player {
position: relative;
    height: 657px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.about-video__player {
    transform: scale(1.01);
}

.about-video__sound {
    position: absolute;
    right: 26px;
    bottom: 26px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(15, 23, 40, 0.72);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.about-video__sound:hover {
    transform: translateY(-2px);
    background: rgba(22, 102, 216, 0.88);
    border-color: rgba(255, 255, 255, 0.48);
}

.about-video__sound-icon {
    font-size: 15px;
    line-height: 1;
}

@media (max-width: 1200px) {
    .about-block {
        grid-template-columns: 1fr;
    }

    .about-block__media {
        height: 220px;
        min-height: 220px;
        order: -1;
        margin: 28px 28px 0;
        border-radius: 24px;
    }

    .about-block__media img,
    .about-video__player {
        min-height: 220px;
    }

    .about-block__media::before {
       display:none;
    }

    .about-block__content {
        padding: 42px 34px 46px;
    }

    .about-block__title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 20px 0 70px;
    }

    .about-block {
        border-radius: 22px;
    }

    .about-block__content {
        padding: 30px 22px 34px;
    }

    .about-block__label {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .about-block__title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .about-block__text {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-block__media {
       height: 429px;
        min-height: 170px;
        margin: 18px 18px 0;
        border-radius: 18px;
    }

    .about-block__media img,
    .about-video__player {
        min-height: 170px;
    }

    .about-video__sound {
        right: 16px;
        bottom: 16px;
        padding: 10px 14px;
        font-size: 13px;
		height: 35px;
    }

    .about-video__sound-text {
        display: none;
    }
}

.services-light-section {
    padding: 90px 0 100px;
    background: #f7f8fa;
}

.services-light-top {
    display: grid;
    grid-template-columns: minmax(320px, 430px) 1fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 30px;
}

.services-light-intro {
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 30px;
    padding: 42px 38px;
    box-shadow: 0 14px 40px rgba(20, 40, 80, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-light-intro__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1d67d9;
}

.services-light-intro__label::before {
    content: "";
    width: 42px;
    height: 2px;
    background: #1d67d9;
    display: inline-block;
}

.services-light-intro__title {
    margin: 0 0 18px;
    font-size: 52px;
    line-height: 1.04;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
    letter-spacing: -1px;
}

.services-light-intro__text {
    font-size: 19px;
    line-height: 1.7;
    color: #596579;
}

.services-light-photo {
    border-radius: 30px;
    overflow: hidden;
    min-height: 470px;
    box-shadow: 0 20px 50px rgba(20, 40, 80, 0.10);
    position: relative;
}

.services-light-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,25,50,0.04) 0%, rgba(10,25,50,0.14) 100%);
    pointer-events: none;
}

.services-light-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.services-light-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-light-card {
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 26px;
    padding: 30px 28px;
    min-height: 250px;
    box-shadow: 0 14px 35px rgba(20, 40, 80, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.services-light-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, #1d67d9 0%, #69a3ff 100%);
}

.services-light-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(20, 40, 80, 0.10);
    border-color: #cad8ea;
}

.services-light-card__num {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 800;
    color: #1d67d9;
    letter-spacing: 0.12em;
}

.services-light-card__title {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
}

.services-light-card__text {
    font-size: 17px;
    line-height: 1.7;
    color: #5d6879;
    max-width: 340px;
}

@media (max-width: 1200px) {
    .services-light-top {
        grid-template-columns: 1fr;
    }

    .services-light-photo {
        min-height: 400px;
    }

    .services-light-intro__title {
        font-size: 42px;
    }
}

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

    .services-light-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .services-light-section {
        padding: 65px 0 70px;
    }

    .services-light-top {
        gap: 18px;
        margin-bottom: 18px;
    }

    .services-light-intro {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .services-light-intro__title {
        font-size: 32px;
    }

    .services-light-intro__text {
        font-size: 16px;
        line-height: 1.65;
    }

    .services-light-photo {
        min-height: 260px;
        border-radius: 22px;
    }

    .services-light-card {
        border-radius: 22px;
        padding: 24px 20px;
    }

    .services-light-card__title {
        font-size: 24px;
    }

    .services-light-card__text {
        font-size: 16px;
    }
}



.rixon-gallery-section {
    padding: 90px 0 100px;
    background: #ffffff;
}

.rixon-gallery-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.rixon-gallery-head__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1d67d9;
}

.rixon-gallery-head__label::before,
.rixon-gallery-head__label::after {
    content: "";
    width: 38px;
    height: 2px;
    background: #1d67d9;
    display: inline-block;
}

.rixon-gallery-head__title {
    margin: 0 0 12px;
    font-size: 54px;
    line-height: 1.04;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
    letter-spacing: -1px;
}

.rixon-gallery-head__subtitle {
    font-size: 20px;
    line-height: 1.55;
    color: #5d6879;
}

.rixon-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.rixon-gallery-card {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    min-height: 320px;
    background: #eef2f7;
    box-shadow: 0 16px 40px rgba(15, 35, 70, 0.08);
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.rixon-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(15, 35, 70, 0.14);
}

.rixon-gallery-card__image {
    position: absolute;
    inset: 0;
}

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

.rixon-gallery-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 22px 20px;
    background: linear-gradient(180deg, rgba(10,20,35,0) 0%, rgba(10,20,35,0.78) 100%);
    color: #ffffff;
}

.rixon-gallery-card__title {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 8px;
}

.rixon-gallery-card__caption {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.84);
}

@media (max-width: 1100px) {
    .rixon-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rixon-gallery-head__title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .rixon-gallery-section {
        padding: 65px 0 75px;
    }

    .rixon-gallery-head {
        margin-bottom: 26px;
    }

    .rixon-gallery-head__title {
        font-size: 32px;
    }

    .rixon-gallery-head__subtitle {
        font-size: 17px;
    }

    .rixon-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rixon-gallery-card {
        min-height: 260px;
        border-radius: 20px;
    }

    .rixon-gallery-card__overlay {
        padding: 18px;
    }

    .rixon-gallery-card__title {
        font-size: 18px;
    }

    .rixon-gallery-card__caption {
        font-size: 14px;
    }
}

.rixon-contact-info-section {
    padding: 80px 0 100px;
    background: #f7f8fa;
}

.rixon-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(15, 35, 70, 0.05);
    margin-bottom: 26px;
}

.rixon-feature-card {
    padding: 26px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-right: 1px solid #e4e9f0;
}

.rixon-feature-card:last-child {
    border-right: none;
}

.rixon-feature-card__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rixon-feature-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
}

.rixon-feature-card__text {
    font-size: 15px;
    line-height: 1.55;
    color: #606b7c;
}

.rixon-feature-icon {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    color: #1d67d9;
}

.rixon-feature-icon::before,
.rixon-feature-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.rixon-feature-icon--shield::before {
    inset: 4px 7px 5px 7px;
    border: 2px solid #1d67d9;
    border-radius: 10px 10px 14px 14px;
    clip-path: polygon(50% 0%, 100% 20%, 100% 60%, 50% 100%, 0% 60%, 0% 20%);
}

.rixon-feature-icon--leaf::before {
    left: 6px;
    top: 5px;
    width: 22px;
    height: 22px;
    border: 2px solid #1d67d9;
    border-radius: 100% 0 100% 0;
    transform: rotate(-45deg);
}
.rixon-feature-icon--leaf::after {
    left: 16px;
    top: 8px;
    width: 2px;
    height: 18px;
    background: #1d67d9;
    transform: rotate(45deg);
}

.rixon-feature-icon--gear::before {
    left: 7px;
    top: 7px;
    width: 20px;
    height: 20px;
    border: 2px solid #1d67d9;
    border-radius: 50%;
}
.rixon-feature-icon--gear::after {
    left: 3px;
    top: 3px;
    width: 28px;
    height: 28px;
    border: 2px dashed #1d67d9;
    border-radius: 50%;
}

.rixon-feature-icon--support::before {
    left: 5px;
    top: 7px;
    width: 24px;
    height: 16px;
    border: 2px solid #1d67d9;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom: none;
}
.rixon-feature-icon--support::after {
    left: 12px;
    bottom: 5px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #1d67d9;
    border-bottom: 2px solid #1d67d9;
    border-radius: 0 0 8px 0;
}

.rixon-contact-panels {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(15, 35, 70, 0.05);
}

.rixon-contact-panel {
    padding: 32px 28px;
    border-right: 1px solid #e4e9f0;
}

.rixon-contact-panel:last-child {
    border-right: none;
}

.rixon-contact-panel__title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    color: #111827;
}

.rixon-contact-panel__desc {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #606b7c;
}

.rixon-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rixon-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rixon-contact-item__icon {
   
   
   
    margin-top: 2px;
    flex-shrink: 0;
}

.rixon-contact-item__text {
    color: #334155;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
}

.rixon-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.rixon-contact-form__row--full {
    grid-template-columns: 1fr;
}

.rixon-contact-form input,
.rixon-contact-form textarea {
    width: 100%;
    border: 1px solid #d7deea;
    background: #ffffff;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #111827;
    box-sizing: border-box;
    outline: none;
}

.rixon-contact-form textarea {
    min-height: 46px;
    resize: vertical;
}

.rixon-contact-form input:focus,
.rixon-contact-form textarea:focus {
    border-color: #1d67d9;
}

.rixon-contact-form__button,
.rixon-support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    border: none;
    background: #1d67d9;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rixon-contact-form__button:hover,
.rixon-support-button:hover {
    background: #1558bc;
    transform: translateY(-1px);
}

.rixon-contact-form__button {
    width: 100%;
}

.rixon-support-phone {
    display: inline-block;
    margin: 8px 0 12px;
    font-size: 36px;
    line-height: 1.1;
   
    color: #111827;
    text-decoration: none;
}

.rixon-support-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #20a34a;
    font-size: 16px;
    font-weight: 600;
}

.rixon-support-status__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #20c05c;
    display: inline-block;
}

@media (max-width: 1200px) {
    .rixon-features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .rixon-feature-card:nth-child(2) {
        border-right: none;
    }

    .rixon-feature-card:nth-child(1),
    .rixon-feature-card:nth-child(2) {
        border-bottom: 1px solid #e4e9f0;
    }

    .rixon-contact-panels {
        grid-template-columns: 1fr;
    }

    .rixon-contact-panel {
        border-right: none;
        border-bottom: 1px solid #e4e9f0;
    }

    .rixon-contact-panel:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .rixon-contact-info-section {
        padding: 65px 0 75px;
    }

    .rixon-features-row {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .rixon-feature-card {
        border-right: none;
        border-bottom: 1px solid #e4e9f0;
        padding: 20px 18px;
    }

    .rixon-feature-card:last-child {
        border-bottom: none;
    }

    .rixon-contact-panels {
        border-radius: 20px;
    }

    .rixon-contact-panel {
        padding: 24px 18px;
    }

    .rixon-contact-panel__title {
        font-size: 20px;
    }

    .rixon-support-phone {
        font-size: 28px;
    }

    .rixon-contact-form__row {
        grid-template-columns: 1fr;
    }
}



/* RIXON brand bar after contacts */
.rixon-brand-bar-section {
    padding: 0 0 90px;
    background: #f7f8fa;
}

.rixon-brand-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 32px 38px;
    background: #ffffff;
   
    overflow: hidden;
}

.rixon-brand-bar::before {
    content: "";
    position: absolute;
    inset: 0;
   
    pointer-events: none;
}

.rixon-brand-bar__logo,
.rixon-brand-bar__text,
.rixon-brand-bar__divider {
    position: relative;
    z-index: 1;
}

.rixon-brand-bar__logo img,
.rixon-brand-bar__logo .custom-logo {
    max-height: 56px;
    width: auto;
    display: block;
}

.rixon-brand-bar__text-logo {
    display: block;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #111827;
}

.rixon-brand-bar__divider {
    width: 1px;
    height: 48px;
    background: #d8e0eb;
}

.rixon-brand-bar__text {
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111827;
    text-align: left;
}

@media (max-width: 768px) {
    .rixon-brand-bar-section {
        padding: 0 0 70px;
    }

    .rixon-brand-bar {
        flex-direction: column;
        gap: 18px;
        padding: 28px 20px;
        border-radius: 20px;
    }

    .rixon-brand-bar__divider {
        width: 70px;
        height: 1px;
    }

    .rixon-brand-bar__text-logo {
        font-size: 36px;
    }

    .rixon-brand-bar__text {
        font-size: 18px;
    }
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5eaf1;
    padding: 26px 0;
}

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

.site-footer__left {
    display: flex;
    align-items: center;
    gap: 26px;
    min-width: 0;
}

.site-footer__logo {
    flex-shrink: 0;
}

.site-footer__logo img {
    max-height: 42px;
    width: auto;
    display: block;
}

.site-footer__text-logo {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    line-height: 1;
}

.site-footer__copyright {
    font-size: 16px;
    line-height: 1.5;
    color: #3f4958;
    white-space: nowrap;
}

.site-footer__nav {
    flex-shrink: 0;
}

.footer-menu {
    display: flex;
    align-items: center;
    gap: 56px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #2f3745;
    transition: color 0.25s ease;
}

.footer-menu a:hover,
.footer-menu .current-menu-item a,
.footer-menu .current_page_item a {
    color: #1d67d9;
}

@media (max-width: 1200px) {
    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__left {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 18px;
    }

    .site-footer__copyright {
        white-space: normal;
    }

    .site-footer__nav {
        width: 100%;
    }

    .footer-menu {
        gap: 28px;
        flex-wrap: wrap;
    }
}

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

    .site-footer__inner {
        gap: 16px;
    }

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

    .site-footer__logo img {
        max-height: 34px;
    }

    .site-footer__copyright {
        font-size: 14px;
    }

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

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



.hero-slider__prev,
.hero-slider__next {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50%;
    background: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    color: #1666d8 !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.hero-slider:hover .hero-slider__prev,
.hero-slider:hover .hero-slider__next {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}


.hero-slider__prev,
.hero-slider__next {
    top: 50% !important;
}

.hero-slider__prev {
    left: 22px !important;
}

.hero-slider__next {
    right: 22px !important;
}




/* ===== RIXON assembly line slider ===== */
.assembly-section {
    padding: 92px 0 96px;
    background: #f7f9fc;
    overflow: hidden;
}

.assembly-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.assembly-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.assembly-head__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 800;
    color: #0f1728;
    letter-spacing: -0.03em;
}

.assembly-head__divider {
    position: relative;
    width: 118px;
    height: 3px;
    margin: 22px auto 22px;
    background: #dce5f2;
    border-radius: 99px;
}

.assembly-head__divider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 34px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 99px;
    background: #1666d8;
}

.assembly-head__subtitle {
    margin: 0 auto;
    max-width: 720px;
    color: #526079;
    font-size: 18px;
    line-height: 1.7;
}

.assembly-slider-wrap {
    position: relative;
    padding: 0 58px 54px;
}

.assembly-slider {
    width: 100%;
    overflow: hidden;
}

.assembly-slider .swiper-wrapper {
    align-items: stretch;
}

.assembly-slider .swiper-slide {
    height: auto;
}

.assembly-card {
    position: relative;
    display: block;
    height: 360px;
    border-radius: 28px;
    overflow: hidden;
    background: #e8edf5;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.13);
    text-decoration: none;
    color: inherit;
}

.assembly-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.45s ease;
}

.assembly-card:hover img {
    transform: scale(1.06);
}

.assembly-card::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1666d8;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.assembly-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.assembly-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 58px 24px 22px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.78) 100%);
    color: #ffffff;
}

.assembly-card__title {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 6px;
}

.assembly-card__caption {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.assembly-slider__prev,
.assembly-slider__next {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    margin-top: -44px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.assembly-slider__prev:hover,
.assembly-slider__next:hover {
    transform: translateY(-2px);
    background: #1666d8;
}

.assembly-slider__prev {
    left: 0;
}

.assembly-slider__next {
    right: 0;
}

.assembly-slider__prev::before,
.assembly-slider__next::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 11px;
    height: 11px;
    border-top: 2px solid #0f1728;
    border-right: 2px solid #0f1728;
    transition: border-color 0.25s ease;
}

.assembly-slider__prev::before {
    transform: rotate(-135deg);
    left: 5px;
}

.assembly-slider__next::before {
    transform: rotate(45deg);
    right: 5px;
}

.assembly-slider__prev:hover::before,
.assembly-slider__next:hover::before {
    border-color: #ffffff;
}

.assembly-slider__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.assembly-slider__pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 !important;
    background: #c5d0df;
    opacity: 1;
}

.assembly-slider__pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 99px;
    background: #1666d8;
}

@media (max-width: 991px) {
    .assembly-section {
        padding: 72px 0 78px;
    }

    .assembly-slider-wrap {
        padding: 0 0 48px;
    }

    .assembly-slider__prev,
    .assembly-slider__next {
        display: none;
    }

    .assembly-card {
        height: 320px;
        border-radius: 22px;
    }
}

@media (max-width: 575px) {
    .assembly-section .container {
        padding: 0 16px;
    }

    .assembly-head {
        margin-bottom: 28px;
    }

    .assembly-head__subtitle {
        font-size: 16px;
    }

    .assembly-card {
        height: 250px;
    }
}

/* Product popup */
.product-card {
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 103, 217, 0.34);
    box-shadow: 0 24px 56px rgba(15, 35, 70, 0.11);
}

.product-card__photo-main,
.product-card__photo-thumb {
    padding: 0;
    cursor: pointer;
    appearance: none;
}

.product-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1d67d9;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.product-card__more span {
    transition: transform 0.25s ease;
}

.product-card:hover .product-card__more span,
.product-card__more:hover span {
    transform: translateX(5px);
}

.product-modal-open {
    overflow: hidden;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.product-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.product-modal[hidden] {
    display: none;
}

.product-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 32, 0.74);
    backdrop-filter: blur(9px);
}

.product-modal__dialog {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    width: min(1120px, 100%);
    max-height: min(760px, calc(100vh - 60px));
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
    transform: translateY(18px) scale(0.985);
    transition: transform 0.24s ease;
}

.product-modal.is-open .product-modal__dialog {
    transform: translateY(0) scale(1);
}

.product-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 8;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.82);
    color: #ffffff;
    font-size: 30px;
    line-height: 40px;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.product-modal__media {
    min-height: 520px;
    background: #eef3f9;
}

.product-modal__slider,
.product-modal__slide {
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.product-modal__slide img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.product-modal__nav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #1d67d9;
    box-shadow: 0 14px 34px rgba(15, 35, 70, 0.18);
}

.product-modal__nav::after {
    font-size: 17px;
    font-weight: 900;
}

.product-modal__pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #ffffff;
    opacity: 0.65;
}

.product-modal__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #1d67d9;
}

.product-modal__content {
    padding: 58px 54px 54px;
    overflow-y: auto;
}

.product-modal__label {
    margin-bottom: 14px;
    color: #1d67d9;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-modal__title {
    margin: 0 0 22px;
    color: #111827;
    font-size: clamp(20px, 3vw, 36px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.product-modal__text {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.78;
}

.product-modal__text p {
    margin: 0 0 16px;
}

.product-modal__text p:last-child {
    margin-bottom: 0;
}

.product-modal__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #1d67d9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(29, 103, 217, 0.22);
}

.product-modal__link span {
    transition: transform 0.25s ease;
}

.product-modal__link:hover span {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .product-modal {
        padding: 14px;
    }

    .product-modal__dialog {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 28px);
        border-radius: 24px;
    }

    .product-modal__media,
    .product-modal__slider,
    .product-modal__slide,
    .product-modal__slide img {
        min-height: 300px;
        height: 300px;
    }

    .product-modal__content {
        padding: 34px 24px 30px;
    }

    .product-modal__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 28px;
        line-height: 36px;
    }
}
