@font-face {
    font-family: 'RoadRadio';
    src: url('/assets/fonts/RoadRadio-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope-Medium.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'RoadRadio';
    src: url('/assets/fonts/RoadRadio-Bold.otf') format('opentype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --site-ink: #1f1f1f;
    --site-brand: #00bab1;
    --site-brand-soft: #d8f7f5;
    --site-header-glass: rgba(255, 255, 255, 0.16);
    --site-header-border: rgba(255, 255, 255, 0.34);
}



html {
    background: #fff;
    scrollbar-color: var(--site-brand) var(--site-brand-soft);
    scrollbar-width: thin;
}

::selection {
    color: #fff;
    background: var(--site-brand);
}

::-moz-selection {
    color: #fff;
    background: var(--site-brand);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--site-brand-soft);
}

::-webkit-scrollbar-thumb {
    min-height: 44px;
    border: 3px solid var(--site-brand-soft);
    border-radius: 999px;
    background: var(--site-brand);
}

::-webkit-scrollbar-thumb:hover {
    background: #009f98;
}

.site-body {
    min-width: 320px;
    margin: 0;
    color: var(--site-ink);
    background: #fff;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-weight: 500;
}

.home-hero {
    position: relative;
    width: 100%;
    height: min(1014px, 100svh);
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    background: #a9d2ee;
}

.home-hero__swiper {
    position: absolute;
    z-index: 0 !important;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__swiper .swiper-wrapper { height: 100%; }

.home-hero__slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(14px);
    transform: scale(1.015);
    transition-property: opacity, filter, transform !important;
    transition-timing-function: ease !important;
    will-change: opacity, filter, transform;
}

.home-hero__slide.swiper-slide-active {
    filter: blur(0);
    transform: scale(1);
}

.home-hero__title {
    position: absolute;
    z-index: 2;
    top: min(210px, 10.9375vw);
    right: 40px;
    left: 40px;
    width: auto;
    min-height: 160px;
    margin: 0;
    color: var(--site-ink);
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: min(calc(var(--hero-title-size, 93) * 1px), var(--hero-title-fluid-size, 4.84375vw));
    font-weight: 700;
    letter-spacing: 0;
    line-height: min(80px, 4.166667vw);
    text-transform: uppercase;
}

.home-hero__title span {
    display: block;
    text-align: right;
}

.home-hero__title span:first-child { text-align: left; }

.home-hero__description {
    position: absolute;
    z-index: 3;
    top: min(306px, 15.9375vw);
    left: 40px;
    width: min(675px, 35.15625vw);
    color: var(--site-ink);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: min(20px, 1.041667vw);
    font-weight: 500;
    line-height: min(24px, 1.25vw);
}

.home-hero__description p { margin: 0; }

.home-hero__primary-button {
    position: absolute;
    z-index: 4;
    top: min(466px, 24.270833vw);
    left: calc(50% - 318.5px);
    width: 308.5px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    color: #fff;
    background: var(--site-ink);
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
}

.home-hero__primary-button img {
    width: 13.5px;
    height: 12.5px;
    flex: 0 0 auto;
    filter: brightness(0) invert(1);
}

.home-hero__secondary-button {
    position: absolute;
    z-index: 4;
    top: min(466px, 24.270833vw);
    left: calc(50% + 10px);
    width: 308.5px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    color: var(--site-ink);
    background: #fff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
}

.home-hero__secondary-button img {
    width: 13.5px;
    height: 12.5px;
    flex: 0 0 auto;
}

.home-hero__primary-button--single,
.home-hero__secondary-button--single {
    left: 50%;
    transform: translateX(-50%);
}

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding-top: 24px;
}

.site-header__frame {
    width: calc(100% - 80px);
    max-width: 1840px;
    margin: 0 auto;
}

.site-header__navigation {
    width: max-content;
    height: 42px;
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin: 0 auto;
}

.site-header__logo,
.site-header__menu,
.site-header__investors { border: 1px solid var(--site-header-border); }

.site-header__logo {
    width: 222px;
    display: grid;
    place-items: center;
    background: var(--site-header-glass);
}

.site-header__logo img { width: 198px; height: 16px; }

.site-header__menu {
    width: 414px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 78px;
    background: var(--site-header-glass);
}

.site-header__menu > a {
    display: grid;
    place-items: center;
    color: var(--site-ink);
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease;
}

.site-header__menu > a:hover,
.site-header__menu > a:focus-visible {
    background: rgba(255, 255, 255, 0.23);
    outline: none;
}

.site-header__investors {
    width: 204px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: var(--site-ink);
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
}

.site-header__investors:hover,
.site-header__investors:focus-visible {
    background: #00B9B0;
    border-color: #00B9B0;
    outline: none;
}

.site-header__investors img {
    width: 11px;
    height: 10px;
    filter: brightness(0) invert(1);
}

/* ── Header language selector ── */
.site-language {
    position: relative;
    min-width: 0;
}

.site-header__language {
    z-index: 90;
    height: 100%;
    min-width: 78px;
}

.site-language__button {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-transform: uppercase;
    cursor: pointer;
}

.site-header__language .site-language__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--site-ink);
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
}

.site-language__chevron {
    display: inline-block;
    flex: 0 0 9px;
    width: 9px;
    height: 6px;
    border: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.08496 0.353554L4.07043 4.36808L0.353277 0.650926' stroke='%231F1F1F'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    transform: none;
}

.site-language__list {
    position: absolute;
    z-index: 120;
    top: calc(100% + 8px);
    right: 0;
    min-width: 112px;
    border: 1px solid rgba(31, 31, 31, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(31, 31, 31, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-language:hover .site-language__list,
.site-language:focus-within .site-language__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-language__option {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    color: var(--site-ink) !important;
    background: #fff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
}

.site-language__option:hover,
.site-language__option:focus-visible,
.site-language__option.is-active {
    background: #f1f5f9;
    outline: none;
}

.blog-header__language {
    height: 100%;
    flex: 0 0 auto;
}

.blog-header__language .blog-header__lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blog-header__language .blog-header__lang::after {
    content: none;
    display: none;
}

.blog-header__language .site-language__list {
    top: calc(100% + 10px);
}

.home-hero__pagination {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 30px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}


.home-hero__swiper .home-hero__pagination { width: auto; }

.home-hero__dot {
    position: relative;
    overflow: hidden;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: width 220ms ease, background-color 220ms ease;
}

.home-hero__dot::after {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: inherit;
    background: #fff;
    content: '';
}

.home-hero__dot.is-active { width: 60px; }

.home-hero__dot.is-active::after { animation: hero-pagination-progress 6s linear forwards; }

@keyframes hero-pagination-progress {
    to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__dot.is-active::after { width: 100%; animation: none; }
}

@media (max-width: 960px) {
    .home-hero__title {
        top: 150px;
        right: 16px;
        left: 16px;
        min-height: 0;
        font-size: clamp(38px, 6vw, calc(var(--hero-title-size, 93) * 1px));
        line-height: 0.92;
    }
    .home-hero__description {
        top: 250px;
        left: 16px;
        width: min(540px, calc(100% - 32px));
        font-size: 16px;
        line-height: 1.3;
    }
    .site-header__frame { width: calc(100% - 32px); }
    .site-header__navigation { width: 100%; gap: 8px; }
    .site-header__logo { width: 190px; flex: 0 0 190px; }
    .site-header__logo img { width: 170px; height: auto; }
    .site-header__menu { width: auto; flex: 1 1 auto; grid-template-columns: repeat(4, minmax(0, 1fr)) 68px; }
    .site-header__language { min-width: 68px; }
    .site-header__investors { width: 170px; flex: 0 0 170px; }
}

@media (max-width: 720px) {
    .home-hero { min-height: 560px; }
    .site-header { padding-top: 16px; }
    .site-header__navigation { height: auto; flex-wrap: wrap; }
    .site-header__logo { width: calc(100% - 150px); min-height: 42px; flex: 1 1 auto; }
    .site-header__investors { width: 142px; min-height: 42px; flex: 0 0 142px; font-size: 10px; }
    .site-header__menu { width: 100%; min-height: 42px; flex: 1 0 100%; grid-template-columns: repeat(4, minmax(0, 1fr)) 62px; }
    .site-header__language { min-width: 62px; }
    .site-header__menu > a { font-size: 9px; }
    .home-hero__slide { background-position: center bottom; }
    .home-hero__title { top: 142px; font-size: clamp(30px, 9vw, 58px); }
    .home-hero__description { top: 270px; font-size: 14px; }
}

/* ── 02 · Показатели комплекса ── */

.home-metrics {
    width: 100%;
    background: #fff;
}

.home-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1840px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
}

.home-metrics__item {
    min-width: 0;
    box-sizing: border-box;
    min-height: 192px;
    padding: 56px 40px;
    border-left: 1px solid rgba(31, 31, 31, 0.12);
}

.home-metrics__item:first-child {
    padding-left: 0;
    border-left: none;
}

.home-metrics__value {
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 3.478261vw, 64px);
    line-height: 64px;
    color: var(--site-ink);
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

.home-metrics__value sup {
    font-size: 0.5em;
    line-height: 1;
    vertical-align: super;
}

.home-metrics__label {
    margin-top: 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    color: var(--site-ink);
}

.home-metrics__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 80px;
    background: var(--site-ink);
    color: #fff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease;
}

.home-metrics__cta:hover {
    background: #333;
}

.home-metrics__cta svg,
.home-metrics__cta img {
    flex: 0 0 auto;
}

@media (max-width: 960px) {
    .home-metrics__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
        padding: 40px 24px 32px;
    }
    .home-metrics__value {
        font-size: clamp(32px, 5.5vw, 48px);
        line-height: 1.15;
        white-space: normal;
    }
    .home-metrics__label {
        font-size: 15px;
    }
    .home-metrics__item {
        padding: 0 24px;
    }
    .home-metrics__item:nth-child(2n+1) {
        padding-left: 0;
        border-left: none;
    }
}

@media (max-width: 720px) {
    .home-metrics__grid {
        padding: 32px 16px 24px;
        gap: 32px 0;
    }
    .home-metrics__value {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.2;
    }
    .home-metrics__cta {
        height: 62px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .home-metrics__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .home-metrics__item {
        padding: 0;
        border-left: none;
    }
}
/* ── 03 · Комфортные условия ── */

.home-comfort {
    width: 100%;
    background-color: #7faac5;
    background-image: linear-gradient(to bottom, rgba(127, 170, 197, 0.9), rgba(190, 218, 233, 0.84)), var(--comfort-background, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-comfort__heading {
    width: 100%;
    max-width: 1840px;
    height: 340px;
    margin: 0 auto;
    padding: 96px 40px 64px;
    box-sizing: border-box;
}

.home-comfort__title {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: min(100px, 5.208333vw);
    font-weight: 700;
    letter-spacing: 0;
    line-height: min(80px, 4.166667vw);
    text-transform: uppercase;
}

.home-comfort__title span { display: block; }

.home-comfort__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 1840px);
    max-width: 1840px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.home-comfort__feature {
    min-width: 0;
    height: 240px;
    padding: 64px 40px;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.home-comfort__feature:nth-child(4n) { border-right: 0; }

.home-comfort__feature h3 {
    height: 80px;
    margin: 0;
    overflow: visible;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 40px;
    text-transform: uppercase;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}

.home-comfort__feature p {
    margin: 12px 0 0;
    overflow: hidden;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
}

.home-comfort__cta {
    width: min(100%, 1840px);
    max-width: 1840px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--site-ink);
    background: #fff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
}

.home-comfort__cta svg,
.home-comfort__cta img { flex: 0 0 auto; }

.home-panorama {
    width: 100%;
    height: min(570px, 29.6875vw);
    margin: 0;
    overflow: hidden;
    background: #a9d2ee;
}

.home-panorama img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}

@media (max-width: 960px) {
    .home-comfort {
        background-image: linear-gradient(to bottom, rgba(127, 170, 197, 0.9), rgba(190, 218, 233, 0.84)), var(--comfort-background, none);
    }

    .home-comfort__heading {
        height: auto;
        padding: 64px 24px 48px;
    }

    .home-comfort__title {
        gap: 12px;
        font-size: clamp(42px, 7vw, 64px);
        line-height: 0.9;
    }

    .home-comfort__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-comfort__feature:nth-child(4n) { border-right: 1px solid rgba(255, 255, 255, 0.28); }
    .home-comfort__feature:nth-child(2n) { border-right: 0; }
}

@media (max-width: 720px) {
    .home-comfort__heading {
        padding: 48px 16px 36px;
    }

    .home-comfort__title {
        font-size: clamp(34px, 10vw, 52px);
    }

    .home-comfort__feature {
        height: 200px;
        padding: 44px 24px;
    }

    .home-comfort__feature h3 {
        height: 64px;
        font-size: 24px;
        line-height: 32px;
    }

    .home-comfort__feature p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 18px;
    }

    .home-panorama { height: 48vw; }
}

