/* ===== Fonts ===== */
@font-face {
    font-family: 'Unbounded';
    src: url(resources/extracted/Unbounded/Unbounded-VariableFont_wght.woff2) format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Gogol';
    src: url(resources/two-section/gogol_regular.woff2) format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url(resources/extracted/Onest/Onest-VariableFont_wght.woff2) format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

/* ===== Variables ===== */
:root {
    --color-bg: #F4F7FB;
    --color-text: #4A4C4E;
    --color-white: #FFFFFF;
    --color-muted: #9DA2A7;
    --gradient-primary: linear-gradient(97.52deg, #128F70 12.25%, #8CC900 93.58%);
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Onest', sans-serif;
    --font-script: 'Gogol', cursive;
}

/* ===== Reset ===== */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

/* ===== Header ===== */
.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 10px 8px 15px;
    gap: 23px;

    position: fixed;
    width: 670px;
    height: 64px;
    left: calc(50% - 670px / 2);
    top: 8px;
    z-index: 100;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
}

.header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 17px;
}

.header__link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: opacity 0.2s;
}

.header__link:hover {
    opacity: 0.6;
}

.header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 157px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    transition: opacity 0.2s;
    margin-left: auto;
}

.header__btn:hover {
    opacity: 0.85;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-bg);
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 35px;
    z-index: 2;
}

/* Glass palm decoration — anchored to left edge of hero */
.hero__palma {
    position: absolute;
    left: -369px;
    bottom: -510px;
    transform: rotate(2deg);
    width: 806px;
    pointer-events: none;
    z-index: 3;
}

@media (max-width: 1800px) {
    .hero__palma {
        width: 890px;
        left: -410px;
        bottom: -716px;
        transform: rotate(13deg);
    }
}

@media (max-width: 1400px) {
    .hero__palma {
        width: 637px;
        left: -300px;
        bottom: -395px;
        transform: rotate(3deg);
    }
}

@media (max-width: 1100px) {
    .hero__palma {
        display: none;
    }
}



/* Center island image */
.hero__center {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 761px;
    margin: 0 auto;
}

/* Logo — hidden on desktop, shown on mobile */
.hero__logo-mobile {
    display: none;
}

.hero__headblock {
    width: 100%;
    height: auto;
}

/* Bottom content */
.hero__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: -20px;
    padding-bottom: 120px;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.15;
    color: var(--color-text);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-muted);
    margin-top: 20px;
}

/* Stats card — absolute relative to .hero on desktop */
.hero__stats {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 530px;
    height: 100px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 4;
}

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

.hero__stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__stats-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding-left: 36px;
}

.hero__stats-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hero__stats-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 48px;
    color: var(--color-white);
    line-height: 1;
    min-width: 4ch;
    font-variant-numeric: tabular-nums;
}

.hero__stats-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-white);
}

.hero__stats-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
}

.hero__stats-astronaut {
    position: absolute;
    right: -10px;
    bottom: 0;
    height: 110px;
    width: auto;
    z-index: 2;
}

/* ===== Coworking Section ===== */
.coworking {
    position: relative;
    padding: 80px 20px;
    background-color: var(--color-bg);
    overflow: visible;
}

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

.coworking__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    color: var(--color-text);
}

.coworking__subtitle {
    font-family: var(--font-script);
    font-size: 32px;
    color: #128F70;
    margin-top: 4px;
    display: inline-block;
    transform: rotate(-6deg);
    margin-left: 25%;
}

.coworking__cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.coworking__card {
    flex: 1;
    max-width: 230px;
    background: var(--color-white);
    border-radius: 20px;
    padding: 16px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px dashed #D9D9D9;
    border-radius: 15px;
    transition: border-color 0.3s ease;
}

.coworking__card:hover {
    border-color: #15916E;
}


.coworking__card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

.coworking__card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text);
    margin-top: 16px;
    line-height: 1.3;
}

.coworking__card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-muted);
    margin-top: 8px;
    line-height: 1.4;
}

.coworking__palma {
    position: absolute;
    right: -369px;
    bottom: -413px;
    transform: scaleX(-1) rotate(2deg);
    width: 806px;
    pointer-events: none;
    z-index: 3;
}

