@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter/Inter-V.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
/************************************************************************/
body {
    margin: 0 auto;
    /*max-width: 1920px;*/
    padding: 0;
    font-family: Inter, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #303030;
}
a {
    text-decoration: none;
}
h1,h2,h3 {
    margin: 0;
}
img {
    max-width: 100%;
}
.ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a:hover {
    opacity: 0.8;
}
.hover:hover {
    opacity: 0.8;
    cursor: pointer;
}
.ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
input[type="submit"]:hover {
    opacity: 0.8;
    cursor: pointer;
}
.logo img {
    max-height: 60px;
}
.logo span, .logo a {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}
input:focus {
    outline: none;
}
textarea:focus {
    outline: none;
    border: initial;
}
.container {
    max-width: 1920px;
    width: calc(100% - 200px);
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
 /*********************************************************/

:root{
    --color-white: #fff;
    --color-black: #000;
    --color-dark: #0d0f14;
    --color-dark-2: #151922;
    --color-primary: #0092ca;
    --color-primary-hover: #0079a8;
    --color-text: #ffffff;
    --color-text-muted: rgba(255,255,255,.78);
    --color-border: rgba(255,255,255,.16);
    --color-overlay: rgba(0,0,0,.65);
    --header-height: 88px;
    --radius: 14px;
    --transition: .3s ease;
}

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

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    /*background: #000;*/
    /*color: #fff;*/
}

