/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Geologica', sans-serif;
}

input {
    border-radius: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #27282B;
    color: #fff;
    font-weight: 300;
}

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

/* Стили для хедера */
header {
    width: 100%;
}

.top-header {
    background-color: #1E1F24;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px; /* увеличенная высота */
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

/* Новый логотип в топ-хедере */
.top-header-logo img {
    max-height: 16px;
    height: auto;
}

.logo-text {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
}

.logo-text a {
    text-decoration: none;
    color: #fff;
}

.logo-text a:hover {
    color: #F4AEDC;
    transition: color 0.3s ease;
}

.slogan {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 200;
}

.contacts-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contacts {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contacts a:hover {
    color: #F4AEDC;
    transition: color 0.3s ease;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
}

.contact-item img {
    stroke: #fff;
    filter: brightness(0) invert(1);
}

/* Стили для выбора языка */
.language-container {
    position: relative;
    display: flex;
    align-items: center;
}

.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-selector img {
    stroke: #fff;
    filter: brightness(0) invert(1);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1E1F24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 8px 0;
    min-width: 120px;
    z-index: 100;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.language-dropdown.active {
    display: block;
}

.language-option {
    display: block;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background-color: rgba(244, 174, 220, 0.1);
    color: #F4AEDC;
}

@media (max-width: 768px) {
    .language-dropdown {
        right: -10px;
        top: calc(100% + 5px);
    }

    .top-header-logo img {
        max-height: 12px;
    }
}

/* Бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 15px;
    cursor: pointer;
    position: relative;
}

.burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.burger-menu.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Мобильное меню */
.mobile-menu {
    display: none;
    position: fixed;
    top: 50px; /* высота .top-header */
    left: 0;
    right: 0;
    background-color: #1E1F24;
    padding: 10px 5%;
    z-index: 90;
    overflow-y: auto;
    max-height: calc(100vh - 50px);
}

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

.mobile-menu ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

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

.bottom-header {
    background-color: #f8f8f8;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo img {
    max-height: 30px;
}

.header-button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Стили для hero секции */
.hero {
    position: relative;
    background-color: #27282B;
    background-size: cover;
    background-image: url('/uploads/bg-new-hero.jpg');
    background-position: center bottom;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 5% 80px;
    flex-grow: 1;
    position: relative;
}

/*.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, rgba(39, 40, 43, 0), #27282B);
    pointer-events: none;
}*/

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
    height: 100%;
    max-width: 1200px;
}

.hero-heading-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: left;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 60px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 550px;
}

.hero-subtitle {
    font-family: 'Geologica', sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: #fff;
}

.big-logo {
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-description {
    color: #fff;
    font-size: 16px;
    max-width: 700px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-top: -80px;
    font-weight: 300;
    display: none;
}

.notification-block {
    background-color: rgba(39, 40, 43, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    border: 1px solid #F4AEDC;
    position: fixed;
    bottom: 10px;
    z-index: 100;
    transition: padding 0.3s ease;
}

.coming-soon {
    color: #fff;
    font-size: 23px;
    white-space: nowrap;
    letter-spacing: 1px;
}

.notification-text {
    color: #fff;
    font-size: 12px;
    text-align: center;
    flex: 1;
}

.notify-button {
    background-color: #F4AEDC;
    color: #000;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notify-button:hover {
    background-color: #E489C4;
    color: #fff;
}

/* Стили для футера */
.site-footer {
    background-color: #1E1F22;
    padding: 80px 0 0;
    color: #fff;
    position: relative;
    z-index: 101;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    grid-template-areas:
        "left center right";
    gap: 40px;
    position: relative;
}

.footer-left {
    grid-area: left;
}

.footer-logo {
    max-width: 150px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-slogan {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-top: 100px;
    opacity: 0.8;
}

.footer-address {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.6;
    max-width: 300px;
}

.footer-center {
    grid-area: center;
    display: flex;
    flex-direction: column;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-phone {
    color: #fff;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.footer-phone:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

.footer-right {
    grid-area: right;
}

.footer-subscribe-title {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-subscribe-form {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.email-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.email-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.footer-email-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    padding: 10px 15px 10px 40px;
    color: #fff;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    width: 100%;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-submit-btn {
    background-color: #1e1f22;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 10px 20px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    cursor: pointer;
    font-weight: 200;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.footer-submit-btn:hover {
    background-color: #000;
}

.footer-terms {
    font-family: 'Geologica', sans-serif;
    font-size: 10px;
    opacity: 0.6;
    margin-bottom: 20px;
}

.footer-policy {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
}

.footer-policy a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-policy a:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 50px;
    justify-content: space-between;
}

.footer-bottom-content > div {
    padding: 0;
}

.footer-address {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.6;
    flex: 1;
    max-width: 450px;
}

.footer-copyright {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    opacity: 0.6;
}

.footer-policy {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    flex: 0 0 auto;
}

.footer-developer {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: right;
    line-height: 1.2;
    flex: 0 0 auto;
}

.footer-developer img {
    max-width: 100px;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 2fr 1fr;
        grid-template-areas:
            "left right"
            "center center";
        gap: 10px;
    }
    
    .footer-center {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom-content > div {
        width: 100%;
        max-width: 100%;
        text-align: left;
        padding: 0;
    }
    
    .footer-developer img {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

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

    .footer-slogan {
        margin-top: 20px;
    }

    .hero-description {
        font-size: 14px;
    }

    .site-footer {
        padding: 60px 0 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "left"
            "center"
            "right";
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        max-width: 100%;
        /*justify-content: space-between;*/
        gap: 50px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }

    .footer-logo img:last-child{
        max-height: 30px;
        margin-top: 10px;
    }
    
    .footer-bottom-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        align-items: flex-start;
        font-size: 10px;
    }
    
    .footer-bottom-content > div {
        text-align: left;
        width: 100%;
    }
    
    .footer-policy {
        order: 1;
        grid-column: 1;
    }
    
    .footer-copyright {
        order: 2;
        grid-column: 1;
    }
    
    .footer-address {
        order: 3;
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero {
        background-position: center bottom;
    }

    .top-header {
        flex-direction: row;
        height: auto;
        padding: 15px 5%;
        align-items: center;
    }
    
    .bottom-header {
        flex-direction: row;
        padding: 10px 5%;
        align-items: center;
    }
    
    .notification-block {
        flex-direction: row;
        padding: 10px 20px;
        max-width: 90%;
        gap: 15px;
        justify-content: space-between;
    }
    
    .notification-text {
        display: none;
    }
    
    .coming-soon {
        font-size: 18px;
    }
    
    .notify-button {
        padding: 8px 15px;
        font-size: 12px;
    }

    .contacts {
        gap: 20px;
    }
    
    .contacts-container {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .slogan {
        display: none;
    }
    
    .contact-text {
        display: none;
    }
    
    /* Hide logo text on mobile screens */
    .logo-text {
        display: none;
    }
    
    .header-button {
        font-size: 10px;
        padding: 8px 12px;
        white-space: nowrap;
    }

}

@media (max-width: 480px) {
    .logo-text {
        font-size: 10px;
    }
    
    .header-button {
        font-size: 9px;
        padding: 6px 10px;
        margin-left: 20px;
    }

    .hero-heading-container {
        margin-top: -150px;
    }

    .main-logo img {
        max-height: 30px;
    }
    .contacts {
        gap: 20px;
    }
    
    .contacts-container {
        display: flex;
        align-items: center;
        gap: 30px;
    }
}

/* Стили для секции с концепцией */
.concept-section {
    padding: 100px 5%;
    text-align: center;
    background-color: #27282B;
    /*background-image: url('images/ocean-123.png');*/
    background-image: url('/uploads/wtrf-1.png');
    background-size: cover;
    background-position: bottom;
    min-height: 700px;
    position: relative;
}

/*.concept-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(39, 40, 43, 0), #27282B);
    pointer-events: none;
}*/

.concept-heading {
    font-family: 'Cormorant Infant', serif;
    font-size: 36px;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .concept-section {
        min-height: 500px;
    }

    .concept-heading {
        font-size: 24px;
    }
}

/* Стили для секции с информацией о проекте */
.project-info {
    padding: 40px 0;
}

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

.info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    padding: 0 100px;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 135px;
}

.info-block {
    margin-bottom: 5px;
    max-width: 370px;
}

.info-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 5px;
    color: #F4AEDC;
}

.info-text {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 200;
}

.info-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.project-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 60px;
    line-height: 1.2;
}

.project-description {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 200;
    margin-bottom: 20px;
    max-width: 450px;
}

.book-button-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 30px;
}

.book-button {
    background-color: #F4AEDC;
    color: #27282B;
    font-size: 14px;
    font-weight: 400;
    padding: 13px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    position: relative;
    left: 41.555%;
}

.book-button:hover {
    background-color: #E489C4;
    color: #fff;
}

@media (max-width: 768px) {
    .book-button-container {
        text-align: center;
        margin-top: 40px;
    }

    .book-button {
        font-size: 12px;
        position: inherit;
    }
}

/* Медиа-запрос для адаптивности на мобильных устройствах */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        display: grid;
        padding: 0;
        grid-template-areas: 
            "right"
            "left";
    }
    
    .info-left {
        grid-area: left;
        padding-left: 30%;
        margin-top: 0;
    }
    
    .info-right {
        grid-area: right;
    }
    
    .project-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .project-description{
        font-size: 16px;
    }
}

/* Стили для секции с презентацией */
.presentation-section {
    padding: 50px 0;
    background-color: transparent;
    position: relative;
}

.presentation-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #EAEBEC;
    z-index: -1;
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.presentation-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

.presentation-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #27282B;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.presentation-button:hover {
    background-color: #000;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.05);
}

@media (max-width: 768px) {
    .presentation-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Стили для секции с туристической локацией */
.location-section {
    padding: 100px 0;
    color: #fff;
}

.location-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.2;
    text-transform: uppercase;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 20px;
}

.location-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.location-subtitle {
    font-family: 'Cormorant Infant', serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    font-weight: 300;
    max-width: 320px;
    text-transform: uppercase;
}

.location-right {
    display: flex;
    align-items: center;
}

.location-description {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 200;
}

@media (max-width: 768px) {
    .location-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-title {
        font-size: 32px;
    }
    
    .location-subtitle {
        margin-bottom: 0;
    }

    .location-description {
        font-size: 16px;
    }
}

/* Стили для секции Доходность */
.income-section {
    background-color: #27282B;
    padding: 100px 0;
}

.income-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 60px;
    color: #fff;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.income-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    background-image: url('/uploads/coll-logo.png');
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: bottom left;
    --reveal-bg: #27282B;
}

.income-left {
    flex: 0 0 35%;
}

.income-description {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 200;
}

.income-right {
    flex: 0 0 55%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 60px 40px;
}

.advantage-block {
    margin-bottom: 0;
}

.advantage-block:first-child {
    max-width: 300px;
}

.advantage-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 15px;
    color: #F4AEDC;
    text-transform: uppercase;
}