@media (max-width: 1800px) {
    .coworking__palma {
        width: 890px;
        right: -410px;
        bottom: -413px;
        transform: scaleX(-1) rotate(13deg);
    }
}

@media (max-width: 1700px) {
    .coworking__palma {
        width: 637px;
        right: -300px;
        bottom: -74px;
        transform: scaleX(-1) rotate(3deg);
    }
}

@media (max-width: 1400px) {
    .coworking__palma {
        width: 637px;
        right: -300px;
        bottom: -74px;
        transform: scaleX(-1) rotate(3deg);
    }
}

/* Ваша работа у моря – Награда за результаты */

@media (max-width: 1100px) {
    .coworking__palma {
        display: none;
    }
}

/* ===== Hub Life Section ===== */
.hub-life {
    position: relative;
    padding: 80px 20px 100px;
    background-color: var(--color-bg);
    overflow: hidden;
}

.hub-life::before {
    content: '';
    position: absolute;
    width: 334px;
    height: 350px;
    right: 163px;
    top: 200px;
    background: #C3FFB0;
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hub-life__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 48px;
}

.hub-life__gallery {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 340px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Зелёное свечение в центре */
.hub-life__glow {
    position: absolute;
    width: 500px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(140, 201, 0, 0.35) 0%, rgba(18, 143, 112, 0.2) 50%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Базовые стили карточки */
.hub-life__image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.45s ease,
        z-index 0s;
    will-change: transform;
}

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

/* Раскладка карточек — фан-эффект */
.hub-life__image--1 {
    width: 230px;
    height: 270px;
    left: 50px;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    z-index: 3;
}

.hub-life__image--2 {
    width: 210px;
    height: 250px;
    left: 185px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    z-index: 4;
}

.hub-life__image--3 {
    width: 220px;
    height: 265px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 5;
}

.hub-life__image--4 {
    width: 210px;
    height: 250px;
    right: 185px;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    z-index: 4;
}

.hub-life__image--5 {
    width: 190px;
    height: 230px;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    z-index: 3;
}

.hub-life__image--6 {
    width: 175px;
    height: 215px;
    right: 0px;
    top: 50%;
    transform: translateY(-55%) rotate(16deg);
    z-index: 2;
}

.hub-life__image--7 {
    width: 170px;
    height: 200px;
    left: 0px;
    top: 50%;
    transform: translateY(-55%) rotate(-16deg);
    z-index: 2;
}

/* Hover — карточка поднимается и выходит на первый план */
.hub-life__image:hover {
    transform: translateY(-50%) rotate(0deg) scale(1.07) !important;
    z-index: 10 !important;
    box-shadow: 0 24px 60px rgba(18, 143, 112, 0.28), 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Для карточек с translate(-50%, -50%) нужен отдельный hover */
.hub-life__image--3:hover {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.07) !important;
}

/* Плашка и стрелка при наведении на карточку */
.hub-life__tooltip-text {
    position: absolute;
    z-index: 20;
    background: #15916E;
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.hub-life__tooltip-text.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hub-life__tooltip-arrow {
    position: absolute;
    z-index: 20;
    width: 60px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transform-origin: center center;
    clip-path: inset(0 100% 0 0);
}

.hub-life__tooltip-arrow.is-visible {
    opacity: 0.6;
    animation: draw-arrow 0.8s ease forwards;
}

@keyframes draw-arrow {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

/* ===== Explore Section ===== */
.explore {
    padding: 80px 0 100px;
    background-color: var(--color-bg);
}

.explore__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 48px;
}

.explore__video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    max-height: calc(100vh);
    background: #000;
}

/* White inner frame overlay — always visible */
.explore__video-wrapper::before {
    content: '';
    position: absolute;
    inset: 32px;
    border: 20px solid var(--color-white);
    border-radius: 22px;
    z-index: 4;
    pointer-events: none;
}

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

.explore__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: none;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.explore__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.explore__video-wrapper.is-playing .explore__play-btn {
    opacity: 0;
    pointer-events: none;
}

.explore__fullscreen-btn {
    position: absolute;
    top: 52px;
    right: 52px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s;
}

.explore__fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.explore__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}


.explore__person {
    display: flex;
    flex-direction: column;
}

.explore__person-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-white);
}