body.menu-open,
body.popup-open{
    overflow: hidden;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

a{
    text-decoration: none;
    transition: var(--transition);
}

button{
    font: inherit;
    cursor: pointer;
}

/* HEADER */
.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(13, 15, 20, .88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner{
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

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

.header-nav .menu,
.mobile-nav .mobile-menu-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-nav .menu{
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav .menu > li{
    position: relative;
    display: flex;
    align-items: center;
}

.header-nav .menu > li > a{
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    padding: 12px 8px;
    display: inline-flex;
    align-items: center;
}

.header-nav .menu > li > a:hover{
    color: var(--color-primary);
}

.header-nav .menu .sub-menu{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: #11151d;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,.25);
}
.header-nav .menu > li.menu-item-has-children::after{
    content:"";
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:12px;
}
.header-nav .menu .sub-menu li a{
    display: block;
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
}

.header-nav .menu .sub-menu li a:hover{
    background: rgba(255,255,255,.04);
    color: var(--color-primary);
}

.header-nav .menu .menu-item-has-children.submenu-open > .sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-toggle{
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.submenu-toggle span{
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: var(--transition);
    margin-top: -3px;
}

.menu-item-has-children.submenu-open > .submenu-toggle span{
    transform: rotate(-135deg);
    margin-top: 3px;
}

.header-cta,
.mobile-menu__cta,
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 600;
    line-height: 1.2;
    transition: var(--transition);
}

.header-cta{
    /*background: var(--color-primary);*/
    color: #fff;
    border: 1px solid var(--color-primary);
    white-space: nowrap;
}

.header-cta:hover{
    background: var(--color-primary);
    border-color: var(--color-primary-hover);
}

.burger{
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    display: none;
    position: relative;
}

.burger span{
    position: absolute;
    left: 8px;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    transform-origin: center;
}

.burger span:nth-child(1){ top: 13px; }
.burger span:nth-child(2){ top: 21px; }
.burger span:nth-child(3){ top: 29px; }

.burger.is-active span:nth-child(1){
    top: 21px;
    transform: rotate(45deg);
}

.burger.is-active span:nth-child(2){
    opacity: 0;
}

.burger.is-active span:nth-child(3){
    top: 21px;
    transform: rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu{
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: linear-gradient(180deg, #11151d 0%, #0c0f15 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__inner{
    padding: 24px 20px 32px;
}

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

.mobile-menu-list > li{
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-menu-list > li > a{
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    padding: 16px 48px 16px 0;
}

.mobile-menu-list .submenu-toggle{
    position: absolute;
    right: 0;
    top: 10px;
}

.mobile-menu-list .sub-menu{
    display: none;
    list-style: none;
    padding: 0 0 12px 0;
    margin: 0;
}

.mobile-menu-list .sub-menu li a{
    display: block;
    color: rgba(255,255,255,.72);
    padding: 10px 0 10px 16px;
    font-size: 17px;
    line-height: 1.35;
}

.mobile-menu__cta{
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    margin-top: 24px;
}

.mobile-menu__cta:hover{
    background: var(--color-primary-hover);
}

/* HERO */
.hero{
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-bg::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .10) 32%, rgba(0, 0, 0, .15) 100%);
}

.hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.hero-inner{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.48) 38%,
            rgba(0, 0, 0, 0.22) 65%,
            rgba(0, 0, 0, 0.10) 100%
    );
    pointer-events: none;
}
.hero-title{
    font-size: 58px;
    line-height: 1.04;
    font-weight: 700;
    margin: 0 0 28px;
    max-width: 740px;
    color: #fff;
}

.hero-title span{
    color: var(--color-primary);
}

.hero-prices{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.hero-price-item{
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-price-label{
    font-size: 22px;
    color: rgba(255,255,255,.92);
}

.hero-price-value{
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.hero-actions{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.btn{
    border: 1px solid transparent;
    min-height: 58px;
}

.btn-primary{
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover{
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-outline{
    background: rgba(255,255,255,.04);
    color: #fff;
    border-color: rgba(255,255,255,.28);
}

.btn-outline:hover{
    background: rgba(255,255,255,.08);
    border-color: var(--color-primary);
}

.hero-features{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
    max-width: fit-content;
}

.hero-feature{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    width: 248px;
}

.hero-feature-icon{
    width: 22px;
    height: 22px;
    color: var(--color-primary);
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-feature-icon img {
    height: 22px;
}

.hero-image{
    justify-content: center;
    align-items: center;
    display: none;
}

.hero-image img{
    max-width: 100%;
    max-height: 700px;
    object-fit: contain;
}

/* POPUP */
.site-popup{
    position: fixed;
    inset: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.site-popup.is-active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-popup__overlay{
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    /*backdrop-filter: blur(4px);*/
}

.site-popup__dialog{
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 30px);
    max-width: 560px;
    transform: translate(-50%, -50%) scale(.96);
    background: #11151d;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 34px 28px 28px;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    transition: var(--transition);
}

.site-popup.is-active .site-popup__dialog{
    transform: translate(-50%, -50%) scale(1);
}

.site-popup__close{
    position: absolute;
    top: 2px;
    right: 2px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-popup__close:hover{
    background: rgba(255,255,255,.12);
}
.site-popup__content {
    padding-top: 30px;
}
.site-popup__content h3{
    color: #fff;
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
}

.site-popup__content p{
    margin: 0 0 24px;
    color: rgba(255,255,255,.72);
    font-size: 16px;
}

/* CF7 */
.cf7-form .cf7-row + .cf7-row{
    margin-top: 16px;
}

.cf7-field{
    display: block;
}

.cf7-label{
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
}

.cf7-input,
.cf7-textarea{
    width: 100%;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    color: #fff;
    padding: 14px 16px;
    outline: none;
    transition: var(--transition);
    font-size: 15px;
}

.cf7-input{
    min-height: 52px;
}

.cf7-textarea{
    min-height: 130px;
    resize: vertical;
}

.cf7-input:focus,
.cf7-textarea:focus{
    border-color: var(--color-primary);
}

.cf7-input::placeholder,
.cf7-textarea::placeholder{
    color: rgba(255,255,255,.42);
}

.cf7-submit-row{
    margin-top: 22px;
}

.cf7-submit-row .wpcf7-submit{
    width: 100%;
    border: 0;
}

/* CF7 service messages */
.wpcf7 form .wpcf7-response-output{
    margin: 18px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    /*color: #fff;*/
}
.cfg-cf7.cfg-cf7--callback {
    margin-top: 30px;
}
.wpcf7-not-valid-tip{
    font-size: 13px;
    margin-top: 6px;
    color: #ff8f8f;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #0092ca!important;
}
.wpcf7#wpcf7-f14-o1 form .wpcf7-response-output {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1200px){
    .hero-title{
        font-size: 48px;
    }

    .hero-price-value{
        font-size: 34px;
    }
}
@media (min-width: 1025px){
    .header-nav .menu > .menu-item-has-children:hover > .sub-menu{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header-nav .menu > .menu-item-has-children:hover > .submenu-toggle span{
        transform: rotate(-135deg);
        margin-top: 3px;
    }
    .header-nav .submenu-toggle{
        pointer-events: none;
    }
}
@media (max-width: 1024px){
    :root{
        --header-height: 78px;
    }

    .header-nav,
    .header-cta{
        display: none;
    }

    .burger{
        display: block;
    }

    .hero{
        min-height: auto;
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 50px;
    }

    .hero-inner{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title{
        font-size: 42px;
        max-width: 100%;
    }

    .hero-image{
        order: 2;
    }

    .hero-content{
        order: 1;
    }

    .hero-image img{
        max-height: 520px;
    }
}

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

    .logo img{
        max-height: 40px;
    }

    .hero-title{
        font-size: 30px;
        line-height: 1.08;
        margin-bottom: 22px;
        font-weight: 400;
    }

    .hero-price-label{
        font-size: 18px;
    }

    .hero-price-value{
        font-size: 28px;
    }

    .hero-actions{
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn{
        width: 100%;
    }
    .hero-actions.ha-top .btn{
        width: 129px;
    }

    .hero-features{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-feature{
        font-size: 16px;
    }

    .site-popup__dialog{
        padding: 30px 18px 20px;
    }

    .site-popup__content h3{
        font-size: 24px;
    }

    .mobile-menu-list > li > a{
        font-size: 18px;
    }

    .mobile-menu-list .sub-menu li a{
        font-size: 16px;
    }
}


/***************************************/

:root {
    --brand-50: #f8f6f4;
    --brand-100: #f2f2f2;
    --brand-200: #d9d9d9;
    --brand-300: #bfbfbf;
    --brand-400: #9a9a9a;
    --brand-500: #7a7a7a;
    --brand-600: #5c5c5c;
    --brand-700: #3f3f3f;
    --brand-800: #0092ca;
    --brand-900: #121212;
    --brand-950: #202020;
    --white: #ffffff;
    --green: #22c55e;
    --green-dark: #16a34a;
    --blue: #3b82f6;
    --red: #dc2626;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 10px 40px rgba(61, 54, 48, .08);
    --shadow-premium: 0 24px 60px rgba(61, 54, 48, .14);
    --border: 1px solid var(--brand-200);
    --container: 1280px;
    --container-sm: 900px;
}


body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

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

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

textarea {
    resize: vertical;
    min-height: 110px;
}

.container-sm {
    max-width: calc(var(--container-sm) + 32px);
}

.section {
    padding: 96px 0;
    scroll-margin-top: 96px;
}

.section-white {
    background: var(--white);
}

.section-soft {
    position: relative;
    overflow: hidden;
    background:#F3F3F3;
}
.section-dark {
    background: var(--brand-950);
    color: var(--white);
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-title,
.section-title-sm {
    margin: 0 0 40px;
    font-weight: 700;
    color: var(--brand-900);
    line-height: 1.15;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
}
.section-title.st-custom-1 {
    max-width: 965px;
    margin: 0 auto 24px auto;
}
.section-title.st-custom-2 {
    max-width: 965px;
    margin: 0 auto 24px auto;
}

.section-title-sm {
    font-size: clamp(28px, 3vw, 36px);
}

.section-subtitle {
    margin: 0 auto;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--brand-600);
}

.text-white {
    color: var(--white) !important;
}

.text-light {
    color: #d8d3cd !important;
}

.text-muted {
    color: var(--brand-700);
    line-height: 1.7;
}

.big-text {
    font-size: 18px;
    line-height: 1.8;
}

.ta-center {
    text-align: center;
}

.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.p-32 { padding: 32px; }
.p-40 { padding: 40px; }

.stack-24 > * + * {
    margin-top: 24px;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-2-sm,
.hero-grid,
.config-grid,
.lead-grid,
.narrow-grid {
    display: grid;
    gap: 32px;
}

.grid-2,
.hero-grid,
.config-grid,
.lead-grid,
.narrow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

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



.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.messengers {
    display: flex;
    align-items: center;
    gap: 12px;
}

.messengers a {
    font-size: 14px;
    color: var(--brand-600);
}

.phone {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-900);
}

.heros {
    padding: 128px 0 96px;
    background: linear-gradient(135deg, var(--brand-50), #fff, var(--brand-100));
}

.hero-grid {
    align-items: center;
    gap: 64px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--brand-100);
    color: var(--brand-800);
    font-size: 14px;
    font-weight: 500;
}

.badge-soft {
    background: var(--brand-100);
    color: var(--brand-800);
}

.badge-dark {
    background: rgba(255,255,255,.1);
    color: #f3efe9;
}

.badge-outline {
    background: var(--white);
    color: var(--brand-800);
    border: 1px solid var(--brand-200);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1.6); opacity: .3; }
    100% { transform: scale(1); opacity: 1; }
}

.heros .hero-title {
    margin: 0 0 24px;
    font-size: clamp(42px, 6vw, 42px);
    line-height: 1.05;
    color: #0092ca;
}

.heros .hero-title span {
    color: var(--brand-700);
}

.hero-text {
    max-width: 680px;
    margin: 0 0 32px;
    font-size: 20px;
    line-height: 1.7;
    color: var(--brand-700);
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-pill {
    padding: 12px 16px;
    border: 1px solid var(--brand-200);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,.03);
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-800);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}
.hero-actions.ha {
    align-items: initial;
    flex-direction: column;
}

.price-box p {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--brand-600);
}

.price-box strong {
    display: block;
    font-size: clamp(36px, 4vw, 52px);
    color: var(--brand-900);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: var(--brand-600);
    font-size: 14px;
}

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

.tag {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--brand-100);
    color: var(--brand-900);
}

.link-btn {
    padding: 0;
    color: var(--brand-800);
    font-weight: 600;
    text-decoration: underline;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img,
.config-grid img,
#b2b img {
    height: 560px;
    object-fit: cover;
}

.rounded-xl {
    border-radius: 24px;
}

.overflow-hidden {
    overflow: hidden;
}

.shadow-premium {
    box-shadow: var(--shadow-premium);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.img-zoom img {
    transition: transform .6s ease;
}

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

.floating-card {
    position: absolute;
    z-index: 2;
    max-width: 280px;
    padding: 24px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--brand-100);
    box-shadow: var(--shadow-soft);
}

.floating-left {
    bottom: -24px;
    left: -24px;
}

.floating-right {
    top: 24px;
    right: 24px;
}

.glass {
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(14px);
}

.floating-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-900);
}

.floating-subtitle {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--brand-600);
}

.floating-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--brand-600);
}

.card {
    border-radius: 32px;
    overflow: hidden;
}

.light-card {
    background: var(--brand-50);
    border: 1px solid var(--brand-200);
    box-shadow: var(--shadow-soft);
}
.light-card.white-card {
    background: #fff;
}

.white-card {
    background: var(--white);
    border: 1px solid var(--brand-200);
    box-shadow: var(--shadow-soft);
}

.dark-card {
    background: var(--brand-900);
    color: var(--white);
    box-shadow: var(--shadow-premium);
}

.eyebrow {
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--brand-700);
}

.eyebrow-light {
    color: #e3ddd6;
}

.check-list {
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 28px;
    line-height: 1.7;
    color: var(--brand-700);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-dark);
    font-weight: 700;
}

.check-list-light li {
    color: #f1ece7;
}

.check-list-light li::before {
    color: #d2c5b7;
}

.check-list.small li {
    font-size: 15px;
}
.model-video-trigger {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.model-video-trigger img,
.model-video-trigger video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.model-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.model-play-btn svg {
    display: block;
    width: 100%;
    height: 100%;
}

.model-play-btn circle {
    fill: rgba(255, 255, 255, 0.32);
    stroke: rgba(255, 255, 255, 0.72);
    stroke-width: 2;
    backdrop-filter: blur(3px);
}

.model-play-btn polygon {
    fill: rgba(255, 255, 255, 0.95);
}

.model-video-trigger.is-playing .model-play-btn {
    opacity: 0;
    pointer-events: none;
}

.model-video-trigger video {
    background: #000;
}
.model-card {
    overflow: hidden;
    border: 1px solid var(--brand-200);
    border-radius: 24px;
    background: var(--brand-50);
    transition: .3s ease;
}

.model-card:hover {
    box-shadow: var(--shadow-soft);
}

.model-image {
    height: 585px;
    overflow: hidden;
}

.model-image img {
    height: 100%;
    object-fit: cover;
}

.model-body {
    padding: 32px;
}

.model-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.model-top h3 {
    margin: 0 0 4px;
    font-size: 32px;
    color: var(--brand-900);
}

.model-top p {
    margin: 0;
    color: var(--brand-600);
}

.price-chip {
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--brand-800);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.table-card {
    overflow: hidden;
    border: 1px solid var(--brand-200);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--brand-100);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--brand-200);
    border-right: 1px solid var(--brand-200);
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: none;
}

