        :root {
            --easeInEaseOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
            --color_richblue: #10103D;
            --color_black: #000000;
            --color_skyblue: #98D2DD;
            --color_gold: #A18A6B;
            --color_sand: #DBC0A8;
            --color_lightgrey70: #E2DFDB;
            --color_lightgrey30: #F3F1EF;
            --color_white: #ffffff;
            --color_red: #800000;
            --font_heading: 'El Messiri', 'PT Sans Caption', 'Inter', sans-serif;
            --font_body: 'El Messiri', 'PT Sans Caption', 'Inter', sans-serif;
        }

        /* Reset */
        *, *::before, *::after {
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: var(--font_body);
            font-size: 1.5rem;
            line-height: 1.65;
            color: var(--color_black);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }
        
        h1, h2, h3, h4, h5, h6 {
            margin: 0;
            padding: 0;
        }
        
        p {
            margin: 0 0 10px 0;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul, ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        img {
            max-width: 100%;
            display: inline-block;
        }
        
        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        /* Typography */
        h1 {
            text-transform: uppercase;
            font-family: var(--font_heading);
            font-size: 8.4rem;
            font-weight: 400;
            line-height: 1.05em;
        }

        h2 {
            letter-spacing: normal;
            text-transform: uppercase;
            font-family: var(--font_heading);
            font-size: 7rem;
            font-weight: 400;
            line-height: 105%;
        }

        h3 {
            text-transform: uppercase;
            font-family: var(--font_heading);
            font-size: 4.2rem;
            font-weight: 400;
            line-height: 105%;
        }

        h4 {
            text-transform: uppercase;
            font-family: var(--font_heading);
            font-size: 3.15rem;
            font-weight: 400;
            line-height: 110%;
        }

        h5 {
            font-family: var(--font_heading);
            font-size: 2.8rem;
            font-weight: 400;
            line-height: 150%;
        }

        h6 {
            font-family: var(--font_heading);
            font-size: 2.1rem;
            font-weight: 400;
            line-height: 150%;
        }
        
        .heading-style-h1 {
            letter-spacing: normal;
            text-transform: uppercase;
            font-family: var(--font_heading);
            font-size: 8.4rem;
            font-weight: 400;
            line-height: 1.05;
        }

        .heading-style-h3 {
            letter-spacing: normal;
            text-transform: uppercase;
            font-family: var(--font_heading);
            font-size: 4.2rem;
            font-weight: 400;
            line-height: 1.05em;
        }

        .heading-style-h2 {
            letter-spacing: normal;
            text-transform: uppercase;
            font-family: var(--font_heading);
            font-size: 7rem;
            font-weight: 400;
            line-height: 1.05em;
        }

        .heading-style-h4 {
            letter-spacing: normal;
            text-transform: uppercase;
            max-width: 880px;
            font-family: var(--font_heading);
            font-size: 3.15rem;
            font-weight: 400;
            line-height: 110%;
        }

        .heading-style-h5 {
            letter-spacing: normal;
            text-transform: none;
            font-family: var(--font_heading);
            font-size: 2.8rem;
            font-weight: 400;
            line-height: 1.5em;
        }

        .heading-style-h6 {
            letter-spacing: normal;
            text-transform: none;
            font-family: var(--font_heading);
            font-size: 2.1rem;
            font-weight: 400;
            line-height: 1.5em;
        }
        
        .text-size-large {
            font-family: var(--font_body);
            font-size: 1.4rem;
            font-weight: 400;
            line-height: 1.75em;
            padding: 2vw;
        }

        .text-size-medium {
            font-family: var(--font_body);
            font-size: 1.225rem;
            font-weight: 400;
            line-height: 1.6em;
        }

        .text-size-caption {
            letter-spacing: .1em;
            text-transform: uppercase;
            font-family: var(--font_body);
            font-size: 1.225rem;
            font-weight: 500;
            line-height: 1.75em;
        }

        .text-size-counter {
            font-family: var(--font_heading);
            font-size: 5.6rem;
            font-weight: 400;
            line-height: 1.5em;
        }
        
        .text-color-richblue {
            color: var(--color_richblue);
        }
        
        .text-color-white {
            color: var(--color_white);
        }
        
        .white-text {
            color: var(--color_white);
        }
        
        .background-color-grey {
            background-color: var(--color_lightgrey30);
        }

        /* Hide/Show Classes */
        .hide-mobile {
            display: block;
        }
        
        .hide-desktop {
            display: none;
        }
        
        @media screen and (max-width: 767px) {
            .hide-mobile {
                display: none !important;
            }
            .hide-mobile.button {
                display: none !important;
            }
            a.hide-mobile.w-inline-block {
                display: none !important;
            }
            .hide-desktop {
                display: block !important;
            }
            .hide-desktop.button {
                display: inline-flex !important;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 4rem; }
            h3 { font-size: 1.75rem; line-height: 120%; }
            h4 { font-size: 1.5rem; line-height: 120%; }
            .heading-style-h1 { font-size: 2.5rem; }
            .heading-style-h3 { font-size: 1.75rem; line-height: 1.2em; }
            .heading-style-h2 { font-size: 4rem; }
            .heading-style-h4 { font-size: 1.5rem; line-height: 1.2em; }
            .heading-style-h5 { font-size: 1.125rem; }
            .heading-style-h6 { font-size: 1rem; }
            .text-size-counter { font-size: 2rem; }
        }
        
        @media screen and (max-width: 991px) {
            .hide-tablet { display: none; }
        }
        /* Buttons */
        .button {
            -webkit-backdrop-filter: blur(50px);
            backdrop-filter: blur(50px);
            color: var(--color_white);
            text-align: center;
            background-color: #0006;
            padding: .625rem 1.625rem .5rem;
            font-family: var(--font_heading);
            font-size: .875rem;
            font-weight: 400;
            line-height: 1.25rem;
            text-decoration: none;
            transition: color .3s cubic-bezier(.455,.03,.515,.955), background-color .3s cubic-bezier(.455,.03,.515,.955);
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: pointer;
            border: none;
        }
        
        .button:hover {
            background-color: #000000b3;
        }
        
        .button.is-secondary {
            background-color: var(--color_lightgrey30);
            color: var(--color_richblue);
        }
        
        .button.is-secondary:hover {
            background-color: var(--color_lightgrey70);
        }
        
        .button.is-long {
            z-index: 3;
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            white-space: nowrap;
            background-color: #00000080;
            padding: .625rem 6rem .5rem;
        }
        
        .button.is-long.is-secondary {
            background-color: var(--color_lightgrey30);
            color: var(--color_richblue);
        }
        
        .button.is-long.is-secondary:hover {
            background-color: var(--color_lightgrey70);
        }
        
        .button svg.btn, 
        .button svg.btn rect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            fill: transparent;
        }
        
        .button svg.btn rect {
            stroke: var(--color_white);
            stroke-width: 4;
            transition: 2500ms;
            stroke-dasharray: 480;
            stroke-dashoffset: 480;
            opacity: 0;
        }
        
        .button.is-secondary svg.btn rect {
            stroke: var(--color_richblue);
        }
        
        .button:hover svg.btn rect {
            stroke-dashoffset: 0;
            opacity: 1;
        }
        
        .button.is-long svg.btn rect {
            transition: 2500ms;
            stroke-dasharray: 900;
            stroke-dashoffset: 900;
        }
        
        .button-border-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        @media screen and (max-width: 767px) {
            .button.hide-desktop {
                padding: .5rem 1rem;
            }
            .button.is-long {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }
        }

        /* Hero Section */
        .section_hero {
            background-color: var(--color_white);
            position: relative;
        }
        
        .pdp_hero_scroll_container {
            z-index: 2;
            background-color: var(--color_white);
            width: 100%;
            height: 400vh;
            position: relative;
        }
        
        .pdp_hero_container {
            background-color: var(--color_white);
            transform-style: preserve-3d;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100vh;
            display: flex;
            position: sticky;
            top: 0;
            overflow: hidden;
        }
        
        .pdp_hero_video {
            z-index: 1;
            object-fit: cover;
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0%;
        }
        
        .pdp_hero_video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .pdp_hero_veil {
            z-index: 2;
            opacity: 0;
            background-color: #0000008c;
            width: 100%;
            height: 100%;
            position: absolute;
            will-change: opacity;
        }
        
        .pdp_hero_veil.dark {
            background-color: #000c;
        }
        
        .pdp_hero_intro {
            z-index: 2;
            background-color: #0000;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100dvh;
            display: flex;
            position: absolute;
            inset: 0% 0% auto;
            will-change: transform, opacity;
        }
        
        .pdp_back_wrapper {
            width: 100%;
            padding-left: 4rem;
            display: flex;
            position: fixed;
            top: 7rem;
        }
        
        @media screen and (max-width: 767px) {
            .pdp_back_wrapper {
                position: static;
                padding-left: 3rem;
            }
        }
        
        @media screen and (max-width: 479px) {
            .pdp_back_wrapper { padding-left: 1.5rem; }
        }
        
        .pdp_back_button {
            color: var(--color_richblue);
            cursor: pointer;
            background-color: var(--color_lightgrey30);
            height: auto;
            padding: 6px 12px;
            font-size: .75rem;
            text-decoration: none;
            display: inline-block;
        }
        
        .pdp_hero_heading {
            text-align: center;
            max-width: 1100px;
            margin-top: 0;
            margin-bottom: 0;
        }
        
        .pdp_hero_heading.heading-style-h1 {
            color: var(--color_richblue);
            text-transform: uppercase;
            margin-top: 144px;
        }
        
        .pdp_hero_heading.heading-style-h1.orla_hero_heading {
            max-width: 866px;
        }
        
        .pdp_hero_heading.heading-style-h1.white-text {
            z-index: 1;
            color: var(--color_white);
            position: relative;
        }
        
        @media screen and (max-width: 767px) {
            .pdp_hero_heading.heading-style-h1 {
                margin-top: 128px;
                margin-left: 2.5rem;
                margin-right: 2.5rem;
                font-size: 3rem;
            }
        }
        
        @media screen and (max-width: 479px) {
            .pdp_hero_heading.heading-style-h1 {
                font-size: 2.5rem;
            }
        }
        
        .pdp_hero_scroll {
            color: var(--color_richblue);
            font-size: 1.5rem;
            line-height: 1.5;
            position: absolute;
            top: 87vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pdp_hero_scroll_icon {
            justify-content: center;
            align-items: center;
            display: flex;
            position: relative;
        }
        
        .pdp_hero_scroll_lottie_indicator {
            width: 50px;
            height: 100px;
        }
        
        .overlay-pdp {
            z-index: 0;
            background-color: #00000059;
            width: 100vw;
            height: 100vh;
            position: absolute;
            inset: 0%;
        }
        
        .overlay-pdp.z-index {
            z-index: 2;
        }
        
        .pdp_hero_content {
            z-index: 2;
            grid-column-gap: 1.5rem;
            grid-row-gap: 1.5rem;
            text-align: center;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            display: flex;
            position: absolute;
            will-change: opacity;
        }
        
        .logo_pdp {
            width: 200px;
            will-change: opacity;
        }
        
        .pdp_hero_content.pdp_hero_content_2 {
            will-change: transform, opacity;
        }
        
        .logo_pdp_small {
            height: 80px;
            width: 120px;
        }
        
        .pdp_hero_subheading {
            color: var(--color_white);
            max-width: 880px;
            margin-top: 0;
            margin-bottom: 0;
        }
        
        .pdp_hero_text.text-size-large {
            color: var(--color_white);
            max-width: 640px;
        }
        
        .pdp_stats_content {
            z-index: 2;
            grid-column-gap: 1.5rem;
            grid-row-gap: 1.5rem;
            text-align: center;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            display: flex;
            position: absolute;
            will-change: transform, opacity;
        }
        
        .pdp_stats_content.pdp_hero_content_2 {
            opacity: 0;
        }
        
        .pdp_stats_content_inner {
            grid-column-gap: 8rem;
            grid-row-gap: 8rem;
            text-align: left;
            justify-content: space-between;
            margin-top: 0;
            margin-bottom: 0;
            display: flex;
        }
        
        @media screen and (max-width: 991px) {
            .pdp_stats_content_inner {
                grid-column-gap: 4rem;
                grid-row-gap: 4rem;
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        
        @media screen and (max-width: 767px) {
            .pdp_stats_content_inner {
                grid-column-gap: 2rem;
                grid-row-gap: 2rem;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin-top: 6rem;
                margin-bottom: 6rem;
                flex-wrap: wrap;
            }
        }
        
        .pdp_stat_item {
            color: var(--color_white);
        }
        
        .pdp_stat_caption {
            color: #ffffffb3;
        }
        
        .pdp_stat_content_item {
            border-left: 1.6px solid #0a0a3d4d;
            border-radius: 0;
            padding-left: 1.5rem;
            border-width: 1px;
            border-color: #ffffff80;
            border-left-style: solid;
        }
        
        @media screen and (max-width: 767px) {
            .pdp_stat_content_item {
                width: 100%;
            }
            .pdp_stat_item.text-size-counter {
                white-space: nowrap;
                font-size: 2rem;
            }
        }
        
        .pdp_hero_scroll_trigger {
            width: 10px;
            height: 50vh;
            margin-top: 0;
            position: relative;
        }
        
        .pdp_stats_scroll_trigger {
            width: 10px;
            height: 50vh;
            margin-top: 100vh;
            position: relative;
        }
        
        .hidden {
            text-indent: -100%;
            width: 1px;
            height: 1px;
            position: absolute;
            overflow: hidden;
        }

        /* Specs Drawer */
        .pdp_specs_drawer {
            z-index: 4;
            -webkit-backdrop-filter: blur(50px);
            backdrop-filter: blur(50px);
            background-color: #00000080;
            width: 100%;
            padding: 1rem 4rem;
            position: fixed;
            inset: auto 0% 0%;
            transform: translateY(100%);
            transition: transform 1.2s var(--easeInEaseOutCubic), padding 1.2s var(--easeInEaseOutCubic), opacity 0.6s var(--easeInEaseOutCubic);
            opacity: 0;
            pointer-events: none;
        }
        
        .pdp_specs_drawer.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        /* Hero Scroll Animations */
        .pdp_hero_intro {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.8s var(--easeInEaseOutCubic), transform 0.8s var(--easeInEaseOutCubic);
        }
        
        .pdp_hero_intro.fade-out {
            opacity: 0;
            transform: translateY(-50px);
        }
        
        .pdp_hero_content {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--easeInEaseOutCubic), transform 0.8s var(--easeInEaseOutCubic);
        }
        
        .pdp_hero_content.fade-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .pdp_hero_content.fade-out {
            opacity: 0;
            transform: translateY(-30px);
        }
        
        .pdp_stats_content {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s var(--easeInEaseOutCubic), transform 0.8s var(--easeInEaseOutCubic);
        }
        
        .pdp_stats_content.fade-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .pdp_stats_content.fade-out {
            opacity: 0;
            transform: translateY(-30px);
        }
        
        .pdp_specs_drawer.open {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }
        
        @media screen and (max-width: 767px) {
            .pdp_specs_drawer {
                max-height: calc(100dvh - 128px);
                padding-left: 2rem;
                padding-right: 2rem;
            }
            .pdp_specs_drawer.open {
                overflow-y: auto;
            }
        }
        
        .specs_drawer_header {
            justify-content: space-between;
            align-items: center;
            display: flex;
        }
        
        .specs_heading {
            color: var(--color_white);
            text-transform: none;
            font-family: var(--font_body);
            font-size: .875rem;
            line-height: 1.5rem;
        }
        
        .specs_grid {
            grid-column-gap: 2rem;
            grid-row-gap: 4rem;
            grid-template-rows: auto auto;
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
            grid-auto-columns: 1fr;
            margin-top: 2rem;
            display: grid;
        }
        
        @media screen and (max-width: 991px) {
            .specs_grid {
                grid-row-gap: 2rem;
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        
        @media screen and (max-width: 767px) {
            .specs_grid {
                grid-template-columns: 1fr;
            }
        }
        
        .specs_grid.text-size-large.specs_grid_small {
            grid-template-rows: auto;
        }
        
        .spec_item {
            display: flex;
            flex-direction: column;
        }
        
        .spec_label {
            color: var(--color_lightgrey70);
        }
        
        .spec_value {
            color: var(--color_white);
        }
        
        .specs_toggle_cta_wrapper {
            position: relative;
        }
        
        .specs_toggle_cta_wrapper:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 60px;
            width: 100%;
        }
        
        .specs_toggle_cta {
            color: var(--color_white);
            text-align: center;
            justify-content: center;
            align-items: center;
            width: 1.5rem;
            height: 1.5rem;
            display: block;
            position: relative;
        }
        
        .specs_toggle_cta.hidden {
            display: none;
        }
        
        .icon-svg-cta {
            display: block;
            position: absolute;
            inset: 0% auto auto 0%;
        }
        
        .icon-svg-cta.icon-plus {
            position: absolute;
        }
        
        .icon-svg-cta.icon-plus.specs-lottie {
            width: 4rem;
            height: 4rem;
        }
        
        .icon-minus {
            display: none;
        }
        
        .pdp_specs_drawer.open .icon-plus {
            display: none;
        }
        
        .pdp_specs_drawer.open .icon-minus {
            display: block;
        }

        /* Overview Section */
        .section_overview {
            position: relative;
        }
        
        .overview_container {
            z-index: 2;
            background-color: #fff;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            height: 200vh;
            display: flex;
            position: relative;
        }
        
        .overview_container.height-100vh {
            height: auto;
        }
        
        @media screen and (max-width: 991px) {
            .overview_container { height: auto; }
        }
        
        .content-container {
            grid-column-gap: 1.5rem;
            grid-row-gap: 1.5rem;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 12rem 3rem;
            display: flex;
        }
        
        .content-container.sticky-top {
            position: sticky;
            top: 0;
        }
        
        @media screen and (max-width: 991px) {
            .content-container {
                padding: 9rem 3rem;
            }
            .content-container.sticky-top {
                position: relative;
                margin-bottom: 4rem;
            }
        }
        
        @media screen and (max-width: 767px) {
            .content-container {
                padding: 6rem 1.5rem;
            }
        }
        
        .content-heading {
            color: var(--color_richblue);
            text-align: center;
            max-width: 927px;
            margin-top: 0;
            margin-bottom: 0;
        }
        
        .content-heading.masterpieces_heading {
            text-transform: uppercase;
        }
        
        .content-text {
            text-align: center;
            max-width: 640px;
            margin-bottom: 0;
        }
        
        .content-text.text-size-large.content_text_wide {
            max-width: 738px;
        }
        
        .content-caption {
            color: var(--color_gold);
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .content-caption.text-size-caption.hide {
            display: none;
        }
        
        .overiew_scroll_trigger {
            width: 10px;
            height: 50vh;
            position: absolute;
            inset: 100vh auto auto 0%;
        }

        /* Carousel Styles */
        .full_carousel_container {
            width: 100%;
            height: 100dvh;
            overflow: hidden;
        }

        .full_carousel_container.overview_carousel {
            background-color: var(--color_white);
            position: sticky;
            top: 0;
            transform: scale(.9);
            will-change: transform;
        }
        
        /* Галереи планировок - на всю высоту как overview */
        .residences_content .full_carousel_container {
            height: 100dvh;
        }
        
        @media screen and (max-width: 991px) {
            .residences_content .full_carousel_container {
                height: 100svh;
            }
        }
        
        @media screen and (max-width: 991px) {
            .full_carousel_container {
                height: 100svh;
            }
            .full_carousel_container.overview_carousel {
                transform: none;
            }
        }
        
        .full_carousel_slide_container {
            width: 100vw;
            height: 100vh;
        }
        
        .full_carousel_slide {
            grid-column-gap: 1.5rem;
            grid-row-gap: 1.5rem;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100vw;
            height: 100vh;
            display: flex;
            position: relative;
        }
        
        @media screen and (max-width: 991px) {
            .full_carousel_slide {
                height: 100svh;
            }
        }
        
        .full_carousel_slide.top-200 {
            justify-content: center;
            align-items: center;
        }
        
        .full_carousel_image {
            object-fit: cover;
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            inset: 0%;
        }
        
        .full_carousel_image.hide-desktop {
            display: none;
        }
        
        .full_carousel_image.hide-mobile {
            display: block;
        }
        
        @media screen and (max-width: 767px) {
            .full_carousel_image.hide-desktop {
                display: block;
            }
            .full_carousel_image.hide-mobile {
                display: none;
            }
        }
        
        .full_carousel_veil {
            background-color: #0003;
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0%;
            will-change: opacity;
        }
        
        .full_carousel_slide_content {
            z-index: 3;
            max-width: 49rem;
            padding-bottom: 5rem;
            padding-left: 4rem;
            padding-right: 4rem;
            position: absolute;
            inset: auto auto 0% 0%;
            background-color: #00000070;
        }
        
        @media screen and (max-width: 991px) {
            .full_carousel_slide_content {
                max-width: 80%;
                padding-left: 3rem;
                padding-right: 3rem;
            }
        }
        
        @media screen and (max-width: 767px) {
            .full_carousel_slide_content {
                left: 1.5rem;
                right: 1.5rem;
                bottom: 5rem;
                max-width: 100%;
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }
        
        .full_carousel_slide_title {
            color: var(--color_white);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        @media screen and (max-width: 991px) {
            .full_carousel_slide_title {
                font-size: 2rem;
            }
        }
        
        @media screen and (max-width: 767px) {
            .full_carousel_slide_title {
                font-size: 1.5rem;
                line-height: 1.3em;
            }
        }
        
        .full_carousel_slide_caption {
            color: var(--color_white);
        }
        
        .full_carousel_slide_caption.text-size-caption {
            color: var(--color_lightgrey30);
        }

        /* Owl Carousel Custom Styles */
        .owl-carousel {
            position: relative;
        }
        
        .owl-carousel .owl-stage {
            display: flex;
        }
        
        .owl-carousel .owl-stage-outer {
            overflow: hidden;
        }
        
        .owl-carousel.full-carousel {
            width: 100%;
            height: 100%;
        }
        
        .owl-carousel.full-carousel .owl-stage {
            padding-left: 0 !important;
        }
        
        .owl-carousel.gallery-carousel {
            padding-bottom: 8rem;
        }
        
        .owl-carousel.gallery-carousel .owl-stage {
            padding-left: 4rem !important;
        }
        
        @media screen and (max-width: 767px) {
            .owl-carousel.gallery-carousel .owl-stage {
                padding-left: 1.5rem !important;
            }
        }
        
        .owl-carousel .owl-nav {
            position: absolute;
            z-index: 4;
            bottom: 2rem;
            right: 4rem;
            display: flex;
            gap: 1rem;
        }
        
        @media screen and (max-width: 767px) {
            .owl-carousel .owl-nav {
                left: 0.75rem;
                right: auto;
                bottom: 0.5rem;
            }
        }
        
        .owl-carousel .owl-nav button {
            width: 50px;
            height: 50px;
            background-color: transparent;
            color: #010205;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
        }
        
        .owl-carousel .owl-nav button.owl-prev.disabled,
        .owl-carousel .owl-nav button.owl-next.disabled {
            opacity: 0.5;
        }
        
        .owl-carousel.full-carousel .owl-nav button {
            color: var(--color_white);
        }
        
        @media screen and (max-width: 767px) {
            .owl-carousel .owl-nav button {
                padding: 0.75rem !important;
            }
        }
        
        .owl-carousel .owl-dots {
            position: absolute;
            z-index: 4;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 3rem;
        }
        
        @media screen and (max-width: 767px) {
            .owl-carousel .owl-dots {
                display: none;
            }
        }
        
        .owl-carousel .owl-dots button.owl-dot {
            width: 5rem;
            height: 2px;
            background: rgba(1, 2, 5, 0.1);
            border: none;
            margin: 0 3px;
            cursor: pointer;
        }
        
        .owl-carousel .owl-dots button.owl-dot.active {
            background: #010205;
        }
        
        .owl-carousel.full-carousel .owl-dots button.owl-dot {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .owl-carousel.full-carousel .owl-dots button.owl-dot.active {
            background: var(--color_white);
        }
        
        @media screen and (max-width: 991px) {
            .pdp_carousel_container .owl-carousel.full-carousel .owl-dots {
                display: none;
            }
        }
        
        .owl-carousel.card-carousel {
            height: 400px;
        }
        
        .owl-carousel.card-carousel .owl-stage {
            padding-left: 1.5rem !important;
        }
        
        @media screen and (max-width: 767px) {
            .owl-carousel.card-carousel {
                height: 540px;
            }
        }
        
        .owl-carousel.card-carousel .owl-dots,
        .owl-carousel.card-carousel .owl-nav {
            bottom: -8rem;
        }
        
        @media screen and (max-width: 767px) {
            .owl-carousel.card-carousel .owl-nav {
                bottom: -5.5rem;
            }
        }

        /* Hotspots */
        .carousel-hover-spot {
            z-index: 2;
            color: var(--color_white);
            align-items: center;
            text-decoration: none;
            display: flex;
            position: absolute;
        }
        
        .carousel-hover-spot.carousel-hover-spot-2.hide,
        .carousel-hover-spot.hide {
            display: none;
        }
        
        .carousel-hover-spot.carousel-hover-spot-reverse {
            flex-direction: row-reverse;
        }
        
        .carousel-hover-spot.text-align-right {
            text-align: right;
        }
        
        .hotspot {
            background-color: var(--color_white);
            color: var(--color_richblue);
            border-radius: 100%;
            margin: 1rem;
            padding: 10px;
            transition: transform 0.6s var(--easeInEaseOutCubic);
            width: min-content;
        }
        
        @media screen and (max-width: 767px) {
            .hotspot {
                margin: .5rem 0;
                padding: 5px;
            }
        }
        
        .hotspot:hover {
            transform: scale(1.2);
        }
        
        .icon-more {
            justify-content: center;
            align-items: center;
            font-size: .75rem;
            line-height: .75rem;
            display: flex;
        }
        
        .hotspot_text {
            color: var(--color_white);
            margin-left: 1rem;
            margin-right: 1rem;
            opacity: 0;
            transition: opacity 1.2s var(--easeInEaseOutCubic);
        }
        
        .carousel-hover-spot:hover .hotspot_text,
        .hotspot_text.show {
            opacity: 1 !important;
        }
        
        .hotspot_text.text-size-large {
            line-height: 1.3em;
        }
        
        @media screen and (max-width: 767px) {
            .hotspot_text {
                margin-left: .5rem;
                margin-right: .5rem;
            }
        }
        
        .carousel-hover-spot:hover .hotspot,
        .carousel-hover-spot.show .hotspot {
            transform: scale(1.2);
        }
        
        .carousel-hover-spot:hover .icon-more,
        .carousel-hover-spot.show .icon-more {
            transform: rotate(90deg);
        }
        
        @keyframes hotspotAnimation {
            0% {transform: rotate(0deg);}
            5% {transform: rotate(90deg);}
            25% {transform: rotate(90deg);}
            30% {transform: rotate(180deg);}
            50% {transform: rotate(180deg);}
            55% {transform: rotate(270deg);}
            75% {transform: rotate(270deg);}
            80% {transform: rotate(360deg);}
            100% {transform: rotate(360deg);}
        }
        
        #overviewCarousel .carousel-hover-spot .hotspot {
            animation-name: hotspotAnimation;
            animation-delay: 1.5s;
            animation-duration: 12s;
            animation-iteration-count: infinite;
        }
        
        #overviewCarousel .carousel-hover-spot-2 .hotspot {
            animation-name: hotspotAnimation;
            animation-delay: 3s;
            animation-duration: 12s;
            animation-iteration-count: infinite;
        }
        
        #overviewCarousel .carousel-hover-spot:hover .hotspot,
        #overviewCarousel .carousel-hover-spot-2:hover .hotspot {
            animation: initial;
        }

        /* Residences Section */
        .section_residences {
            position: relative;
        }
        
        .section_residences.background-color-grey {
            background-color: var(--color_lightgrey30);
        }
        
        .residences_intro {
            z-index: 2;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            height: 200vh;
            display: flex;
            position: relative;
        }
        
        @media screen and (max-width: 991px) {
            .residences_intro { height: auto; }
        }
        
        .residences_content {
            width: 100%;
        }
        
        .pdp_content_text {
            text-align: center;
            max-width: 880px;
        }
        
        .pdp_content_text.heading-style-h6.text-color-richblue {
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        
        .residences_scroll_trigger {
            width: 10px;
            height: 50vh;
            position: absolute;
            inset: 100vh auto auto 0%;
        }
        
        .full_carousel_container.sticky-top {
            position: sticky;
            top: 0;
        }
        
        @media screen and (max-width: 991px) {
            .full_carousel_container.sticky-top {
                position: relative;
            }
        }

        /* Residences Hotspots */
        .residence_hotspots_container {
            background-color: var(--color_white);
            position: relative;
            overflow: hidden;
        }
        
        .residence_image_main {
            width: 100%;
            will-change: transform;
        }
        
        .residence_image_overlay {
            z-index: 2;
            opacity: 0;
            width: 100%;
            position: absolute;
            inset: 0% auto auto 0%;
            will-change: opacity;
        }
        
        .residence_image_veil {
            z-index: 1000;
            background-color: rgba(0, 0, 0, 0.6);
            position: fixed;
            inset: 0%;
            opacity: 0;
            display: none;
            transition: opacity 0.4s ease;
            cursor: pointer;
        }

        .residence_image_veil.show {
            opacity: 1;
        }
        
        .hotspot_cta {
            z-index: 3;
            align-items: center;
            text-decoration: none;
            display: flex;
            position: absolute;
            inset: 0 auto auto 0;
        }
        
        .hotspot_cta .hotspot_text {
            opacity: 0;
            transition: opacity 1.2s var(--easeInEaseOutCubic);
        }
        
        .hotspot_cta:hover .hotspot_text {
            opacity: 1;
        }
        
        .hotspot_cta.show .hotspot_text {
            opacity: 1 !important;
        }
        
        .hotspot_cta .hotspot,
        .hotspot_cta .icon-more {
            transition: transform 0.6s var(--easeInEaseOutCubic);
        }
        
        .hotspot_cta:hover .icon-more,
        .hotspot_cta.show .icon-more {
            transform: rotate(90deg);
        }
        
        .hotspot_cta:hover .hotspot,
        .hotspot_cta.show .hotspot {
            transform: scale(1.2);
        }
        
        .hotspot_cta.orla_hotspot_cta_1 { top: 23%; left: 19%; }
        .hotspot_cta.orla_hotspot_cta_2 { top: 45%; left: 42%; }
        .hotspot_cta.orla_hotspot_cta_3 { top: 59%; left: 82%; }
        .hotspot_cta.orla_hotspot_cta_4 { top: 62%; left: 73%; }
        .hotspot_cta.orla_hotspot_cta_5 { top: 31%; left: 52%; }

        /* Модальное окно хотспотов */
        .residence_hotspots_panel {
            z-index: 1001;
            grid-column-gap: 2.5rem;
            /*grid-row-gap: 2.5rem;*/
            background-color: var(--color_white);
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            width: 90vw;
            max-width: 500px;
            max-height: 80vh;
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: opacity 0.4s ease, transform 0.4s ease;
            display: flex;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0;
            pointer-events: none;
            overflow-y: auto;
        }

        .residence_hotspots_panel.show {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
            pointer-events: auto;
        }

        @media screen and (max-width: 991px) {
            .residence_hotspots_panel {
                width: 85vw;
                max-width: 450px;
            }
        }

        @media screen and (max-width: 767px) {
            .residence_hotspots_panel {
                width: 95vw;
                max-width: none;
                padding: 2rem 1.5rem;
            }
        }
        
        .panel_text {
            margin-bottom: 1.5rem;
        }

        .cta-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            z-index: 15;
            background-color: var(--color_lightgrey30);
            color: var(--color_richblue);
            justify-content: center;
            align-items: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: none;
            opacity: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-close:hover {
            background-color: var(--color_gold);
            color: var(--color_white);
        }

        .cta-close.show {
            display: flex;
            opacity: 1;
        }

        @media screen and (max-width: 767px) {
            .cta-close {
                top: 1rem;
                right: 1rem;
                width: 2rem;
                height: 2rem;
            }
        }

        .cta-close:hover {
            color: #82f2e0;
            background-color: #0000;
        }
        
        .icon-close {
            padding: .5rem;
            line-height: 1rem;
            display: inline-block;
        }

        .residence_gallery_container.full_carousel_container {
            z-index: 999;
            background-color: var(--color_white);
            width: 100vw;
            position: fixed;
            inset: 0% 0% 0% -100%;
            opacity: 0;
            transition: opacity 1.2s var(--easeInEaseOutCubic);
        }

        .residence_gallery_container.full_carousel_container.show {
            left: 0;
            opacity: 1;
        }

        /* Layout Gallery Styles */
        .layout_gallery {
            width: 100%;
            margin-top: 1.5rem;
        }

        .gallery-main {
            width: 100%;
            margin-bottom: 1rem;
            border-radius: 4px;
            overflow: hidden;
            background-color: var(--color_lightgrey30);
        }

        .gallery-main-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .gallery-thumbs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
        }

        .gallery-thumb {
            width: 100%;
            height: 60px;
            object-fit: cover;
            cursor: pointer;
            border-radius: 4px;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .gallery-thumb:hover {
            border-color: var(--color_gold);
        }

        .gallery-thumb.active {
            border-color: var(--color_gold);
        }

        .panel_caption {
            color: var(--color_gold);
            font-weight: 600;
            margin-bottom: 0.75rem;
            margin-top: 0.5rem;
        }

        @media screen and (max-width: 767px) {
            .gallery-thumbs {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.25rem;
            }

            .gallery-thumb {
                height: 50px;
            }

            .layout_gallery {
                margin-top: 1rem;
            }
        }
        
        .residence_gallery_container.full_carousel_container .owl-carousel {
            opacity: 0;
            transition: opacity 1.2s var(--easeInEaseOutCubic) 1.2s;
        }

        .residence_gallery_container.full_carousel_container.show .owl-carousel {
            opacity: 1;
        }

        .gallery-close-btn {
            position: fixed;
            top: 2rem;
            right: 2rem;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--color_richblue);
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font_body);
            font-size: 0.875rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .gallery-close-btn:hover {
            background-color: var(--color_gold);
            color: var(--color_white);
        }

        .gallery-close-btn .icon-close {
            display: none;
        }

        @media screen and (max-width: 767px) {
            .gallery-close-btn {
                top: 1rem;
                right: 1rem;
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }
        }

        /* Gallery Carousel */
        .gallery_carousel_container {
            display: block;
            position: relative;
        }
        
        .gallery-card {
            flex-shrink: 0;
        }
        
        .gallery-card.gallery-card-wide {
            width: 50vw;
        }
        
        .gallery-card.gallery-card-square {
            width: 30vw;
        }
        
        .gallery-card.gallery-card-portrait {
            width: 25vw;
        }
        
        @media screen and (max-width: 991px) {
            .gallery-card.gallery-card-wide {
                width: 85vw;
            }
            .gallery-card.gallery-card-square {
                width: 51vw;
            }
            .gallery-card.gallery-card-portrait {
                width: 45vw;
            }
        }
        
        .gallery-card.flex {
            flex-flow: column;
            justify-content: space-between;
            align-items: flex-start;
            display: flex;
        }
        
        .gallery-card-inner {
            position: relative;
            overflow: hidden;
        }
        
        .gallery-image-container {
            width: 100%;
            height: 30vw;
            position: relative;
            overflow: hidden;
        }
        
        @media screen and (max-width: 991px) {
            .gallery-image-container {
                height: 51vw;
            }
        }
        
        .gallery-image {
            object-fit: cover;
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0%;
            transform: scale(1);
            transition: transform var(--easeInEaseOutCubic) 1200ms;
        }
        
        .gallery-card-link:hover .gallery-image {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            border-right: 2px solid var(--color_lightgrey30);
            border-bottom: 2px solid var(--color_lightgrey30);
            border-left: 2px solid var(--color_lightgrey30);
            min-height: 8rem;
            padding: 2rem;
        }
        
        .gallery-caption.gallery-caption-small {
            min-height: 2rem;
        }
        
        @media screen and (max-width: 767px) {
            .gallery-caption {
                min-height: 5rem;
                padding: 1rem;
            }
        }
        
        .gallery-card-link {
            text-decoration: none;
        }
        
        .gallery-card-link.cta_explore_gallery.custom-class {
            cursor: pointer;
        }

        /* Amenities Section */
        .section_amenities {
            position: relative;
        }
        
        .amenities_container {
            z-index: 2;
            background-color: var(--color_white);
            position: relative;
        }

        /* Location Section */
        .section_location {
            position: relative;
        }
        
        .location_container {
            z-index: 2;
            background-color: #fff;
            width: 100%;
            position: relative;
        }
        
        .location_map_container {
            width: 100%;
            height: 60vh;
            margin-top: 4rem;
        }
        
        .location_map {
            width: 100%;
            height: 100%;
        }
        
        .location_map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* PDP Carousel */
        .pdp_carousel_container {
            width: 100%;
            min-height: 70vh;
            display: block;
            position: relative;
            overflow: hidden;
        }
        
        @media screen and (max-width: 991px) {
            .pdp_carousel_container {
                min-height: 570px;
            }
        }
        
        .pdp_slide {
            min-height: 80vh;
            position: relative;
        }
        
        @media screen and (max-width: 991px) {
            .pdp_slide {
                min-height: 570px;
            }
        }
        
        @media screen and (max-width: 767px) {
            .pdp_slide {
                height: 80vh;
            }
        }
        
        .pdp_slide_content_panel {
            background-color: #00000059;
            -webkit-backdrop-filter: blur(50px);
            backdrop-filter: blur(50px);
            width: 33.4%;
            min-width: 400px;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        @media screen and (max-width: 991px) {
            .pdp_slide_content_panel {
                min-width: 300px;
                inset: auto 0% 0%;
                width: 100%;
                height: auto;
            }
        }
        
        .pdp_slide_content_inner {
            color: var(--color_white);
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            height: 100%;
            padding: 4rem;
            display: flex;
        }
        
        @media screen and (max-width: 991px) {
            .pdp_slide_content_inner {
                padding: 2rem 2rem 3rem;
            }
        }
        
        @media screen and (max-width: 767px) {
            .pdp_slide_content_inner {
                grid-column-gap: .5rem;
                grid-row-gap: .5rem;
                justify-content: flex-start;
                padding: 1.5rem 1.5rem 3rem;
            }
        }
        
        .pdp_slide_subtitle {
            color: #ffffff80;
        }
        
        .pdp_slide_subtitle.text-size-medium {
            margin-bottom: .5rem;
        }
        
        .pdp_slide_specs_summary {
            grid-column-gap: 1.5rem;
            grid-row-gap: 1.5rem;
            justify-content: flex-start;
            align-items: center;
            margin-bottom: 2rem;
            display: flex;
        }
        
        .pdp_slide_specs_summary.text-size-medium {
            margin-bottom: .5rem;
        }
        
        @media screen and (max-width: 991px) {
            .pdp_slide_specs_summary {
                margin-bottom: .5rem;
            }
        }
        
        .pdp_slide_description {
            margin-bottom: 0;
        }
        
        .pdp_carousel_image {
            object-fit: cover;
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            inset: 0%;
        }
        
        .pdp_carousel_image.hide-desktop {
            display: none;
        }
        
        @media screen and (max-width: 767px) {
            .pdp_carousel_image.hide-desktop {
                display: block;
            }
            .pdp_carousel_image.hide-mobile {
                display: none;
            }
        }

        /* Main Wrapper */
        .page-wrapper.page-pdp {
            height: 100dvh;
            position: relative;
        }
        
        .main-wrapper {
            position: relative;
        }

        /* No scroll */
        .no-scroll {
            overflow: hidden;
            height: 100dvh;
        }

        /* Utility */
        
        .w-inline-block {
            display: inline-block;
        }
        
        .w-list-unstyled {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
                
        .w-dyn-list {
            display: block;
        }
        
        .w-dyn-items {
            display: block;
        }
        
        .w-dyn-item {
            display: block;
        }
        
        .w-button {
            display: inline-block;
            padding: 9px 15px;
            background-color: #3898ec;
            color: white;
            border: 0;
            line-height: inherit;
            text-decoration: none;
            cursor: pointer;
            border-radius: 0;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fadeInUp {
            animation: fadeInUp 0.8s var(--easeInEaseOutCubic) both;
        }

        /* Footer Styles */
        .footer_container_new {
            background-color: var(--color_black);
            color: var(--color_white);
            padding: 4rem 3rem;
            position: relative;
            z-index: 3;
        }

        .footer_content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .footer_logo {
            text-align: center;
        }

        .footer_heading {
            margin: 0;
            font-family: var(--font_heading);
            font-size: 1.125rem;
            letter-spacing: 0.2em;
            line-height: 1.25rem;
            text-transform: uppercase;
        }

        .footer_contact_info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            width: 100%;
            max-width: 500px;
        }

        .footer_contact_item {
            width: 100%;
            text-align: center;
        }

        .footer_link {
            color: var(--color_white);
            text-decoration: none;
            transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        .footer_link:hover {
            color: #ffffffbf;
        }

        .footer_phone,
        .footer_address {
            color: var(--color_white);
        }

        @media screen and (min-width: 768px) {
            .footer_content {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }

            .footer_logo {
                text-align: left;
            }

            .footer_contact_info {
                flex-direction: row;
                align-items: flex-start;
                gap: 3rem;
                width: auto;
                max-width: none;
            }

            .footer_contact_item {
                width: auto;
                text-align: left;
            }
        }
        
.section_faq {
    padding: 6rem 0;
    background-color: var(--color_lightgrey30);
}

.faq_container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq_content {
    margin-top: 3rem;
}

.faq_item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2dfdb;
}

.faq_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.5rem 0;
    font-family: var(--font_heading);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--color_richblue);
    transition: color 0.3s ease;
}

.faq_question:hover {
    color: var(--color_gold);
}

.faq_question h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5em;
}

.faq_icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq_icon::before,
.faq_icon::after {
    content: '';
    position: absolute;
    background-color: var(--color_richblue);
    transition: background-color 0.3s ease;
}

.faq_icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq_icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq_item.open .faq_question {
    color: var(--color_gold);
}

.faq_item.open .faq_icon::before,
.faq_item.open .faq_icon::after {
    background-color: var(--color_gold);
}

.faq_item.open .faq_icon {
    transform: rotate(45deg);
}

.faq_category_title {
    font-size: 18px;
    font-weight: 700;
    color: #10103D;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c9a962;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    font-family: var(--font_body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75em;
    color: var(--color_richblue);
    padding: 0 0; /* Initial padding set to 0 */
}

.faq_item.open .faq_answer {
    max-height: 500px; /* Adjust as needed */
    padding: 1.5rem 0; /* Add padding when open */
}

@media screen and (max-width: 767px) {
    .section_faq {
        padding: 4rem 0;
    }
    .faq_question {
        font-size: 1.25rem;
        padding: 1rem 0;
    }
    .faq_question h4 {
        font-size: 1.25rem;
    }
    .faq_answer {
        font-size: 0.875rem;
        line-height: 1.6em;
    }
}
        /* Дополнительные стили для улучшения читаемости на темных фонах */
        .white-text { color: #fff !important; }
        .text-color-gold { color: #c5a059 !important; }
        .button.is-telegram { background-color: #0088cc; color: #fff; border: none; }
        .button.is-telegram:hover { background-color: #0077b5; }

 /* Скрываем сетку по умолчанию */
#specsGrid {
    display: none;
}

/* Показываем сетку, когда у родителя есть класс open */
#specsDrawer.open #specsGrid {
    display: grid;
}

/* Управление иконками */
.icon-svg-cta {
    display: none; /* Скрываем обе иконки по умолчанию */
}

/* По умолчанию активен плюс */
.icon-plus.active {
    display: block;
}

/* Когда открыто - активен минус */
#specsDrawer.open .icon-minus.active {
    display: block;
}

/* Опционально: плавная анимация раскрытия */
#specsGrid {
    overflow: hidden;
    transition: all 0.3s ease;
}