.advantage-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 200;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .income-grid {
        flex-direction: column;
        gap: 50px;
        background-position: center;
        background-size: 100%;
    }
    
    .income-title {
        font-size: 32px;
        margin-bottom: 30px;
        font-weight: 500;
    }

    .income-description {
        font-size: 16px;
    }
    
    .income-left {
        flex: 0 0 100%;
    }
    
    .income-right {
        flex: 0 0 100%;
        grid-template-columns: 1fr;
        gap: 40px 40px;
        padding-left: 20%;
    }
    
    .advantage-block:first-child {
        grid-column: 1;
    }

    .location-section {
        padding: 80px 0;
    }
}

/* Стили для секции с блоками изображений */
.image-blocks-section {
    padding: 0;
    background-color: #27282B;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
}

.image-block {
    position: relative;
    height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.3);*/
    z-index: 1;
}

.image-block-title {
    position: absolute;
    z-index: 3; /* выше декоративных элементов */
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 300;
    text-align: left; /* базовое значение, будут переопределены */
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    max-width: 300px;
}

/* стек при прокрутке только на десктопе */
@media (min-width: 768px) {
.image-grid .image-block {
        position: sticky;
        top: 50px;
    }
}

@media (max-width: 1200px) {
    .image-block {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .image-block {
        height: 300px;
    }
    
    .image-block-title {
        font-size: 20px;
    }
}

/* Чередование расположения текста в блоках изображений */
.image-grid .image-block:nth-child(odd) .image-block-title {
    bottom: 30px;
    left: 30px;
    right: auto;
    top: auto;
    text-align: left;
}

.image-grid .image-block:nth-child(even) .image-block-title {
    top: 30px;
    right: 30px;
    left: auto;
    bottom: auto;
    text-align: right;
}

/* Декоративная розовая линия для нечетных элементов – снизу слева */
.image-grid .image-block:nth-child(odd)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 45%;
    border-top: 2px solid #F4AEDC;
    border-right: 2px solid #F4AEDC;
    border-top-right-radius: 100% 100%;
    pointer-events: none;
    z-index: 2;
}