.comparison-table th {
    text-align: left;
    color: var(--brand-900);
    font-weight: 600;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    color: var(--brand-700);
}

.comparison-table tbody tr:hover {
    background: var(--brand-50);
}

.mini-card,
.info-card {
    padding: 24px;
    border-radius: 24px;
    background: #f3f3f3;
    /*box-shadow: var(--shadow-soft);*/
}

.mini-card .num,
.num-light {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-600);
}

.mini-card h3,
.info-card h3,
.step-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-900);
}

.mini-card p,
.info-card p,
.info-card small {
    margin: 0;
    line-height: 1.7;
    color: var(--brand-700);
}

.step-card {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background: rgba(255,255,255,.05);
}

.step-card h3 {
    color: var(--white);
}

.step-card p {
    margin: 0;
    line-height: 1.7;
    color: #ddd5cc;
}

.num-light {
    color: #0092CA;
}

.lead-magnet {
    margin-top: 48px;
    padding: 40px;
    border-radius: 32px;
    background: var(--white);
    box-shadow: var(--shadow-premium);
}

.form-card {
    padding: 32px;
    border: 1px solid var(--brand-200);
    border-radius: 24px;
    background: var(--brand-50);
}

.form-card h4 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-900);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--brand-700);
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--brand-300);
    border-radius: 12px;
    background: var(--white);
    color: var(--brand-900);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
textarea {
    max-height: 150px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--brand-400);
    box-shadow: 0 0 0 3px rgba(168, 150, 132, .18);
}

.consult-block {
    margin-top: 48px;
    padding: 40px;
    border-radius: 32px;
    background: var(--brand-900);
    box-shadow: var(--shadow-premium);
}

.consult-block input,
.consult-block textarea {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: var(--white);
}

.consult-block input::placeholder,
.consult-block textarea::placeholder {
    color: #d1c7bc;
}
.cf-black .wpcf7 form .wpcf7-response-output {
    color: #fff;
}
.cf-black .footer-socials {
    margin-bottom: 0;
}
.grid-2-sm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.grid-2-sm textarea {
    grid-column: 1 / -1;
    width: 100%;
    height: 120px;
    min-height: 120px;
    box-sizing: border-box;
    resize: none;
}
.grid-2-sm .wpcf7-form-control-wrap {
    width: 100%;
}

.grid-2-sm .wpcf7-form-control-wrap:has(textarea) {
    grid-column: 1 / -1;
}

.grid-2-sm textarea {
    width: 100%;
    height: 120px;
    min-height: 120px;
    box-sizing: border-box;
    resize: none;
    display: block;
}

.grid-2-sm textarea {
    grid-column: 1 / -1;
}

.form-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.form-stack .form-message,
.form-card .form-message {
    margin-top: 12px;
    font-size: 14px;
}

.form-message.error {
    color: var(--red);
}

.form-message.success {
    color: var(--green-dark);
}

.note,
.small-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--brand-500);
}

.text-stack {
    display: grid;
    gap: 12px;
    margin: 24px 0 32px;
}

.text-stack p {
    margin: 0;
    color: var(--brand-700);
    line-height: 1.7;
}

.card-label {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-500);
}

.info-card small {
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

.info-card-wide {
    grid-column: 1 / -1;
}

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

.contacts-list {
    display: grid;
    gap: 24px;
    margin-top: 50px;
}
.contacts-list iframe, .cc-right iframe {
    border-radius: 32px;
}
.contacts-list .phones-str {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}
.contact-label {
    margin-bottom: 4px;
    font-size: 14px;
    color: #95d2e9;
}

.contact-big {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
}

.dark-card a,
.dark-card p {
    color: #f2ece7;
}

.text-link {
    align-self: center;
    color: var(--brand-800);
    font-weight: 500;
    text-decoration: underline;
}

.faq-list {
    display: grid;
}

.faq-item {
    overflow: hidden;
    border-bottom: 1px solid var(--brand-200);
}
.faq-item:last-child {
    /*border-bottom: 0;*/
}

.accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    /*background: var(--brand-50);*/
    text-align: left;
    transition: background .2s;
    font-size: 18px;
}

.accordion-btn:hover {
    opacity: 0.8;
}

.accordion-btn span:first-child {
    font-weight: 600;
    color: var(--brand-900);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: transform .2s ease;
    background: #121212;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    flex: 0 0 40px;
    border-radius: 10px;
    box-sizing: border-box;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer {
    padding: 15px 24px 24px;
    color: var(--brand-700);
    line-height: 1.7;
}
.sp-btn {
    cursor: pointer;
}
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 50px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 600;
    text-align: center;
    transition: .2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 28px;
}

.btn-block {
    display: inline-flex;
    width: 100%;
}

.btn-primary {
    background: var(--brand-800);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(72,64,56,.18);
}
.btn-transparent {
    border-color: #fff;
    color: #fff;
}
.btn-wh {
    background: #fff;
    color: #121212!important;
}
.btn-wh-gray {
    background: transparent;
    color: #121212;
    border: solid 1px #BFBFBF;
}
.btn-black {
    background: #121212;
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-700);
}

.btn-outline {
    background: var(--white);
    color: var(--brand-800);
    border-color: var(--brand-800);
}

.btn-outline:hover {
    background: var(--brand-50);
}

.btn-light {
    background: var(--white);
    color: var(--brand-900);
    border-color: var(--brand-300);
}

.btn-light:hover {
    background: var(--brand-100);
}

.btn-white {
    background: #0092ca;
    color: #ffffff;
}

.btn-white:hover {
   opacity: 0.8;
}

.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-max {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6f7cff 0%, #5b8cff 45%, #4aa3ff 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 24px rgba(91, 140, 255, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-green:hover {
    background: var(--green-dark);
}

.mobile-bottom-bar {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0,0,0,.5);
}

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

.modal-dialog {
    width: 100%;
    max-width: 760px;
    border-radius: 32px;
    background: var(--white);
    box-shadow: var(--shadow-premium);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--brand-200);
}

.modal-header h3 {
    margin: 0 0 6px;
    font-size: 32px;
    color: var(--brand-900);
}

.modal-header p {
    margin: 0;
    font-size: 14px;
    color: var(--brand-600);
}

.modal-close {
    font-size: 28px;
    color: var(--brand-600);
}

.modal-body {
    padding: 24px;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeIn .7s ease-out forwards;
}

.delay-1 {
    animation-delay: .12s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-500);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-600);
}

@media (max-width: 1199px) {
    .grid-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .floating-left,
    .floating-right {
        display: none;
    }
}

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

    .grid-2,
    .hero-grid,
    .config-grid,
    .lead-grid,
    .narrow-grid,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }

    .heros {
        padding: 112px 0 72px;
    }

    .hero-image-wrap img,
    .config-grid img,
    #b2b img {
        height: 420px;
    }

    .p-40 {
        padding: 28px;
    }

    .lead-magnet,
    .consult-block {
        padding: 28px;
    }

    .footer-links {
        text-align: left;
    }

    .info-card-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 65px;
    }

    .header-row {
        min-height: 64px;
    }

    .logo-text {
        font-size: 28px;
    }

    .hero-text,
    .section-subtitle,
    .big-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        flex: 1 1 auto;
    }

    .grid-2-sm {
        grid-template-columns: 1fr;
    }

    .table-wrap {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 680px;
    }

    .mobile-bottom-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 16px;
        background: rgb(255 255 255 / 77%);
        backdrop-filter: blur(12px);
        box-shadow: 0 -10px 30px rgba(0,0,0,.08);
    }

    .modal-header,
    .modal-body {
        padding: 18px;
    }

    .modal-header h3 {
        font-size: 24px;
    }
}

