.card-page {
    width: 100%;
    background: #F5F5F5;
    padding: 24px 0 0;
    min-height: 100vh;
}

.card-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 30px;
}

.breadcrumb-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #767676;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #48924E;
}

.breadcrumb-sep {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #767676;
    margin: 0 2px;
}

.breadcrumb-current {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}

.card-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 44px;
    color: #000000;
    margin: 0 0 24px;
}

.card-main {
    display: flex;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 20px;
}

.card-gallery {
    flex: 0 0 872px;
    max-width: 872px;
    min-width: 0;
}

.card-gallery-main {
    position: relative;
    width: 100%;
    height: 510px;
    border-radius: 10px;
    background: #e0e0e0;
    margin-bottom: 12px;
    user-select: none;
}

.card-gallery-main .swiper-pagination {
    bottom: 12px;
    width: 120px;
    height: 26px;
    fill: rgba(255, 255, 255, 0.10);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.12));
    backdrop-filter: blur(4px);
    border-radius: 13px;
    z-index: 15;
}

.card-gallery-main .swiper-pagination .swiper-pagination-bullet {
    margin-top: 5px;
    transform: unset;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.35);
    opacity: 1;
}

.card-gallery-main .swiper-pagination .swiper-pagination-bullet-active {
    border: 2px solid rgba(0, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.35);
}

.card-gallery-main .swiper-pagination .swiper-pagination-bullet-active-next-next,
.card-gallery-main .swiper-pagination .swiper-pagination-bullet-active-prev-prev {
    scale: 0.7;
}

.card-gallery-main > .swiper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.card-gallery-main .swiper .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.card-gallery-main .swiper .swiper-slide .cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.card-gallery-main .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
}

.card-gallery-main .swiper .swiper-slide.img-contain img {
    object-fit: contain;
    background: #FFFFFF;
}

.card-gallery-main .swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-gallery-main .swiper .swiper-button-next,
.card-gallery-main .swiper .swiper-button-prev {
    width: calc(100% / 4);
    height: 100%;
    top: 0;
    bottom: 0;
    margin: unset;
    display: flex;
}

.card-gallery-main .swiper .swiper-button-next {
    right: 0;
    justify-content: flex-end;
}

.card-gallery-main .swiper .swiper-button-prev {
    left: 0;
    justify-content: flex-start;
}

.card-gallery-main .swiper .swiper-button-next span,
.card-gallery-main .swiper .swiper-button-prev span {
    height: 100%;
    width: 35px;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    transition-duration: 0.3s;
    overflow: hidden;
}

.card-gallery-main .swiper:hover .swiper-button-next span,
.card-gallery-main .swiper:hover .swiper-button-prev span {
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0.5;
}

.card-gallery-main .swiper .swiper-button-next:hover span,
.card-gallery-main .swiper .swiper-button-prev:hover span {
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
}


.card-gallery-main .full-screen-btn {
    position: absolute;
    width: calc(100% / 2);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.25s;
    z-index: 10;
}

.card-gallery-main .full-screen-btn span {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-gallery-main .full-screen-btn span > img {
    width: 40px;
}

.card-gallery-main .swiper:hover .full-screen-btn span {
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0.5;
}

.card-gallery-main .swiper .full-screen-btn:hover span {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

@media (max-width: 768px) {
    .card-gallery-main .full-screen-btn,
    .card-gallery-main .swiper-button-next,
    .card-gallery-main .swiper-button-prev {
        display: none !important;
    }
}

.card-slides-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.card-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
}

.card-badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    background: linear-gradient(92.7deg, #FF0138 0%, #990127 100%);
    height: 28px;
    pointer-events: none;
}

.card-badge-sale span {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.card-badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.card-save-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 4px;
    background: rgba(50, 60, 76, 0.5);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: none;
    cursor: pointer;
    height: 34px;
    transition: background 0.2s;
}

.card-save-btn:hover {
    background: rgba(50, 60, 76, 0.72);
}

.card-save-btn span {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 14px;
    color: #FFFFFF;
}

.card-save-btn.saved .card-save-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(80%) saturate(600%) hue-rotate(320deg) brightness(110%);
}

.card-save-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: filter 0.2s;
}

.card-arrow {
    position: absolute;
    top: 0;
    height: 100%;
    width: 35px;
    z-index: 10;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.25s;
}

.card-arrow--left {
    left: 0;
}

.card-arrow--right {
    right: 0;
}

.card-arrow:hover {
    background: rgba(0, 0, 0, 0.18);
}

.card-arrow svg {
    pointer-events: none;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}