.explore__person-role {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.explore__features {
    position: absolute;
    bottom: 52px;
    right: 152px;
    left: 55%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 5;
    background: #FFFFFF;
    padding: 20px 24px;
    border-radius: 20px 20px 0 0;
}

/* Inverse radius — left side */
.explore__features::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -16px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 0 0, transparent 16px, #FFFFFF 16px);
}

/* Inverse radius — right side */
.explore__features::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -16px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 100% 0, transparent 16px, #FFFFFF 16px);
}



.explore__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.explore__feature img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.explore__feature span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.3;
}

/* Explore responsive */
@media (max-width: 1200px) {
    .explore__video-wrapper::before {
        inset: 20px;
        border-width: 14px;
        border-bottom-width: 50px;
        border-radius: 18px;
    }

    .explore__features {
        bottom: 20px;
        left: 34px;
        right: 34px;
        height: 50px;
        gap: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
    }

    .explore__features::before,
    .explore__features::after {
        display: none;
    }

    .explore__person-name {
        font-size: 22px;
    }

    .explore__person-role {
        font-size: 14px;
    }

    .explore__feature span {
        font-size: 10px;
    }

    .explore__feature img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 900px) {
    .explore__video-wrapper::before {
        inset: 12px;
        border-width: 10px;
        border-bottom-width: 40px;
        border-radius: 14px;
    }

    .explore__features {
        bottom: 12px;
        left: 22px;
        right: 22px;
        height: 40px;
        gap: 6px;
    }

    .explore__title {
        font-size: 28px;
    }

    .explore__person-name {
        font-size: 18px;
    }

    .explore__person-role {
        font-size: 12px;
    }

    .explore__overlay {
        padding: 20px;
    }

    .explore__feature span {
        font-size: 9px;
    }

    .explore__feature img {
        width: 14px;
        height: 14px;
    }

    .explore__play-btn svg {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 600px) {
    .explore__video-wrapper::before {
        inset: 8px;
        border-width: 6px;
        border-bottom-width: 30px;
        border-radius: 10px;
    }

    .explore__features {
        bottom: 8px;
        left: 14px;
        right: 14px;
        height: 30px;
        gap: 4px;
    }

    .explore__title {
        font-size: 22px;
    }

    .explore__person-name {
        font-size: 14px;
    }

    .explore__person-role {
        font-size: 10px;
    }

    .explore__overlay {
        padding: 14px;
    }

    .explore__feature span {
        font-size: 7px;
    }

    .explore__feature img {
        width: 12px;
        height: 12px;
    }

    .explore__play-btn svg {
        width: 36px;
        height: 36px;
    }
}

/* ===== How To Section ===== */
.howto {
    position: relative;
    padding: 80px 20px 100px;
    background-color: var(--color-bg);
    overflow: hidden;
}

.howto::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 250px;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: #C3FFB0;
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

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

.howto__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 44px;
    color: var(--color-text);
}

.howto__title-accent {
    position: relative;
    display: inline;
}

.howto__stroke {
    position: absolute;
    left: -15px;
    top: -30px;
    width: calc(111% + 90px);
    height: calc(100% + 68px);
    pointer-events: none;
    object-fit: fill;
    max-width: 104%;
}

.howto__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.howto__card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.howto__step {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
    background: var(--color-bg);
    padding: 6px 14px;
    border-radius: 10px;
    align-self: flex-start;
}

.howto__card-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    margin: 16px 0;
}

.howto__card-illustration img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Step 1 — fake button + cursor */
.howto__fake-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--gradient-primary);
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    pointer-events: none;
}

.howto__cursor {
    position: absolute;
    bottom: 20px;
    left: calc(50% + 40px);
    width: 32px;
    pointer-events: none;
}

.howto__card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 8px;
}

.howto__card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-muted);
    line-height: 1.5;
}

.howto__action {
    text-align: center;
    margin-top: 48px;
}

.howto__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.howto__btn:hover {
    opacity: 0.85;
}

/* ===== First Visit Section ===== */
.first-visit {
    padding: 80px 20px 100px;
    background-color: var(--color-bg);
}

.first-visit__header {
    text-align: center;
    margin-bottom: 56px;
}

.first-visit__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 44px;
    color: var(--color-text);
    line-height: 1.2;
}

.first-visit__subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-muted);
    margin-top: 16px;
}