/******************************** page-content ***********************************/
.wrapper-page {
    padding: 150px 0 50px 0;
}
.wrapper-product {
    padding: 150px 0 50px 0;
}
.wrapper-product .page-content {
    padding: 50px 0;
}
.page-content.product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.page-content.product .product-left {
    min-width: 0;
}
.page-content.product .product-right {

}
.viewer-wrap {

}

.viewer {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    overflow: hidden;
    user-select: none;
    touch-action: none;
    cursor: grab;
}

.viewer.dragging {
    cursor: grabbing;
}

.viewer img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.hint {
    margin-top: 16px;
    background: #3b82f6;
    color: white;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(59,130,246,.35);
    text-align: center;
}

.counter {
    margin-top: 10px;
    color: #4b5563;
    font-size: 14px;
}
/**************************** photo gallery ****************************/
.chan-gallery {
    padding: 0;
    margin-top: 22px;
}

.chan-gallery__inner {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 28px 32px 30px;
}

.chan-gallery__title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f2850;
}

.chan-gallery__slider-wrap {
    position: relative;
    padding: 0 52px;
}

.chan-gallery__slider {
    overflow: hidden;
}

.chan-gallery__slider .swiper-slide {
    height: auto;
}

.chan-gallery__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chan-gallery__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.chan-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chan-gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #4b5563;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.chan-gallery__nav:hover {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
    color: #111827;
}

.chan-gallery__nav--prev {
    left: 0;
    transform: translateY(-50%);
}

.chan-gallery__nav--next {
    right: 0;
    transform: translateY(-50%);
}

.chan-gallery__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
    gap: 8px;
}

.chan-gallery__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: #cfd4dc;
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.chan-gallery__pagination .swiper-pagination-bullet-active {
    background: #3b82f6;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .chan-gallery__slider-wrap {
        padding: 0 44px;
    }

    .chan-gallery__item {
        height: 110px;
    }
}

@media (max-width: 767px) {
    .chan-gallery__inner {
        padding: 22px 16px 24px;
    }

    .chan-gallery__title {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .chan-gallery__slider-wrap {
        padding: 0 38px;
    }

    .chan-gallery__item {
        height: 95px;
    }

    .chan-gallery__nav {
        width: 38px;
        height: 38px;
        margin-top: -19px;
    }
}
/***************************** product specs ***********************************/

.tub-specs {
    width: 100%;
    margin-top: 30px;
}

.tub-specs__inner {
    background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.7) 100%);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 24px;
}

.tub-specs__title {
    margin: 0 0 24px;
    text-align: center;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #050505;
}

.tub-specs__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tub-specs__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid #e7eaf0;
    border-radius: 16px;
    background: #ffffff;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.tub-specs__item:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    border-color: #dce3ed;
}

.tub-specs__icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tub-specs__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tub-specs__content {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 2px;
}

.tub-specs__label {
    margin-bottom: 4px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 500;
}

.tub-specs__label sup {
    font-size: 11px;
    line-height: 1;
}

.tub-specs__value {
    color: #111827;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    word-break: break-word;
}

.tub-specs__note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 18px 16px;
    border: 1px solid #b9d1ff;
    border-radius: 16px;
    background: #edf4ff;
}

.tub-specs__note-dot {
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    margin-top: 9px;
    border-radius: 50%;
    background: #3b82f6;
}

.tub-specs__note-content {
    color: #2f55c7;
    font-size: 15px;
    line-height: 1.45;
}

.tub-specs__note-title {
    margin: 0 0 10px;
    color: #050505;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

.tub-specs__note-content p {
    margin: 0 0 10px;
}

.tub-specs__note-content p:last-child {
    margin-bottom: 0;
}

.tub-specs__footnote {
    margin-top: 14px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
}

.tub-specs__footnote p {
    margin: 0;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.45;
}

/* colors */
.tub-specs__icon--green {
    background: #dff5e5;
    color: #16a34a;
}

.tub-specs__icon--blue {
    background: #dbeafe;
    color: #2563eb;
}

.tub-specs__icon--red {
    background: #fde2e2;
    color: #ef4444;
}

.tub-specs__icon--orange {
    background: #fbe8cf;
    color: #f97316;
}

.tub-specs__icon--indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.tub-specs__icon--purple {
    background: #f1e3f8;
    color: #9333ea;
}

.tub-specs__icon--yellow {
    background: #fdf0c4;
    color: #d97706;
}

.tub-specs__icon--cyan {
    background: #d9f6f7;
    color: #0891b2;
}

.tub-specs__icon--amber {
    background: #f6e9bb;
    color: #d97706;
}

.tub-specs__icon--teal {
    background: #d2f1ea;
    color: #0f9f8f;
}

.tub-specs__icon--gray {
    background: #eceef2;
    color: #6b7280;
}

.tub-specs__icon--rose {
    background: #fbe0e5;
    color: #f43f5e;
}

.tub-specs__icon--blue-light {
    background: #e3ecff;
    color: #255fe6;
}

.tub-specs__icon--cyan-light {
    background: #dff6fb;
    color: #0e8ab2;
}

@media (max-width: 991px) {
    .tub-specs__inner {
        padding: 20px;
    }

    .tub-specs__title {
        font-size: 30px;
    }

    .tub-specs__item {
        gap: 14px;
        padding: 14px;
    }
}

@media (max-width: 767px) {
    .tub-specs__grid {
        grid-template-columns: 1fr;
    }

    .tub-specs__inner {
        padding: 16px;
        border-radius: 16px;
    }

    .tub-specs__title {
        margin-bottom: 18px;
        font-size: 26px;
    }

    .tub-specs__icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .tub-specs__icon svg {
        width: 24px;
        height: 24px;
    }

    .tub-specs__label,
    .tub-specs__value,
    .tub-specs__note-content {
        font-size: 14px;
    }

    .tub-specs__note {
        margin-top: 18px;
        padding: 14px;
    }
}
/*********************** Формы заказа *****************************/
.cfg {
    width: 100%;
}

.cfg__panel {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    padding: 18px 18px 20px;
}

.cfg__body {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cfg__title {
    margin: 0;
    color: #111827;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.cfg__section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.cfg__section-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 10px;
}

.cfg__section-dot--orange {
    background: #f59e0b;
}

.cfg__section-dot--green {
    background: #22c55e;
}

.cfg__section-title {
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
}

.cfg__options,
.cfg__accessories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cfg-card,
.cfg-acc {
    border: 1px solid #d9e0ea;
    border-radius: 14px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.cfg-card--finish {
    cursor: pointer;
}

.cfg-card--finish.is-active {
    border-color: #7eb0ff;
    background: #eef4ff;
    box-shadow: inset 0 -3px 0 #4f8dff, 0 8px 16px rgba(79, 141, 255, 0.08);
}

.cfg-card__main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    position: relative;
    min-width: 0;
}

.cfg-card__swatch {
    width: 34px;
    height: 22px;
    border-radius: 4px;
    flex: 0 0 34px;
    margin-top: 3px;
}

.cfg-card__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cfg-card__name {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.cfg-card__desc {
    margin-top: 3px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.35;
}

.cfg-card__check {
    position: absolute;
    top: 10px;
    left: 34px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4f84e8;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.24);
}

.cfg-card__check svg {
    width: 9px;
    height: 9px;
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cfg-card--finish.is-active .cfg-card__check {
    display: inline-flex;
}

.cfg-acc {
    overflow: hidden;
}

.cfg-acc.is-active {
    border-color: #7eb0ff;
    background: #eef4ff;
    box-shadow: inset 0 -3px 0 #4f8dff, 0 8px 16px rgba(79, 141, 255, 0.08);
}

.cfg-acc__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    position: relative;
}

.cfg-acc__input {
    display: none;
}

.cfg-acc__box {
    width: 20px;
    height: 20px;
    border: 1px solid #c7d0db;
    border-radius: 4px;
    background: #fff;
    flex: 0 0 20px;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
}

.cfg-acc__box svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
}

.cfg-acc.is-active .cfg-acc__box {
    background: #4f8dff;
    border-color: #4f8dff;
}

.cfg-acc.is-active .cfg-acc__box svg {
    opacity: 1;
}

.cfg-acc__content {
    flex: 1 1 auto;
    min-width: 0;
}

.cfg-acc__name {
    display: block;
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.cfg-acc__desc {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.4;
}

.cfg-acc__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    text-align: right;
    flex: 0 0 auto;
    position: relative;
}

.cfg-acc__price {
    color: #111827;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.cfg-acc.is-active .cfg-acc__price {
    color: #2563eb;
}

.cfg-acc__price--discount,
.cfg-acc.is-active .cfg-acc__price--discount {
    color: #111827;
}

.cfg-acc__meta {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.2;
}

.cfg-acc__badge {
    position: absolute;
    top: -18px;
    right: -16px;
    padding: 4px 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 13px;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

.cfg-acc__badge--red {
    background: #f35b59;
}

.cfg-acc__badge--green {
    background: #22c55e;
}

.cfg-acc__colors {
    display: none;
    padding: 0 16px 14px 52px;
}

.cfg-acc.is-active .cfg-acc__colors {
    display: block;
}

.cfg-acc__colors-title {
    margin-bottom: 10px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 700;
}

.cfg-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cfg-color {
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    position: relative;
}

.cfg-color input {
    display: none;
}

.cfg-color__thumb {
    width: 78px;
    height: 58px;
    border-radius: 8px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    box-shadow: inset 0 -22px 0 rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.cfg-color__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    pointer-events: none;
}

.cfg-color.is-active .cfg-color__thumb {
    border-color: #4f8dff;
    box-shadow: 0 0 0 2px rgba(79, 141, 255, 0.18), inset 0 -22px 0 rgba(0, 0, 0, 0.45);
}

.cfg-color.is-active .cfg-color__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(32, 73, 149, 0.18);
}

.cfg-color.is-active .cfg-color__thumb::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 28px;
    width: 16px;
    height: 9px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(-45deg);
    z-index: 2;
}