.card-dots-wrapper {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.card-dots {
    width: 100px;
    height: 28px;
    border-radius: 999px;
    background: rgba(180, 180, 180, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.card-dots-track {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.card-dot {
    border-radius: 50%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 2px solid rgba(50, 50, 50, 0.65);
    background: transparent;
    flex-shrink: 0;
    pointer-events: auto;
    cursor: pointer;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    margin-right 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}


.card-dot.dot-active {
    width: 16px;
    height: 16px;
    background: rgba(50, 50, 50, 0.85);
    border-color: rgba(50, 50, 50, 0.85);
    margin-right: 8px;
}

.card-dot.dot-near {
    width: 12px;
    height: 12px;
    margin-right: 8px;
}

.card-dot.dot-far {
    width: 8px;
    height: 8px;
    margin-right: 8px;
}

.card-dot.dot-hidden {
    width: 0px;
    height: 0px;
    margin-right: 0px;
    border-width: 0px;
    opacity: 0;
    pointer-events: none;
}

.card-thumbs {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    flex-wrap: nowrap;
}

.card-thumbs .swiper-layout-overflow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.60);
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

.card-thumbs .swiper-layout-overflow .floor {
    color: #FFF;
    text-shadow: 1px 0 2px #8A8A8A, -1px 0 2px #8A8A8A, 0 1px 2px #8A8A8A, 0 -1px 2px #8A8A8A, 1px 1px 2px #8A8A8A, -1px -1px 2px #8A8A8A, -1px 1px 2px #8A8A8A, 1px -1px 2px #8A8A8A;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 120% */
}

.card-thumbs .swiper-layout-overflow .name {
    color: #FFF;
    text-shadow: 1px 0 2px #8A8A8A, -1px 0 2px #8A8A8A, 0 1px 2px #8A8A8A, 0 -1px 2px #8A8A8A, 1px 1px 2px #8A8A8A, -1px -1px 2px #8A8A8A, -1px 1px 2px #8A8A8A, 1px -1px 2px #8A8A8A;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1; /* 120% */
}

.card-thumbs .img-contain picture {
    object-fit: contain;
}

.card-thumbs .img-contain picture img {
    object-fit: contain !important;
    background: #FFFFFF;
}

.product-thumbs-swiper {
    width: 100%;
    height: 97px;
}

.product-thumbs-swiper .swiper-slide {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-thumbs-swiper .swiper-slide > img,
.product-thumbs-swiper .swiper-slide > picture,
.product-thumbs-swiper .swiper-slide > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbs-swiper .swiper-slide.img-contain > img {
    object-fit: contain;
    background: #FFFFFF;
}

.product-thumbs-swiper .swiper-slide .cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.60);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .product-thumbs-swiper {
        height: 86px;
    }
}

@media (max-width: 1000px) {
    .product-thumbs-swiper {
        height: 75px;
    }
}

@media (max-width: 900px) {
    .product-thumbs-swiper {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .product-thumbs-swiper {
        height: auto;
    }

    .product-thumbs-swiper .swiper-slide {
        height: auto;
        aspect-ratio: 152 / 97 !important;
        max-height: 75px;
    }
}

.card-thumb {
    flex: 1;
    height: 97px;
    border-radius: 8px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: #D0CFC9;
    transition: border-color 0.2s, flex 0.3s;
    position: relative;
    min-width: 0;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
}

.card-thumb.active {
    border-color: #000000;
}

.card-thumb--video .card-thumb-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-thumb--plan {
    background: #D0CFC9;
    position: relative;
    overflow: hidden;
}

.card-thumb--plan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-thumb-plan-label {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: calc(100% - 8px);
    z-index: 2;
}

.card-thumb-plan-floor {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    color: #FFFFFF;
    text-shadow:
        1px 1px 2px #8A8A8A,
        -1px -1px 2px #8A8A8A,
        1px -1px 2px #8A8A8A,
        -1px 1px 2px #8A8A8A,
        0px 1px 2px #8A8A8A,
        0px -1px 2px #8A8A8A,
        1px 0px 2px #8A8A8A,
        -1px 0px 2px #8A8A8A;
}

.card-thumb-plan-var {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19.2px;
    color: #FFFFFF;
    text-shadow:
        1px 1px 2px #8A8A8A,
        -1px -1px 2px #8A8A8A,
        1px -1px 2px #8A8A8A,
        -1px 1px 2px #8A8A8A,
        0px 1px 2px #8A8A8A,
        0px -1px 2px #8A8A8A,
        1px 0px 2px #8A8A8A,
        -1px 0px 2px #8A8A8A;
}

.card-thumb--plan::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 1;
}

.card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding-top: 6px;
    max-width: 320px;
    justify-content: space-between;
}

.card-info-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #9C9C9C;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.card-info-area {
    margin-bottom: 16px;
}

.card-info-area-value {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    color: #48924E;
}

