/*::-webkit-scrollbar {*/
/*    display: none;*/
/*}*/
/** {*/
/*    scrollbar-width: none;*/
/*    -ms-overflow-style: none;*/
/*}*/

@font-face {
    font-family: 'GeneralSansBold';
    font-style: normal;
    font-weight: 700;
    src: local('General Sans Bold'), url('../fonts/GeneralSans-Bold.woff') format('woff');
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background: #f7f7f7;
    color: #2a2525;
}
button,
input,
select,
textarea {
    font-family: "Montserrat", sans-serif;
}
a {
    color: inherit;
}

.container {
    width: 81.25rem;
}
section {
    margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    height: 3.125rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0.625rem;
    transition: all 0.25s ease-in;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    gap: 0.65rem;
}
.btn i {
    font-size: 1.5rem;
}
.btn.red {
    background: #d44b1a;
    color: #fff;
}
.btn.red:hover {
    background: #b83e13;
}
.btn.green {
    background: #1e2a2a;
    color: #fff;
}
.btn.green:hover {
    background: #000;
}

/* Section title */
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    font-family: GeneralSansBold, sans-serif;
}

/* Header */
.site-header {
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.35rem 0;
    padding-bottom: 0;
}
.logo img {
    width: 11.125rem;
}
.head-nav {
    display: flex;
    align-items: center;
    gap: 1.85rem;
    flex: 1;
    justify-content: center;
}
.head-nav a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.25s ease;
}
.head-nav a:hover {
    color: #d44b1a;
}
.head-btn {
    width: 12.5rem;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: #d44b1a;
    border: none;
    cursor: pointer;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.burger span {
    display: block;
    width: 1.15rem;
    height: 1.5px;
    background: #fff;
    transition: all 0.25s ease;
}

/* Mob menu — снизу вверх */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
}
.mob-menu.open {
    visibility: visible;
    pointer-events: all;
}
.mob-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mob-menu.open .mob-menu-overlay {
    opacity: 1;
}
.mob-menu-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 1.25rem 1.25rem 0 0;
    padding: 1.25rem;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.mob-menu.open .mob-menu-inner {
    transform: translateY(0);
}
.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.mob-menu-title {
    color: #0c4445;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}
.mob-close {
    border-radius: 6.25rem;
    border: 3px solid #fff;
    background: #0c4445;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mob-close img {
    width: 1.5rem;
    height: 1.5rem;
    transform: rotate(-135deg);
}
.mob-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mob-nav a {
    text-transform: uppercase;
}

/* Hero */
.hero-section {
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center center;
    margin-top: 5.881rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero_images{
    position: absolute;
    right: 5rem;
    bottom: 0;
    width: 48.25rem;
}
.hero_images img{
    position: relative;
    z-index: 1;
}
.circle{
    position: absolute;
    width: 17rem;
    height: 17rem;
    border-radius: 50%;
    left: 15.6rem;
    bottom: 7.4rem;
}
.circle span{
    position: absolute;
    inset: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
}
.circle span.circle1{
    inset: 0;
}
.circle span.circle2{
    inset: -3rem;
}
.circle span.circle3{
    inset: -6rem;
}
.circle span.circle4{
    inset: -9rem;
}
.circle span.circle5{
    inset: -12rem;
}

.circle1 { animation: pulse 4s infinite; }
.circle2 { animation: pulse 4s infinite .5s; }
.circle3 { animation: pulse 4s infinite 1s; }
.circle4 { animation: pulse 4s infinite 1.5s; }
.circle5 { animation: pulse 4s infinite 2s; }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .2;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: .2;
    }
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: relative;
    height: calc(100vh - 5.881rem);
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 27rem;
}
.hero-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem;
}
.hero-desc {
    font-weight: 500;
}
.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}
.hero-btns .btn {
    width: 19.5rem;
}
.hero-right {
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.hero-feature {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    z-index: 3;
}
.hero-feature--1 {
    top: 5rem;
    right: 0;
}
.hero-feature--2 {
    right: 30rem;
    top: 19rem;
}

.hero-feature--3 {
    bottom: 3rem;
    right: 5rem;
}
.hero-feature-icon {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 6.25rem;
    border: 3px solid #fff;
    background: #0c4445;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: default;
}
.hero-feature-icon img {
    width: 1.5rem;
    height: 1.5rem;
}
.hero-feature-card {
    width: 18rem;
    padding: 1rem 1.15rem;
    border-radius: 0.625rem;
    background: #fff;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    color: #2a2525;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.benefits-card {
    background: #fff;
    border-radius: 0.625rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.75rem;
    height: 13.5625rem;
}
.benefits-card--accent {
    background:
        linear-gradient(
            0deg,
            rgba(29, 247, 251, 0.26) 0%,
            rgba(29, 247, 251, 0.26) 100%
        ),
        linear-gradient(
            101deg,
            rgba(11, 136, 140, 0.5) 14.24%,
            rgba(193, 173, 41, 0.5) 64.94%,
            rgba(245, 168, 0, 0.5) 78.54%,
            rgba(240, 132, 2, 0.5) 93.6%,
            rgba(156, 0, 0, 0.5) 130.03%,
            rgba(156, 0, 0, 0.5) 149.94%
        );
    color: #fff;
}
.benefits-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefits-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.benefits-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.benefits-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0c4445;
}
.benefits-card--accent .benefits-title {
    color: #fff;
}
.benefits-desc {
    color: #0c4445;
}
.benefits-card--accent .benefits-desc {
    color: rgba(255, 255, 255);
}