.cfg-summary {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 16px;
    border-radius: 16px;
    background: linear-gradient(90deg, #497eea 0%, #7a43ea 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(79, 70, 229, 0.18);
}

.cfg-summary__info {
    min-width: 0;
}

.cfg-summary__label {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

.cfg-summary__price {
    margin-top: 4px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
}

.cfg-summary__sub {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.35;
    opacity: 0.92;
}

.cfg-summary__btn {
    height: 52px;
    padding: 0 30px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: #2563eb;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    flex: 0 0 auto;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cfg-summary__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(255, 255, 255, 0.18);
}

.cfg-callback {
    width: 100%;
    height: 54px;
    margin-top: 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(90deg, #497eea 0%, #7a43ea 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.14);
    transition: transform .2s ease, box-shadow .2s ease;
}

.cfg-callback:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(79, 70, 229, 0.18);
}

@media (max-width: 767px) {
    .cfg__panel {
        padding: 14px 14px 16px;
        border-radius: 14px;
    }

    .cfg__title {
        font-size: 18px;
    }

    .cfg__section-title {
        font-size: 15px;
    }

    .cfg-card__main,
    .cfg-acc__head {
        padding: 14px 12px;
    }

    .cfg-acc__colors {
        padding: 0 12px 14px 44px;
    }

    .cfg-acc__side {
        min-width: 84px;
    }

    .cfg-acc__name {
        font-size: 14px;
    }

    .cfg-acc__desc,
    .cfg-card__desc {
        font-size: 13px;
    }

    #cfgPopupOrder .cfg-summary {
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        bottom: 0;
        width: 100%;
        left: 0;
        border-radius: 16px 16px 0 0;
        padding: 10px 15px;
    }

    #cfgPopupOrder .cfg-summary__btn {
        width: 100%;
    }

    .cfg-summary__price {
        font-size: 22px;
    }

    .cfg-color__thumb {
        width: 72px;
        height: 54px;
    }
}
/********************* заказ - popup окна ***************************/

body.cfg-lock {
    overflow: hidden;
}

.cfg-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.cfg-modal.is-open {
    display: block;
}

.cfg-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
}

.cfg-modal__dialog {
    position: relative;
    z-index: 2;
    width: calc(100% - 24px);
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 70px rgba(15, 23, 42, 0.18);
}

.cfg-modal__dialog--small {
    max-width: 500px;
    padding: 28px 28px 30px;
}

.cfg-modal__dialog--wide {
    max-width: 1120px;
    padding: 26px 20px 20px;
}

.cfg-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
}

.cfg-modal__close:hover {
    color: #475569;
    transform: rotate(90deg);
}

.cfg-modal__title {
    margin: 10px 0 0;
    text-align: center;
    color: #1e293b;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

/* callback / common form */
.cfg-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.cfg-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cfg-form__label {
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}

.cfg-form__input,
.cfg-form__textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.3;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.cfg-form__input {
    height: 48px;
    padding: 0 14px;
}

.cfg-form__textarea {
    min-height: 120px;
    padding: 14px;
    resize: vertical;
}

.cfg-form__input:focus,
.cfg-form__textarea:focus {
    outline: none;
    border-color: #8fb7ff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.cfg-form__input::placeholder,
.cfg-form__textarea::placeholder {
    color: #94a3b8;
}

.cfg-form__submit {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, #8fb1f3 0%, #c891eb 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.cfg-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(139, 92, 246, 0.2);
}

.cfg-form__submit:disabled {
    opacity: .7;
    cursor: default;
}

/* order popup */
.cfg-order__top {
    margin-bottom: 24px;
}

.cfg-order__back {
    border: 0;
    background: transparent;
    color: #475569;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 10px;
}

.cfg-order__heading {
    text-align: center;
}

.cfg-order__title {
    color: #1e293b;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.cfg-order__subtitle {
    margin-top: 4px;
    color: #64748b;
    font-size: 18px;
}

.cfg-order__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
}

.cfg-order-card {
    padding: 22px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.cfg-order-card__title {
    margin-bottom: 18px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
}

.cfg-order-product {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 16px;
    border: 1px solid #bfd8ff;
    border-radius: 12px;
    background: #eef5ff;
}

.cfg-order-product__name {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
}

.cfg-order-product__desc {
    margin-top: 3px;
    color: #64748b;
    font-size: 15px;
}

.cfg-order-product__price {
    color: #2563eb;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.cfg-order-block {
    margin-top: 22px;
}

.cfg-order-block__label {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
}

.cfg-order-finish {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #efd572;
    border-radius: 12px;
    background: #fff9e6;
}

.cfg-order-finish__swatch {
    width: 24px;
    height: 20px;
    border-radius: 4px;
    background: #6b4a3d;
}

.cfg-order-finish__name {
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
}

.cfg-order-finish__badge {
    padding: 5px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
}

.cfg-order-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cfg-order-list__item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 14px;
    color: #334155;
}

.cfg-order-list__item strong {
    color: #0f172a;
}

.cfg-order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.cfg-order-total__label {
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
}

.cfg-order-total__price {
    color: #2563eb;
    font-size: 24px;
    font-weight: 800;
}

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

.cfg-order-check input {
    display: none;
}

.cfg-order-check__box {
    width: 18px;
    height: 18px;
    border: 1px solid #bfc8d4;
    border-radius: 3px;
    background: #fff;
    position: relative;
}

.cfg-order-check input:checked + .cfg-order-check__box::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 2px;
    background: #3b82f6;
}

.cfg-order-check__text {
    color: #334155;
    font-size: 15px;
}

.cfg-order-note {
    padding: 16px 18px;
    border: 1px solid #bcd5ff;
    border-radius: 12px;
    background: #edf4ff;
    margin: 15px 0;
}

.cfg-order-note__title {
    margin-bottom: 8px;
    color: #2563eb;
    font-size: 18px;
    font-weight: 700;
}
.cfg-cf7-form__group {
    margin-top: 15px;
}
.cfg-cf7-form__group:first-child {
    margin-top: 0;
}
.cfg-order-note__list {
    margin: 0;
    padding-left: 18px;
    color: #2563eb;
    font-size: 15px;
    line-height: 1.55;
}