@media (max-width: 480px) {
    .home-comfort__grid { grid-template-columns: 1fr; }
    .home-comfort__feature { border-right: 0 !important; }
    .home-comfort__cta { height: 70px; font-size: 12px; }
}

/* ── 05 · Технические параметры ── */

.home-technical {
    width: 100%;
    color: #fff;
    background: #111111;
}

.home-technical__heading {
    width: 100%;
    max-width: 1903px;
    height: 240px;
    margin: 0 auto;
    padding: 96px 40px 64px;
    box-sizing: border-box;
}

.home-technical__heading h2 {
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: min(100px, 5.208333vw);
    font-weight: 700;
    letter-spacing: 0;
    line-height: min(80px, 4.166667vw);
    text-transform: uppercase;
}

.home-technical__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 1903px;
    margin: 0 auto;
    box-sizing: border-box;
    border-top: 1px solid #292929;
    border-right: 1px solid #292929;
    border-left: 1px solid #292929;
}

.home-technical__feature {
    min-width: 0;
    height: 260px;
    padding: 84px 40px;
    box-sizing: border-box;
    border-right: 1px solid #292929;
    border-bottom: 1px solid #292929;
}

.home-technical__feature:nth-child(3n) { border-right: 0; }

.home-technical__feature h3 {
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 40px;
    text-transform: uppercase;
}

.home-technical__feature p {
    margin: 12px 0 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
    white-space: pre-wrap;
}

.home-technical__cta {
    width: 100%;
    max-width: 1903px;
    height: 90px;
    margin: 0 auto;
    box-sizing: border-box;
    border-right: 1px solid #292929;
    border-bottom: 1px solid #292929;
    border-left: 1px solid #292929;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 960px) {
    .home-technical__heading { height: auto; padding: 64px 24px 48px; }
    .home-technical__heading h2 { font-size: clamp(42px, 7vw, 64px); line-height: 0.9; }
    .home-technical__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-technical__feature:nth-child(3n) { border-right: 1px solid #292929; }
    .home-technical__feature:nth-child(2n) { border-right: 0; }
}

@media (max-width: 720px) {
    .home-technical__heading { padding: 48px 16px 36px; }
    .home-technical__heading h2 { font-size: clamp(34px, 10vw, 52px); }
    .home-technical__feature { height: 220px; padding: 60px 24px; }
    .home-technical__feature h3 { font-size: 24px; line-height: 32px; }
    .home-technical__feature p { margin-top: 10px; font-size: 14px; line-height: 18px; }
    .home-technical__cta { height: 70px; padding: 0 16px; box-sizing: border-box; font-size: 14px; }
}

@media (max-width: 480px) {
    .home-technical__grid { grid-template-columns: 1fr; }
    .home-technical__feature { border-right: 0 !important; }
}

/* ── 06 · Для кого подойдут помещения ── */

.home-business-types {
    width: calc(100% - 80px);
    max-width: 1840px;
    margin: 0 auto;
    padding: 160px 0;
    box-sizing: border-box;
    color: #1f1f1f;
    background: #fff;
}

.home-business-types__title {
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: min(100px, 5.208333vw);
    font-weight: 700;
    letter-spacing: 0;
    line-height: min(80px, 4.166667vw);
    text-transform: uppercase;
}

.home-business-types__title span { display: block; }
.home-business-types__title span + span { margin-top: 20px; }

.home-business-types__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.home-business-types__card {
    position: relative;
    min-width: 0;
    height: 412px;
    overflow: hidden;
    background: #d7d7d7;
}

.home-business-types__card > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-business-types__glass {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64%;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(120% 80% at 50% 100%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.12) 36%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(to top, rgba(31, 34, 34, 0.64) 0%, rgba(45, 49, 49, 0.46) 42%, rgba(84, 90, 90, 0.18) 70%, rgba(84, 90, 90, 0) 100%);
    -webkit-backdrop-filter: blur(28px) saturate(0.9) contrast(0.98) brightness(1.08);
    backdrop-filter: blur(28px) saturate(0.9) contrast(0.98) brightness(1.08);
    -webkit-mask-image: linear-gradient(to top, #000 0%, #000 50%, rgba(0, 0, 0, 0.68) 75%, transparent 100%);
    mask-image: linear-gradient(to top, #000 0%, #000 50%, rgba(0, 0, 0, 0.68) 75%, transparent 100%);
}

.home-business-types__glass::before {
    content: "";
    position: absolute;
    inset: 28% -14% -16%;
    background:
        radial-gradient(76% 74% at 20% 74%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0) 66%),
        radial-gradient(78% 80% at 82% 70%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0) 68%);
    filter: blur(24px);
    opacity: 0.82;
}

.home-business-types__content {
    position: absolute;
    z-index: 2;
    right: 40px;
    bottom: 40px;
    left: 40px;
    color: #fff;
}

.home-business-types__content h3 {
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 40px;
    text-transform: uppercase;
    white-space: pre-line;
}

.home-business-types__content p {
    margin: 12px 0 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
    white-space: pre-line;
}

@media (max-width: 1200px) {
    .home-business-types { width: 100%; max-width: none; padding: 96px 24px; }
    .home-business-types__title { font-size: clamp(52px, 7vw, 84px); line-height: 0.82; }
    .home-business-types__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .home-business-types { padding: 64px 16px; }
    .home-business-types__title { font-size: clamp(36px, 10vw, 56px); line-height: 0.9; }
    .home-business-types__title span + span { margin-top: 12px; }
    .home-business-types__grid { margin-top: 40px; gap: 16px; }
    .home-business-types__card { height: 360px; }
    .home-business-types__content { right: 24px; bottom: 24px; left: 24px; }
    .home-business-types__content h3 { font-size: 26px; line-height: 32px; }
    .home-business-types__content p { font-size: 14px; line-height: 18px; }
}

@media (max-width: 520px) {
    .home-business-types__grid { grid-template-columns: 1fr; }
}

/* ── 07 · Этапы строительства ── */

.home-construction {
    width: 100%;
    color: #fff;
    background: #1f1f1f;
}

.home-construction__heading {
    width: calc(100% - 80px);
    max-width: 1840px;
    height: 363px;
    margin: 0 auto;
    padding-top: 96px;
    box-sizing: border-box;
    border-bottom: 1px solid #4b4b4b;
}

.home-construction__heading h2 {
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: min(100px, 5.208333vw);
    font-weight: 700;
    letter-spacing: 0;
    line-height: min(80px, 4.166667vw);
    text-transform: uppercase;
}

.home-construction__heading h2 span { display: block; }
.home-construction__heading h2 span + span { margin-top: 20px; }

.home-construction__slider {
    width: calc(100% - 80px);
    max-width: 1840px;
    height: 645px;
    margin: 0 auto;
    overflow: hidden;
}

.home-construction__slider > .swiper-wrapper { height: 100%; }

.home-construction__slide {
    display: grid;
    grid-template-columns: minmax(0, 941fr) minmax(0, 899fr);
    width: 100%;
    height: 100%;
    background: #1f1f1f;
    filter: blur(14px);
    transition-property: opacity, filter !important;
    transition-timing-function: ease !important;
}

.home-construction__slide.swiper-slide-active { filter: blur(0); }

.home-construction__content {
    min-width: 0;
    height: 100%;
    padding: 64px 58px 139px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.home-construction__meta {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.home-construction__meta h3 {
    min-width: 0;
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: min(64px, 3.333333vw);
    font-weight: 700;
    letter-spacing: 0;
    line-height: min(70px, 3.645833vw);
    text-transform: uppercase;
}

.home-construction__counter {
    flex: 0 0 auto;
    padding-top: 19px;
    display: flex;
    gap: 8px;
    color: #858585;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.home-construction__counter [data-construction-current] { color: #fff; }

.home-construction__navigation {
    display: flex;
    gap: 12px;
    margin-top: 60px;
}

.home-construction__navigation button {
    width: 90px;
    height: 90px;
    padding: 0;
    border: 1px solid #bfbfbf;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-construction__navigation button:hover:not(:disabled) {
    color: #1f1f1f;
    background: #fff;
}

.home-construction__navigation button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.home-construction__navigation button:disabled {
    color: #767676;
    border-color: #5c5c5c;
    cursor: default;
}

.home-construction__navigation svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.home-construction__content > p {
    max-width: 900px;
    margin: auto 0 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: min(32px, 1.666667vw);
    font-weight: 400;
    letter-spacing: 0;
    line-height: min(36px, 1.875vw);
    text-transform: uppercase;
}

.home-construction__media {
    min-width: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #b8c6ca;
}

.home-construction__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1200px) {
    .home-construction__heading,
    .home-construction__slider { width: calc(100% - 48px); }

    .home-construction__heading {
        height: auto;
        padding: 72px 0 64px;
    }

    .home-construction__heading h2 {
        font-size: clamp(52px, 7vw, 84px);
        line-height: 0.88;
    }

    .home-construction__slider { height: 580px; }
    .home-construction__slide { grid-template-columns: 1fr 1fr; }
    .home-construction__content { padding: 48px 36px 72px 0; }
    .home-construction__meta h3 { font-size: clamp(34px, 4vw, 50px); line-height: 1.05; }
    .home-construction__counter { padding-top: 10px; font-size: 15px; }
    .home-construction__navigation { margin-top: 48px; }
    .home-construction__navigation button { width: 76px; height: 76px; }
    .home-construction__content > p { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.15; }
}

@media (max-width: 760px) {
    .home-construction__heading,
    .home-construction__slider { width: calc(100% - 32px); }

    .home-construction__heading { padding: 56px 0 48px; }
    .home-construction__heading h2 { font-size: clamp(34px, 10vw, 56px); line-height: 0.92; }
    .home-construction__heading h2 span + span { margin-top: 10px; }
    .home-construction__slider { height: auto; }
    .home-construction__slider > .swiper-wrapper { height: auto; }
    .home-construction__slide { grid-template-columns: 1fr; height: auto; }
    .home-construction__content { min-height: 450px; padding: 40px 0 48px; }
    .home-construction__meta { gap: 20px; }
    .home-construction__meta h3 { font-size: clamp(30px, 8vw, 44px); }
    .home-construction__counter { padding-top: 6px; font-size: 13px; gap: 5px; }
    .home-construction__navigation { margin-top: 40px; }
    .home-construction__navigation button { width: 68px; height: 68px; }
    .home-construction__navigation svg { width: 28px; height: 28px; }
    .home-construction__content > p { margin-top: auto; font-size: 20px; line-height: 1.2; }
    .home-construction__media { height: min(82vw, 560px); }
}

@media (prefers-reduced-motion: reduce) {
    .home-construction__navigation button { transition: none; }
    .home-construction__slide { filter: none; transition-duration: 0ms !important; }
}

/* ── 08 · Как стать резидентом: фон и матовое стекло ── */

.home-residency-background {
    position: relative;
    width: 100%;
    height: min(1162px, 60.520833vw);
    min-height: 720px;
    overflow: hidden;
    background: #8ca2aa;
}

.home-residency-background > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.home-residency-background__glass {
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    width: 56%;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(17, 21, 20, 0.54) 0%, rgba(23, 28, 27, 0.46) 52%, rgba(38, 45, 43, 0.22) 82%, rgba(41, 49, 48, 0.02) 100%);
    -webkit-backdrop-filter: blur(36px) saturate(105%) brightness(78%);
    backdrop-filter: blur(36px) saturate(105%) brightness(78%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.92) 80%, rgba(0, 0, 0, 0.46) 93%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.92) 80%, rgba(0, 0, 0, 0.46) 93%, transparent 100%);
}