.first-visit__content {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Left: photos area */
.first-visit__photos {
    position: relative;
    flex-shrink: 0;
    width: 480px;
    height: 560px;
}

.first-visit__photo-main {
    position: absolute;
    left: 0;
    top: 60px;
    width: 280px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
}

.first-visit__photo-main img {
    width: 100%;
    display: block;
}

.first-visit__photo-secondary {
    position: absolute;
    right: 48px;
    top: 29px;
    width: 230px;
    border-radius: 24px;
    transform: rotate(12deg);
    z-index: 0;
}

.first-visit__photo-secondary img {
    border-radius: 24px;
}

.first-visit__photo-secondary img {
    width: 100%;
    display: block;
}

/* Badges */
.first-visit__badge {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    white-space: nowrap;
    position: absolute;
    z-index: 2;
}

.first-visit__badge--door {
    top: 20px;
    left: 20px;
    background: var(--color-white);
    color: var(--color-muted);
    border: 1px dashed #D9D9D9;
    border-radius: 14px;
    white-space: normal;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    padding: 10px 16px;
    line-height: 1.3;
}

.first-visit__badge--office {
    position: absolute;
    top: -54px;
    left: 75%;
    transform: translateX(-50%);
    background: #15916E;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    z-index: 3;
}

.first-visit__badge--entrance {
    bottom: 110px;
    left: 100px;
    background: #73BE5B;
    color: var(--color-white);
    font-size: 24px;
    font-weight: inherit;
    padding: 8px 20px;
    border-radius: 30px;
    transform: rotate(-8deg);
}

/* Arrows */
.first-visit__arrow-left {
    position: absolute;
    top: 342px;
    left: 318px;
    width: 40px;
    opacity: 1;
    pointer-events: none;
}

.first-visit__arrow-down {
    position: absolute;
    bottom: 545px;
    left: 306px;
    width: 40px;
    opacity: 0.5;
    pointer-events: none;
}

/* Right: steps */
.first-visit__steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 20px;
}

.first-visit__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-white);
    border-radius: 20px;
    padding: 24px;
    border: 1px dashed #D9D9D9;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.first-visit__step:hover {
    border-color: #15916E;
}

.first-visit__step:hover .first-visit__step-text h3 {
    color: #15916E;
}

.first-visit__step .first-visit__step-icon {
    transition: filter 0.3s ease;
}

.first-visit__step:hover .first-visit__step-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(52%) saturate(530%) hue-rotate(113deg) brightness(95%) contrast(92%);
}

.first-visit__step-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
}

.first-visit__step-text h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.first-visit__step-text p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-muted);
    margin-top: 6px;
    line-height: 1.4;
}

.first-visit__note {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.5;
    margin-top: 8px;
}

.first-visit__note strong {
    color: var(--color-text);
}

/* ===== Team Section ===== */
.team {
    padding: 80px 20px 100px;
    background-color: var(--color-bg);
}

.team__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 44px;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 48px;
}

.team__cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.team__card {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.team__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 16px;
}

.team__photo img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.team__icon {
    position: absolute;
    bottom: 2px;
    right: 0px;
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(0%) saturate(0%) hue-rotate(0deg);
    transition: filter 0.3s ease;
}

.team__card:hover .team__icon {
    filter: brightness(0) saturate(100%) invert(67%) sepia(34%) saturate(628%) hue-rotate(45deg);
}

.team__name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.team__role {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-muted);
    margin-top: 4px;
    line-height: 1.4;
}


.reviews {
    padding: 80px 20px;
    background: #f5f7f6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 44px;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 12px;
}

.reviews__subtitle {
    font-family: var(--font-script);
    font-size: 32px;
    color: #73BE5B;
    margin-top: -26px;
    display: inline-block;
    transform: rotate(-4deg);
    margin-left: 50%;
}

.reviews__list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    max-width: 500px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
}

.review-card__text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

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

.avatar {
    width: 40px;
    height: 40px;
}