/* responsive */
@media (max-width: 991px) {
    .cfg-order__grid {
        grid-template-columns: 1fr;
    }

    .cfg-modal__dialog--wide {
        padding: 22px 14px 16px;
    }
}

@media (max-width: 767px) {
    .cfg-modal__dialog--small,
    .cfg-modal__dialog--wide {
        width: calc(100% - 16px);
        margin: 16px auto;
        border-radius: 16px;
    }

    .cfg-modal__dialog--small {
        padding: 22px 16px 18px;
    }

    .cfg-modal__dialog--wide {
        padding: 20px 10px 14px;
    }

    .cfg-modal__title {
        font-size: 22px;
    }

    .cfg-order__title {
        font-size: 24px;
    }

    .cfg-order__subtitle {
        font-size: 15px;
    }

    .cfg-order-card {
        padding: 16px;
    }

    .cfg-form__submit {
        height: 52px;
        font-size: 16px;
    }
}
/**************************/
.site-footer {
    background: linear-gradient(180deg, #182234 0%, #000000 100%);
    color: #f3f6fb;
    padding: 56px 0 32px;
    font-size: 15px;
    line-height: 1.55;
    margin-top: auto;
}

.footer-top {

}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-copy {
    margin: 0;
    color: rgba(243, 246, 251, 0.78);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-company h3 {
    margin: 0 0 18px;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 600;
    color: #ffffff;
}

.footer-block {
    margin-bottom: 14px;
}

.footer-block p {
    margin: 0;
    color: #ffffff;
}

.footer-label {
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

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

.site-footer a:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 28px;
}

.footer-links a {
    color: #ffffff;
    font-weight: 400;
    /* text-decoration: underline; */
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.footer-socials,
.footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    margin-bottom: 10px;
}
.footer-c-title {
    margin-bottom: 30px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    /*background: rgba(255, 255, 255, 0.06);*/
    /*border: 1px solid rgba(255, 255, 255, 0.08);*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-socials img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.footer-payments img {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.95;
}

.footer-copyright {
    margin-top: 18px;
    color: rgba(243, 246, 251, 0.65);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.foo-company-info p {
    font-size: 12px;
    color: #666;
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-copy {
        max-width: 100%;
    }

    .footer-company h3 {
        font-size: 23px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 40px 0 24px;
        font-size: 14px;
    }

    .footer-company h3 {
        font-size: 19px;
    }

    .footer-links {
        gap: 10px 18px;
        flex-direction: column;
    }

    .footer-socials a {
        width: 38px;
        height: 38px;
    }

    .footer-payments img {
        height: 24px;
    }
}
.title-block {
    margin: 0 0 28px;
}

/* Хлебные крошки */

.title-breadcrumbs {
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 14px;
    line-height: 1.4;
    color: #6b7280;
}

.breadcrumbs a {
    color: #0092ca;
    text-decoration: none;
    transition: color .2s ease;
}

.breadcrumbs a:hover {
    color: #0076a4;
    text-decoration: underline;
}

/* Разделитель Yoast */

.breadcrumbs span.breadcrumb_last {
    color: #111827;
    font-weight: 500;
}

/* Заголовок страницы */

.title-page {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

/* Акцентная линия под заголовком (как на современных лендингах) */

.title-page::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 14px;
    background: #0092ca;
    border-radius: 2px;
}
.hmnc-content {
    line-height: 1.5;
}
@media (max-width: 768px) {
    .contact-big {
        font-size: 22px;
    }
    .title-page {
        font-size: 26px;
    }

    .breadcrumbs {
        font-size: 13px;
    }
    .section-black h2 {
        font-size: 28px;
    }
}
.hmnc-content blockquote {
    margin: 24px 0 30px 0;
    padding: 18px 20px;
    background: #f0f9ff;
    border-left: 4px solid #0092ca;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 6px 18px rgba(0, 146, 202, 0.08);
}

.hmnc-content blockquote p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
}

.hmnc-content blockquote strong,
.hmnc-content blockquote b,
.hmnc-content blockquote .font-semibold {
    color: #0092ca;
    font-weight: 700;
}

.hmnc-content blockquote img.emoji {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.15em;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .hmnc-content blockquote {
        padding: 14px 16px;
        border-radius: 0 10px 10px 0;
    }

    .hmnc-content blockquote p {
        font-size: 15px;
    }
}
.contacts-content {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.contacts-content .footer-label {
    color: #000;
}
.contacts-content .footer-block p {
    color: #363636;
}
.contacts-content .footer-company h3 {
    color: #363636;
}
/************************ Форма быстрого заказа ******************************/


body.cfg-popup-lock {
    overflow: hidden;
}

.cfg-popup-order {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.cfg-popup-order.is-open {
    display: block;
}

.cfg-popup-order__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .45);
}

.cfg-popup-order__dialog {
    position: relative;
    width: min(1100px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    margin: 16px auto;
    background: #fff;
    border-radius: 24px;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    padding: 28px;
}

.cfg-popup-order__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #7b8794;
}

.cfg-popup-order__top {
    position: relative;
    margin-bottom: 24px;
    padding-right: 40px;
}

.cfg-popup-order__back {
    border: 0;
    background: transparent;
    padding: 0;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 15px;
    cursor: pointer;
}

.cfg-popup-order__heading {
    text-align: center;
}

.cfg-popup-order__title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
}

.cfg-popup-order__subtitle {
    font-size: 18px;
    color: #64748b;
}

.cfg-popup-order__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 20px;
    align-items: start;
}

.cfg-popup-summary,
.cfg-popup-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
}