/* Assortment */
.assortment-head {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.assortment-sub {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem;
}
.assortment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 1.85rem;
}
.product-card-img {
    position: relative;
    height: 21.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    overflow: hidden;
}
/*.product-card-img.card1 {*/
/*    background: #d6efc5;*/
/*}*/
/*.product-card-img.card2 {*/
/*    background: #eccad7;*/
/*}*/
/*.product-card-img.card3 {*/
/*    background: #d2ddee;*/
/*}*/
/*.product-card-img.card4 {*/
/*    background: #fff;*/
/*}*/
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}
.product-badges {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    right: 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
    gap: 0.5rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.625rem;
    border-radius: 0.3125rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.badge img {
    width: 1.15rem;
    height: 1.15rem;
}
.badge--red {
    background: #e93e40;
    color: #fff;
}
.badge--teal {
    background: #0b888c;
    color: #fff;
}
.badge--new {
    background: #67ced0;
    color: #fff;
    margin-left: auto;
}
.prod-modal .badge--new{
    margin-left: 0;
}
.product-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    justify-content: space-between;
}
.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}
.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.product-specs *{
    font-weight: 400;
}
.product-specs p{
    margin: 0;
}
.product-prices {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}
.product-price-old {
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.3;
}
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
}
.product-btns {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.product-btns-market {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.product-btns-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.btn.img {
    position: relative;
    padding: 0;
}
.btn.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Action buttons */
.btn-more {
    border: 1px solid #0c4445;
    color: #0c4445;
}
.btn-more img {
    width: 1.2rem;
    height: 1.2rem;
}
.btn-contact {
    background: #0c4445;
    color: #fff;
}
.prod-modal{
    display: none;
}
/* === Product Modal === */
.fancybox__content .prod-modal-inner,
.prod-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 62rem;
    width: 100%;
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.prod-modal-inner::-webkit-scrollbar {
    display: none;
}
.prod-modal.fancybox-content {
    padding: unset;
    background: none;
}
.prod-modal .fancybox-close-small {
    opacity: unset;
    border-radius: 6.25rem;
    border: 3px solid #fff;
    background: #0c4445;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    right: 1rem;
    top: 1rem;
}
.prod-modal .fancybox-button svg {
    width: 1.85rem;
    height: 1.85rem;
}
.prod-modal-gallery {
    display: flex;
    gap: 1.25rem;
    position: sticky;
    top: 0;
    align-self: start;
}
.prod-modal-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.prod-modal-thumb {
    width: 6.25rem;
    height: 6.8rem;
    border-radius: 0.625rem;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f0f0f0;
    padding: 0;
    transition: border-color 0.2s;
}
.prod-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prod-modal-thumb.active {
    border-color: #0c4445;
}
.prod-modal-desc{
    margin-bottom: -1rem;
}
.content h1{
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
.content h2{
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}
.content h3{
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.content h4{
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.content h5{
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.content h6{
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.prod-modal-main {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 1.5rem; */
    height: 25rem;
    /*background: #d6efc5;*/
}
.prod-modal-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    scrollbar-width: none;
}
.prod-modal-info::-webkit-scrollbar {
    display: none;
}

.prod-modal-badges {
    display: flex;
    gap: 1.25rem;
}
.prod-modal-name {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}
.prod-modal-chars strong {
    font-weight: 600;
}
.prod-modal-specs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.prod-modal-specs strong {
    font-weight: 600;
}
.prod-modal-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.prod-modal-section-title {
    font-size: 1.5rem;
    font-weight: 600;
}
.prod-modal-chars {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.prod-modal-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.prod-modal-list li {
    color: #3e3e3e;
    padding-left: 1rem;
    position: relative;
}
.prod-modal-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2a2525;
}

/* Kit / Комплект */
.kit-head {
    text-align: center;
    margin-bottom: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.kit-sub {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}
.kit-cards {
    display: flex;
    gap: 1rem;
    height: 30rem;
}
.kit-card {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}
.kit-card.active {
    flex: 2.1;
}
.kit-card.active .kit-card-body {
    padding: 1.85rem;
}
.kit-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.55s ease;
}
.kit-card:not(.active):hover .kit-card-bg {
    transform: scale(1.04);
}
.kit-card-overlay {
    position: absolute;
    inset: 0;
    border-radius: 0.625rem;
    background: linear-gradient(
        200deg,
        rgba(12, 68, 69, 0) 56.64%,
        rgba(12, 68, 69, 0.4) 77.06%
    );
    filter: blur(3px);
    z-index: 1;
}
.kit-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #fff;
}
.kit-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;

}

.kit-card-desc {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.45s ease,
        opacity 0.35s ease;
    opacity: 0;
}
.kit-card.active .kit-card-desc {
    transition-delay: 0.5s;
    max-height: 8rem;
    opacity: 0.85;
}

/* Video section */
.video-section {
    position: relative;
}
.video-back {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    inset: 0;
}
.video-card {
    display: flex;
    overflow: hidden;
    height: 30rem;
    position: relative;
}
.video-left {
    flex: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem;
}
.video-label {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}
.video-desc {
    max-width: 34rem;
}
.video-btn {
    width: 19.5rem;
}
.video-yt-btn i {
    font-size: 1.25rem;
}
.video-right {
    flex: 1;
    /*background: #fff;*/
    /*padding: 2rem;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.video-frame {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    /*border-radius: 50%;*/
    overflow: hidden;
    cursor: pointer;
}
.video_bg{
    position: absolute;
    inset: 1.5rem;
    pointer-events: none;
}
.video_bg img{
    display: block;
    width: 100%;
    height: 100%;
}
.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    padding-left: 0.05rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}
.video-frame:hover .video-play-btn {
    background: rgba(0, 0, 0, 0.65);
    transform: translate(-50%, -50%);
}
.video-frame video{
    object-fit: cover;
    display: block;
}
.video-play-btn svg {
    width: 2rem;
    height: 2rem;
}

/* Result section */
.result-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.result-sub {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}
.result-grid {
    display: flex;
    height: 37rem;
}
.result-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.result-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.result-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.1) 100%
        ),
        linear-gradient(
            180deg,
            rgba(12, 68, 69, 0.6) 0%,
            rgba(30, 169, 171, 0.6) 103.06%
        );
}
.result-card-body {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1.88rem;
}
.result-icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.result-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.result-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}
.result-card-desc {
    font-weight: 500;
}

