/* === DYNAMIC BACKGROUND STYLES (ОБНОВЛЕНО: Цвет, размеры и количество) === */
.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.bg-shape {
    position: absolute;
    color: rgba(212, 175, 55, 0.4); /* Яркость увеличена с 0.15 до 0.4 */
    transition: transform 0.2s ease-out;
    will-change: transform;
}

/* Размеры уменьшены, количество увеличено до 18 */
.shape-1 { top: 8%; left: 5%; width: 40px; }
.shape-2 { top: 15%; right: 10%; width: 60px; opacity: 0.5; }
.shape-3 { bottom: 10%; left: 15%; width: 35px; }
.shape-4 { bottom: 5%; right: 8%; width: 80px; }
.shape-5 { top: 55%; left: 40%; width: 25px; }
.shape-6 { top: 5%; right: 45%; width: 50px; opacity: 0.6; }
.shape-7 { top: 80%; left: 25%; width: 30px; }
.shape-8 { top: 35%; left: 55%; width: 65px; opacity: 0.4; }
.shape-9 { bottom: 40%; right: 20%; width: 30px; }
.shape-10 { top: 50%; left: 10%; width: 55px; }
.shape-11 { bottom: 25%; right: 35%; width: 45px; opacity: 0.5; }
.shape-12 { top: 5%; left: 30%; width: 20px; }
.shape-13 { top: 30%; left: 20%; width: 25px; opacity: 0.6; }
.shape-14 { top: 75%; right: 15%; width: 40px; }
.shape-15 { bottom: 50%; left: 60%; width: 35px; }
.shape-16 { top: 90%; left: 50%; width: 50px; opacity: 0.5; }
.shape-17 { top: 5%; right: 25%; width: 30px; }
.shape-18 { bottom: 10%; right: 55%; width: 25px; }


/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease 0.3s, visibility 0.5s ease 0.3s;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader__logo {
    margin-bottom: 25px;
}
.preloader-shape {
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}
.preloader-shape.active {
    opacity: 1;
}
.preloader__progress-bar {
    width: 150px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}
.preloader__progress-bar-inner {
    width: 0%;
    height: 100%;
    background-color: var(--color-gold);
    border-radius: 2px;
    transition: width 2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: background-color var(--transition-speed) ease, padding var(--transition-speed) ease, border-color var(--transition-speed) ease;
}
.header.scrolled {
    background-color: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo__image {
    height: 80px;
    width: auto;
    display: block;
}
.nav__list {
    display: flex;
    gap: 30px;
}
.nav__link {
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-speed) ease;
}
.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}
.nav__link.active {
    color: var(--color-gold);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lang-switcher { display: flex; gap: 10px; }
.lang-switcher__item.active { color: var(--color-gold); font-weight: bold; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-white);
}
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__title {
    font-size: 5rem;
    margin-bottom: 20px;
}
.hero__subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Values Section */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* About Short Section */
.about-short__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-short__image img {
    width: 100%;
    border-radius: 10px;
}
.usp-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.usp-list li {
    margin-bottom: 10px;
}
.checkmark {
    color: var(--color-jade);
    margin-right: 10px;
}

/* Projects Featured Section */
.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* TIKTOK SECTION */
.tiktok-section {
    background-color: rgba(26, 26, 26, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tiktok-section .section__subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
}
.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}
.tiktok-embed {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background-color: #000;
}

/* CTA Section */
.cta {
    background-color: var(--color-gray-dark);
}
.cta__container {
    display: flex;
    justify-content: center;
    text-align: center;
}
.cta__content {
    max-width: 700px;
}

/* Footer */
.footer {
    background-color: #111;
    padding: 60px 0 30px;
    font-size: 0.9rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer__title {
    color: var(--color-white);
    margin-bottom: 20px;
}
.footer__list li {
    margin-bottom: 10px;
}
.footer__list a {
    color: var(--color-text);
}
.footer__list a:hover {
    color: var(--color-jade);
}
.footer__bottom {
    border-top: 1px solid var(--color-gray-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 20px;
}
.social-links a {
    color: var(--color-text);
    display: inline-block;
    width: 32px;
    height: 32px;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}
.social-links a:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

/* Burger Menu (для мобильных) - пока скрыт */
.burger-menu { display: none; }

/* === СТИЛИ ДЛЯ ВНУТРЕННИХ СТРАНИЦ === */

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background-color: transparent;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-header__title {
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.page-header__subtitle {
    font-size: 1.2rem;
    color: var(--color-text);
}

/* Philosophy Section (About page) */
.philosophy__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.philosophy__main-text p {
    margin-bottom: 20px;
}
.philosophy__image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Stats Section (About page) */
.stats-section {
    background-color: rgba(26, 26, 26, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item__number {
    display: block;
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-jade);
    margin-bottom: 10px;
}
.stat-item__label {
    font-size: 1rem;
    color: var(--color-text);
}

/* Team Section (About page) */
.team-section .section__subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
}
.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Services List Section (Services page) */
.services-list .service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.services-list .service-item:last-child {
    margin-bottom: 0;
}
.service-item--reverse {
    grid-template-areas: "content image";
}
.service-item--reverse .service-item__image { grid-area: image; }
.service-item--reverse .service-item__content { grid-area: content; }
.service-item__image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.service-item__image img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.service-item__title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.service-item__features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}
.service-item__features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}
.service-item__features .checkmark {
    margin-top: 4px;
}

/* Future Services Section (Services page) */
.future-services {
    background-color: rgba(26, 26, 26, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.future-services .section__subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
}
.future-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Filters (Projects page) */
.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    background-color: transparent;
    color: var(--color-text);
    padding: 10px 20px;
    border: 1px solid var(--color-gray-dark);
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}
.filter-btn:hover {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
}
.filter-btn.active {
    background-color: var(--color-jade);
    border-color: var(--color-jade);
    color: var(--color-white);
}
.projects-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.project-card.hide {
    display: none;
}

/* Proposition Section (Investors page) */
.proposition__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.proposition__image img {
    width: 100%;
    border-radius: 10px;
}

/* Investment Areas Section (Investors page) */
.investment-areas {
    background-color: rgba(26, 26, 26, 0.5);
}
.investment-areas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Contact Page Section */
.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.contact-block {
    margin-bottom: 30px;
}
.contact-block__title {
    color: var(--color-jade);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.contact-block p {
    line-height: 1.8;
}
.contact-block a {
    color: var(--color-text);
}
.contact-block a:hover {
    color: var(--color-white);
}
.form-group {
    margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--color-gray-dark);
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 1rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* Map Section */
.map-section {
    padding: 0;
    line-height: 0;
}