.cfg-popup-summary__title,
.cfg-popup-form-card__title {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.cfg-popup-summary__product {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    background: #eef4ff;
    border: 1px solid #bfd2ff;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
}

.cfg-popup-summary__product-name {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.cfg-popup-summary__product-desc {
    font-size: 16px;
    color: #64748b;
}

.cfg-popup-summary__product-price {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    white-space: nowrap;
}

.cfg-popup-summary__block {
    margin-bottom: 18px;
}

.cfg-popup-summary__label {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.cfg-popup-summary__finish {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid #f2c94c;
    background: #fff8e6;
    border-radius: 14px;
}

.cfg-popup-summary__finish-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #6b4a3d;
    flex: 0 0 20px;
}

.cfg-popup-summary__finish-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.cfg-popup-summary__finish-badge {
    margin-left: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.cfg-popup-summary__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cfg-popup-summary__list-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 16px;
    color: #334155;
}

.cfg-popup-summary__total {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cfg-popup-summary__total-label {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.cfg-popup-summary__total-price {
    font-size: 40px;
    font-weight: 800;
    color: #2563eb;
    white-space: nowrap;
}

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

.cfg-popup-summary__check input {
    display: none;
}

.cfg-popup-summary__check-box {
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
    position: relative;
}

.cfg-popup-summary__check input:checked + .cfg-popup-summary__check-box::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 2px;
    background: #2563eb;
}

.cfg-popup-summary__check-text {
    font-size: 16px;
    color: #475569;
}

.cfg-cf7-form--order .cfg-cf7-form__group {
    margin-bottom: 16px;
}

.cfg-cf7-form--order .cfg-cf7-form__label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.cfg-cf7-form--order .cfg-cf7-form__input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    font-size: 16px;
    color: #0f172a;
    box-sizing: border-box;
}

.cfg-order-note {
    margin: 18px 0 16px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #bfd2ff;
    background: #eef4ff;
}

.cfg-order-note__title {
    font-size: 18px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.cfg-order-note__list {
    margin: 0;
    padding-left: 18px;
    color: #2563eb;
}

.cfg-order-note__list li {
    margin-bottom: 6px;
}

.cfg-cf7-form__submit-wrap {
    margin-top: 12px;
}

.cfg-cf7-form__submit {
    width: 100%;
    height: 56px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: .2s ease;
}

.cfg-cf7-form__submit:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}
.cfg__options--type {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.cfg-card--type .cfg-card__main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cfg-card__side--type {
    margin-left: auto;
    flex: 0 0 auto;
}

.cfg-card__type-price {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
}
.cfg-card--type {
    cursor: pointer;
    border: 1px solid #cfd8e3;
    border-radius: 18px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.cfg-card--type .cfg-card__main {
    cursor: pointer;
}

.cfg-card--type:hover {
    border-color: #9dbcfb;
}

.cfg-card--type.is-active {
    border-color: #4f8cff;
    box-shadow: inset 0 0 0 1px #4f8cff;
    background: #eef4ff;
}
@media (max-width: 991px) {
    .cfg-popup-order__dialog {
        width: calc(100% - 20px);
        margin: 10px auto;
        padding: 18px 10px;
        border-radius: 18px;
        max-height: calc(100vh - 20px);
    }
    .cfg-popup-summary, .cfg-popup-form-card {
        padding: 15px;
    }
    .cfg-popup-order__grid {
        grid-template-columns: 1fr;
    }

    .cfg-popup-order__title {
        font-size: 30px;
    }

    .cfg-popup-order__subtitle {
        font-size: 16px;
    }

    .cfg-popup-summary__title,
    .cfg-popup-form-card__title {
        font-size: 24px;
    }

    .cfg-popup-summary__product {
        flex-direction: column;
        align-items: flex-start;
    }

    .cfg-popup-summary__product-name {
        font-size: 22px;
    }

    .cfg-popup-summary__product-price {
        font-size: 28px;
    }

    .cfg-popup-summary__total-label {
        font-size: 22px;
    }

    .cfg-popup-summary__total-price {
        font-size: 30px;
    }
}
/***************************************************/
#cfgPopupOrder .cfg-acc__head {
    padding: 4px 15px;
}
#cfgPopupOrder .cfg-acc__head.cgf-wide {
    padding: 13px 15px 4px 15px;
}
#cfgPopupOrder .cfg-card__main {
    padding: 7px 15px;
}
#cfgPopupOrder .cfg-popup-summary__title, #cfgPopupOrder .cfg-popup-form-card__title {
    font-size: 22px;
    font-weight: 500;
}
#cfgPopupOrder .cfg-popup-order__title {
    font-size: 30px;
    font-weight: 700;
}
#cfgPopupOrder .cfg__body {
    gap: 15px;
}
#cfgPopupOrder .cfg__options--type {
    margin-bottom: 0;
}
#cfgPopupOrder .cfg-acc__name {
    font-size: 14px;
}
#cfgPopupOrder .cfg-cf7-form__submit {
    background: #26cd53;
    color: #ffffff;
}
#cfgPopupOrder .cfg__panel {
    padding: 15px;
}
#cfgPopupOrder .cfg-popup-order__dialog {
    margin-top: 15px;
}
#cfgPopupOrder .cfg-popup-order__close {
    z-index: 9;
}
.section-black {
    background: #0E0E0E;
    padding: 120px 0;
}
.section-black .whom {
    margin-top: 48px;
}
.section-black h2 {
    color: #fff;
    font-size: 48px;
    text-align: center;
}
.icon-block {
    width: 60px;
    height: 60px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.mini-card .icon-block {
    background: #fff;
}
.icon-block img {
    max-height: 25px;
    max-width: 30px;
}
/**************** тили пеерключателя слайдер по сезону ******************/
.hero-inner {
    position: relative;
}

.hero-season-switch {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10;

    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 6px;
    background: rgb(255 255 255 / 8%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-top: 0;
}

.hero-season-switch .hero-season-option {
    position: relative;
    display: block;
    margin: 0;
    cursor: pointer;
}

.hero-season-switch .hero-season-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hero-season-switch .hero-season-option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 92px;
    padding: 18px 10px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    color: #4b5563;
    background: transparent;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.hero-season-switch .hero-season-option:hover span {
    transform: translateX(-1px);
}

.hero-season-switch .hero-season-option input[type="radio"]:checked + span {
    background: #000;
    color: #fff;
}

.hero-season-switch .hero-season-option input[type="radio"]:not(:checked) + span {
    background: transparent;
    color: #dddada;
}

.hero-bg.is-switching img {
    opacity: 0.45;
    transition: opacity 0.35s ease;
}
/********************* Слайдер на главной ***********************/
.accessories-section {
    overflow: hidden;
}

.accessories-section__head {
    position: relative;
}

.accessories-swiper-wrap {
    width: calc(100% + ((100vw - 100%) / 2));
    overflow: hidden;
}

.accessories-swiper {
    overflow: visible;
}

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

.accessory-slide {
    background: #f4f4f4;
    border-radius: 18px;
    padding: 8px;
    height: 100%;
    box-sizing: border-box;
}

.accessory-slide__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 12px;
}

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

.accessory-slide__content {
    padding: 0 4px 6px;
}

.accessory-slide__content--noimage {
    padding-top: 8px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.accessory-slide__label {
    margin-bottom: 8px;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a8f98;
}

.accessory-slide__title {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.accessory-slide__price {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.35;
    color: #43484f;
}

.accessory-slide__text {
    font-size: 13px;
    line-height: 1.35;
    color: #555b63;
}

.accessories-swiper-nav {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.accessories-swiper-prev,
.accessories-swiper-next {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 6px;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.accessories-swiper-prev:hover,
.accessories-swiper-next:hover {
    transform: translateY(-1px);
}

.accessories-swiper-prev.swiper-button-disabled,
.accessories-swiper-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

.gar-btn {
    margin-top: 30px;
}
a.btn-mob-order {
    margin-top: 20px;
    line-height: 1;
    display: flex;
}
.form-group select {
    width: 100%;
    padding: 0 52px 0 18px;
    height: 52px;
    border: 1px solid #b8b8b8;
    border-radius: 14px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23121212' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px 9px;
    cursor: pointer;
}
.webfox {
    text-align: left;
}
.webfox img {
    max-height: 50px;
    max-width: 40px;
}
@media (max-width: 768px) {
    .accessories-swiper-wrap {
        width: 100%;
    }
    .hero-season-switch {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        margin-top: 30px;
        margin-left: 15px;
    }
    .hero-season-switch .hero-season-option span {
        writing-mode: horizontal-tb;
    }
    .hero-season-switch .hero-season-option span {
        min-height: auto;
        padding: 10px 20px;
    }
    .hero {
        display: flex;
        flex-direction: column-reverse;
        align-items: baseline;
    }
    .section-black h2 {
        font-size: 24px;
    }
    .heros .hero-title {
        font-size: 24px;
    }
    .section-title-sm {
        font-size: 24px;
    }
    .section-title {
        font-size: 24px;
    }
    .section {
        padding: 40px 0;
    }
    .consult-block {
        margin-top: 0;
    }
    .form-card h4 {
        font-size: 18px;
    }
    .model-top h3 {
        font-size: 25px;
    }
    .heros {
        padding: 40px 0;
    }
    .hero-bg img {
        object-position: calc(100% + 150px) center;
    }
    .model-image {
        height: 300px;
        overflow: hidden;
    }
}
.lead-form-check .wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}
.site-popup__dialog .wpcf7-response-output {
    color: #46b450;
}
/************* popup успеха заказа *********************/
.cfg-success-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.cfg-success-popup.is-open {
    display: block;
}

.cfg-success-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.cfg-success-popup__dialog {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    background: linear-gradient(135deg, #6d7cf3 0%, #7255c9 100%);
    border-radius: 24px;
    padding: 30px;
    color: #222;
    z-index: 2;
}

.cfg-success-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 24px;
}

.cfg-success-popup__top {
    text-align: center;
    margin-bottom: 25px;
}

.cfg-success-popup__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #28b446;
    color: #fff;
    font-size: 46px;
    line-height: 80px;
    margin: 0 auto 16px;
    text-align: center;
}

.cfg-success-popup__title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cfg-success-popup__subtitle {
    font-size: 18px;
    color: #fff;
}

.cfg-success-popup__card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
}

.cfg-success-popup__row {
    background: #f5f5f7;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}

.cfg-success-popup__row strong {
    display: block;
    margin-bottom: 10px;
}

.cfg-success-popup__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0;
}

.cfg-success-popup__actions {
    text-align: center;
}
/******************/
.cfg-partial-pay {
    margin: 18px 0 20px;
    padding: 16px 18px;
    background: #f6f6f6;
    border-radius: 14px;
}

.cfg-partial-pay__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.cfg-partial-pay__label input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.cfg-partial-pay__info {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.4;
}

.cfg-partial-pay__info strong {
    font-weight: 700;
}
.vo-order-total--partial {
    margin-top: 0;
    font-size: 18px;
}
.cfg-order-partial {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cfg-order-partial__label {
    font-size: 15px;
    font-weight: 600;
}

.cfg-order-partial__price {
    font-size: 20px;
    font-weight: 700;
    color: #6d7cf3;
}
.lls-widget__header h2 {
    margin-bottom: 20px;
}
/***********************************************************/
.hnc-404 {
    text-align: center;
}
.hnc-404 .num-404 {
    color: #0092ca;
    font-size: 14vw;
    font-weight: bold;
}
.hnc-404 .btn-404-home {
    margin-top: 35px;
}
.hnc-404 .btn-404-home a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 50px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 600;
    text-align: center;
    transition: .2s ease;
    cursor: pointer;
    background: #121212;
    color: #fff;
}
/******************************* New блок *******************************/
.vostok-compare-section {
    padding: 120px 0;
    background: #fff;
    color: #111;
    overflow: hidden;
}

.vostok-compare-section__head {
    text-align: center;
    margin-bottom: 42px;
}

.vostok-compare-section__head h2 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.vostok-compare-section__head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    color: #222;
}

.vostok-compare-swiper {
    width: 100%;
}

/* DESKTOP */
@media (min-width: 992px) {
    .vostok-compare-swiper:not(.swiper-initialized) .vostok-compare-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        align-items: stretch;
    }

    .vostok-compare-swiper:not(.swiper-initialized) .vostok-compare-column {
        width: auto !important;
    }
}