.card-tooltip-btn {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.card-tooltip-btn img {
    width: 18px;
    height: 18px;
    display: block;
}

.card-info-material {
    margin-bottom: 35px;
}

.card-info-material-value {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.card-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
    margin-bottom: 35px;
}

.card-info-stat {
    display: flex;
    flex-direction: column;
}

.card-info-stat-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.card-info-stat-num {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    color: #000000;
}

.card-info-stat-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.card-info-stat-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #000000;
}

.card-info-price-block {
    margin-bottom: 16px;
}

.card-info-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.card-info-price-old {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: #000000;
    position: relative;
    display: inline-block;
}

.card-info-price-old::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 48%;
    height: 2.5px;
    background: #C72828;
    transform: rotate(-21deg);
    transform-origin: center;
    pointer-events: none;
}

.card-info-price-eq {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: #000000;
}

.card-info-price-new {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: #48924E;
    white-space: nowrap;
}

.card-info-price-new > span {
    color: #000000;
}

.card-info-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.card-btn-presentation,
.card-btn-calc {
    width: 100%;
    height: 52px;
    border-radius: 6px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
    box-shadow: 0px -4px 11px 0px rgba(0, 0, 0, 0.3) inset,
    0px 6px 8px 0px rgba(255, 255, 255, 0.35) inset;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.card-btn-presentation {
    background: #EA8F13;
}

.card-btn-presentation:hover {
    background: #FFA326;
}

.card-btn-calc {
    background: #48924E;
}

.card-btn-calc:hover {
    background: #5aaa62;
}

.card-mobile-stats {
    display: none;
}

.card-tabs {
    width: 100%;
    min-height: 44px;
    height: auto;
    border-radius: 10px;
    background: #EDEDED;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 10px;
    gap: 4px;
    margin-bottom: 40px;
    box-sizing: border-box;
    justify-content: space-between;
}


.card-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 10px;
    border: none;
    background: transparent;
    transition: background 0.2s;
    white-space: nowrap;
    height: 32px;
    flex-shrink: 0;
    text-decoration: none;
}

.card-tab img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.card-tab span {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
}

@media (max-width: 1200px) {
    .card-gallery {
        flex: 1;
        max-width: 85%;
    }

    .card-gallery-main {
        height: 420px;
    }

    .card-info {
        max-width: 280px;
    }

    .card-title {
        font-size: 36px;
        line-height: 40px;
    }

    .card-info-area-value {
        font-size: 40px;
    }

    .card-info-stat-num {
        font-size: 36px;
    }

    .card-info-stat-icon {
        width: 64px;
        height: 64px;
    }

    .card-info-price-old,
    .card-info-price-eq,
    .card-info-price-new {
        font-size: 36px;
    }

    .card-thumb {
        height: 86px;
    }

    .card-tab span {
        font-size: 21px;
    }

    .card-info-material {
        margin-bottom: 10px;
    }
    .card-info-grid {
        margin-bottom: 15px;
    }
    .card-info-btns {
        gap: 6px;
    }
}