/* Декоративная розовая линия для чётных элементов – сверху справа */
.image-grid .image-block:nth-child(even)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 45%;
    border-bottom: 2px solid #F4AEDC;
    border-left: 2px solid #F4AEDC;
    border-bottom-left-radius: 100% 100%;
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 768px) {
    .image-grid .image-block:nth-child(odd) .image-block-title {
        left: 10px;
        max-width: 200px;
    }

    .image-grid .image-block:nth-child(even) .image-block-title {
        right: 10px;
        max-width: 200px;
    }

    .image-grid .image-block:nth-child(odd)::after {
        width: 60%;
        height: 60%;
    }

    .image-grid .image-block:nth-child(even)::after {
        width: 60%;
        height: 60%;
    }
}

/* Стили для секции с формой записи на экскурсию */
.excursion-section {
    padding: 100px 0;
}

.excursion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.excursion-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.excursion-subtitle {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 200;
    color: #fff;
    margin-bottom: 40px;
}

.excursion-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
}

.form-input {
    flex: 1;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 200;
    background-color: transparent;
    color: #fff;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    min-width: 0;
    width: 100%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    border-bottom-color: #F4AEDC;
}

.form-consent {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.excursion-button {
    background-color: #F4AEDC;
    color: #27282B;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;   
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.excursion-button:hover {
    background-color: #E489C4;
    color: #fff;
}

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

    .excursion-subtitle {
        font-size: 14px;
    }

    .excursion-container {
        padding: 40px 0;
        margin: 0 20px;
    }
    
    .excursion-title {
        font-size: 26px;
        font-weight: 500;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .excursion-button {
        margin-top: 10px;
        align-self: flex-end;
        font-size: 14px;
    }

    .form-consent {
        text-align: end;
        width: 260px;
        align-self: end;
    }
}

/* Стили для секции с информацией о районе */
.nearby-section {
    padding: 120px 0;
    background-color: #EAEBEC;
    color: #27282B;
}

.nearby-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 150px;
    line-height: 1.2;
    text-transform: uppercase;
}

.timeline-container {
    position: relative;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    height: 140px;
    margin-bottom: 60px;
    max-width: 85%;
}

.timeline-point {
    position: absolute;
    top: -80px;
    transform: translateX(-50%);
    width: max-content;
    max-width: 150px;
    transition: all 0.3s ease;
}

/* Добавляем стиль для активной точки */
.timeline-point.active .time {
    color: #27282B;
    font-weight: 500;
}

.timeline-point.active .description {
    color: #27282B;
    font-weight: 300;
}

.timeline-point.active .point-marker {
    transform: translate(-50%, -50%) scale(1.2);
    background-color: #F4AEDC;
    box-shadow: 0 0 0 4px rgba(244, 174, 220, 0.5);
}

.timeline-point[data-time="1"] {
    left: 10%;
}

.timeline-point[data-time="2"] {
    left: 30%;
}

.timeline-point[data-time="4"] {
    left: 60%;
}

.timeline-point[data-time="5"] {
    left: 85%;
}

.time {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #27282B;
    transition: all 0.3s ease;
}

.description {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    font-weight: 300;
    max-width: 150px;
    line-height: 1.4;
    color: #27282B;
    transition: all 0.3s ease;
}

.timeline-slider {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #27282B;
    top: 70px;
    cursor: pointer;
}

/* Добавляем эффект наведения для таймлайна */
.timeline-slider:hover {
    background-color: #27282B;
}

/* Изменяем позиционирование точек-маркеров */
.point-marker {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #27282B;
    border-radius: 50%;
    border: 2px solid #e89cca;
    z-index: 3;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    /* Абсолютное позиционирование относительно timeline-slider */
    top: 151px;
    left: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Стиль для точки-маркера при наведении */
.point-marker:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background-color: #27282B;
}

/* Устанавливаем позиции для каждой точки */
.timeline-point[data-time="1"] .point-marker {
    left: 5%;
}

.timeline-point[data-time="2"] .point-marker {
    left: 5%;
}

.timeline-point[data-time="4"] .point-marker {
    left: 5%;
}

.timeline-point[data-time="5"] .point-marker {
    left: 5%;
}

.car-icon {
    position: absolute;
    left: 10%;
    top: -15px;
    width: 80px;
    height: 80px;
    background-image: url('/uploads/shoe.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%);
    transition: left 0.3s ease;
    z-index: 4;
    cursor: grab;
}

/* Анимация пульсации для drag-hint */
@keyframes pulse {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
}

.car-icon .drag-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(39, 40, 43, 0.7);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0.9;
    font-family: 'Geologica', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: pulse 1.5s infinite ease-in-out;
}

.car-icon:active {
    cursor: grabbing;
}

.car-icon:active .drag-hint {
    animation: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.line {
    position: absolute;
    height: 100%;
    width: 0%;
    background-color: #F4AEDC;
    transition: width 0.3s ease;
}

/* Исправляем эффект при наведении */
.timeline-slider:hover .point-marker {
    transform: translate(-50%, -50%) scale(1.2);
}

.explore-button {
    position: absolute;
    right: 30px;
    top: 48px;
    background-color: #27282B;
    color: #fff;
    font-size: 14px;
    padding: 12px 20px;
    border: 1px solid #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.explore-button:hover {
    background-color: #000;
    color: #fff;
}

.map-container {
    position: relative;
    height: 600px;
    background-color: #303236;
    background-image: url('/uploads/map-img-full.png');
    background-size: cover;
    background-position: bottom;
    border-radius: 20px;
    overflow: hidden;
}

.map-container::after {
    content: "OCEAN";
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-family: 'Geologica', sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: #414349;
    text-transform: uppercase;
    z-index: 10;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.location-dot {
    position: absolute;
    top: 46%;
    left: 52%;
    width: 20px;
    height: 20px;
    background-color: #F4AEDC;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px rgba(244, 174, 220, 0.3);
    transition: all 0.5s ease;
}

@media (max-width: 1200px) {
    .timeline {
        max-width: 90%;
        margin-bottom: 50px;
    }
    
    .timeline-point {
        max-width: 120px;
    }
    
    .description {
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .timeline {
        max-width: 95%;
    }
    
    .timeline-point {
        max-width: 100px;
    }
    
    .timeline-point[data-time="1"] {
        left: 8%;
    }
    
    .timeline-point[data-time="2"] {
        left: 32%;
    }
    
    .timeline-point[data-time="4"] {
        left: 62%;
    }
    
    .timeline-point[data-time="5"] {
        left: 88%;
    }
    
    .timeline-point[data-time="1"] .point-marker {
        left: 5%;
    }
    
    .timeline-point[data-time="2"] .point-marker {
        left: 5%;
    }
    
    .timeline-point[data-time="4"] .point-marker {
        left: 5%;
    }
    
    .timeline-point[data-time="5"] .point-marker {
        left: 5%;
    }
    
    .explore-button {
        right: -150px;
    }
    
    .description {
        font-size: 10px;
        max-width: 90px;
    }
    
    .footer-developer img {
        margin: 0;
    }
}

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

    .nearby-title {
        font-size: 32px;
        margin-bottom: 100px;
        font-weight: 500;
    }
    
    .timeline {
        max-width: 100%;
        height: 160px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .timeline-point {
        top: -60px;
        max-width: 80px;
    }
    
    .timeline-point[data-time="1"] {
        left: 5%;
    }
    
    .timeline-point[data-time="2"] {
        left: 30%;
    }
    
    .timeline-point[data-time="4"] {
        left: 65%;
    }
    
    .timeline-point[data-time="5"] {
        left: 90%;
    }
    
    .timeline-point[data-time="1"] .point-marker {
        left: 5%;
    }
    
    .timeline-point[data-time="2"] .point-marker {
        left: 5%;
    }
    
    .timeline-point[data-time="4"] .point-marker {
        left: 5%;
    }
    
    .timeline-point[data-time="5"] .point-marker {
        left: 5%;
    }
    
    .time {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .description {
        font-size: 10px;
        max-width: 80px;
    }
    
    .timeline-slider {
        width: 100%;
    }
    
    .point-marker {
        width: 12px;
        height: 12px;
        top: 131px;
    }
    
    .explore-button {
        position: static;
        margin-top: 110px;
        display: block;
        width: auto;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
        padding: 12px 25px;
    }
    
    .car-icon {
        width: 60px;
        height: 60px;
        top: -10px;
    }
    
    .car-icon .drag-hint {
        font-size: 9px;
        bottom: 10px;
        padding: 2px 6px;
    }
    
    .map-container {
        height: 400px;
    }

    .map-container::after {
        font-size: 30px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .nearby-title {
        font-size: 28px;
        margin-bottom: 100px;
    }
    
    .timeline {
        height: 140px;
    }
    
    .timeline-point {
        top: -45px;
    }
    
    .time {
        font-size: 16px;
    }

    .point-marker {
        top: 117px;
    }
    
    .description {
        font-size: 8px;
        max-width: 60px;
    }
    
    .timeline-point[data-time="1"] {
        left: 5%;
    }
    
    .timeline-point[data-time="2"] {
        left: 30%;
    }
    
    .timeline-point[data-time="4"] {
        left: 65%;
    }
    
    .timeline-point[data-time="5"] {
        left: 90%;
    }
    
    .timeline-point[data-time="1"] .point-marker {
        left: 5%;
    }
    
    .timeline-point[data-time="2"] .point-marker {
        left: 5%;
    }
    
    .timeline-point[data-time="4"] .point-marker {
        left: 5%;
    }
    
    .timeline-point[data-time="5"] .point-marker {
        left: 5%;
    }
    
    .car-icon {
        width: 50px;
        height: 50px;
    }
    
    .car-icon .drag-hint {
        font-size: 8px;
        bottom: 10px;
    }
    
    .point-marker {
        width: 10px;
        height: 10px;
    }
    
    .explore-button {
        position: static;
        margin-top: 120px;
        display: block;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        padding: 12px 25px;
        font-size: 14px;
    }

    .location-dot {
        top: 46%;
        left: 54%;
    }

    .timeline-container{
        padding: 0 20px;
    }
}

/* Стили для секции с информацией об инвестициях в отельную индустрию */
.hotel-investment-section {
    background-color: #27282B;
    padding-top: 100px;
}

.hotel-investment-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin: 0 auto 100px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hotel-investment-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    position: relative;
}

.hotel-investment-image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hotel-investment-section {
        padding-top: 10px;
    }

    .hotel-investment-image {
        height: 150px;
    }
    
    .hotel-investment-title {
        font-size: 24px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

/* Стили для секции с апартаментами */
.apartments-section {
    background-color: #EAEBEC;
    padding: 50px 0 100px;
}

.apartments-header {
    background-image: url('/uploads/prima-res-log.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 20px;
    margin-bottom: 60px;
    margin-top: 60px;
    --reveal-bg: #EAEBEC;
}

.apartments-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #27282B;
    margin-bottom: 60px;
    line-height: 1.2;
    text-align: left;
}

.apartments-description {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #27282B;
    margin-bottom: 0;
    max-width: 510px;
    text-align: left;
    padding-bottom: 40px;
}

.apartments-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.apartment-card {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
}

.apartment-type {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #27282B;
    margin-bottom: 20px;
}

.apartment-image {
    margin-bottom: 20px;
    overflow: hidden;
}

.apartment-image img {
    width: 100%;
    height: auto;
    display: block;
}

.apartment-price {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #27282B;
    margin-bottom: 30px;
}

.apartment-area {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #27282B;
    margin-bottom: 10px;
}

.apartment-brief {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    color: rgba(39, 40, 43, 0.8);
    line-height: 1.4;
    margin-bottom: 20px;
}

.apartment-buttons {
    display: flex;
    gap: 10px;
}

.invest-button {
    padding: 12px 20px;
    border: 1px solid #333;
    border-radius: 30px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    text-transform: uppercase;
}

.invest-button:hover {
    background-color: #000;
    color: #fff;
}

.presentation-view-button {
    padding: 12px 20px;
    background-color: #333;
    border: 1px solid #333;
    border-radius: 30px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
}

.presentation-view-button:hover {
    background-color: #000;
}

@media (max-width: 768px) {
    .apartments-section {
        padding: 10px 0 50px;
    }
    
    .apartments-header {
        height: 200px;
        margin-bottom: 40px;
        padding-left: 15px;
    }
    
    .apartments-title {
        font-size: 32px;
        font-weight: 500;
    }
    
    .apartments-description {
        font-size: 16px;
        padding-bottom: 20px;
        max-width: 280px;
    }
    
    .apartments-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .apartment-card {
        flex: 0 0 100%;
    }
    
    .apartment-type {
        font-size: 24px;
    }
    
    .apartment-area {
        font-size: 13px;
    }
    
    .apartment-brief {
        font-size: 12px;
        min-height: auto;
        margin-bottom: 15px;
    }
    
    .apartment-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .invest-button, .presentation-view-button {
        width: 50%;
        text-align: center;
        font-size: 11px;
        padding: 10px 10px;
    }
}

@media (max-width: 480px) {
    .invest-button, .presentation-view-button {
        font-size: 10px;
        padding: 8px 5px;
    }
}

/* Стили для секции с аналитикой проекта */
.analytics-section {
    background-color: #F4AEDC;
    padding: 100px 0;
    width: 100%;
}

.analytics-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.analytics-subtitle {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 200;
    color: #333;
    margin-bottom: 40px;
}

.analytics-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-fields {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.analytics-input {
    flex: 1;
    height: 45px;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background-color: transparent;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 200;
    color: #333;
}

.analytics-input::placeholder {
    color: #333;
    opacity: 0.8;
}

.analytics-input:focus {
    outline: none;
}

.analytics-button {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 300;
}

.analytics-button:hover {
    background-color: #000;
}

.analytics-consent {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    color: #333;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .analytics-section {
        padding: 40px 0;
    }
    
    .analytics-title {
        font-size: 26px;
    }
    
    .analytics-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .form-fields {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .analytics-button {
        align-self: flex-end;
        margin-top: 10px;
        font-size: 14px;
    }

    .analytics-consent {
        text-align: end;
        width: 260px;
        align-self: end;
    }
}

/* Стили для секции с информацией о девелопере */
.developer-section {
    background-color: #27282B;
    overflow: hidden;
}

.developer-grid {
    display: flex;
    width: 100%;
    height: auto;
}

.developer-info {
    flex: 0 0 50%;
    padding: 100px 50px 100px 5%;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.developer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.2;
}

.developer-description {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 600px;
    font-weight: 200;
}

.developer-details {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 200;
    opacity: 0.8;
}

.stats-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-block {
    margin-bottom: 20px;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #F4AEDC;
}

.plus {
    color: #F4AEDC;
}

.stat-text {
    font-family: 'Geologica', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1.3;
    color: #fff;
    font-weight: 400;
}

.developer-image {
    flex: 0 0 50%;
    position: relative;
    height: auto;
}

.developer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@media (max-width: 992px) {
    .developer-grid {
        flex-direction: column;
    }
    
    .developer-info {
        flex: 0 0 100%;
        padding: 60px 5% 40px;
    }
    
    .developer-title {
        font-size: 42px;
        font-weight: 500;
    }
    
    .developer-image {
        flex: 0 0 100%;
        height: 400px;
        position: relative;
    }
    
    .developer-image img {
        position: relative;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .developer-info {
        padding: 80px 5% 50px;
    }
    
    .developer-title {
        font-size: 36px;
    }
    
    .developer-description {
        font-size: 16px;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .developer-image {
        height: auto;
    }
}

/* Стили для секции FAQ */
.faq-section {
    background-color: #EAEBEC;
    padding: 80px 0;
}

.faq-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 0 25px;
    display: none;
}

.faq-answer p {
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    opacity: 0.8;
    margin: 0;
    max-width: 800px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 42px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

/* Стили для секции с гарантией доходности */
.guarantee-section {
    background-color: #27282B;
    padding: 100px 0;
    text-align: center;
}

.guarantee-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-transform: uppercase;
}

.guarantee-button-wrapper {
    display: flex;
    justify-content: center;
}

.guarantee-button {
    background-color: #F4AEDC;
    color: #333;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    padding: 13px 35px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.guarantee-button:hover {
    background-color: #E489C4;
    color: #fff;
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 60px 0;
    }
    
    .guarantee-title {
        font-size: 24px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .guarantee-button {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* Стили для секции с роскошной инфраструктурой */
.luxury-infrastructure {
    background-color: #EAEBEC;
    padding: 100px 0;
}

.luxury-infrastructure .luxury-title {
    color: #27282B;
    margin-bottom: 40px;
}

.luxury-slider {
    /* Masonry grid вместо горизонтального слайдера */
    display: grid;
    grid-template-columns: 1fr 2fr; /* соотношение 1/3 и 2/3 */
    grid-auto-rows: 400px; /* базовая высота строки */
    gap: 15px;
    padding-left: 0;
    overflow-x: visible;
    scroll-snap-type: none;
}

/* Расстановка элементов по макету */
.luxury-slider .luxury-slide:nth-child(1) {
    grid-column: 1 / span 2; /* первое изображение на весь ряд */
    grid-row: 1 / span 1;
}

.luxury-slider .luxury-slide:nth-child(2) {
    grid-column: 1 / span 1; /* изображение на 2 ряда слева */
    grid-row: 2 / span 2;
}

.luxury-slider .luxury-slide:nth-child(3) {
    grid-column: 2 / span 1; /* верхнее правое */
    grid-row: 2 / span 1;
}

.luxury-slider .luxury-slide:nth-child(4) {
    grid-column: 2 / span 1; /* нижнее правое */
    grid-row: 3 / span 1;
}

.luxury-slider .luxury-slide:nth-child(5) {
    grid-column: 1 / span 1; /* нижняя левая (четвёртый ряд) */
    grid-row: 4 / span 1;
}

.luxury-slider .luxury-slide:nth-child(6) {
    grid-column: 2 / span 1;
    grid-row: 4 / span 1;
}

/* Общие стили для элементов */
.luxury-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

/* Лейбл всплывает снизу при ховере */
.luxury-slide-label {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px 60px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.luxury-slide:hover {
    transform: scale(.99);
    transition: transform 0.5s ease;
}

.luxury-slide:hover .luxury-slide-label {
    transform: translateY(0);
    opacity: 1;
}

/* Мобильная адаптация – однотонная колонка */
@media (max-width: 768px) {
    .luxury-slider {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .luxury-slider .luxury-slide:nth-child(1),
    .luxury-slider .luxury-slide:nth-child(2),
    .luxury-slider .luxury-slide:nth-child(3),
    .luxury-slider .luxury-slide:nth-child(4),
    .luxury-slider .luxury-slide:nth-child(5),
    .luxury-slider .luxury-slide:nth-child(6) {
        grid-column: 1 / span 1;
        grid-row: auto / span 1;
        position: sticky;
        top: 30%;
    }

    .luxury-slide-label {
        transform: translateY(0);
        opacity: 1;
        font-size: 12px;
    }
}

.luxury-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.luxury-content {
    display: flex;
    gap: 50px;
    justify-content: flex-start;
    
}

.luxury-text {
    flex: 0 0 50%;
}

.luxury-description {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 500px;
}

.luxury-image-main {
    width: 100%;
    overflow: hidden;
}

.luxury-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.luxury-features {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-top: 10px;
}

.luxury-feel {
    font-family: 'Lora', serif;
    font-size: 72px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.luxury-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-end;
}

.luxury-grid-item {
    position: relative;
    flex: 1;
    text-align: center;
}

.luxury-grid-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.luxury-grid-label {
    font-family: 'Geologica', sans-serif;
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
}

@media (max-width: 992px) {
    .luxury-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .luxury-text, .luxury-features {
        flex: 0 0 100%;
    }
    
    .luxury-features {
        padding-top: 20px;
    }
    
    .luxury-feel {
        font-size: 55px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .luxury-infrastructure {
        padding: 60px 0 0 0;
    }
    
    .luxury-title {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 500;
    }

    .luxury-infrastructure .container {
        position: sticky;
        top: 60px;
    }
    
    .luxury-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .luxury-features {
        padding-top: 0;
    }
    
    .luxury-feel {
        font-size: 45px;
        margin-bottom: 25px;
    }
    
    .luxury-grid {
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        min-width: 100%;
        gap: 15px;
    }
    
    .luxury-grid-item {
        flex: 0 0 85px;
        min-width: 85px;
    }
    
    .luxury-grid-label {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .luxury-grid-item {
        flex: 0 0 80px;
        min-width: 80px;
    }
    .luxury-grid-label {
        font-size: 8px;
    }
}

/* Стили для модального окна уведомления */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

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

.notification-modal-content {
    background-color: rgba(39, 40, 43, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 30px;
    width: 90%;
    max-width: 550px;
    border: 1px solid #F4AEDC;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.notification-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0 15px;
}

.notification-input {
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: #fff;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    width: 100%;
}

.notification-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.notification-input:focus {
    outline: none;
    border-bottom-color: #F4AEDC;
}

.notify-submit-button {
    background-color: #F4AEDC;
    color: #000;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    align-self: center;
    width: 100%;
}

@media (max-width: 768px) {
    .notification-modal-content {
        width: 90%;
        padding: 25px 15px;
    }
    
    .notification-input {
        font-size: 16px;
        padding: 12px;
    }
    
    .notify-submit-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Стили для красивого уведомления */
.toast-notification {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 31, 36, 0.95);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    max-width: 90%;
    border-left: 3px solid #F4AEDC;
}

.toast-notification.success {
    border-left-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.9);
}

.toast-notification.error {
    border-left-color: #f44336;
    background-color: rgba(244, 67, 54, 0.9);
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast-notification.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

.toast-icon {
    margin-right: 12px;
}

.toast-message {
    flex: 1;
}

.toast-close {
    margin-left: 15px;
    cursor: pointer;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 85px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Общие стили для страницы "О компании" */
/* Стили для hero блока страницы "О компании" */
.about-hero {
    background-color: #EAEBEC;
    background-image: url('/uploads/bg_about.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    position: relative;
}

.about-hero-content {
    max-width: 1200px;
    text-align: center;
    color: #27282B;
}

.about-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: #27282B;
    margin-bottom: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-description {
    font-family: 'Geologica', sans-serif;
    font-size: 20px;
    font-weight: 200;
    color: #27282B;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

/* Стили для контентного блока страницы "О компании" */
.about-content {
    background-color: transparent;
    padding: 100px 100px;
}

.about-content-container {
    background-color: #FCFCFC;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -20%;
}

.about-text-block {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px;
}

.about-text-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #27282B;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-block {
    flex: 0 0 50%;
}

.about-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

/* Стили для блока "МИР PRIMA DEVELOPMENT" */
.world-prima {
    background-color: #27282B;
    padding: 120px 5%;
    color: #fff;
}

.world-prima-container {
    max-width: 1200px;
    margin: 0 auto;
}

.world-prima-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.world-prima-description {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 200;
    color: #fff;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
}

.circles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 80px;
}

.circle-item {
    width: 400px;
    height: 400px;
    border: 2px solid rgba(244, 174, 220, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: -50px;
}

.circle-item:first-child {
    margin-left: 0;
    z-index: 1;
}

.circle-item:nth-child(2) {
    z-index: 2;
}

.circle-item:nth-child(3) {
    z-index: 3;
}

.circle-content {
    text-align: center;
    padding: 40px;
}

.circle-number {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 300;
    color: #F4AEDC;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.circle-text {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 150px;
}

.circle-with-image {
    border: none;
    overflow: hidden;
}

.circle-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Стили для блока "ОСНОВАТЕЛИ" */
.founders-section {
    background-color: #EAEBEC;
    padding: 120px 5%;
    color: #27282B;
}

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

.founders-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #27282B;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.founder-item {
    margin-bottom: 100px;
}

.founder-item:last-child {
    margin-bottom: 0;
}

.founder-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.founder-item.reverse .founder-content {
    flex-direction: row-reverse;
}

.founder-info {
    flex: 0 0 50%;
}

.founder-image {
    flex: 0 0 45%;
}

.founder-name {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #27282B;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-position {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.position-icon {
    width: 20px;
    height: 20px;
}

.founder-position span {
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #27282B;
}

.founder-description {
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 200;
    color: #27282B;
    line-height: 1.6;
    margin-bottom: 20px;
}

.founder-awards {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.awards-circles {
    display: flex;
    align-items: center;
}

.award-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -15px;
}

.award-item:first-child {
    margin-left: 0;
}

.award-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awards-text {
    flex: 1;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 200;
    color: #27282B;
    line-height: 1.5;
    margin-left: 20px;
}

.founders-experience {
    background-image: url('/uploads/founders.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px 0px;
    text-align: center;
    margin-top: 60px;
    --reveal-bg: #EAEBEC;
}

.experience-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 36px;
    font-weight: 400;
    color: #1E1F24;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

.projects-section {
    background-color: #27282B;
    padding: 120px 0;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    align-items: start;
}

.projects-title-block {
    grid-column: 1 / 3;
    grid-row: 1;
}

.projects-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.projects-description-block {
    grid-column: 1;
    grid-row: 2;
    margin-top: auto;
    margin-bottom: auto;
}

.projects-description {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 200;
    color: white;
    line-height: 1.5;
    margin: 0;
}

.project-image {
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-image:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1 / 3;
}

.project-image:nth-of-type(4) {
    grid-column: 4;
    grid-row: 1;
}

.project-image:nth-of-type(5) {
    grid-column: 4;
    grid-row: 2;
}

.project-image:nth-of-type(6) {
    grid-column: 2;
    grid-row: 2;
}

.project-image:nth-of-type(7) {
    grid-column: 3;
    grid-row: 2;
}

.market-section {
    background-color: #EAEBEC;
    padding: 100px 0;
}

.market-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.market-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.market-text-block {
    width: 100%;
}

.market-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 400;
    color: #27282B;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 70px 0;
}

.market-description {
    margin-bottom: 40px;
    max-width: 50%;
    margin-left: auto;
}

.market-description p {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 200;
    color: #27282B;
    line-height: 1.2;
    margin: 0;
}

.market-inspiration {
    margin-left: auto;
    max-width: 50%;
}

.market-inspiration p {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #27282B;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

.market-video-block {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-bottom: -200px;
}

.video-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-poster {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-caption {
    background-color: #27282B;
    color: #fff;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-caption:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.05);
}

.business-section {
    background-color: #27282B;
    padding: 200px 0 100px 0;
}

.business-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.business-title {
    font-family: 'Cormorant Infant', serif;
    font-size: 36px;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 1px;
}

.founder-image img {
    width: 100%;
    height: auto;
}

/* Общие медиа-запросы для страницы "О компании" */
@media (max-width: 1200px) {
    .about-content {
        padding: 80px 60px;
    }
    
    .about-content-container {
        margin-top: -20%;
    }
    
    .about-text-item h3 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .about-hero {
        min-height: 80vh;
        padding: 80px 5%;
    }
    
    .about-hero-title {
        font-size: 60px;
    }
    
    .about-hero-description {
        font-size: 20px;
    }
    
    .about-content {
        padding: 60px 40px;
    }
    
    .about-content-container {
        flex-direction: column;
        margin-top: -40%;
    }
    
    .about-text-block,
    .about-image-block {
        flex: 0 0 100%;
    }
    
    .about-text-block {
        gap: 40px;
    }
    
    .about-text-item h3 {
        font-size: 22px;
    }
    
    .world-prima-title {
        font-size: 48px;
    }
    
    .world-prima-description {
        font-size: 18px;
    }
    
    .circle-item {
        width: 280px;
        height: 280px;
        margin-left: -30px;
    }
    
    .circle-item:first-child {
        margin-left: 0;
    }
    
    .circle-number {
        font-size: 28px;
    }
    
    .circle-text {
        font-size: 12px;
    }
    
    .founders-section {
        padding: 80px 5%;
    }
    
    .founders-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .founders-experience {
        padding: 25px 0px;
        margin-top: 50px;
    }
    
    .experience-title {
        font-size: 36px;
    }
    
    .projects-section {
        padding: 80px 0;
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .projects-title-block {
        grid-column: 1 / 3;
    }
    
    .projects-title {
        font-size: 36px;
    }
    
    .projects-description-block {
        grid-column: 1;
        grid-row: 2;
    }
    
    .projects-description {
        font-size: 14px;
    }
    
    .project-image:nth-of-type(3) {
        grid-column: 3;
        grid-row: 1 / 3;
    }
    
    .project-image:nth-of-type(4) {
        grid-column: 2;
        grid-row: 3;
    }
    
    .project-image:nth-of-type(5) {
        grid-column: 3;
        grid-row: 3;
    }
    
    .project-image:nth-of-type(6) {
        grid-column: 1;
        grid-row: 3;
    }
    
    .project-image:nth-of-type(7) {
        grid-column: 2;
        grid-row: 3;
    }
    
    .market-section {
        padding: 50px 0;
    }
    
    .market-container {
        padding: 0 15px;
    }
    
    .market-content {
        gap: 30px;
    }
    
    .market-text-block {
        text-align: left;
    }
    
    .market-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .market-description {
        margin-bottom: 25px;
    }
    
    .market-description p {
        font-size: 16px;
    }
    
    .market-inspiration p {
        font-size: 14px;
    }
    
    .video-caption {
        font-size: 11px;
        padding: 10px 15px;
    }
    
    .business-section {
        padding: 150px 0 50px 0;
    }
    
    .market-video-block {
        margin-bottom: -150px;
    }
    
    .business-container {
        padding: 0 15px;
    }
    
    .business-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .market-section {
        padding: 80px 0;
    }
    
    .market-content {
        gap: 50px;
    }
    
    .market-title {
        font-size: 32px;
    }
    
    .market-description p {
        font-size: 15px;
    }
    
    .market-inspiration p {
        font-size: 13px;
    }
    
    .video-caption {
        font-size: 13px;
        padding: 12px 25px;
    }
    
    .business-section {
        padding: 150px 0 80px 0;
    }
    
    .business-title {
        font-size: 42px;
    }
    
    .founder-item {
        margin-bottom: 80px;
    }
    
    .founder-content {
        gap: 60px;
    }
    
    .founder-name {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 75vh;
        padding: 60px 5%;
    }
    
    .about-hero-title {
        font-size: 42px;
        margin-bottom: 30px;
    }
    
    .about-hero-description {
        font-size: 18px;
    }
    
    .about-content {
        padding: 50px 20px;
    }
    
    .about-content-container {
        margin-top: -40%;
    }
    
    .about-text-block {
        gap: 30px;
        padding: 40px;
    }
    
    .about-text-item h3 {
        font-size: 22px;
    }
    
    .world-prima {
        padding: 100px 5%;
    }
    
    .world-prima-title {
        font-size: 36px;
    }
    
    .world-prima-description {
        font-size: 16px;
        margin-bottom: 60px;
    }
    
    .circles-container {
        justify-content: center;
        margin-top: 60px;
    }
    
    .circle-item {
        width: 250px;
        height: 250px;
        margin-left: -30px;
    }
    
    .circle-item:first-child {
        margin-left: 0;
    }
    
    .circle-number {
        font-size: 24px;
    }
    
    .circle-text {
        font-size: 11px;
    }
    
    .founders-section {
        padding: 60px 5%;
    }
    
    .founders-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .founders-experience {
        padding: 25px 0px;
        margin-top: 40px;
    }
    
    .experience-title {
        font-size: 32px;
    }
    
    .projects-section {
        padding: 80px 0;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .projects-title-block {
        grid-column: 1 / 3;
        grid-row: 1;
        text-align: center;
    }
    
    .projects-title {
        font-size: 32px;
    }
    
    .projects-description-block {
        grid-column: 1 / 3;
        grid-row: 2;
        text-align: center;
        margin-top: 20px;
    }
    
    .projects-description {
        font-size: 16px;
    }
    
    .project-image:nth-of-type(3) {
        grid-column: 1;
        grid-row: 3;
    }
    
    .project-image:nth-of-type(4) {
        grid-column: 2;
        grid-row: 3;
    }
    
    .project-image:nth-of-type(5) {
        grid-column: 1;
        grid-row: 4;
    }
    
    .project-image:nth-of-type(6) {
        grid-column: 2;
        grid-row: 4;
    }
    
    .project-image:nth-of-type(7) {
        grid-column: 1;
        grid-row: 5;
    }
    
    .market-section {
        padding: 60px 0;
    }
    
    .market-content {
        gap: 40px;
    }
    
    .market-text-block {
        width: 100%;
    }
    
    .market-video-block {
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: -130px;
    }
    
    .market-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .market-description {
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .market-description p {
        font-size: 16px;
    }

    .market-inspiration {
        max-width: 100%;
    }
    
    .market-inspiration p {
        font-size: 14px;
    }
    
    .video-caption {
        font-size: 8px;
        padding: 10px 20px;
    }
    
    .business-section {
        padding: 150px 0 60px 0;
    }
    
    .business-title {
        font-size: 26px;
    }
    
    .founder-item {
        margin-bottom: 60px;
    }
    
    .founder-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .founder-item.reverse .founder-content {
        flex-direction: column;
    }
    
    .founder-info,
    .founder-image {
        flex: 0 0 100%;
    }
    
    .founder-name {
        font-size: 24px;
    }
    
    .founder-description {
        font-size: 16px;
    }
    
    .founder-awards {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .award-item {
        width: 60px;
        height: 60px;
        margin-left: -10px;
    }
    
    .award-item:first-child {
        margin-left: 0;
    }
    
    .awards-text {
        margin-left: 0;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 75vh;
        padding: 40px 5%;
    }
    
    .about-hero-title {
        font-size: 32px;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    
    .about-hero-description {
        font-size: 16px;
    }
    
    .about-content {
        padding: 40px 20px;
    }
    
    .about-content-container {
        margin-top: -40%;
    }
    
    .about-text-item h3 {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .world-prima {
        padding: 100px 5%;
    }
    
    .world-prima-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .world-prima-description {
        font-size: 16px;
        margin-bottom: 50px;
        max-width: 250px;
    }
    
    .circle-item {
        width: 130px;
        height: 130px;
        margin-left: -25px;
    }
    
    .circle-item:first-child {
        margin-left: 0;
    }
    
    .circle-number {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .circle-text {
        font-size: 8px;
    }
    
    .circle-content {
        padding: 20px;
    }
    
    .founders-section {
        padding: 50px 5%;
    }
    
    .founders-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .founders-experience {
        padding: 25px 0px;
        margin-top: 30px;
    }
    
    .experience-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .projects-section {
        padding: 80px 0;
    }
    
    .projects-container {
        padding: 0 15px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .projects-title-block {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
    }
    
    .projects-title {
        font-size: 30px;
    }
    
    .projects-description-block {
        grid-column: 1 / 3;
        grid-row: 4;
        text-align: left;
        margin-top: 10px;
    }
    
    .projects-description {
        font-size: 16px;
        text-align: left;
    }
    
    .project-image:nth-of-type(3) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .project-image:nth-of-type(4) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .project-image:nth-of-type(5) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .project-image:nth-of-type(6) {
        grid-column: 1;
        grid-row: 3;
    }
    
    .project-image:nth-of-type(7) {
        grid-column: 2;
        grid-row: 3;
    }
    
    .founder-item {
        margin-bottom: 80px;
    }
    
    .founder-name {
        font-size: 20px;
    }
    
    .founder-description {
        font-size: 16px;
    }
    
    .founder-position span {
        font-size: 14px;
    }
    
    .position-icon {
        width: 16px;
        height: 16px;
    }
    
    .founder-awards {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .award-item {
        width: 50px;
        height: 50px;
        margin-left: -8px;
    }
    
    .award-item:first-child {
        margin-left: 0;
    }
    
    .awards-text {
        margin-left: 0;
        font-size: 12px;
    }
} 

/* ===== Mobile reorder for circles ===== */
@media (max-width: 768px) {
  .circles-container .circle-item:nth-child(1) {
    order: 1;
    z-index: 3;
  }
  .circles-container .circle-item:nth-child(2) {
    order: 3; /* становится последним визуально */
    z-index: 1;
  }
  .circles-container .circle-item:nth-child(3) {
    order: 2; /* перемещается в середину */
    z-index: 2; 
  }
  .circles-container .circle-item {
    position: relative;
  }
  .circles-container .circle-text {
    position: absolute;
    top: 100%; /* сразу под кругом */
    left: 50%;
    transform: translate(-50%, 10px); /* лёгкий отступ вниз */
    width: 80%;
    font-size: 12px;
  }

  .circle-number {
    margin-bottom: 0;
    align-self: center;
    max-width: min-content;
  }
} 

.notification-block.hidden {
    display: none !important;
}

/* Не показываем лейбл у второго слайда */
.luxury-slider .luxury-slide:nth-child(2) .luxury-slide-label {
    display: none;
}

/* Стили для страницы Partners Private Sale */
.partners-hero {
    background-color: #27282B;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 50px;
    position: relative;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.partners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    min-height: 70vh;
}

.partners-content.partners-left {
    align-items: flex-start;
}

.partners-content.partners-right {
    align-items: flex-end;
}

.partners-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
}

.partners-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(244, 174, 220, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-title {
    font-family: 'Geologica', sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.partners-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partners-submit-group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.form-group {
    position: relative;
}

.partners-input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: #fff;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 300;
    transition: border-bottom-color 0.3s ease;
}

.partners-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.partners-input:focus {
    outline: none;
    border-bottom-color: #F4AEDC;
}

.partners-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.partners-submit-btn {
    background-color: #fff;
    color: #27282B;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.partners-submit-btn:hover {
    background-color: #E489C4;
    color: #fff;
}

.partners-submit-btn:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.partners-submit-btn:disabled:hover {
    background-color: #ccc;
    color: #666;
    transform: none;
}

.partners-consent {
    font-family: 'Geologica', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    max-width: 280px;
    flex: 1;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 992px) {
    .partners-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .partners-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .partners-hero {
        padding: 80px 5% 50px;
    }
    
    .partners-content {
        gap: 40px;
    }
    
    .partners-title {
        font-size: 36px;
    }
    
    .partners-badge {
        font-size: 12px;
    }
    
    .partners-form {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .partners-input {
        padding: 15px 0;
        font-size: 16px;
    }
    
    .partners-submit-group {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .partners-submit-btn {
        padding: 15px 30px;
        font-size: 16px;
        align-self: center;
    }
    
    .partners-consent {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .partners-hero {
        padding: 70px 5% 40px;
    }
    
    .partners-title {
        font-size: 28px;
    }
    
    .partners-form {
        max-width: 100%;
    }
    
    .partners-input {
        padding: 12px 0;
        font-size: 16px;
    }
    
    .partners-submit-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .partners-consent {
        font-size: 10px;
    }
}

/* Стили для блока с изображением на странице Partners */
.partners-image-section {
    background-color: #27282B;
    padding: 0;
    margin: 0;
}

.partners-image-container {
    width: 100%;
    overflow: hidden;
}

.partners-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- исправления для формы партнёров при автозаполнении --- */
.partners-input:-webkit-autofill,
.partners-input:-webkit-autofill:hover,
.partners-input:-webkit-autofill:focus,
.partners-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 5000s ease-in-out 0s; /* предотвращаем резкий фон */
}

/* для Firefox */
.partners-input:-moz-autofill {
    box-shadow: 0 0 0 1000px transparent inset !important;
    -moz-box-shadow: 0 0 0 1000px transparent inset !important;
    color: #fff !important;
    caret-color: #fff;
}

/* фикс центрирования логотипа в хедере */
@media (min-width: 769px) {
    .top-header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}