.name {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.role {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.reviews__button {
    padding: 12px 24px;
    border-radius: 999px;
    border: 2px solid #73BE5B;
    background: transparent;
    color: #73BE5B;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.reviews__button:hover {
    background: #73BE5B;
    color: #fff;
}

.review-header {
    text-align: center;
    margin-bottom: 48px;
}

/* ===== Sochi Guide Section ===== */
.guide {
    padding: 80px 20px;
    background-color: var(--color-bg);
}

.guide__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 44px;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 48px;
}

/* Carousel */
.guide__cards {
    display: flex;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.guide__card {
    width: 120px;
    min-width: 120px;
    height: 380px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px dashed #D9D9D9;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.5s ease, min-width 0.5s ease, flex 0.5s ease,
                background 0.5s ease, border-color 0.5s ease;
}

.guide__card.is-active {
    width: auto;
    min-width: 0;
    flex: 1;
    background: #73BE5B;
    border-color: transparent;
}

/* Body — text + image side by side */
.guide__card-body {
    flex: 1;
    display: flex;
    gap: 12px;
    overflow: hidden;
    min-height: 0;
}

/* Text — zero width when collapsed, expands when active */
.guide__card-text {
    width: 0;
    flex-shrink: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.5s ease, opacity 0.3s ease 0.15s;
}

.guide__card.is-active .guide__card-text {
    width: 65%;
    opacity: 1;
}

/* Image — fills body when collapsed, shrinks to top-right when active */
.guide__card-img {
    flex: 1;
    min-width: 0;
    max-height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    align-self: flex-start;
    transition: max-height 0.5s ease;
}

.guide__card.is-active .guide__card-img {
    max-height: 177px;
}

.guide__card-text p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 1.9;
    white-space: nowrap;
}

.guide__card-text h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    margin-top: 8px;
}

.guide__card-text h4:first-child {
    margin-top: 0;
}

.guide__partner {
    color: #d4ffc8 !important;
}

.guide__rating {
    font-weight: 700;
    color: #d4ffc8;
    margin-left: 4px;
    font-size: 11px;
}

.guide__dots {
    letter-spacing: 2px;
}

.guide__subcategory {
    display: flex;
    gap: 32px;
}

.guide__more {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.guide__more:hover {
    opacity: 1;
}

/* Footer — always visible */
.guide__card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.guide__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.4s, background 0.4s;
    overflow: hidden;
}

.guide__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.guide__card.is-active .guide__card-icon {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.guide__card-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: opacity 0.3s, max-width 0.5s;
}

.guide__card.is-active .guide__card-label {
    opacity: 1;
    max-width: 300px;
    color: #fff;
}

.guide__note {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-muted);
    max-width: 1100px;
    margin: 20px auto 0;
}

.location {
    padding: 80px 20px;
    background: #f5f7f6;
}

.location__wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.location__info {
    max-width: 420px;
}

.location__title {
    font-size: 36px;
    margin-bottom: 30px;
}

.location__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location__item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    border: 1px dashed #ddd;
    background: #fff;
}

.icon {
    font-size: 22px;
}

.title {
    font-weight: 600;
    margin: 0;
}

.desc {
    font-size: 14px;
    color: #888;
    margin: 4px 0 0;
}

.location__map {
    flex: 1;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.marker--green {
    background-image: url('/resources/sberIcon.webp');
    background-color: transparent;
    /* убираем зеленый фон */
}

.marker--gray {
    background: #555;
    width: 20px;
    height: 20px;
}

/* пульс эффект (только для зеленого маркера) */
.marker--green::after {
    content: "";
    position: absolute;
    inset: -4px;
    /* чтобы пульс был вокруг границы */
    border-radius: 50%;
    border: 2px solid #6bbf59;
    animation: pulse 1.5s infinite;
    pointer-events: none;
    /* чтобы не мешал кликам */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ===== Contact / Footer ===== */
.contact {
    position: relative;
    background: #73BE5B;
    padding: 80px 60px;
    overflow: visible;
    border-radius: 30px;
    z-index: 2;
    margin-bottom: -60px;
}

.contact__bg-logo {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
    width: 500px;
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
}

.contact__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.contact__left {
    flex-shrink: 0;
    max-width: 350px;
}

.contact__logo {
    position: absolute;
    top: 0;
    left: 60px;
    transform: translateY(-50%);
    width: 180px;
    height: auto;
    z-index: 5;
}

.contact__center {
    flex: 1;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
}

.contact__desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.contact__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__list li {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 20px;
    position: relative;
}

.contact__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
}

.contact__right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: opacity 0.3s;
}