@media (max-width: 1000px) {
    .card-page {
        padding: 50px 0 0;
    }

    .card-gallery {
        max-width: 75%;
    }

    .card-gallery-main {
        height: 360px;
    }

    .card-thumbs {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 10px;
    }

    .card-thumbs::-webkit-scrollbar {
        display: none;
    }

    .card-thumb {
        flex: 0 0 calc((100% - 30px) / 4);
        height: 75px;
    }

    .card-title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .card-info-area-value {
        font-size: 32px;
    }

    .card-info-stat-num {
        font-size: 30px;
    }

    .card-info-stat-icon {
        width: 58px;
        height: 58px;
    }

    .card-info-price-old,
    .card-info-price-eq,
    .card-info-price-new {
        font-size: 30px;
    }

    .card-btn-presentation,
    .card-btn-calc {
        height: 48px;
        font-size: 18px;
    }

    .card-info-grid {
        gap: 12px 8px;
    }

    .card-tabs {
        gap: 0;
        padding: 0 6px;
    }

    .card-tab {
        padding: 6px 10px;
    }

    .card-tab span {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .card-thumb {
        flex: 0 0 calc((100% - 20px) / 3);
        height: 70px;
    }

    .card-info {
        min-width: 200px;
    }

    .card-info-area-value {
        font-size: 28px;
    }

    .card-info-stat-num {
        font-size: 26px;
    }

    .card-info-stat-icon {
        width: 54px;
        height: 54px;
    }

    .card-info-price-old,
    .card-info-price-eq,
    .card-info-price-new {
        font-size: 26px;
    }

    .card-btn-presentation,
    .card-btn-calc {
        font-size: 16px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .card-page {
        padding: 40px 0 0;
    }

    .card-container {
        padding: 0 16px;
    }

    .breadcrumbs {
        gap: 2px;
        margin-bottom: 12px;
    }

    .breadcrumb-link,
    .breadcrumb-sep,
    .breadcrumb-current {
        font-size: 13px;
        line-height: 18px;
    }

    .card-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .card-main {
        flex-direction: column;
        gap: 16px;
    }

    .card-gallery {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .card-gallery-main {
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 8px;
    }

    .card-arrow {
        display: none;
    }

    .card-thumbs {
        gap: 8px;
        justify-content: flex-start;
    }

    .card-thumb {
        flex: 0 0 calc((100vw - 56px) / 3);
        height: auto;
        aspect-ratio: 152 / 97;
    }

    .card-info {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding-top: 0;
        display: contents;
    }

    .card-info-area,
    .card-info-material,
    .card-info-price-block,
    .card-info-btns {
        display: none;
    }

    .card-info-grid {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 4px;
        margin-bottom: 16px;
        order: 1;
        width: 100%;
    }

    .card-info-stat {
        flex: 1;
        align-items: flex-start;
        text-align: left;
    }

    .card-info-stat-top {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-bottom: 4px;
        width: 100%;
        justify-content: flex-start;
    }

    .card-info-stat-num {
        font-size: 28px;
        line-height: 1;
        order: 1;
    }

    .card-info-stat-icon {
        width: 64px;
        height: 64px;
        order: 2;
        flex-shrink: 0;
    }

    .card-info-stat-label {
        font-size: 18px;
        order: 3;
        width: 100%;
    }

    .card-mobile-stats {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px;
        order: 3;
        width: 100%;
    }

    .card-mobile-stat {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .card-mobile-stat .card-info-area-value {
        font-size: 38px;
        line-height: 1;
    }

    .card-mobile-stat .card-info-price-row {
        gap: 4px;
    }

    .card-mobile-stat .card-info-price-old,
    .card-mobile-stat .card-info-price-eq,
    .card-mobile-stat .card-info-price-new {
        font-size: 32px;
        line-height: 1;
    }

    .card-info-btns {
        display: flex;
        order: 3;
        width: 100%;
        gap: 10px;
    }

    .card-btn-presentation,
    .card-btn-calc {
        height: 50px;
        font-size: 18px;
    }

    .card-tabs {
        display: none;
    }
}

@media (max-width: 480px) {
    .card-title {
        font-size: 22px;
        line-height: 28px;
    }

    .card-info-stat-num {
        font-size: 30px;
    }

    .card-info-stat-icon {
        width: 54px;
        height: 54px;
    }

    .card-info-stat-label {
        font-size: 14px;
    }

    .card-thumb {
        flex: 0 0 calc((100vw - 48px) / 3);
    }

    .card-btn-presentation,
    .card-btn-calc {
        height: 46px;
        font-size: 16px;
    }

    .card-mobile-stat .card-info-area-value {
        font-size: 24px;
    }

    .card-mobile-stat .card-info-price-old,
    .card-mobile-stat .card-info-price-eq,
    .card-mobile-stat .card-info-price-new {
        font-size: 24px;
    }
}

@media (max-width: 380px) {
    .card-title {
        font-size: 20px;
        line-height: 26px;
    }

    .card-info-stat-num {
        font-size: 22px;
    }

    .card-info-stat-icon {
        width: 44px;
        height: 44px;
    }

    .card-info-stat-label {
        font-size: 15px;
    }

    .card-thumb {
        flex: 0 0 calc((100vw - 40px) / 3);
    }
}

/* ЧТО ВХОДИТ В СТОИМОСТЬ*/
.cost-section {
    width: 100%;
    padding: 0 0 70px;
    background: #F5F5F5;
}

.cost-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.cost-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 44px;
    color: #000000;
    margin: 0 0 40px;
}

.cost-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    background: #F5F5F5;
    border-radius: 16px 16px 0 0;
    overflow: visible;
}

.cost-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 22px 10px 16px;
    width: 187px;
    min-height: 175px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 16px 16px 0 0;
    transition: background 0.2s;
    flex-shrink: 0;
    position: relative;
    flex: 1 0 0;
}

.cost-tab.active {
    background: #FFFFFF;
}

.cost-tab:not(.active):hover {
    background: rgba(255,255,255,0.5);
}

.cost-tab-icon {
    width: 120px;
    height: 92px;
    object-fit: contain;
    flex-shrink: 0;
    transition: opacity 0.2s;
    display: block;
}

.cost-tab:not(.active) .cost-tab-icon {
    opacity: 0.5;
}

.cost-tab-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}

.cost-panels {
    background: #FFFFFF;
    border-radius: 0 0 0 0;
    overflow: hidden;
}

.cost-panel {
    display: none;
    gap: 36px;
    padding: 36px 30px;
    height: 611px;
}