.home-residency-background__glass::before,
.home-residency-background__glass::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-residency-background__glass::before {
    background:
        radial-gradient(70% 62% at 22% 18%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 46%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(78% 72% at 12% 86%, rgba(0, 171, 164, 0.13) 0%, rgba(0, 171, 164, 0.04) 42%, rgba(0, 171, 164, 0) 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 36%, rgba(0, 0, 0, 0.14) 100%);
    mix-blend-mode: screen;
    opacity: 0.72;
}

.home-residency-background__glass::after {
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    mix-blend-mode: soft-light;
}

.home-residency-background__content {
    position: relative;
    z-index: 2;
    width: min(100%, 1903px);
    height: 100%;
    margin: 0 auto;
    color: #fff;
}

.home-residency-background__header h2 {
    position: absolute;
    top: min(92px, 4.791667vw);
    right: 40px;
    left: 40px;
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: min(100px, 5.208333vw);
    line-height: min(80px, 4.166667vw);
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-residency-background__header h2 span {
    display: block;
}

.home-residency-background__header h2 span + span {
    margin-top: min(16px, 0.833333vw);
    text-align: right;
}

.home-residency-background__header > p {
    position: absolute;
    top: min(210px, 10.9375vw);
    left: 40px;
    width: 675px;
    margin: 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

.home-residency-background__header > p span {
    display: block;
}

.home-residency-background__steps {
    position: absolute;
    top: min(373px, 19.427083vw);
    left: 40px;
    width: min(870px, 45.3125vw);
    height: min(628px, 32.708333vw);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: min(20px, 1.041667vw);
}

.home-residency-background__step {
    position: relative;
    min-width: 0;
    padding: min(40px, 2.083333vw);
    border: 1px solid rgba(255, 255, 255, 0.27);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.105) 46%, rgba(255, 255, 255, 0.065) 100%);
    -webkit-backdrop-filter: blur(22px) saturate(112%) brightness(96%);
    backdrop-filter: blur(22px) saturate(112%) brightness(96%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        0 24px 62px rgba(0, 0, 0, 0.16);
}

.home-residency-background__step::before,
.home-residency-background__step::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-residency-background__step::before {
    background:
        radial-gradient(72% 74% at 20% 12%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.075) 45%, rgba(255, 255, 255, 0) 76%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(0, 0, 0, 0.08));
    opacity: 0.78;
}

.home-residency-background__step::after {
    inset: auto -18% -26% -18%;
    height: 54%;
    background:
        radial-gradient(72% 78% at 50% 78%, rgba(0, 181, 171, 0.13) 0%, rgba(0, 181, 171, 0.035) 48%, rgba(0, 181, 171, 0) 76%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.18));
    filter: blur(18px);
    opacity: 0.7;
}

.home-residency-background__step > * {
    position: relative;
    z-index: 1;
}

.home-residency-background__step > div > span {
    display: block;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: min(20px, 1.041667vw);
    line-height: min(24px, 1.25vw);
    text-transform: uppercase;
}

.home-residency-background__step h3 {
    margin: min(12px, 0.625vw) 0 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: min(32px, 1.666667vw);
    line-height: min(40px, 2.083333vw);
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-residency-background__step > p {
    margin: 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: min(16px, 0.833333vw);
    line-height: min(20px, 1.041667vw);
}

.home-residency-background__cta {
    position: absolute;
    top: min(1034px, 53.854167vw);
    left: 40px;
    width: min(870px, 45.3125vw);
    height: min(90px, 4.6875vw);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1f1f1f;
    background: #fff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease;
}

.home-residency-background__cta:hover {
    background: #f0f0f0;
}

.home-residency-background__cta img {
    width: 15px;
    height: 14px;
    display: block;
    flex: 0 0 auto;
}

.consultation-popup {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    box-sizing: border-box;
}

.consultation-popup.is-open {
    display: flex;
}

.consultation-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.consultation-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(1011px, calc(100vw - 64px));
    max-height: none;
    overflow: visible;
    background: #fff;
    color: #1f1f1f;
}

.consultation-popup__close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(31, 31, 31, 0.6);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
    line-height: 28px;
    cursor: pointer;
}

.consultation-popup__close img {
    width: 32px;
    height: 29px;
    display: block;
}

.consultation-popup__inner {
    width: min(871px, calc(100% - 108px));
    margin: 0 auto;
    padding: 70px 0 62px;
}