/* Reviews */
.reviews-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.reviews-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.reviews-sub {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}
.reviews-slider-wrap {
    position: relative;
}
.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #0c4445;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

#reviewsPrev {
    left: -4rem;
}
#reviewsNext {
    right: -4rem;
}
.reviews-slider .slick-list {
    margin: 0 -0.55rem;
}
.reviews-slider .slick-slide {
    padding: 0 0.55rem;
}
.review-card {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    outline: none;
    padding: 1.25rem;
    background: white;
    height: 100%;
    border-radius: 0.625rem;
}
.reviews-slider .slick-track {
    display: flex !important;
}
.reviews-slider .slick-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column;
}
.reviews-slider .slick-slide > div {
    display: flex !important;
    flex: 1;
    height: 100%;
}
.review-compare {
    position: relative;
    overflow: hidden;
    height: 23.75rem;
    user-select: none;
    cursor: ew-resize;
}
.review-compare-before,
.review-compare-after {
    position: absolute;
    inset: 0;
}
.review-compare-before img,
.review-compare-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}
.review-compare-after {
    clip-path: inset(0 50% 0 0);
}
.compare-label {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    border-radius: 0.625rem;
    background: #fff;
    color: #000000;
    padding: 0.62rem;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}
.compare-label--after {
    left: auto;
    right: 0.85rem;
}
.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}
.compare-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid #c54102;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c54102;
    pointer-events: all;
    cursor: ew-resize;
}
.review-body {
    display: flex;
    flex-direction: column;
    gap: 1.85rem;
}
.review-author {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* guarantee-section */
.guarantee-section {
    position: relative;
    margin-top: 4rem;
}
.guarantee-img {
    position: absolute;
    width: 115.66944rem;
    height: 67.67725rem;
    transform: rotate(-9.156deg);
    top: -23rem;
    left: -9rem;
    z-index: -1;
}
.guarantee-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: white;
}
.guarantee-left {
    display: flex;
    width: 34rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.875rem;
}
.guarantee-right {
    height: 27.75rem;
}