.cost-panel.active {
    display: flex;
    align-items: stretch;
}

.cost-panel-img {
    flex: 0 0 594px;
    max-width: 594px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    align-self: stretch;
    min-height: 100%;
}

.cost-panel-img picture {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.cost-panel-img picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    min-height: 541px;
}

.cost-panel-img > img {
    width: 100%;
    height: 100%;
    min-height: 541px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.cost-panel-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 16px;

    width: fit-content;
    max-width: 380px;
    padding: 16px 20px;
    box-sizing: border-box;

    background: rgba(4, 71, 34, 0.72);
    border: 1px solid #48924E;
    border-radius: 12px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cost-panel-badge img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.cost-panel-badge span {
    display: block;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: left;
}

.cost-panel-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cost-panel-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 20px;
}

.cost-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cost-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.cost-list li span {
    flex: 1;
    min-width: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
}

.cost-list li.is-truncated span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: var(--truncate-lines, 1);
    line-clamp: var(--truncate-lines, 1);
}

.cost-check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    display: block;
}

.cost-list li span strong {
    font-weight: 700;
}

.cost-more {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    color: #000000;
    margin: 0 0 20px;
    flex-shrink: 0;
}

.cost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 6px;
    border: none;
    background: #EA8F13;
    box-shadow: 0px -4px 11px 0px rgba(0,0,0,0.3) inset,
    0px 6px 8px 0px rgba(255,255,255,0.35) inset;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
    align-self: flex-start;
    margin-top: auto;
    flex-shrink: 0;
}

.cost-btn:hover {
    background: #FFA326;
}

.cost-accordion-btn-outer {
    display: none;
}

@media (max-width: 768px) {
    .cost-accordion-btn-outer {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        height: 52px;
        border-radius: 6px;
        border: none;
        background: #EA8F13;
        box-shadow: 0px -4px 11px 0px rgba(0,0,0,0.3) inset,
        0px 6px 8px 0px rgba(255,255,255,0.35) inset;
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 18px;
        line-height: 20px;
        color: #FFFFFF;
        cursor: pointer;
        transition: background 0.25s;
        margin-top: 16px;
    }

    .cost-accordion-btn-outer:hover {
        background: #FFA326;
    }

    .cost-acc-body .cost-btn {
        display: none;
    }
}