.consultation-popup__header h2 {
    margin: 0;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.consultation-popup__header h2 span {
    display: block;
}

.consultation-popup__header p {
    margin: 40px 0 0;
    color: rgba(31, 31, 31, 0.5);
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.consultation-popup__form {
    margin-top: 40px;
}

.consultation-popup__form label {
    height: 100px;
    display: block;
    border: 1px solid #cfcfcf;
    border-bottom: 0;
    box-sizing: border-box;
    position: relative;
}

.consultation-popup__form label span {
    position: absolute;
    top: 37px;
    left: 40px;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: uppercase;
    pointer-events: none;
    transition: top 0.24s ease, left 0.24s ease, font-size 0.24s ease, line-height 0.24s ease, color 0.24s ease;
}

.consultation-popup__form label:focus-within span,
.consultation-popup__form label:has(input:not(:placeholder-shown)) span {
    top: 16px;
    left: 36px;
    color: rgba(31, 31, 31, 0.56);
    font-size: 16px;
    line-height: 20px;
}

.consultation-popup__form input {
    width: 100%;
    height: 100%;
    padding: 48px 40px 14px;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    color: #1f1f1f;
    background: transparent;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
}

.consultation-popup__form button {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    background: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
}

.consultation-popup__consent {
    margin: 16px 0 0;
    text-align: center;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.consultation-popup__consent span {
    display: inline;
}

.consultation-popup__consent a {
    color: #1f1f1f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consultation-popup__separator {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(31, 31, 31, 0.5);
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
}

.consultation-popup__separator::before,
.consultation-popup__separator::after {
    content: "";
    height: 2px;
    flex: 1 1 auto;
    background: rgba(31, 31, 31, 0.14);
}

.consultation-popup__contact {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    text-decoration: none;
}

.consultation-popup__whatsapp {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1f1f1f;
    box-sizing: border-box;
}

.consultation-popup__whatsapp img {
    width: 32px;
    height: 32px;
    display: block;
}

.home-team {
    background: #ffffff;
    color: #1f1f1f;
}

.home-team__inner {
    width: min(100%, 1920px);
    margin: 0 auto;
    padding: 160px 40px 0;
    box-sizing: border-box;
}

.home-team__title {
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(56px, 4.85vw, 96px);
    font-weight: 700;
    line-height: clamp(52px, 4.166667vw, 80px);
    letter-spacing: 0;
    text-transform: uppercase;
    color: #1f1f1f;
}

.home-team__title span {
    display: block;
    white-space: nowrap;
}

.home-team__title span + span {
    margin-top: 20px;
}

.home-team__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 64px;
    overflow: visible;
}

.home-team__card {
    min-width: 0;
    overflow: visible;
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

.home-team__photo {
    position: relative;
    height: 400px;
    overflow: visible;
    background: #e5e5e5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
}

.home-team__photo img {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 410px;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    z-index: 2;
}

.home-team__photo-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e5e5;
}

.home-team__info {
    display: flex;
    min-height: 120px;
    padding: 0 40px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.home-team__info h3 {
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #1f1f1f;
}

.home-team__info p {
    margin: 7px 0 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(31, 31, 31, 0.5);
}

.home-team__cta {
    display: flex;
    height: 64px;
    margin-top: 64px;
    border-top: 1px solid #e5e5e5;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #1f1f1f;
    text-decoration: none;
}

.home-team__cta img {
    width: 15px;
    height: 14px;
    display: block;
}

.home-investment {
    width: 100%;
    overflow: hidden;
    background: #1f1f1f;
    color: #ffffff;
}

.home-investment__inner {
    width: min(100%, 1920px);
    margin: 0 auto;
    padding: 250px 40px 0;
    box-sizing: border-box;
}

.home-investment__title {
    width: 100%;
    min-height: 180px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 100px;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
}

.home-investment__title span {
    display: block;
}

.home-investment__image {
    display: block;
    width: 100%;
    height: 599px;
    margin-top: 64px;
    object-fit: cover;
    object-position: center;
}

.home-investment__stats {
    width: min(100%, 1920px);
    height: 216px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.home-investment__stat {
    min-width: 0;
    padding: 56px 40px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.home-investment__stat:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.home-investment__stat strong {
    display: block;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
}

.home-investment__stat strong sup {
    font-size: 0.55em;
    line-height: 0;
    vertical-align: super;
}

.home-investment__stat span {
    display: block;
    margin-top: 16px;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
}

.home-investment__actions {
    width: min(100%, 1920px);
    height: 90px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-investment__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-investment__button img {
    width: 15px;
    height: 14px;
    display: block;
    flex: 0 0 auto;
}

.home-investment__button--light {
    background: #ffffff;
    color: #1f1f1f;
}

.home-investment__button--dark {
    background: #565656;
    color: #ffffff;
}

.home-blog {
    background: #1f1f1f;
    color: #ffffff;
    padding: 96px 40px 0;
}

.home-blog__inner {
    position: relative;
    width: min(100%, 1903px);
    margin: 0 auto;
}

.home-blog__inner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 90px;
    left: 50%;
    width: 1px;
    background: #343434;
    transform: translateX(-0.5px);
    pointer-events: none;
}

.home-blog__title {
    margin: 0 0 80px;
    padding: 96px 40px 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(56px, 5.2vw, 100px);
    font-weight: 700;
    line-height: 0.8;
    text-transform: uppercase;
}

.home-blog__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-bottom: 1px solid #343434;
}

.home-blog__grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #343434;
    transform: translateX(-0.5px);
    pointer-events: none;
}

.home-blog__card {
    min-width: 0;
    padding: 40px;
}

.home-blog__card:nth-child(n + 3) {
    border-top: 1px solid #343434;
}

.home-blog__image {
    display: block;
    width: 100%;
    aspect-ratio: 880 / 465;
    object-fit: cover;
}

.home-blog__meta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.home-blog__category {
    box-sizing: border-box;
    min-height: 80px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #343434;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.home-blog__meta time {
    color: #8f8f8f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-blog__card-title {
    margin: 40px 0 20px;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 2.1vw, 40px);
    font-weight: 700;
    line-height: 1.28;
    text-transform: uppercase;
}

.home-blog__description {
    margin: 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.home-blog__all-link {
    box-sizing: border-box;
    min-height: 90px;
    margin-top: 0;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #343434;
    border-bottom: 1px solid #343434;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-contact {
    background: #ffffff;
    color: #1f1f1f;
    padding: 160px 0 0;
}

.home-contact__inner {
    width: min(100%, 1903px);
    min-height: 942px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
    border-bottom: 0;
}

.home-contact__left {
    min-width: 0;
    padding: 0 40px;
    border-right: 1px solid #d0d0d0;
}

.home-contact__title {
    margin: 40px 0 40px;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(56px, 5.2vw, 100px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.home-contact__subtitle {
    margin: 0;
    color: rgba(31, 31, 31, 0.5);
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 2.1vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-contact__phone {
    margin-top: 64px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 2.1vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
}

.home-contact__phone-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1f1f1f;
    flex: 0 0 auto;
}

.home-contact__phone-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.home-contact__form {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 0;
}

.home-contact__field {
    box-sizing: border-box;
    min-height: 184px;
    display: block;
    position: relative;
    border-bottom: 1px solid #d0d0d0;
    cursor: text;
}

.home-contact__field span {
    position: absolute;
    top: 80px;
    left: 40px;
    right: 40px;
    display: block;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 2.1vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    pointer-events: none;
    transition: top 0.24s ease, left 0.24s ease, font-size 0.24s ease, line-height 0.24s ease, color 0.24s ease;
}

.home-contact__field:focus-within span,
.home-contact__field:has(input:not(:placeholder-shown)) span,
.home-contact__field:has(textarea:not(:placeholder-shown)) span {
    top: 28px;
    left: 40px;
    color: rgba(31, 31, 31, 0.56);
    font-size: 16px;
    line-height: 20px;
}

.home-contact__field input,
.home-contact__field textarea {
    width: 100%;
    min-height: 184px;
    padding: 70px 40px 24px;
    border: 0;
    outline: 0;
    box-sizing: border-box;
    color: #1f1f1f;
    background: transparent;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.35;
    resize: none;
}

.home-contact__field:has(textarea) {
    flex: 1 1 auto;
    min-height: 184px;
}

.home-contact__field textarea {
    height: 100%;
}

.home-contact__submit {
    box-sizing: border-box;
    min-height: 90px;
    margin-top: auto;
    padding: 9px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    background: #1f1f1f;
    color: #ffffff;
    cursor: pointer;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.home-contact__submit img {
    width: 14px;
    height: 14px;
    display: block;
}

.home-contact__consent {
    min-height: 20px;
    margin: 16px 0 82px;
    color: #1f1f1f;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

.home-contact__consent a {
    color: inherit;
    text-decoration: underline;
}

body.is-consultation-locked {
    overflow: hidden;
}

@media (max-width: 760px) {
    .home-blog { padding: 72px 20px 0; }
    .home-blog__title { margin-bottom: 48px; padding: 72px 0 0; }
    .home-blog__grid { grid-template-columns: 1fr; }
    .home-blog__grid::before { display: none; }
    .home-blog__card { padding: 24px 0; }
    .home-blog__card:nth-child(even) { border-top: 1px solid #343434; }
    .home-blog__meta { margin-top: 20px; gap: 16px; }
    .home-blog__category { min-height: 56px; padding: 12px 16px; }
    .home-blog__category,
    .home-blog__meta time { font-size: 20px; line-height: 28px; }
    .home-blog__card-title { margin-top: 28px; }
    .home-blog__all-link { min-height: 80px; margin-top: 0; }

    .home-contact {
        padding-top: 80px;
    }

    .home-contact__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-contact__left {
        padding: 0 20px 56px;
        border-right: 0;
        border-bottom: 1px solid #d0d0d0;
    }

    .home-contact__title {
        margin-top: 72px;
    }

    .home-contact__subtitle {
        font-size: 24px;
    }

    .home-contact__phone {
        margin-top: 40px;
        gap: 20px;
        font-size: 24px;
    }

    .home-contact__phone-icon {
        width: 48px;
        height: 48px;
    }

    .home-contact__phone-icon img {
        width: 26px;
        height: 26px;
    }

    .home-contact__field {
        min-height: 112px;
    }

    .home-contact__field span {
        top: 40px;
        left: 20px;
        right: 20px;
        font-size: 24px;
    }

    .home-contact__field:focus-within span,
    .home-contact__field:has(input:not(:placeholder-shown)) span,
    .home-contact__field:has(textarea:not(:placeholder-shown)) span {
        top: 16px;
        left: 20px;
        font-size: 13px;
        line-height: 16px;
    }

    .home-contact__field input,
    .home-contact__field textarea {
        min-height: 112px;
        padding: 48px 20px 16px;
        font-size: 18px;
    }

    .home-contact__submit {
        min-height: 80px;
    }

    .home-contact__consent {
        padding: 0 20px;
        font-size: 13px;
        line-height: 18px;
    }

    .home-team__inner {
        padding: 80px 20px 0;
    }

    .home-team__title {
        font-size: clamp(36px, 11vw, 56px);
        line-height: 1;
    }

    .home-team__title span + span {
        margin-top: 10px;
    }

    .home-team__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .home-team__photo {
        height: 320px;
        overflow: visible;
    }

    .home-team__photo img {
        height: 352px;
        transform: none;
    }

    .home-team__info {
        min-height: 112px;
        padding: 0 20px;
    }

    .home-team__info h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .home-team__cta {
        margin-top: 40px;
    }

    .consultation-popup {
        padding: 16px;
    }

    .consultation-popup__dialog {
        width: calc(100vw - 32px);
        max-height: none;
        overflow: visible;
    }

    .consultation-popup__close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .consultation-popup__inner {
        width: calc(100% - 40px);
        padding: 56px 0 40px;
    }

    .consultation-popup__header h2 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .consultation-popup__header p {
        margin-top: 24px;
        font-size: 20px;
        line-height: 28px;
    }

    .consultation-popup__form {
        margin-top: 28px;
    }

    .consultation-popup__form label {
        height: 82px;
    }

    .consultation-popup__form label span {
        top: 28px;
        left: 20px;
        font-size: 20px;
        line-height: 26px;
    }

    .consultation-popup__form label:focus-within span,
    .consultation-popup__form label:has(input:not(:placeholder-shown)) span {
        top: 12px;
        left: 18px;
        font-size: 12px;
        line-height: 16px;
    }

    .consultation-popup__form input {
        padding: 38px 20px 10px;
        font-size: 16px;
    }

    .consultation-popup__form button {
        height: 76px;
    }

    .consultation-popup__contact {
        gap: 16px;
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 1180px) {
    .home-residency-background {
        height: auto;
        min-height: 720px;
    }

    .home-residency-background__glass {
        width: 88%;
    }

    .home-residency-background__content {
        height: auto;
        padding: 64px 24px 48px;
        box-sizing: border-box;
    }

    .home-residency-background__header h2,
    .home-residency-background__header > p,
    .home-residency-background__steps,
    .home-residency-background__cta {
        position: static;
    }

    .home-residency-background__header h2 {
        font-size: clamp(44px, 8vw, 76px);
        line-height: 0.94;
    }

    .home-residency-background__header h2 span + span {
        margin-top: 12px;
        text-align: left;
    }

    .home-residency-background__header > p {
        width: min(100%, 675px);
        margin-top: 32px;
        font-size: 18px;
        line-height: 1.35;
    }

    .home-residency-background__steps {
        width: min(100%, 870px);
        height: auto;
        margin-top: 56px;
        grid-template-rows: repeat(2, minmax(260px, auto));
        gap: 20px;
    }

    .home-residency-background__step {
        padding: 32px;
    }

    .home-residency-background__step > div > span {
        font-size: 18px;
        line-height: 22px;
    }

    .home-residency-background__step h3 {
        margin-top: 12px;
        font-size: 28px;
        line-height: 1.2;
    }

    .home-residency-background__step > p {
        font-size: 16px;
        line-height: 20px;
    }

    .home-residency-background__cta {
        width: min(100%, 870px);
        height: 82px;
        margin-top: 32px;
    }
}

@media (max-width: 700px) {
    .home-residency-background__glass {
        width: 100%;
    }

    .home-residency-background__content {
        padding: 48px 16px 32px;
    }

    .home-residency-background__header h2 {
        font-size: clamp(34px, 11vw, 54px);
    }

    .home-residency-background__steps {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .home-residency-background__step {
        min-height: 250px;
        padding: 28px 24px;
    }

    .home-residency-background__cta {
        height: 72px;
        font-size: 13px;
    }
}
/* Shared site footer */
.site-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #1f1f1f;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    overflow: visible;
}

.site-footer__inner {
    width: min(100%, 1903px);
    min-height: 426px;
    margin: 0 auto;
    padding: 58px 78px 0;
    box-sizing: border-box;
    background: transparent;
}

.site-footer__top {
    min-height: 270px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 760px);
    gap: 80px;
    align-items: start;
}

.site-footer__brand {
    min-width: 0;
}

.site-footer__logo {
    width: min(665px, 100%);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-footer__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.site-footer__tagline {
    margin: 25px 0 0;
    color: #ffffff;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

.site-footer__links {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 72px;
    padding-top: 15px;
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 64px;
}

.site-footer__nav-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.site-footer__nav a,
.site-footer__contact-link,
.site-footer__meeting {
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__contact-link {
    transition: opacity .25s ease;
}

.site-footer__nav a:hover,
.site-footer__contact-link:hover,
.site-footer__legal a:hover {
    opacity: .62;
}

.site-footer__contacts {
    width: 350px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__contact-link + .site-footer__contact-link {
    margin-top: 24px;
}

.site-footer__meeting {
    margin-top: 25px;
    padding: 0 0 5px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .9);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
}

.site-footer__meeting-arrow {
    width: 14px;
    height: 14px;
    display: block;
    flex: 0 0 auto;
}

.site-footer__whatsapp {
    width: 60px;
    height: 60px;
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #343434;
    transition: border-color .25s ease, background-color .25s ease;
}

.site-footer__whatsapp:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, .04);
}

.site-footer__whatsapp img {
    width: 32px;
    height: 32px;
    display: block;
}

.site-footer__bottom {
    min-height: 108px;
    padding-top: 42px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    border-top: 1px solid #343434;
    box-sizing: border-box;
}

.site-footer__bottom p,
.site-footer__legal a {
    margin: 0;
    color: rgba(255, 255, 255, .42);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
}

.site-footer__legal {
    display: flex;
    gap: 56px;
}

.site-footer__legal a {
    transition: opacity .25s ease;
}

@media (max-width: 1500px) {
    .site-footer__inner {
        padding-left: 64px;
        padding-right: 64px;
    }

    .site-footer__top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 670px);
        gap: 58px;
    }

    .site-footer__logo {
        width: min(560px, 100%);
    }

    .site-footer__links {
        gap: 48px;
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 42px;
    }

    .site-footer__contacts {
        width: 320px;
        min-width: 320px;
    }
}

@media (max-width: 1180px) {
    .site-footer__inner {
        width: 100%;
        padding: 48px 28px 0;
    }

    .site-footer__top {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .site-footer__links {
        width: 100%;
        padding-top: 0;
        justify-content: space-between;
    }

    .site-footer__bottom {
        margin-top: 44px;
    }
}

@media (max-width: 760px) {
    .site-footer__inner {
        width: 100%;
        min-height: 0;
        padding: 36px 20px 0;
    }

    .site-footer__logo {
        width: min(100%, 430px);
    }

    .site-footer__tagline {
        margin-top: 18px;
        font-size: 14px;
    }

    .site-footer__links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer__nav {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .site-footer__nav-column {
        gap: 16px;
    }

    .site-footer__contacts {
        width: 100%;
        min-width: 0;
    }

    .site-footer__nav a,
    .site-footer__contact-link,
    .site-footer__meeting {
        font-size: 15px;
    }

    .site-footer__bottom {
        min-height: 0;
        margin-top: 36px;
        padding: 24px 0;
        display: grid;
        gap: 16px;
    }

    .site-footer__legal {
        display: grid;
        gap: 12px;
    }

    .site-footer__bottom p,
    .site-footer__legal a {
        font-size: 14px;
    }
}

/* === FINAL FOOTER SPACING FIX 2026-08-22 === */
.home-contact__inner { border-bottom: 0 !important; }
.home-contact__consent { margin-bottom: 82px !important; }
.site-footer { width: 100% !important; margin: 0 !important; padding: 0 !important; background: #1f1f1f !important; overflow: visible !important; }
.site-footer__inner { width: min(100%, 1903px) !important; min-height: 426px !important; margin: 0 auto !important; padding-top: 58px !important; background: transparent !important; }
.home-contact__field input, .home-contact__field textarea { display: block !important; width: 100% !important; min-height: 184px !important; opacity: 1 !important; pointer-events: auto !important; }
/* === /FINAL FOOTER SPACING FIX === */

/* === CONTACT BUTTON BORDER FIX 2026-08-22 === */
.home-contact__left {
    border-right: 0 !important;
}

.home-contact__field {
    border-left: 1px solid #d0d0d0 !important;
}

.home-contact__submit,
.home-contact__consent {
    border-left: 0 !important;
}
/* === /CONTACT BUTTON BORDER FIX === */


/* === HERO BUTTON CLICK FIX 2026-08-28 ===
   Swiper fade keeps inactive slides stacked over the active slide.
   Disable pointer events for hidden slides so only the visible hero CTAs receive clicks. */
.home-hero__swiper.swiper-initialized .home-hero__slide {
    pointer-events: none;
}

.home-hero__swiper.swiper-initialized .home-hero__slide.swiper-slide-active,
.home-hero__swiper.swiper-initialized .home-hero__slide.swiper-slide-visible,
.home-hero__swiper.swiper-initialized .home-hero__slide.swiper-slide-fully-visible {
    pointer-events: auto;
}
/* === /HERO BUTTON CLICK FIX === */

/* === HERO FULL WIDTH BACKGROUND + 1903 CONTENT FIX 2026-08-22 === */
.home-hero {
    width: 100% !important;
    max-width: none !important;
}

.home-hero__swiper,
.home-hero__slide {
    width: 100vw !important;
    max-width: none !important;
}

.home-hero__slide {
    background-size: cover !important;
    background-position: center center !important;
}

.site-header__frame {
    width: min(100%, 1903px) !important;
    max-width: 1903px !important;
    padding-inline: 40px !important;
    box-sizing: border-box !important;
}

.home-hero__title {
    left: max(40px, calc((100vw - 1903px) / 2 + 40px)) !important;
    right: max(40px, calc((100vw - 1903px) / 2 + 40px)) !important;
}

.home-hero__description {
    left: max(40px, calc((100vw - 1903px) / 2 + 40px)) !important;
}

.home-hero__pagination,
.home-hero__swiper .home-hero__pagination {
    left: 50% !important;
    right: auto !important;
    bottom: 30px !important;
    width: auto !important;
    transform: translateX(-50%) !important;
    justify-content: center !important;
}

.home-hero__pagination.swiper-pagination-bullets,
.home-hero__pagination.swiper-pagination-horizontal {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

@media (max-width: 760px) {
    .site-header__frame {
        padding-inline: 18px !important;
    }

    .home-hero__title {
        left: 18px !important;
        right: 18px !important;
    }

    .home-hero__description {
        left: 18px !important;
        width: calc(100% - 36px) !important;
    }
}
/* === /HERO FULL WIDTH BACKGROUND + 1903 CONTENT FIX === */

/* === BLOG PAGE 2026-08-22 === */
.blog-page-body {
    background: #ffffff;
    color: #1f1f1f;
}

.blog-header {
    width: 100%;
    background: #ffffff;
    color: #1f1f1f;
}

.blog-header__inner {
    box-sizing: border-box;
    width: min(100%, 1903px);
    min-height: 246px;
    margin: 0 auto;
    padding: 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-header__nav {
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

.blog-header__logo {
    flex: 0 0 296.57px;
    width: 296.57px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.blog-header__logo img {
    display: block;
    width: 296.57px;
    height: 24px;
}

.blog-header__menu {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-left: 80px;
}

.blog-header__actions {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.blog-header__menu a,
.blog-header__phone,
.blog-header__link,
.blog-header__lang {
    min-height: 18px;
    display: inline-flex;
    align-items: center;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.blog-header__lang {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.blog-header__language {
    width: 68px;
    height: 18px;
    flex: 0 0 68px;
}

.blog-header__language .blog-header__lang {
    gap: 8px;
}

.blog-header__link {
    gap: 8px;
    padding-bottom: 0;
    border-bottom: 0;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 25%;
}

.blog-header__link img {
    width: 13.5px;
    height: 12.5px;
}

.blog-header__burger {
    display: none !important;
}

.blog-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8f8f8f;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.blog-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.blog-page {
    width: 100%;
    overflow: hidden;
}

.blog-hero {
    background: #ffffff;
}

.blog-hero__inner {
    box-sizing: border-box;
    width: min(100%, 1903px);
    margin: 0 auto;
    padding: 30px 40px 60px;
}

.blog-hero__title {
    max-width: 1380px;
    margin: 0;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 5.2vw, 100px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.blog-hero__description {
    max-width: 760px;
    margin: 24px 0 0;
    color: #1f1f1f;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.28;
}

.blog-featured {
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    background: #ffffff;
}

.blog-featured__inner {
    width: min(100%, 1903px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-featured__main,
.blog-featured__side-card {
    box-sizing: border-box;
}

.blog-featured__main {
    position: relative;
    padding: 36px 32px 36px 40px;
    border-right: 1px solid #d7d7d7;
}

.blog-featured__main-image {
    display: block;
    width: 100%;
    aspect-ratio: 820 / 500;
    object-fit: cover;
}

.blog-featured__main-content {
    position: absolute;
    right: 32px;
    bottom: 36px;
    left: 40px;
    min-height: 180px;
    padding: 28px 34px;
    color: #ffffff;
    background: rgba(31, 31, 31, 0.48);
    backdrop-filter: blur(18px);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-featured h2,
.blog-featured h3 {
    margin: 22px 0 14px;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.blog-featured h2 {
    font-size: 24px;
}

.blog-featured h3 {
    font-size: 19px;
}

.blog-featured p {
    margin: 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.blog-featured__side-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    padding: 30px 40px 30px 32px;
    border-bottom: 1px solid #d7d7d7;
}

.blog-featured__side-card:last-child {
    border-bottom: 0;
}

.blog-featured__side-card img {
    display: block;
    width: 100%;
    aspect-ratio: 320 / 230;
    object-fit: cover;
}

.blog-featured__side-card a {
    margin-top: 28px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #1f1f1f;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-featured__side-card a img {
    width: 12px;
    height: 12px;
    aspect-ratio: auto;
    filter: none;
}

.blog-latest {
    background: #1f1f1f;
    color: #ffffff;
}

.blog-latest__inner {
    box-sizing: border-box;
    width: min(100%, 1903px);
    margin: 0 auto;
    padding: 96px 40px 56px;
}

.blog-latest__title {
    margin: 0 0 42px;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 5vw, 100px);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
}

.blog-latest__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-latest__filters button {
    min-height: 56px;
    padding: 0 20px;
    border: 1px solid #4b4b4b;
    background: transparent;
    color: #ffffff;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.blog-latest__filters button.is-active {
    background: #ffffff;
    color: #1f1f1f;
}

.blog-latest__grid {
    width: min(100%, 1903px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #343434;
    border-bottom: 1px solid #343434;
}

.blog-latest__card {
    box-sizing: border-box;
    padding: 40px;
    border-right: 1px solid #343434;
    border-bottom: 1px solid #343434;
}

.blog-latest__card:nth-child(3n) {
    border-right: 0;
}

.blog-latest__card img {
    display: block;
    width: 100%;
    aspect-ratio: 560 / 300;
    object-fit: cover;
}

.blog-latest__card time,
.blog-latest__card h3,
.blog-latest__category {
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.blog-latest__card time {
    display: block;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 700;
}

.blog-latest__card h3 {
    margin: 30px 0 18px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
}

.blog-latest__card p {
    margin: 0;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.blog-latest__category {
    min-height: 44px;
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #4b4b4b;
    font-size: 15px;
    font-weight: 400;
}

.blog-latest__empty {
    grid-column: 1 / -1;
    padding: 60px 40px;
    color: #8f8f8f;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 18px;
}

.blog-latest__more {
    min-width: 170px;
    min-height: 58px;
    margin: 48px auto 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #363636;
    color: #ffffff;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    cursor: pointer;
}

.blog-subscribe {
    background: #ffffff;
    color: #1f1f1f;
}

.blog-subscribe__inner {
    width: min(100%, 1903px);
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-subscribe__left {
    box-sizing: border-box;
    padding: 130px 40px 80px;
}

.blog-subscribe__left h2 {
    margin: 0;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 4.6vw, 88px);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.blog-subscribe__left p {
    max-width: 820px;
    margin: 40px 0 70px;
    color: #8f8f8f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.18;
    text-transform: uppercase;
}

.blog-subscribe__phone {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: 700;
    text-decoration: none;
}

.blog-subscribe__phone span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid #1f1f1f;
}

.blog-subscribe__phone img {
    width: 30px;
    height: 30px;
}

.blog-subscribe__form {
    align-self: center;
    margin-right: 0;
    border: 1px solid #d0d0d0;
    border-bottom: 0;
}

.blog-subscribe__form label {
    position: relative;
    display: block;
    height: 170px;
    border-bottom: 1px solid #d0d0d0;
}

.blog-subscribe__form label span {
    position: absolute;
    top: 58px;
    left: 40px;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition: 160ms ease;
    pointer-events: none;
}

.blog-subscribe__form input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 72px 40px 24px;
    color: #1f1f1f;
    background: transparent;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 28px;
    outline: none;
}

.blog-subscribe__form label:focus-within span,
.blog-subscribe__form label:has(input:not(:placeholder-shown)) span {
    top: 32px;
    color: #8f8f8f;
    font-size: 14px;
}

.blog-subscribe__form button {
    min-height: 94px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    background: #1f1f1f;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.blog-subscribe__form button img {
    width: 12px;
    height: 12px;
}

.blog-subscribe__form p {
    margin: 20px 0 0;
    color: #1f1f1f;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}

.blog-next {
    background: #ffffff;
    color: #1f1f1f;
}

.blog-next__inner {
    width: min(100%, 1903px);
    margin: 0 auto;
    border-top: 1px solid #d7d7d7;
}

.blog-next h2 {
    margin: 0;
    padding: 60px 40px;
    border-bottom: 1px solid #d7d7d7;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 4.7vw, 88px);
    font-weight: 700;
    line-height: 0.95;
    text-align: right;
    text-transform: uppercase;
}

.blog-next__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid #d7d7d7;
}

.blog-next__card {
    box-sizing: border-box;
    min-height: 320px;
    padding: 56px 40px;
    border-right: 1px solid #e2e2e2;
}

.blog-next__card:last-child {
    border-right: 0;
}

.blog-next__card h3 {
    margin: 0 0 18px;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

.blog-next__card p {
    min-height: 70px;
    margin: 0 0 56px;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.blog-next__card a {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1f1f1f;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-next__card a img {
    width: 12px;
    height: 12px;
}

@media (max-width: 1280px) {
    .blog-header__menu {
        gap: 28px;
        margin-left: 48px;
    }

    .blog-header__actions {
        gap: 28px;
    }

    .blog-featured__inner,
    .blog-subscribe__inner {
        grid-template-columns: 1fr;
    }

    .blog-featured__main {
        border-right: 0;
        border-bottom: 1px solid #d7d7d7;
    }

    .blog-featured__side-card {
        grid-template-columns: 280px 1fr;
    }

    .blog-latest__grid,
    .blog-next__grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-latest__card:nth-child(3n) {
        border-right: 1px solid #343434;
    }

    .blog-latest__card:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 860px) {
    .blog-header__inner,
    .blog-hero__inner,
    .blog-latest__inner,
    .blog-subscribe__left,
    .blog-next h2 {
        padding-inline: 20px;
    }

    .blog-header__inner {
        min-height: 190px;
        padding-top: 24px;
    }

    .blog-header__nav {
        align-items: flex-start;
    }

    .blog-header__menu,
    .blog-header__phone,
    .blog-header__link,
    .blog-header__lang {
        display: none;
    }

    .blog-header__logo {
        width: 220px;
        height: auto;
        flex-basis: 220px;
    }

    .blog-header__logo img {
        width: 220px;
        height: auto;
    }

    .blog-hero__title,
    .blog-latest__title,
    .blog-subscribe__left h2,
    .blog-next h2 {
        font-size: 44px;
    }

    .blog-hero__description,
    .blog-subscribe__left p {
        font-size: 18px;
    }

    .blog-featured__main,
    .blog-featured__side-card,
    .blog-latest__card,
    .blog-next__card {
        padding: 24px 20px;
    }

    .blog-featured__main-content {
        position: static;
        padding: 24px 0 0;
        color: #1f1f1f;
        background: transparent;
        backdrop-filter: none;
    }

    .blog-featured__side-card,
    .blog-latest__grid,
    .blog-next__grid {
        grid-template-columns: 1fr;
    }

    .blog-latest__card,
    .blog-latest__card:nth-child(2n),
    .blog-latest__card:nth-child(3n),
    .blog-next__card {
        border-right: 0;
    }

    .blog-subscribe__form label {
        height: 130px;
    }

    .blog-subscribe__form label span {
        top: 44px;
        left: 22px;
        font-size: 24px;
    }

    .blog-subscribe__form input {
        padding-inline: 22px;
        font-size: 22px;
    }
}
/* === /BLOG PAGE === */

/* Page async transitions: disabled by request, Livewire wire:navigate stays active */
.page-transition,
.page-transition.is-active,
.page-transition__panel,
.page-transition__logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    filter: none !important;
    transform: none !important;
}

html.is-page-transitioning,
body.is-page-transitioning {
    cursor: auto;
}

/* Team page */
.team-page-body {
    background: #ffffff;
    color: #1f1f1f;
}

.team-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.team-hero {
    background: #ffffff;
}

.team-hero__inner {
    width: min(100%, 1903px);
    margin: 0 auto;
    padding: 30px 40px 0;
    box-sizing: border-box;
}

.team-hero__title {
    max-width: 1760px;
    margin: 0;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 5.2vw, 100px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.team-hero__description {
    max-width: 1420px;
    margin: 30px 0 0;
    color: #1f1f1f;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
}

.team-hero__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.team-hero__card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

.team-hero__photo,
.team-hero__photo-placeholder {
    position: relative;
    height: 400px;
    overflow: visible;
    background: #e5e5e5;
}

.team-hero__photo img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: contain;
    object-position: bottom center;
    transform: translateY(-30px);
}

.team-hero__info {
    min-height: 120px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

.team-hero__info h2 {
    margin: 0;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.team-hero__info p {
    margin: 7px 0 0;
    color: rgba(31, 31, 31, 0.5);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.team-hero__cta-row {
    margin-top: 62px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
}

.team-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.team-hero__cta img {
    width: 16px;
    height: 16px;
    display: block;
}

@media (max-width: 1100px) {
    .team-hero__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .team-hero__inner { padding: 24px 20px 0; }
    .team-hero__title { font-size: 42px; line-height: 1.05; }
    .team-hero__description { font-size: 17px; }
    .team-hero__photo, .team-hero__photo-placeholder { height: 330px; }
    .team-hero__photo img { height: 360px; }
    .team-hero__info h2 { font-size: 24px; line-height: 30px; }
}

/* Team page investment block */
.team-investment {
    width: 100%;
    background: #1f1f1f;
    color: #ffffff;
}

.team-investment__inner {
    width: min(100%, 1903px);
    margin: 0 auto;
    padding: 92px 40px 0;
    box-sizing: border-box;
}

.team-investment__head {
    min-height: 280px;
    display: grid;
    grid-template-columns: minmax(260px, 520px) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.team-investment__head p {
    margin: 0;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}

.team-investment__head h2 {
    margin: 0;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 4.9vw, 96px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-align: right;
    text-transform: uppercase;
}

.team-investment__list {
    display: grid;
}

.team-investment__item {
    display: grid;
    grid-template-columns: minmax(430px, 0.86fr) minmax(0, 1.14fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.team-investment__content {
    min-height: 565px;
    padding: 42px 56px 42px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
}

.team-investment__price {
    margin-bottom: 24px;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.team-investment__content h3 {
    margin: 0;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 3.2vw, 64px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.team-investment__description {
    margin-top: 28px;
    max-width: 840px;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.38;
}

.team-investment__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 16px;
    margin-top: 64px;
}

.team-investment__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #ffffff;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
}

.team-investment__tags span::before {
    content: '▪';
    margin-right: 10px;
    font-size: 16px;
    line-height: 1;
}

.team-investment__media {
    min-height: 565px;
    background: rgba(255, 255, 255, 0.04);
}

.team-investment__media img {
    display: block;
    width: 100%;
    height: 565px;
    object-fit: cover;
}

.team-investment__footer {
    min-height: 96px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.team-investment__footer p {
    margin: 0;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.team-investment__footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .team-investment__head,
    .team-investment__item,
    .team-investment__footer { grid-template-columns: 1fr; }
    .team-investment__head h2 { text-align: left; }
    .team-investment__content { border-right: 0; padding-right: 0; }
}

@media (max-width: 640px) {
    .team-investment__inner { padding: 56px 20px 0; }
    .team-investment__head { min-height: 0; padding-bottom: 48px; }
    .team-investment__content { min-height: 0; padding: 34px 0; }
    .team-investment__media, .team-investment__media img { min-height: 330px; height: 330px; }
    .team-investment__tags { margin-top: 36px; }
    .team-investment__tags span { font-size: 16px; }
}

/* Team page why block */
.team-why {
    width: 100%;
    background: #ffffff;
    color: #1f1f1f;
}

.team-why__inner {
    width: min(100%, 1903px);
    margin: 0 auto;
    padding: 92px 40px 64px;
    box-sizing: border-box;
}

.team-why__title {
    max-width: 1120px;
    margin: 0;
    color: #1f1f1f;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(56px, 4.9vw, 96px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.team-why__subtitle {
    max-width: 980px;
    margin: 30px 0 0;
    color: #1f1f1f;
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}

.team-why__media {
    position: relative;
    margin-top: 60px;
    min-height: 650px;
    overflow: hidden;
    background: #e5e5e5;
}

.team-why__media img {
    display: block;
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.team-why__overlay {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: min(680px, calc(100% - 48px));
    padding: 28px 32px;
    box-sizing: border-box;
    color: #ffffff;
    background: rgba(31, 31, 31, 0.58);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.28;
}

.team-why__overlay strong,
.team-why__overlay b {
    font-weight: 800;
}

@media (max-width: 760px) {
    .team-why__inner { padding: 56px 20px 40px; }
    .team-why__title { font-size: 42px; line-height: 1.05; }
    .team-why__subtitle { font-size: 17px; }
    .team-why__media { min-height: 380px; margin-top: 36px; }
    .team-why__media img { height: 380px; }
    .team-why__overlay { left: 14px; bottom: 14px; width: calc(100% - 28px); padding: 18px; font-size: 15px; }
}

.team-approach {
    width: 100%;
    background: #1f1f1f;
    color: #fff;
}

.team-approach__inner {
    width: min(1903px, 100%);
    margin: 0 auto;
    padding: 96px 64px 60px;
    box-sizing: border-box;
}

.team-approach__title {
    margin: 0;
    max-width: 1360px;
    color: #fff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 5.2vw, 104px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.team-approach__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 92px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.team-approach__item {
    min-height: 210px;
    padding: 76px 46px 54px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-sizing: border-box;
}

.team-approach__item h3 {
    margin: 0 0 24px;
    color: #fff;
    font-family: 'RoadRadio', Arial, Helvetica, sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.team-approach__item p {
    margin: 0;
    max-width: 780px;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .team-approach__inner { padding: 56px 20px 42px; }
    .team-approach__grid { grid-template-columns: 1fr; margin-top: 42px; }
    .team-approach__item { min-height: 0; padding: 34px 22px; }
    .team-approach__item h3 { font-size: 24px; }
    .team-approach__item p { font-size: 16px; }
}

/* === FOOTER FIGMA SIZE FIX 2026-08-24 === */
@media (min-width: 1181px) {
    .site-footer__inner {
        width: min(100%, 1903px) !important;
        min-height: 426px !important;
        margin: 0 auto !important;
        padding: 58px 31.5px 0 !important;
        box-sizing: border-box !important;
    }

    .site-footer__top {
        width: 1840px !important;
        max-width: 100% !important;
        min-height: 202px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 0 !important;
    }

    .site-footer__brand {
        width: 643px !important;
        min-width: 643px !important;
        flex: 0 0 643px !important;
    }

    .site-footer__logo {
        width: 643px !important;
        max-width: 100% !important;
    }

    .site-footer__tagline {
        margin-top: 24px !important;
    }

    .site-footer__links {
        width: 705.5px !important;
        flex: 0 0 705.5px !important;
        min-height: 216px !important;
        padding-top: 0 !important;
        display: grid !important;
        grid-template-columns: 128px 135px 282.5px !important;
        column-gap: 80px !important;
        align-items: flex-start !important;
        justify-content: start !important;
    }

    .site-footer__nav {
        display: contents !important;
    }

    .site-footer__nav-column {
        width: auto !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .site-footer__contacts {
        width: 282.5px !important;
        min-width: 282.5px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }

    .site-footer__contact-link + .site-footer__contact-link,
    .site-footer__meeting,
    .site-footer__whatsapp {
        margin-top: 0 !important;
    }

    .site-footer__bottom {
        width: 1840px !important;
        max-width: 100% !important;
        min-height: 63px !important;
        margin-top: 40px !important;
        padding-top: 40px !important;
        border-top: 1px solid rgba(255, 255, 255, .10) !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 32px !important;
        box-sizing: border-box !important;
    }

    .site-footer__legal {
        display: flex !important;
        align-items: flex-start !important;
        gap: 52px !important;
    }
}
/* === /FOOTER FIGMA SIZE FIX === */

/* === CONTACT FORM CLOSED BORDER FIX 2026-08-24 === */
.home-contact__form {
    border-top: 1px solid #d0d0d0 !important;
    border-right: 1px solid #d0d0d0 !important;
}
/* === /CONTACT FORM CLOSED BORDER FIX === */

/* === CONTACT FORM POLICY BORDER FIX 2026-08-24 === */
.home-contact__form {
    border-right: 0 !important;
}

.home-contact__field,
.home-contact__submit {
    border-right: 1px solid #d0d0d0 !important;
}

.home-contact__consent {
    border-right: 0 !important;
}
/* === /CONTACT FORM POLICY BORDER FIX === */

/* === CLIENT FIGMA COMMENTS FIX 2026-09-10 === */
@media (min-width: 761px) {
    .home-hero {
        height: 100svh;
    }

    .home-comfort__grid {
        border-left: 1px solid rgba(255, 255, 255, 0.28);
        border-right: 1px solid rgba(255, 255, 255, 0.28);
    }


    .home-contact__field input,
    .home-contact__field textarea {
        font-size: clamp(28px, 2.1vw, 40px);
        line-height: 1.1;
    }
}

.home-metrics__cta:hover,
.home-metrics__cta:focus-visible,
.home-contact__submit:hover,
.home-contact__submit:focus-visible {
    background: #00B9B0;
    color: #ffffff;
}

.home-contact__submit {
    transition: background-color 180ms ease, color 180ms ease;
}
/* === /CLIENT FIGMA COMMENTS FIX === */

/* === HOME COMFORT SINGLE BACKGROUND FIX 2026-09-10 === */
@media (min-width: 761px) {
    .home-comfort-scene {
        width: 100%;
        background-color: #7faac5;
        background-image: var(--comfort-background, none);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .home-comfort-scene .home-comfort {
        background-color: transparent;
        background-image: linear-gradient(to bottom, rgba(127, 170, 197, 0.9), rgba(190, 218, 233, 0.84));
    }

    .home-comfort-scene .home-panorama {
        height: min(570px, 29.6875vw);
        background: transparent;
    }

    .home-comfort-scene .home-comfort__cta {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .home-comfort-scene .home-panorama img {
        display: none;
    }
}
/* === /HOME COMFORT SINGLE BACKGROUND FIX === */

/* === PUBLIC DARK BUTTON HOVER TEAL 2026-09-10 === */
body.site-body .site-header__investors,
body.site-body .site-mobile-menu__investors,
body.site-body .home-hero__primary-button,
body.site-body .home-metrics__cta,
body.site-body .home-technical__cta,
body.site-body .home-contact__submit,
body.site-body .consultation-popup__form button,
body.site-body .home-investment__button--dark,
body.site-body .about-hero__cta,
body.site-body .about-documents__cta,
body.site-body .about-portfolio-card__button,
body.site-body .blog-subscribe__form button,
body.site-body .blog-featured__side-card a,
body.site-body .blog-latest__filters button,
body.site-body .blog-latest__more,
body.site-body .blog-next__card a,
body.site-body .investors-hero__button--dark,
body.site-body .investors-hero-summary__cta,
body.site-body .investors-portfolio-card__button,
body.site-body .investors-contact__submit,
body.site-body .residents-hero__button--dark,
body.site-body .residents-contact__submit,
body.site-body .contacts-form .residents-contact__submit,
body.site-body .portfolio-contact .residents-contact__submit,
body.site-body .residents-inventory-filters__reset,
body.site-body .residents-inventory-table__action button,
body.site-body .residents-request-modal__form button[type='submit'],
body.site-body .contacts-form__submit,
body.site-body .contacts-meeting__cta,
body.site-body .portfolio-detail-contact__submit {
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease, filter 220ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
    body.site-body .site-header__investors:hover,
    body.site-body .site-mobile-menu__investors:hover,
    body.site-body .home-hero__primary-button:hover,
    body.site-body .home-metrics__cta:hover,
    body.site-body .home-technical__cta:hover,
    body.site-body .home-contact__submit:hover,
    body.site-body .consultation-popup__form button:hover,
    body.site-body .home-investment__button--dark:hover,
    body.site-body .about-hero__cta:hover,
    body.site-body .about-documents__cta:hover,
    body.site-body .about-portfolio-card__button:hover,
    body.site-body .blog-subscribe__form button:hover,
    body.site-body .blog-featured__side-card a:hover,
    body.site-body .blog-latest__filters button:hover,
    body.site-body .blog-latest__more:hover,
    body.site-body .blog-next__card a:hover,
    body.site-body .investors-hero__button--dark:hover,
    body.site-body .investors-hero-summary__cta:hover,
    body.site-body .investors-portfolio-card__button:hover,
    body.site-body .investors-contact__submit:hover,
    body.site-body .residents-hero__button--dark:hover,
    body.site-body .residents-contact__submit:hover,
    body.site-body .contacts-form .residents-contact__submit:hover,
    body.site-body .portfolio-contact .residents-contact__submit:hover,
    body.site-body .residents-inventory-filters__reset:hover,
    body.site-body .residents-inventory-table__action button:hover,
    body.site-body .residents-request-modal__form button[type='submit']:hover,
    body.site-body .contacts-form__submit:hover,
    body.site-body .contacts-meeting__cta:hover,
    body.site-body .portfolio-detail-contact__submit:hover {
        background-color: #00B9B0 !important;
        border-color: #00B9B0 !important;
        color: #ffffff !important;
    }

    body.site-body .residents-inventory-table__action button:hover img {
        filter: brightness(0) invert(1) !important;
    }
}

body.site-body .site-header__investors:focus-visible,
body.site-body .site-mobile-menu__investors:focus-visible,
body.site-body .home-hero__primary-button:focus-visible,
body.site-body .home-metrics__cta:focus-visible,
body.site-body .home-technical__cta:focus-visible,
body.site-body .home-contact__submit:focus-visible,
body.site-body .consultation-popup__form button:focus-visible,
body.site-body .home-investment__button--dark:focus-visible,
body.site-body .about-hero__cta:focus-visible,
body.site-body .about-documents__cta:focus-visible,
body.site-body .about-portfolio-card__button:focus-visible,
body.site-body .blog-subscribe__form button:focus-visible,
body.site-body .blog-featured__side-card a:focus-visible,
body.site-body .blog-latest__filters button:focus-visible,
body.site-body .blog-latest__more:focus-visible,
body.site-body .blog-next__card a:focus-visible,
body.site-body .investors-hero__button--dark:focus-visible,
body.site-body .investors-hero-summary__cta:focus-visible,
body.site-body .investors-portfolio-card__button:focus-visible,
body.site-body .investors-contact__submit:focus-visible,
body.site-body .residents-hero__button--dark:focus-visible,
body.site-body .residents-contact__submit:focus-visible,
body.site-body .contacts-form .residents-contact__submit:focus-visible,
body.site-body .portfolio-contact .residents-contact__submit:focus-visible,
body.site-body .residents-inventory-filters__reset:focus-visible,
body.site-body .residents-inventory-table__action button:focus-visible,
body.site-body .residents-request-modal__form button[type='submit']:focus-visible,
body.site-body .contacts-form__submit:focus-visible,
body.site-body .contacts-meeting__cta:focus-visible,
body.site-body .portfolio-detail-contact__submit:focus-visible {
    background-color: #00B9B0 !important;
    border-color: #00B9B0 !important;
    color: #ffffff !important;
    outline: none;
}

body.site-body .residents-inventory-table__action button:focus-visible img {
    filter: brightness(0) invert(1) !important;
}
/* === /PUBLIC DARK BUTTON HOVER TEAL === */

/* === BLOG NEWS CARD BORDERS AND PILL HOVER 2026-09-10 === */
body.site-body .blog-latest__grid {
    border-left: 1px solid #343434;
    border-right: 1px solid #343434;
}

body.site-body .blog-latest__category {
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
    body.site-body .blog-latest__card:hover .blog-latest__category,
    body.site-body .blog-latest__card:focus-within .blog-latest__category {
        background-color: #00B9B0;
        border-color: #00B9B0;
        color: #ffffff;
    }
}
/* === /BLOG NEWS CARD BORDERS AND PILL HOVER === */

/* === PUBLIC CTA ARROW AND LIGHT BUTTON HOVER 2026-09-10 === */
body.site-body .site-header__investors img,
body.site-body .site-mobile-menu__investors img,
body.site-body .home-hero__primary-button img,
body.site-body .home-hero__secondary-button img,
body.site-body .home-investment__button img,
body.site-body .home-comfort__cta img,
body.site-body .home-metrics__cta img,
body.site-body .home-technical__cta img,
body.site-body .home-contact__submit img,
body.site-body .about-hero__cta img,
body.site-body .about-documents__cta img,
body.site-body .about-portfolio-card__button img,
body.site-body .blog-latest__more img,
body.site-body .blog-featured__side-card a img,
body.site-body .blog-next__card a img,
body.site-body .investors-hero__button img,
body.site-body .investors-hero-summary__cta img,
body.site-body .investors-portfolio-card__button-arrow,
body.site-body .investors-contact__submit img,
body.site-body .residents-hero__button img,
body.site-body .residents-contact__submit img,
body.site-body .contacts-form .residents-contact__submit img,
body.site-body .portfolio-contact .residents-contact__submit img,
body.site-body .contacts-form__submit img,
body.site-body .contacts-meeting__cta img,
body.site-body .portfolio-detail-contact__submit img {
    transform-origin: 50% 50%;
    transition: transform 220ms ease, filter 220ms ease !important;
}

body.site-body .home-hero__secondary-button,
body.site-body .home-investment__button--light,
body.site-body .home-comfort__cta,
body.site-body .investors-hero__button--light,
body.site-body .residents-hero__button--light {
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
    body.site-body .home-hero__secondary-button:hover,
    body.site-body .home-investment__button--light:hover,
    body.site-body .home-comfort__cta:hover,
    body.site-body .investors-hero__button--light:hover,
    body.site-body .residents-hero__button--light:hover {
        background-color: #f2f2f2 !important;
        border-color: #f2f2f2 !important;
    }

    body.site-body .site-header__investors:hover img,
    body.site-body .site-mobile-menu__investors:hover img,
    body.site-body .home-hero__primary-button:hover img,
    body.site-body .home-hero__secondary-button:hover img,
    body.site-body .home-investment__button:hover img,
    body.site-body .home-comfort__cta:hover img,
    body.site-body .home-metrics__cta:hover img,
    body.site-body .home-technical__cta:hover img,
    body.site-body .home-contact__submit:hover img,
    body.site-body .about-hero__cta:hover img,
    body.site-body .about-documents__cta:hover img,
    body.site-body .about-portfolio-card__button:hover img,
    body.site-body .blog-latest__more:hover img,
    body.site-body .blog-featured__side-card a:hover img,
    body.site-body .blog-next__card a:hover img,
    body.site-body .investors-hero__button:hover img,
    body.site-body .investors-hero-summary__cta:hover img,
    body.site-body .investors-portfolio-card__button:hover .investors-portfolio-card__button-arrow,
    body.site-body .investors-contact__submit:hover img,
    body.site-body .residents-hero__button:hover img,
    body.site-body .residents-contact__submit:hover img,
    body.site-body .contacts-form .residents-contact__submit:hover img,
    body.site-body .portfolio-contact .residents-contact__submit:hover img,
    body.site-body .contacts-form__submit:hover img,
    body.site-body .contacts-meeting__cta:hover img,
    body.site-body .portfolio-detail-contact__submit:hover img {
        transform: rotate(45deg) !important;
    }
}

body.site-body .home-hero__secondary-button:focus-visible,
body.site-body .home-investment__button--light:focus-visible,
body.site-body .home-comfort__cta:focus-visible,
body.site-body .investors-hero__button--light:focus-visible,
body.site-body .residents-hero__button--light:focus-visible {
    background-color: #f2f2f2 !important;
    border-color: #f2f2f2 !important;
    outline: none;
}

body.site-body .site-header__investors:focus-visible img,
body.site-body .site-mobile-menu__investors:focus-visible img,
body.site-body .home-hero__primary-button:focus-visible img,
body.site-body .home-hero__secondary-button:focus-visible img,
body.site-body .home-investment__button:focus-visible img,
body.site-body .home-comfort__cta:focus-visible img,
body.site-body .home-metrics__cta:focus-visible img,
body.site-body .home-technical__cta:focus-visible img,
body.site-body .home-contact__submit:focus-visible img,
body.site-body .about-hero__cta:focus-visible img,
body.site-body .about-documents__cta:focus-visible img,
body.site-body .about-portfolio-card__button:focus-visible img,
body.site-body .blog-latest__more:focus-visible img,
body.site-body .blog-featured__side-card a:focus-visible img,
body.site-body .blog-next__card a:focus-visible img,
body.site-body .investors-hero__button:focus-visible img,
body.site-body .investors-hero-summary__cta:focus-visible img,
body.site-body .investors-portfolio-card__button:focus-visible .investors-portfolio-card__button-arrow,
body.site-body .investors-contact__submit:focus-visible img,
body.site-body .residents-hero__button:focus-visible img,
body.site-body .residents-contact__submit:focus-visible img,
body.site-body .contacts-form .residents-contact__submit:focus-visible img,
body.site-body .portfolio-contact .residents-contact__submit:focus-visible img,
body.site-body .contacts-form__submit:focus-visible img,
body.site-body .contacts-meeting__cta:focus-visible img,
body.site-body .portfolio-detail-contact__submit:focus-visible img {
    transform: rotate(45deg) !important;
}
/* === /PUBLIC CTA ARROW AND LIGHT BUTTON HOVER === */
/* === PUBLIC CTA HOVER COVERAGE 2026-09-10 === */
body.site-body .home-residency-background__cta,
body.site-body .home-team__cta,
body.site-body .team-hero__cta {
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease !important;
}

body.site-body .about-tasks__map-link,
body.site-body .contacts-map__tab,
body.site-body .residents-inventory-card__request,
body.site-body .investors-investment__footer a {
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease, filter 220ms ease !important;
}

body.site-body .blog-header__link img,
body.site-body .home-residency-background__cta img,
body.site-body .home-team__cta img,
body.site-body .team-hero__cta img,
body.site-body .about-tasks__map-link img,
body.site-body .contacts-map__tab img,
body.site-body .residents-inventory-card__request img,
body.site-body .investors-investment__footer-arrow-glyph,
body.site-body .investors-investment__footer-arrow-icon,
body.site-body .site-footer__meeting-arrow,
body.site-body .site-footer__mobile-meeting-arrow {
    transform-origin: 50% 50%;
    transition: transform 220ms ease, filter 220ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
    body.site-body .home-residency-background__cta:hover,
    body.site-body .home-team__cta:hover,
    body.site-body .team-hero__cta:hover {
        background-color: #f2f2f2 !important;
        border-color: #f2f2f2 !important;
        color: #1f1f1f !important;
    }

    body.site-body .about-tasks__map-link:hover,
    body.site-body .contacts-map__tab:hover,
    body.site-body .residents-inventory-card__request:hover,
    body.site-body .investors-investment__footer a:hover {
        background-color: #00B9B0 !important;
        border-color: #00B9B0 !important;
        color: #ffffff !important;
    }

    body.site-body .blog-header__link:hover img,
    body.site-body .home-residency-background__cta:hover img,
    body.site-body .home-team__cta:hover img,
    body.site-body .team-hero__cta:hover img,
    body.site-body .about-tasks__map-link:hover img,
    body.site-body .contacts-map__tab:hover img,
    body.site-body .residents-inventory-card__request:hover img,
    body.site-body .investors-investment__footer a:hover .investors-investment__footer-arrow-glyph,
    body.site-body .investors-investment__footer a:hover .investors-investment__footer-arrow-icon,
    body.site-body .site-footer__meeting:hover .site-footer__meeting-arrow,
    body.site-body .site-footer__mobile-meeting:hover .site-footer__mobile-meeting-arrow {
        transform: rotate(45deg) !important;
    }
}

body.site-body .home-residency-background__cta:focus-visible,
body.site-body .home-team__cta:focus-visible,
body.site-body .team-hero__cta:focus-visible {
    background-color: #f2f2f2 !important;
    border-color: #f2f2f2 !important;
    color: #1f1f1f !important;
    outline: none;
}

body.site-body .about-tasks__map-link:focus-visible,
body.site-body .contacts-map__tab:focus-visible,
body.site-body .residents-inventory-card__request:focus-visible,
body.site-body .investors-investment__footer a:focus-visible {
    background-color: #00B9B0 !important;
    border-color: #00B9B0 !important;
    color: #ffffff !important;
    outline: none;
}

body.site-body .blog-header__link:focus-visible img,
body.site-body .home-residency-background__cta:focus-visible img,
body.site-body .home-team__cta:focus-visible img,
body.site-body .team-hero__cta:focus-visible img,
body.site-body .about-tasks__map-link:focus-visible img,
body.site-body .contacts-map__tab:focus-visible img,
body.site-body .residents-inventory-card__request:focus-visible img,
body.site-body .investors-investment__footer a:focus-visible .investors-investment__footer-arrow-glyph,
body.site-body .investors-investment__footer a:focus-visible .investors-investment__footer-arrow-icon,
body.site-body .site-footer__meeting:focus-visible .site-footer__meeting-arrow,
body.site-body .site-footer__mobile-meeting:focus-visible .site-footer__mobile-meeting-arrow {
    transform: rotate(45deg) !important;
}
/* === /PUBLIC CTA HOVER COVERAGE === */

/* === PUBLIC CTA FINAL HOVER CLEANUP 2026-09-10 === */
body.site-body :is(
    .site-header__investors,
    .site-mobile-menu__investors,
    .home-hero__primary-button,
    .home-metrics__cta,
    .home-technical__cta,
    .home-contact__submit,
    .consultation-popup__form button,
    .home-investment__button--dark,
    .about-hero__cta,
    .about-documents__cta,
    .about-portfolio-card__button,
    .about-tasks__map-link,
    .home-blog__all-link,
    .blog-subscribe__form button,
    .blog-featured__side-card a,
    .blog-latest__filters button,
    .blog-latest__more,
    .blog-next__card a,
    .investors-hero__button--dark,
    .investors-hero-summary__cta,
    .investors-contact__submit,
    .residents-hero__button--dark,
    .residents-contact__submit,
    .contacts-form .residents-contact__submit,
    .portfolio-contact .residents-contact__submit,
    .residents-inventory-filters__reset,
    .residents-inventory-table__action button,
    .residents-request-modal__form button[type='submit'],
    .contacts-form__submit,
    .contacts-map__tab,
    .contacts-meeting__cta,
    .investors-investment__footer a,
    .portfolio-detail-contact__submit
) {
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease, filter 220ms ease !important;
}

body.site-body :is(
    .home-hero__secondary-button,
    .home-investment__button--light,
    .home-comfort__cta,
    .home-residency-background__cta,
    .home-team__cta,
    .team-hero__cta,
    .investors-hero__button--light,
    .residents-hero__button--light,
    .investors-portfolio-card__button,
    .residents-inventory-card__request
) {
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease, filter 220ms ease !important;
}

body.site-body :is(
    .site-header__investors,
    .site-mobile-menu__investors,
    .home-hero__primary-button,
    .home-hero__secondary-button,
    .home-investment__button,
    .home-comfort__cta,
    .home-metrics__cta,
    .home-contact__submit,
    .home-residency-background__cta,
    .home-team__cta,
    .team-hero__cta,
    .about-hero__cta,
    .about-tasks__map-link,
    .about-documents__cta,
    .about-portfolio-card__button,
    .blog-header__link,
    .blog-subscribe__form button,
    .blog-featured__side-card a,
    .blog-next__card a,
    .investors-hero__button,
    .investors-hero-summary__cta,
    .investors-portfolio-card__button,
    .investors-contact__submit,
    .residents-hero__button,
    .residents-contact__submit,
    .contacts-form .residents-contact__submit,
    .portfolio-contact .residents-contact__submit,
    .residents-inventory-card__request,
    .residents-inventory-table__action button,
    .residents-request-modal__form button[type='submit'],
    .contacts-form__submit,
    .contacts-map__tab,
    .contacts-meeting__cta,
    .portfolio-detail-contact__submit
) img[src*="arrow-"] {
    transform-origin: 50% 50%;
    transition: transform 220ms ease, filter 220ms ease !important;
}

body.site-body :is(
    .investors-investment__footer-arrow-glyph,
    .investors-investment__footer-arrow-icon,
    .site-footer__meeting-arrow,
    .site-footer__mobile-meeting-arrow
) {
    transform-origin: 50% 50%;
    transition: transform 220ms ease, filter 220ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
    body.site-body :is(
        .site-header__investors,
        .site-mobile-menu__investors,
        .home-hero__primary-button,
        .home-metrics__cta,
        .home-technical__cta,
        .home-contact__submit,
        .consultation-popup__form button,
        .home-investment__button--dark,
        .about-hero__cta,
        .about-documents__cta,
        .about-portfolio-card__button,
        .about-tasks__map-link,
        .home-blog__all-link,
        .blog-subscribe__form button,
        .blog-featured__side-card a,
        .blog-latest__filters button,
        .blog-latest__more,
        .blog-next__card a,
        .investors-hero__button--dark,
        .investors-hero-summary__cta,
        .investors-contact__submit,
        .residents-hero__button--dark,
        .residents-contact__submit,
        .contacts-form .residents-contact__submit,
        .portfolio-contact .residents-contact__submit,
        .residents-inventory-filters__reset,
        .residents-inventory-table__action button,
        .residents-request-modal__form button[type='submit'],
        .contacts-form__submit,
        .contacts-map__tab,
        .contacts-meeting__cta,
        .investors-investment__footer a,
        .portfolio-detail-contact__submit
    ):hover {
        background-color: #00B9B0 !important;
        border-color: #00B9B0 !important;
        color: #ffffff !important;
        text-decoration: none !important;
    }

    body.site-body :is(
        .home-hero__secondary-button,
        .home-investment__button--light,
        .home-comfort__cta,
        .home-residency-background__cta,
        .home-team__cta,
        .team-hero__cta,
        .investors-hero__button--light,
        .residents-hero__button--light,
        .investors-portfolio-card__button,
        .residents-inventory-card__request
    ):hover {
        background-color: #f2f2f2 !important;
        border-color: #f2f2f2 !important;
        color: #1f1f1f !important;
        text-decoration: none !important;
    }

    body.site-body :is(
        .site-header__investors,
        .site-mobile-menu__investors,
        .home-hero__primary-button,
        .home-hero__secondary-button,
        .home-investment__button,
        .home-comfort__cta,
        .home-metrics__cta,
        .home-contact__submit,
        .home-residency-background__cta,
        .home-team__cta,
        .team-hero__cta,
        .about-hero__cta,
        .about-tasks__map-link,
        .about-documents__cta,
        .about-portfolio-card__button,
        .blog-header__link,
        .blog-subscribe__form button,
        .blog-featured__side-card a,
        .blog-next__card a,
        .investors-hero__button,
        .investors-hero-summary__cta,
        .investors-portfolio-card__button,
        .investors-contact__submit,
        .residents-hero__button,
        .residents-contact__submit,
        .contacts-form .residents-contact__submit,
        .portfolio-contact .residents-contact__submit,
        .residents-inventory-card__request,
        .residents-inventory-table__action button,
        .residents-request-modal__form button[type='submit'],
        .contacts-form__submit,
        .contacts-map__tab,
        .contacts-meeting__cta,
        .portfolio-detail-contact__submit
    ):hover img[src*="arrow-"] {
        transform: rotate(45deg) !important;
    }

    body.site-body :is(
        .home-hero__secondary-button,
        .home-investment__button--light,
        .home-comfort__cta,
        .home-residency-background__cta,
        .home-team__cta,
        .team-hero__cta,
        .investors-hero__button--light,
        .residents-hero__button--light,
        .investors-portfolio-card__button,
        .residents-inventory-card__request
    ):hover img[src*="arrow-"] {
        filter: brightness(0) !important;
    }

    body.site-body .investors-investment__footer a:hover :is(.investors-investment__footer-arrow-glyph, .investors-investment__footer-arrow-icon),
    body.site-body .site-footer__meeting:hover .site-footer__meeting-arrow,
    body.site-body .site-footer__mobile-meeting:hover .site-footer__mobile-meeting-arrow {
        transform: rotate(45deg) !important;
    }
}

body.site-body :is(
    .site-header__investors,
    .site-mobile-menu__investors,
    .home-hero__primary-button,
    .home-metrics__cta,
    .home-technical__cta,
    .home-contact__submit,
    .consultation-popup__form button,
    .home-investment__button--dark,
    .about-hero__cta,
    .about-documents__cta,
    .about-portfolio-card__button,
    .about-tasks__map-link,
    .home-blog__all-link,
    .blog-subscribe__form button,
    .blog-featured__side-card a,
    .blog-latest__filters button,
    .blog-latest__more,
    .blog-next__card a,
    .investors-hero__button--dark,
    .investors-hero-summary__cta,
    .investors-contact__submit,
    .residents-hero__button--dark,
    .residents-contact__submit,
    .contacts-form .residents-contact__submit,
    .portfolio-contact .residents-contact__submit,
    .residents-inventory-filters__reset,
    .residents-inventory-table__action button,
    .residents-request-modal__form button[type='submit'],
    .contacts-form__submit,
    .contacts-map__tab,
    .contacts-meeting__cta,
    .investors-investment__footer a,
    .portfolio-detail-contact__submit
):focus-visible {
    background-color: #00B9B0 !important;
    border-color: #00B9B0 !important;
    color: #ffffff !important;
    outline: none !important;
    text-decoration: none !important;
}

body.site-body :is(
    .home-hero__secondary-button,
    .home-investment__button--light,
    .home-comfort__cta,
    .home-residency-background__cta,
    .home-team__cta,
    .team-hero__cta,
    .investors-hero__button--light,
    .residents-hero__button--light,
    .investors-portfolio-card__button,
    .residents-inventory-card__request
):focus-visible,
body.site-body :is(
    .home-hero__secondary-button,
    .home-investment__button--light,
    .home-comfort__cta,
    .home-residency-background__cta,
    .home-team__cta,
    .team-hero__cta,
    .investors-hero__button--light,
    .residents-hero__button--light,
    .investors-portfolio-card__button,
    .residents-inventory-card__request
):active {
    background-color: #f2f2f2 !important;
    border-color: #f2f2f2 !important;
    color: #1f1f1f !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

body.site-body :is(
    .site-header__investors,
    .site-mobile-menu__investors,
    .home-hero__primary-button,
    .home-hero__secondary-button,
    .home-investment__button,
    .home-comfort__cta,
    .home-metrics__cta,
    .home-contact__submit,
    .home-residency-background__cta,
    .home-team__cta,
    .team-hero__cta,
    .about-hero__cta,
    .about-tasks__map-link,
    .about-documents__cta,
    .about-portfolio-card__button,
    .blog-header__link,
    .blog-subscribe__form button,
    .blog-featured__side-card a,
    .blog-next__card a,
    .investors-hero__button,
    .investors-hero-summary__cta,
    .investors-portfolio-card__button,
    .investors-contact__submit,
    .residents-hero__button,
    .residents-contact__submit,
    .contacts-form .residents-contact__submit,
    .portfolio-contact .residents-contact__submit,
    .residents-inventory-card__request,
    .residents-inventory-table__action button,
    .residents-request-modal__form button[type='submit'],
    .contacts-form__submit,
    .contacts-map__tab,
    .contacts-meeting__cta,
    .portfolio-detail-contact__submit
):focus-visible img[src*="arrow-"] {
    transform: rotate(45deg) !important;
}

body.site-body :is(
    .home-hero__secondary-button,
    .home-investment__button--light,
    .home-comfort__cta,
    .home-residency-background__cta,
    .home-team__cta,
    .team-hero__cta,
    .investors-hero__button--light,
    .residents-hero__button--light,
    .investors-portfolio-card__button,
    .residents-inventory-card__request
):focus-visible img[src*="arrow-"],
body.site-body :is(
    .home-hero__secondary-button,
    .home-investment__button--light,
    .home-comfort__cta,
    .home-residency-background__cta,
    .home-team__cta,
    .team-hero__cta,
    .investors-hero__button--light,
    .residents-hero__button--light,
    .investors-portfolio-card__button,
    .residents-inventory-card__request
):active img[src*="arrow-"] {
    filter: brightness(0) !important;
}

body.site-body .investors-investment__footer a:focus-visible :is(.investors-investment__footer-arrow-glyph, .investors-investment__footer-arrow-icon),
body.site-body .site-footer__meeting:focus-visible .site-footer__meeting-arrow,
body.site-body .site-footer__mobile-meeting:focus-visible .site-footer__mobile-meeting-arrow {
    transform: rotate(45deg) !important;
}
/* === /PUBLIC CTA FINAL HOVER CLEANUP === */