/* Contacts */
.contacts {
    /* background: white; */
}
.contacts-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contacts-left {
    display: flex;
    align-items: center;
}
.contacts-left .container {
    width: 100%;
}
.contacts-head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contacts-head .contacts-label {
    color: #2a2525;
}
.contacts-left-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contacts-item-val:hover {
    text-decoration: underline;
}
.contacts-label {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0c4445;
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.contacts-col {
    display: flex;
    flex-direction: column;
    gap: 1.85rem;
}
.contacts-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contacts-item-label {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0c4445;
}
.contacts-social {
    display: flex;
    gap: 1.15rem;
}
.contacts-social-link {
    font-size: 2rem;
    color: #c54102;
    transition: opacity 0.25s ease;
}
.contacts-social-link:hover {
    opacity: 0.85;
}
.contacts-map {
    position: relative;
    height: 32rem;
}
.contacts-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* === Partners === */
.partners {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.partners-head {
    display: flex;
    flex-direction: column;
    gap: 1.85rem;
}
.partners-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.partners-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.partners .container {
    position: relative;
    z-index: 1;
}
.partners-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 46rem;
    color: #fff;
    padding: 2.5rem 0;
}
.partners-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    width: 40rem;
}
.partners-label {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: start;
}

/* Slider */
.partners-slider-wrap {
    position: relative;
    width: 26.5rem;
}
.partners-slider {
    overflow: hidden;
}

/* Важно — без этого slick не работает */
.partners-slider .slick-list {
    overflow: hidden;
}
.partners-slider .slick-track {
    display: flex;
}
.partners-slider .slick-slide {
    float: left;
    min-height: 1px;
}

.partners-card {
    border-radius: 0.625rem;
    background: #fff;
    padding: 1.25rem;
    padding-bottom: 2rem;
    display: flex !important;
    flex-direction: column;
    gap: 1.25rem;
    /* width: 26rem; */
    text-align: center;
    color: #000;
}
.partners-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 11rem;
}
.partners-card-logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.partners-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.partners-slider .partners-slide {
    padding: 0 10px;
    box-sizing: border-box;
}
.partners-slider {
    margin: 0 -10px;
}
.partners-card {
    height: 100%;
}

/* Dots */
.partners-slider .slick-dots {
    display: flex !important;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 1.25rem 0 0;
    list-style: none;
}
.partners-slider .slick-dots li {
    line-height: 0;
}
.partners-slider .slick-dots li button {
    width: 3.15rem;
    height: 0.3125rem;
    background: #fff;
    border-radius: 0;
    border: none;
    font-size: 0;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s;
    display: block;
}
.partners-slider .slick-dots li.slick-active button {
    background: #0c4445;
}

.partners-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -5rem;
    right: -5rem;
    pointer-events: none;
    z-index: 100;
}

.partners-prev,
.partners-next {
    z-index: 100;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #0c4445;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.25s ease;
    pointer-events: auto;
}

.partners-prev:hover,
.partners-next:hover {
    background: #0a3233;
}

/* CTA Form */
.cta-card {
    position: relative;
    border-radius: 0.625rem;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38.5rem;
    padding: 2.5rem 0;
}
.cta-product {
    position: absolute;
    width: 22.375rem;
    height: 41.375rem;
    left: -3rem;
    bottom: 0;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}
.cta-back {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    pointer-events: none;
}
.cta-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.cta-title {
    color: #fff;
}
.cta-form {
    display: flex;
    width: 40rem;
    flex-direction: column;
    gap: 1.25rem;
}
.cta-input {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 0.625rem;
    padding: 1.25rem 1rem;
    transition: background 0.2s;
    resize: none;
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
}
.cta-input.error{
    background: #ffb3b3!important;
}
.cta-input::placeholder {
    color: #aaa;
    font-weight: 500;
}
.cta-input:focus {
    background: #fff;
}
.cta-textarea {
    min-height: 8rem;
    font-family: Montserrat, sans-serif;
}
.cta-privacy {
    font-weight: 500;
    text-align: left;
    color: white;
}
.cta-privacy a{
    text-decoration: underline;
}
.cta-privacy a:hover{
    text-decoration: none;
}
.cta-submit-wrap {
    display: flex;
    justify-content: flex-end;
}
.cta-submit-wrap .btn {
    width: 14rem;
}