.cost-accordion {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.cost-acc-item {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
}

.cost-acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.cost-acc-icon {
    width: 60px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.cost-acc-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #000000;
    flex: 1;
}

.cost-acc-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.cost-acc-item.active .cost-acc-arrow {
    transform: rotate(180deg);
}

.cost-acc-body {
    display: none;
    padding: 0 20px 20px;
}

.cost-acc-item.active .cost-acc-body {
    display: block;
}

.cost-acc-body .cost-btn {
    width: 100%;
    margin-top: 16px;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .cost-tab {
        width: calc(100% / 6);
        min-height: 155px;
        padding: 18px 6px 14px;
    }

    .cost-tab-icon {
        width: 90px;
        height: 70px;
    }

    .cost-panel-img {
        flex: 0 0 460px;
        max-width: 460px;
    }

    .cost-panel-img picture img {
        min-height: 440px;
    }

    .cost-panel-img > img {
        min-height: 440px;
    }

    .cost-panel-badge {
        max-width: 320px;
        padding: 14px 16px;
        gap: 12px;
    }

    .cost-panel-badge span {
        font-size: 17px;
    }
}

@media (max-width: 1000px) {
    .cost-title {
        font-size: 32px;
        line-height: 38px;
    }

    .cost-tab {
        min-height: 140px;
        padding: 14px 4px 12px;
    }

    .cost-tab-icon {
        width: 70px;
        height: 54px;
    }

    .cost-tab-label {
        font-size: 12px;
    }

    .cost-panel {
        padding: 24px 20px;
        gap: 24px;
    }

    .cost-panel-img {
        flex: 0 0 360px;
        max-width: 360px;
    }

    .cost-panel-img picture img {
        min-height: 360px;
    }

    .cost-panel-img > img {
        min-height: 360px;
    }

    .cost-panel-badge {
        left: 14px;
        bottom: 14px;
        max-width: 250px;
        padding: 12px 14px;
        gap: 10px;
    }

    .cost-panel-badge img {
        width: 20px;
        height: 20px;
    }

    .cost-panel-badge span {
        font-size: 14px;
        line-height: 1.2;
    }

    .cost-panel-heading {
        font-size: 18px;
    }

    .cost-list li span {
        font-size: 14px;
        line-height: 20px;
    }

    .cost-more {
        font-size: 17px;
    }

    .cost-btn {
        font-size: 17px;
        height: 46px;
    }
}

@media (max-width: 768px) {
    .cost-section {
        padding: 40px 0 50px;
    }

    .cost-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 24px;
        text-align: center;
    }

    .cost-tabs,
    .cost-panels {
        display: none;
    }

    .cost-accordion {
        display: flex;
    }

    .cost-acc-body .cost-panel-img {
        width: 100%;
        max-width: 100%;
        flex: none;
        margin-bottom: 20px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .cost-acc-body .cost-panel-img picture img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: 420px;
        aspect-ratio: 1 / 0.9;
        object-fit: cover;
        display: block;
    }

    .cost-acc-body .cost-panel-img > img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: 420px;
        aspect-ratio: 1 / 0.9;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }

    .cost-acc-body .cost-panel-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
        padding: 12px 14px;
        gap: 10px;
        border-radius: 10px;
    }

    .cost-acc-body .cost-panel-badge img {
        width: 18px;
        height: 18px;
    }

    .cost-acc-body .cost-panel-badge span {
        font-size: 14px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .cost-title {
        font-size: 22px;
        line-height: 28px;
    }

    .cost-acc-btn {
        padding: 14px 16px;
        gap: 12px;
    }

    .cost-acc-icon {
        width: 50px;
        height: 38px;
    }

    .cost-acc-label {
        font-size: 13px;
    }

    .cost-list li span {
        font-size: 14px;
    }

    .cost-acc-body .cost-panel-img picture img {
        max-height: 320px;
    }

    .cost-acc-body .cost-panel-img > img {
        max-height: 360px;
    }

    .cost-acc-body .cost-panel-badge {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px 12px;
    }

    .cost-acc-body .cost-panel-badge span {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .cost-title {
        font-size: 20px;
        line-height: 26px;
    }

    .cost-acc-icon {
        width: 44px;
        height: 34px;
    }
}

.cost-acc-body .cost-panel-img {
    max-width: 100%;
    flex: none;
    margin-bottom: 20px;
}

.cost-acc-body .cost-panel-img picture img {
    height: auto;
    max-height: 350px;
    width: 100%;
}

.cost-acc-body .cost-panel-img > img {
    height: auto;
    max-height: 350px;
    width: 100%;
}

.cost-acc-body .cost-panel-badge {
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    padding: 12px 16px;
    border-radius: 8px;
    gap: 0;
}

.cost-acc-body .cost-panel-badge span {
    font-size: 14px;
    line-height: 1.3;
}

/*  4 ИКОНКИ */
.advantages-section {
    width: 100%;
    background: #F5F5F5;
    padding: 50px 0;
}

.advantages-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantages-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 150px;
}

.advantages-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.advantages-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
}

.advantages-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #000000;
}

/* 3D-ВИЗУАЛИЗАЦИЯ */
.viz-section {
    width: 100%;
    background: #FFFFFF;
    padding: 60px 0 70px;
}

.viz-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.viz-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 38px;
    color: #000000;
    text-align: center;
    margin: 0 0 40px;
}

.viz-frame {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: #e0e0e0;
}

.viz-img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    display: block;
}

/*  О ПРОЕКТЕ */
.about-section {
    width: 100%;
    background: #F5F5F5;
    padding: 70px 0 70px;
}

.about-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.about-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: #000000;
    text-align: center;
    margin: 0;
    padding: 30px 30px 20px;
}

.about-body {
    padding: 0 30px;
    position: relative;
    max-height: 160px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: max-height;
}

.about-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.35s ease;
}

.about-body.expanded::after {
    opacity: 0;
}

.about-columns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.about-columns > div {
    flex: 1 0 0;
}

.about-col p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 16px;
}

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

.about-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    background: #579E5D;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
    transition: background 0.25s;
    margin-top: 0;
    flex-shrink: 0;
}

.about-more-btn:hover {
    background: #48924E;
}

.about-more-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.about-more-btn.open .about-more-arrow {
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .advantages-grid {
        gap: 130px;
    }

    .advantages-img {
        width: 130px;
        height: 130px;
    }

    .viz-img {
        height: 460px;
    }
}

@media (max-width: 1000px) {
    .advantages-img {
        width: 130px;
        height: 130px;
    }

    .advantages-grid {
        gap: 50px;
    }

    .viz-title {
        font-size: 32px;
    }

    .viz-img {
        height: 380px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-columns {
        gap: 20px;
    }

    .about-col p {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 32px 0;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        justify-items: center;
    }

    .advantages-img {
        width: 120px;
        height: 120px;
    }

    .advantages-label {
        font-size: 15px;
    }

    .viz-section,
    .about-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .advantages-img {
        width: 100px;
        height: 100px;
    }

    .advantages-label {
        font-size: 14px;
    }

    .advantages-grid {
        gap: 20px 12px;
    }
}

@media (max-width: 380px) {
    .advantages-img {
        width: 86px;
        height: 86px;
    }

    .advantages-label {
        font-size: 13px;
    }
}

/* ПОСТРОЕННЫЕ ДОМА */

.built-houses-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 50px 20px 30px;
}