.contact__link:hover {
    opacity: 0.8;
}

.contact__link img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Contact responsive */
@media (max-width: 1100px) {
    .contact__content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .contact__center {
        flex-basis: 100%;
        order: -1;
    }

    .contact__left {
        order: 0;
    }

    .contact__right {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 50px 30px;
        border-radius: 20px 20px 0 0;
    }

    .contact__content {
        flex-direction: column;
        gap: 30px;
    }

    .contact__title {
        font-size: 20px;
    }

    .contact__bg-logo {
        width: 300px;
        right: -10%;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 40px 20px;
    }

    .contact__title {
        font-size: 18px;
    }

    .contact__link span {
        font-size: 13px;
    }
}

/* ===== Footer ===== */
.footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.footer__bg {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    display: block;
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) -5.56%, rgba(102, 102, 102, 0) 128.61%);
    z-index: 0;
}

.footer__card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 1;
    width: 60%;
    height: 50%;
    padding: 38px 96px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}



.footer__columns {
    display: flex;
    gap: 80px;
    position: relative;
}

.footer__columns::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 200px;
    background: rgba(255, 255, 255, 0.5);
}

.footer__col {
    flex: 1;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer__label {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.footer__label--mt {
    margin-top: 24px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer__link:hover {
    opacity: 0.75;
}

.footer__link img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer__info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 4px;
}

.footer__info-row img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer__info-bold {
    font-weight: 700;
    font-size: 15px;
    display: block;
}

.footer__info-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.footer__script {
    font-family: var(--font-script);
    font-size: 52px;
    color: #fff;
    margin-top: 40px;
    transform: rotate(-5deg);
}

/* Footer responsive */

@media (max-width: 1450px) {
    .footer__card {
        width: 93%;
        font-size: 14px;
    }

    .footer__heading {
        font-size: 20px;
    }

    .footer__label {
        font-size: 12px;
    }

    .footer__script {
        font-size: 40px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        min-height: 400px;
    }

    .footer__card {
        margin: 30px;
        padding: 30px;
    }

    .footer__columns {
        flex-direction: column;
        gap: 40px;
    }

    .footer__script {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .footer__card {
        margin: 20px;
        padding: 24px;
    }

    .footer__heading {
        font-size: 18px;
    }

    .footer__script {
        font-size: 24px;
    }
}

/* ===== Application Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    width: 100%;
    max-width: 620px;
    background: var(--color-bg);
    border-radius: 30px 30px 0 0;
    padding: 40px 48px 48px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.is-open .modal {
    transform: translateY(0);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.modal__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--color-text);
}

.modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
    line-height: 0;
}

.modal__close:hover {
    opacity: 0.6;
}

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

.modal__input {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px dashed #D9D9D9;
    border-radius: 16px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    outline: none;
    transition: border-color 0.3s;
}

.modal__input::placeholder {
    color: #C5C9CD;
}

.modal__input:focus {
    border-color: #15916E;
    border-style: solid;
}

.modal__input--date {
    max-width: 280px;
}

.modal__format {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.modal__format-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 30px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #C5C9CD;
    cursor: pointer;
    transition: all 0.3s;
}

.modal__format-btn.is-active {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
}

.modal__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 4px;
    user-select: none;
}

.modal__checkbox input {
    display: none;
}

.modal__checkmark-box {
    width: 22px;
    height: 22px;
    border: 2px solid #D9D9D9;
    border-radius: 6px;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
}

.modal__checkbox input:checked+.modal__checkmark-box {
    background: var(--gradient-primary);
    border-color: transparent;
}

.modal__checkbox input:checked+.modal__checkmark-box::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal__checkbox-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: #C5C9CD;
}

.modal__submit {
    margin-top: 20px;
    padding: 18px;
    border: none;
    border-radius: 20px;
    background: var(--gradient-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 55%;
    align-self: center;
}

.modal__submit:hover {
    opacity: 0.85;
}

/* Success state */
.modal__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.modal__success-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 60px;
    border: 2px solid #73BE5B;
    border-radius: 20px;
    background: #fff;
    animation: card-appear 0.4s ease;
}

@keyframes card-appear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal__success-icon {
    animation: bounce-in 0.5s ease;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.modal__success-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: draw-check 0.5s 0.35s ease forwards;
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

.modal__success-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

/* ===== Responsive ===== */

/* Burger & mobile logo — hidden on desktop */
.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
}

.hero__cta-mobile {
    display: none;
}

/* Mobile menu — hidden by default */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 18px;
    z-index: 200;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--color-muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.mobile-menu__link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu__link:hover {
    color: #15916E;
}

/* ---- < 750px: burger header + hero stats overlay ---- */
@media (max-width: 750px) {

    /* Hide desktop header bar, show burger + logo */
    .header {
        position: fixed;
        width: auto;
        height: auto;
        left: auto;
        top: auto;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        padding: 0;
        gap: 0;
    }

    .header__nav,
    .header__btn {
        display: none;
    }

    .header__burger {
        display: flex;
        position: fixed;
        top: 27px;
        left: 18px;
        z-index: 101;
    }

    /* Hero layout */
    .hero {
        padding-top: 15px;
        min-height: auto;
    }

    /* Logo — absolute inside hero, scrolls with page */
    .hero__logo-mobile {
        display: block;
        position: absolute;
        top: 20px;
        right: 18px;
        width: 72px;
        height: auto;
        z-index: 10;
    }

    .hero__center {
        position: relative;
    }

    .hero__bottom {
        margin-top: 0;
        padding: 0 20px;
        padding-bottom: 0;
    }

    /* Stats — absolute inside hero__center, bottom-right corner */
    .hero__stats {
        position: absolute;
        bottom: 8px;
        right: 10px;
        left: auto;
        top: auto;
        transform: none;
        width: 210px;
        height: 84px;
        border-radius: 16px;
        z-index: 5;
        clip-path: inset(4px 0 0 0 round 16px);
    }

    .hero__stats-content {
        padding-left: 14px;
    }

    .hero__stats-info {
        gap: 5px;
    }

    .hero__stats-number {
        font-size: 28px;
        min-width: auto;
    }

    .hero__stats-label {
        font-size: 11px;
    }

    .hero__stats-desc {
        font-size: 9px;
        max-width: 120px;
        line-height: 1.2;
    }

    .hero__stats-astronaut {
        height: 60px;
        right: -20px;
        top: 19px;
    }

    .hero__title {
        font-size: 28px;
        margin-top: 16px;
    }

    .hero__subtitle {
        font-size: 15px;
        margin-top: 14px;
        padding: 12px 16px;
        border: 1px solid #D9D9D9;
        border-radius: 16px;
    }

    /* Mobile CTA button */
    .hero__cta-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 44px;
        background: var(--gradient-primary);
        border-radius: 20px;
        font-family: var(--font-body);
        font-size: 15px;
        font-weight: 600;
        color: var(--color-white);
        text-decoration: none;
        margin-top: 24px;
        transition: opacity 0.2s;
    }

    .hero__cta-mobile:hover {
        opacity: 0.85;
    }
}

/* Coworking */
@media (max-width: 900px) {
    .coworking__cards {
        flex-wrap: wrap;
        max-width: 500px;
    }

    .coworking__card {
        max-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }

    .coworking__title {
        font-size: 32px;
    }

    .coworking__subtitle {
        font-size: 24px;
    }
}

@media (max-width: 750px) {
    .coworking__cards {
        flex-direction: column;
        max-width: 100%;
        gap: 12px;
    }

    .coworking__card {
        max-width: 100%;
        flex: none;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 12px;
        gap: 16px;
        border-radius: 16px;
    }

    .coworking__card-img {
        width: 130px;
        min-width: 130px;
        height: 100px;
        border-radius: 12px;
    }

    .coworking__card-title {
        margin-top: 0;
        font-size: 15px;
    }

    .coworking__card-title br {
        display: none;
    }

    .coworking__card-desc {
        margin-top: 6px;
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .explore__feature span {
        font-size: 5px;
    }
}

/* Hub Life */
@media (max-width: 900px) {
    .explore__fullscreen-btn {
        top: 20px;
        right: 20px;
    }

    .hub-life__gallery {
        height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 20px;
    }

    .hub-life__image {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        height: 200px !important;
        border-radius: 16px;
    }

    .hub-life__image:hover {
        transform: scale(1.03) !important;
    }

    .hub-life__tooltip-text,
    .hub-life__tooltip-arrow {
        display: none;
    }

    .hub-life__title {
        font-size: 32px;
    }

    .hub-life__glow,
    .hub-life::before {
        display: none;
    }
}

@media (max-width: 500px) {
    .hub-life__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* How To */
@media (max-width: 900px) {
    .howto__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .howto__title {
        font-size: 32px;
    }
}

@media (max-width: 750px) {
    .howto__cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .howto__card {
        flex-direction: row;
        align-items: center;
        padding: 12px;
        gap: 16px;
    }

    .howto__card-illustration {
        min-width: 110px;
        width: 110px;
        height: 90px;
        margin: 0;
        flex-shrink: 0;
    }

    .howto__step {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 11px;
        padding: 4px 10px;
        border-radius: 8px;
    }

    .howto__card {
        position: relative;
    }

    .howto__card-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .howto__card-desc {
        font-size: 12px;
    }

    .howto__title {
        font-size: 24px;
    }
}

/* First Visit */
@media (max-width: 900px) {
    .first-visit__content {
        flex-direction: column;
        align-items: center;
    }

    .first-visit__photos {
        width: 100%;
        max-width: 400px;
        height: 420px;
    }

    .first-visit__title {
        font-size: 32px;
    }

    .first-visit__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .first-visit__photos {
        height: 320px;
    }

    .first-visit__photo-main {
        width: 180px;
    }

    .first-visit__photo-secondary {
        width: 140px;
        right: 20px;
    }

    .first-visit__title {
        font-size: 24px;
    }

    .first-visit__badge--entrance {
        font-size: 16px;
    }
}

/* Team */
@media (max-width: 900px) {
    .team__cards {
        flex-wrap: wrap;
    }

    .team__card {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }

    .team__title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .team__card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .team__title {
        font-size: 24px;
    }
}

/* Reviews */
@media (max-width: 768px) {
    .reviews__title {
        font-size: 28px;
    }

    .reviews__subtitle {
        font-size: 24px;
        margin-left: 30%;
    }

    .review-card {
        max-width: 100%;
    }
}

/* Guide — mobile: horizontal scroll */
@media (max-width: 750px) {
    .guide {
        padding: 60px 0 60px;
    }

    .guide__title {
        font-size: 28px;
        margin-bottom: 24px;
        padding: 0 20px;
    }

    .guide__cards {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0 20px;
        max-width: 100%;
    }

    /* Hide scrollbar */
    .guide__cards::-webkit-scrollbar {
        display: none;
    }

    .guide__cards {
        scrollbar-width: none;
    }

    .guide__card {
        width: 55px;
        min-width: 55px;
        height: 280px;
        padding: 10px;
        gap: 8px;
        flex: none;
        scroll-snap-align: start;
        border-radius: 16px;
        transition: width 0.5s ease, min-width 0.5s ease,
                    background 0.5s ease, border-color 0.5s ease;
    }

    .guide__card.is-active {
        width: 260px;
        min-width: 260px;
        flex: none;
    }

    .guide__card.is-active .guide__card-img {
        max-height: 120px;
    }

    .guide__card.is-active .guide__card-text {
        width: 60%;
    }

    .guide__card-text p {
        font-size: 11px;
        line-height: 1.7;
    }

    .guide__card-text h4 {
        font-size: 11px;
    }

    .guide__card-label {
        opacity: 1;
        max-width: 200px;
        font-size: 10px;
    }

    .guide__card-icon {
        width: 32px;
        height: 32px;
        border-radius: 0px;
    }

    .guide__note {
        font-size: 11px;
        padding: 0 20px;
        margin-top: 16px;
    }
}

/* Location */
@media (max-width: 768px) {
    .location__wrapper {
        flex-direction: column;
    }

    .location__info {
        max-width: 100%;
    }

    .location__map {
        width: 100%;
        height: 300px !important;
    }

    .location__title {
        font-size: 28px;
    }
}

/* Modal */
@media (max-width: 600px) {
    .modal {
        padding: 30px 24px 36px;
        border-radius: 24px 24px 0 0;
    }

    .modal__title {
        font-size: 18px;
    }

    .modal__format {
        flex-wrap: wrap;
    }

    .modal__format-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .modal__submit {
        width: 100%;
    }

    .modal__success-card {
        padding: 30px 40px;
    }
}