/* === FAQ === */
.faq-head {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-sub {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.faq-item {
    background: #fff;
    border-radius: 0.625rem;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in;
    position: relative;
}
.faq-item:after{
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    90deg,
                    rgba(12, 68, 69, 0.15) 0%,
                    rgba(30, 169, 171, 0) 55.96%
            ),
            linear-gradient(270deg, #bdcf8a 0.62%, #88dacb 27.63%, #1ea9ab 100%);
    transition: all 0.35s;
    opacity: 0;
    content: "";
    pointer-events: none;
}
.faq-item.active:after {
   opacity: 1;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 1;
}
.faq-question span {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
}
.faq-item.active .faq-question span {
    color: #fff;
}
.faq-btn {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #0c4445;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s;
}
.faq-btn::before,
.faq-btn::after {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 2px;
    transition: all 0.25s ease-in;
}
.faq-btn::before {
    width: 1rem;
    height: 2px;
}
.faq-btn::after {
    width: 2px;
    height: 1rem;
}
.faq-item.active .faq-btn::after {
    transform: rotate(90deg);
    opacity: 0;
}
.faq-answer {
    position: relative;
    z-index: 1;
    display: none;
    padding: 0 1.25rem 1.25rem;
}
.faq-answer p {
    color: white;
    max-width: 45rem;
}

/* footer */
.site-footer {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.5rem;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 16.875rem;
    height: 7.96581rem;
}
.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-content-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-form {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}
.footer-phone-input {
    flex: 1;
    height: 3.25rem;
    background: #fff;
    border: none;
    border-radius: 0.625rem;
    padding: 0 1.25rem;
    outline: none;
    transition: all 0.35s;
}
.footer-phone-input.error{
    background: #faa5a5;
}
.footer-phone-input::placeholder {
    color: #aaa;
    font-weight: 500;
}

.footer-phone-btn {
    flex-shrink: 0;
    min-width: 13rem;
}

.footer-phone-btn:hover {
    background: #0a3233;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-col-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0c4445;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.footer-nav a {
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-nav a:hover {
    text-decoration: underline;
}

a.footer-contact-val:hover {
    text-decoration: underline;
}

.footer-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.foot-center {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social {
    font-size: 2.15rem;
    color: #c54102;
    transition: opacity 0.2s;
}

.footer-social:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-top: 1px solid #c5400230;
}

.footer-privacy {
    color: #888;
    text-decoration: none;
    font-weight: 500;
}

.footer-privacy:hover {
    color: #2a2525;
}

/* anatomy */
.anatomy {
    position: relative;
    height: 54.9375rem;
    margin-bottom: 0;
}
.anatomy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 2rem;
}
.anatomy-header-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.anatomy-subtitle {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem;
}

.anatomy-description {
    max-width: 27.5rem;
}

.anatomy-content {
    position: relative;
}

.anatomy-back-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 81rem;
    height: 81rem;
    opacity: 0.5;
    pointer-events: none;
}
.anatomy-main-img {
    position: absolute;
    /*width: 100%;*/
    margin: 0 auto;
    inset: 0;
    height: 100%;
    display: block;
    pointer-events: none;
}

.anatomy-card {
    position: absolute;
    background: #fff;
    padding: 0.8125rem 1.25rem;
    border-radius: 0.625rem;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    width: 17.5rem;
    pointer-events: auto;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}
.anatomy-card.active {
    box-shadow:
        0 4px 30px 0 rgba(11, 136, 140, 0.5),
        0 4px 20px 0 rgba(0, 0, 0, 0.1);
}

.anatomy-card span {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #2a2525;
}

.card-left-1 {
    top: 9.5rem;
    left: 0;
}

.card-left-2 {
    top: 19rem;
    left: 3rem;
}

.card-left-3 {
    top: 26.5rem;
    left: 7rem;
    width: 20rem;
}

.card-right-1 {
    top: 6.75rem;
    right: 0;
}

.card-right-2 {
    top: 16.5rem;
    right: 3rem;
}

.card-right-3 {
    top: 25.5rem;
    right: 2.3rem;
}
.wow{
    visibility: hidden;
}
.page{
    padding-top: 10rem;
    padding-bottom: 3rem;
}
.page_block{
    border-radius: 20px;
    background: white;
    padding: 2rem;
}

.page_block .section-title{
    font-size: 2rem;
    margin-bottom: 2rem;
}