.built-houses-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: #000000;
    margin: 0 0 30px;
}

.built-houses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
    margin-bottom: 30px;
}

.built-houses-card {
    display: flex;
    flex-direction: column;
}

.built-houses-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #e0e0e0;
    margin-bottom: 14px;
}

.built-houses-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.built-houses-card-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #000000;
    margin: 0 0 10px;
}

.built-houses-card-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20.8px;
    color: #000000;
    margin: 0;
}

.built-houses-more {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #48924E;
}

.built-houses-more-text {
    color: #48924E;
}

.built-houses-more-link {
    color: #48924E;
    text-decoration: none;
    border-bottom: 2px solid #48924E;
    transition: opacity 0.2s;
}

.built-houses-more-link:hover {
    opacity: 0.7;
}

@media (max-width: 1200px) and (min-width: 1001px) {
    .built-houses-container {
        padding: 40px 20px 30px;
    }

    .built-houses-title {
        font-size: 26px;
        line-height: 34px;
    }

    .built-houses-grid {
        gap: 24px 20px;
    }

    .built-houses-card-title {
        font-size: 18px;
    }

    .built-houses-card-text {
        font-size: 14px;
        line-height: 19px;
    }
}

@media (max-width: 1000px) and (min-width: 769px) {
    .built-houses {
        padding: 0 0 0px;
    }

    .built-houses-container {
        padding: 36px 20px 20px;
    }

    .built-houses-title {
        font-size: 24px;
        line-height: 30px;
    }

    .built-houses-grid {
        gap: 24px 18px;
    }

    .built-houses-card-title {
        font-size: 17px;
    }

    .built-houses-card-text {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 768px) {
    .built-houses {
        padding: 0 0 0px;
    }

    .built-houses-wrapper {
        margin: 0 16px;
        border-radius: 16px;
    }

    .built-houses-container {
        padding: 30px 20px 20px;
    }

    .built-houses-title {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        margin-bottom: 24px;
    }

    .built-houses-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 24px;
    }

    .built-houses-card:nth-child(n+4) {
        display: none;
    }

    .built-houses-card-img {
        aspect-ratio: 16 / 9;
    }

    .built-houses-card-title {
        font-size: 18px;
    }

    .built-houses-card-text {
        font-size: 15px;
        line-height: 20px;
    }

    .built-houses-more {
        text-align: left;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .built-houses-wrapper {
        margin: 0 12px;
    }

    .built-houses-container {
        padding: 24px 16px 8px;
    }

    .built-houses-title {
        font-size: 22px;
        line-height: 28px;
    }

    .built-houses-card-title {
        font-size: 17px;
    }

    .built-houses-card-text {
        font-size: 14px;
        line-height: 19px;
    }
}

@media (max-width: 380px) {
    .built-houses-title {
        font-size: 20px;
        line-height: 26px;
    }

    .built-houses-card-title {
        font-size: 16px;
    }

    .built-houses-card-text {
        font-size: 13px;
        line-height: 18px;
    }
}

/* ВИДЕО БЛОК */
.video-block {
    width: 100%;
    background: #FFFFFF;
    padding: 50px 0;
}

.video-block-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 130px;
}

.video-block-inner {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.video-block-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.video-block-inner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1200px) and (min-width: 1001px) {
    .video-block-container {
        padding: 0 60px;
    }
}

@media (max-width: 1000px) and (min-width: 769px) {
    .video-block {
        padding: 40px 0;
    }

    .video-block-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .video-block {
        padding: 30px 0;
    }

    .video-block-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .video-block {
        padding: 20px 0;
    }

    .video-block-container {
        padding: 0 16px;
    }
}

/* ПОСЕТИТЬ ОБЪЕКТЫ С ПРОРАБОМ */
.visit {
    width: 100%;
    background: #FFFFFF;
    padding: 40px 0;
    margin: 40px 0;
}

.visit-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.visit-left {
    flex: 0 0 45%;
    max-width: 500px;
}

.visit-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 48.4px;
    color: #303030;
    margin: 0 0 32px;
}

.visit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visit-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.visit-list-item img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.visit-list-item span {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    color: #303030;
}

.visit-right {
    flex: 1;
    min-width: 0;
}

.visit-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 624 / 385;
}

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

.visit-img--mobile {
    display: none;
}

.visit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.visit-overlay-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
}

.visit-overlay-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visit-city {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    margin: 0;
    max-width: 50%;
    white-space: normal;
}