.vostok-compare-column {
    display: grid;
    grid-template-rows: 1fr auto; /* карточки по одной линии, фото снизу */
    height: 100%;
    background: #fff;
}

.vostok-compare-column__top {
    padding: 0 50px 28px; /* отступы между карточками сверху */
}

.vostok-compare-card {
    height: 100%;
    padding: 24px 26px 22px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}

.vostok-compare-card--active {
    border-color: #00a7e8;
    box-shadow: 0 8px 22px rgba(0, 167, 232, 0.08);
}

.vostok-compare-card h3 {
    margin: 0 0 20px;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #111;
}

.vostok-compare-card--active h3 {
    color: #009fe3;
}

.vostok-compare-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vostok-compare-card li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.22;
    color: #171717;
}

.vostok-compare-card li + li {
    margin-top: 15px;
}

.vostok-compare-card li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: 0;
    color: #9a9a9a;
    font-size: 14px;
    line-height: 1;
}

.vostok-compare-card li.is-good::before {
    content: "✓";
    color: #19a93a;
    font-weight: 700;
}

.vostok-visual-card {
    position: relative;
    min-height: 600px;
    border-radius: 0;
    overflow: hidden;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .vostok-compare-column[data-compare-order="1"] .vostok-visual-card {
        border-radius: 16px 0 0 16px;
    }

    .vostok-compare-column[data-compare-order="3"] .vostok-visual-card {
        border-radius: 0 16px 16px 0;
    }
}

.vostok-visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(255,255,255,0.40) 0%,
            rgba(255,255,255,0.08) 40%,
            rgba(0,0,0,0.08) 100%
    );
}

.vostok-visual-card__content {
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;
    width: 200px; /* одинаковая зона для всех 3 блоков */
    z-index: 2;
    text-transform: uppercase;
    text-align: left;
}

.vostok-visual-card__content h3 {
    position: relative;
    margin: 0 0 11px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #111;
}

.vostok-compare-column[data-compare-order="1"] .vostok-visual-card__content h3 {
    color: #00a7e8;
}

.vostok-visual-card__content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    background: currentColor;
    opacity: 0.95;
}

.vostok-visual-card__content p {
    margin: 0;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111;
}

.vostok-compare-mobile-bottom {
    display: none;
}

@media (min-width: 992px) {
    .vostok-compare-column[data-compare-order="1"] {
        order: 1;
    }

    .vostok-compare-column[data-compare-order="2"] {
        order: 2;
    }

    .vostok-compare-column[data-compare-order="3"] {
        order: 3;
    }
}

@media (min-width: 992px) {
    .vostok-compare-card ul {
        display: block;
    }

    .vostok-compare-card li {
        box-sizing: border-box;
    }

    .vostok-compare-card li + li {
        margin-top: 15px;
    }
}


/* laptop */
@media (max-width: 1199px) {
    .vostok-compare-column__top {
        padding: 0 18px 24px;
    }

    .vostok-compare-card {
        padding: 22px 18px;
    }

    .vostok-compare-card li {
        font-size: 14px;
    }
}



/* MOBILE / TABLET */

@media (max-width: 991px) {
    .vostok-compare-section {
        padding: 32px 0 48px;
    }

    .vostok-compare-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .vostok-compare-section__head {
        max-width: 360px;
        margin: 0 auto 22px;
        padding: 0 16px;
    }

    .vostok-compare-section__head h2 {
        margin-bottom: 12px;
        font-size: 26px;
        line-height: 1.12;
    }

    .vostok-compare-section__head p {
        font-size: 12px;
        line-height: 1.25;
    }
    .vostok-compare-swiper {
        overflow: hidden;
    }

    .vostok-compare-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .vostok-compare-swiper .swiper-slide {
        height: auto;
    }

    .vostok-compare-column {
        display: grid;
        grid-template-rows: auto auto;
        height: 100%;
        background: transparent;
    }

    .vostok-compare-column__top {
        padding: 0 14px 22px;
        box-sizing: border-box;
    }

    .vostok-compare-card {
        box-sizing: border-box;
        height: auto;
        min-height: 0;
        padding: 22px 18px 24px;
        border-radius: 18px;
    }

    .vostok-compare-card h3 {
        margin-bottom: 18px;
        font-size: 16px;
    }

    .vostok-compare-card li {
        padding-left: 22px;
        font-size: 13px;
        line-height: 1.2;
    }

    .vostok-compare-card li + li {
        margin-top: 14px;
    }

    .vostok-visual-card {
        min-height: 100vw;
        /*height: 255px;*/
        margin: 0 14px;
        border-radius: 14px !important;
    }

    .vostok-visual-card__content {
        top: 16px;
        /*left: 18px;*/
        right: 18px;
    }

    .vostok-visual-card__content h3 {
        font-size: 13px;
    }



    .vostok-compare-swiper {
        position: relative;
        overflow: hidden;
        --vostok-card-height: 0px;
    }

    .vostok-compare-column__top {
        padding: 0 14px 86px;
        box-sizing: border-box;
    }

    .vostok-compare-mobile-bottom {
        position: absolute;
        top: calc(var(--vostok-card-height) + 18px);
        left: 0;
        right: 0;
        z-index: 30;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: 54px;
        margin: 0;
        padding: 0 14px;
        box-sizing: border-box;
        text-align: center;

        pointer-events: auto;
    }

    .vostok-compare-pagination {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 0 11px;
    }

    .vostok-compare-pagination .swiper-pagination-bullet {
        width: 36px;
        height: 2px;
        margin: 0 !important;
        border-radius: 0;
        background: #d8d8d8;
        opacity: 1;
        cursor: pointer;
    }

    .vostok-compare-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
        margin-left: 6px !important;
    }

    .vostok-compare-pagination .swiper-pagination-bullet-active {
        background: #00a7e8;
    }

    .vostok-compare-hint {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 11px;
        line-height: 1;
        color: #333;
    }

    .vostok-compare-hint__icon {
        display: inline-flex;
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .vostok-compare-hint__icon img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .vostok-visual-card__content {
        width: 185px;
    }
}

@media (max-width: 575px) {
    .vostok-compare-section__head h2 {
        font-size: 24px;
    }

    .vostok-visual-card {
        /*min-height: 235px;*/
    }
    .vostok-visual-card__content {
        width: 95px;
    }
    .vostok-visual-card__content p {
        font-size: 8px;
    }
    .vostok-visual-card__content h3 {
        font-size: 11px;
    }
}

@media (max-width: 374px) {
    .vostok-compare-section__head h2 {
        font-size: 22px;
    }

    .vostok-compare-card {
        padding: 20px 16px 22px;
    }

    .vostok-compare-card li {
        font-size: 12px;
    }
}