.visit-btn {
    width: 192px;
    height: 52px;
    border-radius: 6px;
    border: none;
    background: #EA8F13;
    box-shadow: 0px 6px 8px 0px rgba(255, 255, 255, 0.45) inset,
    0px -4px 11px 0px rgba(0, 0, 0, 0.2) inset;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
}

.visit-btn:hover {
    background: #FFA326;
}

.visit-excursion {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0;
    text-align: right;
}

@media (max-width: 1100px) and (min-width: 850px) {
    .visit-title {
        font-size: 24px;
        line-height: 38px;
        margin-bottom: 24px;
    }

    .visit-list-item span {
        font-size: 16px;
        line-height: 22px;
    }

    .visit-container {
        gap: 28px;
    }

    .visit-left {
        flex: 0 0 44%;
    }

    .visit-btn {
        width: 160px;
        height: 46px;
        font-size: 16px;
    }

    .visit-excursion {
        font-size: 20px;
        line-height: 24px;
        margin-top: 20px;
    }
    .visit-overlay-bottom {
        padding: 16px 24px 10px
    }
}

@media (max-width: 850px) {
    .visit {
        padding: 30px 0;
    }

    .visit-container {
        flex-direction: column;
        gap: 24px;
        padding: 0 20px;
        align-items: center;
        text-align: center;
    }

    .visit-left {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .visit-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 0;
    }

    .visit-list {
        display: none;
    }

    .visit-right {
        width: 100%;
    }

    .visit-img--desktop {
        display: none;
    }

    .visit-img--mobile {
        display: block;
        object-position: center top;
    }

    .visit-overlay {
        justify-content: flex-end;
    }

    .visit-overlay-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 24px 20px 28px;
        background: linear-gradient(to top, #2b1e17 0%, #2b1e17cc 22%, #2b1e1766 45%, transparent 70%);
    }

    .visit-image-wrapper {
        position: relative;
    }

    .visit-image-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 75%;
        background: linear-gradient(
            to top,
            #2b1e17 0%,
            #2b1e17 40%,
            rgba(43, 30, 23, 0.9) 60%,
            rgba(43, 30, 23, 0.4) 80%,
            rgba(43, 30, 23, 0) 100%
        );
        pointer-events: none;
        z-index: 1;
    }

    .visit-overlay-left {
        align-items: center;
        order: 2;
        width: 100%;
    }

    .visit-excursion {
        order: 1;
        font-size: 26px;
        line-height: 30px;
        text-align: center;
    }

    .visit-city {
        text-align: center;
        font-size: 12px;
        white-space: nowrap;
    }

    .visit-overlay {
        z-index: 2;
        position: absolute;
    }

    .visit-btn {
        width: 100%;
        max-width: 100%;
        height: 52px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .visit-title {
        font-size: 24px;
        line-height: 28px;
    }

    .visit-image-wrapper {
        height: 380px;
    }
}

@media (max-width: 380px) {
    .visit-title {
        font-size: 22px;
        line-height: 26px;
    }

    .visit-image-wrapper {
        height: 340px;
    }
}



/* УСЛОВИЯ */

.conditions {
    width: 100%;
    background: #FFFFFF;
    padding: 80px 0;
    overflow: hidden;
}

.conditions-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

.conditions-left {
    flex: 0 0 55%;
}

.conditions-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 44px;
    color: #000000;
    margin: 0 0 50px;
}

.conditions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
}

.condition-item {
    max-width: 380px;
}

.condition-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

.condition-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    margin: 0 0 6px;
}

.condition-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #9C9C9C;
    margin: 0 0 14px;
}

.condition-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin: 0;
}

.conditions-more {
    display: inline-block;
    margin-top: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #48924E;
    text-decoration: none;
}

.conditions-right {
    flex: 1;
    position: relative;
}

.conditions-book {
    position: absolute;
    top: -80px;
    right: -400px;
    width: 1050px;
    max-width: none;
}

@media (max-width: 1100px) {

    .conditions-container {
        gap: 40px;
    }

    .conditions-title {
        font-size: 34px;
        line-height: 38px;
    }

    .conditions-grid {
        gap: 40px 30px;
    }

    .conditions-book {
        width: 800px;
        right: -250px;
        top: -10px;
    }
}

@media (max-width: 768px) {

    .conditions {
        padding: 60px 0 40px;
    }

    .conditions-container {
        flex-direction: column;
        gap: 0px;
    }

    .conditions-left {
        flex: none;
        width: 100%;
    }

    .conditions-title {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .conditions-right {
        order: 2;
        position: relative;
    }

    .conditions-book {
        position: static;
        width: 135%;
        margin-left: -15%;
    }

    .card-thumbs .swiper-layout-overflow .floor {
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.2;
    }

    .card-thumbs .swiper-layout-overflow .name {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
    }

}


