/* Стили для ультра-премиального темного лендинга Bugatti */
:root {
    /* Цветовая палитра - темная, но с светом */
    --color-dark: #0a0a0a;
    --color-dark-light: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-gray-light: #3a3a3a;
    --color-light: #e8e8e8;
    --color-lighter: #f8f8f8;
    --color-orange: #e67e22;
    --color-orange-dark: #d35400;
    --color-orange-light: #f39c12;
    --color-gold: #d4af37;
    --color-border: #333333;
    --color-border-light: #444444;
    
    /* Эффекты света */
    --glow-orange: 0 0 30px rgba(230, 126, 34, 0.3);
    --glow-gold: 0 0 30px rgba(212, 175, 55, 0.2);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.3);
    
    /* Шрифты */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.02em;
}

::selection {
    background-color: var(--color-orange);
    color: var(--color-dark);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 25px 0;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--color-orange);
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo__symbol {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
    text-shadow: var(--glow-orange);
}

.logo__text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.logo__text span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-lighter);
    letter-spacing: 2px;
}

.logo__sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-orange-light);
    letter-spacing: 3px;
    margin-top: 5px;
    text-transform: uppercase;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact__compact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.contact__compact i {
    color: var(--color-orange);
    font-size: 1.1rem;
}

.contact__compact a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.contact__compact a:hover {
    color: var(--color-orange);
}

.btn-contact {
    background: transparent;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.1), transparent);
    transition: left 0.6s;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    background-color: rgba(230, 126, 34, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--glow-orange);
}

.header__burger {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.header__burger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Главный баннер */
.hero {
    height: 100vh;
    min-height: 900px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.8)), 
                url('Bugatti_leat2_3.jpg') center/cover no-repeat;
    z-index: -2;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero:hover .hero__background {
    transform: scale(1);
}

.hero__overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-dark));
    z-index: -1;
    opacity: 0.7;
}

.hero__overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(230, 126, 34, 0.15), transparent 70%);
    z-index: -1;
}

.hero__content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.badge__line {
    flex: 1;
    height: 1px;
    background-color: var(--color-orange);
    opacity: 0.5;
}

.hero__badge span:not(.badge__line) {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-orange);
    text-transform: uppercase;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 300;
    line-height: 0.9;
    margin-bottom: 30px;
    color: var(--color-lighter);
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.hero__title-line {
    display: block;
}

.hero__title-line.accent {
    color: var(--color-orange);
    font-weight: 700;
    text-shadow: var(--glow-orange);
}

.hero__subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin-bottom: 60px;
    color: var(--color-light);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.03em;
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 80px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.6s forwards;
}

.btn {
    background-color: transparent;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    padding: 22px 48px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.2), transparent);
    transition: left 0.8s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: rgba(230, 126, 34, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--glow-orange);
}

.btn--hero {
    padding: 24px 56px;
    font-size: 0.9rem;
}

.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero__scroll span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--color-light);
    opacity: 0.7;
    text-transform: uppercase;
}

.scroll__line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-orange), transparent);
    animation: scrollLine 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scrollLine {
    0%, 100% { height: 80px; opacity: 0.3; }
    50% { height: 120px; opacity: 1; }
}

/* Цифры роскоши */
.numbers {
    padding: 120px 0;
    background-color: var(--color-dark-light);
    position: relative;
    overflow: hidden;
}

.numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
}

.numbers::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
}

.numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.number-item {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.number-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.number-item__value {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 20px;
    text-shadow: var(--glow-orange);
}

.number-item__line {
    width: 60px;
    height: 2px;
    background-color: var(--color-border-light);
    margin: 0 auto 20px;
    position: relative;
}

.number-item__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-orange);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.number-item.visible .number-item__line::after {
    width: 100%;
}

.number-item__title {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Коллекция */
.collection {
    padding: 160px 0;
    position: relative;
}

.collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: var(--color-lighter);
    line-height: 1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-light);
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.collection-counter {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    display: flex;
    align-items: baseline;
}

.counter-current {
    font-weight: 700;
    color: var(--color-orange);
    text-shadow: var(--glow-orange);
}

.counter-separator {
    margin: 0 10px;
    font-weight: 300;
    color: var(--color-border-light);
}

.counter-total {
    font-weight: 300;
    color: var(--color-light);
    opacity: 0.5;
}

.collection__grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.product-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:nth-child(even) {
    grid-template-columns: 0.8fr 1.2fr;
}

.product-card:nth-child(even) .product-card__content {
    order: -1;
}

.product-card__image {
    position: relative;
    overflow: hidden;
    height: 600px;
    border-radius: 2px;
    box-shadow: var(--shadow-heavy);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card__image:hover img {
    transform: scale(1.05);
}

.product-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.3), transparent 60%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
}

.product-card__badge {
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    padding: 12px 24px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-card__content {
    padding: 40px 0;
}

.product-card__header {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.product-card__number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-border-light);
    line-height: 1;
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--color-lighter);
    line-height: 1.1;
}

.product-card__desc {
    color: var(--color-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

.product-card__specs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.spec {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.spec__value {
    font-size: 0.95rem;
    color: var(--color-light);
    line-height: 1.6;
    opacity: 0.7;
}

/* Галерея */
.gallery {
    padding: 160px 0;
    background-color: var(--color-dark-light);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
}

.gallery__header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 60px;
}

.gallery__title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: var(--color-lighter);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gallery__subtitle {
    font-size: 1.2rem;
    color: var(--color-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.gallery__container {
    width: 100%;
    overflow: hidden;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 60px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-orange);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s;
}

.gallery__item:hover .gallery__overlay {
    background-color: rgba(10, 10, 10, 0.8);
}

.gallery__zoom {
    color: transparent;
    font-size: 3rem;
    font-weight: 300;
    transition: color 0.4s;
}

.gallery__item:hover .gallery__zoom {
    color: var(--color-orange);
}

.gallery__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 0 60px;
}

.gallery__counter {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-light);
    display: flex;
    align-items: baseline;
}

.counter-separator {
    margin: 0 10px;
    color: var(--color-border-light);
}

.gallery__nav {
    display: flex;
    gap: 20px;
}

.gallery__nav-btn {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.gallery__nav-btn:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: var(--glow-orange);
}

/* Контактный блок */
.contact-block {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.contact-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
}

.contact-block__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    padding: 0 60px;
}

.contact-block__content {
    padding-right: 40px;
}

.contact-block__header {
    margin-bottom: 80px;
}

.contact-block__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-lighter);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-block__subtitle {
    font-size: 1.2rem;
    color: var(--color-light);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.contact-block__info {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 80px;
}

.contact-info__item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info__item.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-info__icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-dark-light);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s;
}

.contact-info__item:hover .contact-info__icon {
    border-color: var(--color-orange);
    box-shadow: var(--glow-orange);
    transform: translateY(-5px);
}

.contact-info__content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-lighter);
    margin-bottom: 15px;
}

.contact-info__content p {
    color: var(--color-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 300;
    opacity: 0.8;
}

.contact-info__content .note {
    font-size: 0.9rem;
    opacity: 0.6;
    font-style: italic;
}

.contact-info__content a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.contact-info__content a:hover {
    color: var(--color-orange);
}

.btn--contact {
    padding: 24px 48px;
}

.contact-block__map {
    height: 700px;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    /*position: relative;*/
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}

.map-overlay__content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 20px;
    font-weight: 600;
}

.map-overlay__content p {
    color: var(--color-light);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 300;
    opacity: 0.8;
}

/* Футер */
.footer {
    padding: 80px 0;
    background-color: var(--color-dark);
    border-top: 1px solid var(--color-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-orange), transparent);
}

.footer__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__logo-symbol {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
    text-shadow: var(--glow-orange);
}

.footer__logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.footer__logo-text span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-lighter);
    letter-spacing: 2px;
}

.footer__logo-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-orange-light);
    letter-spacing: 3px;
    margin-top: 5px;
    text-transform: uppercase;
}

.footer__info {
    flex: 1;
    max-width: 500px;
}

.footer__company h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-lighter);
    margin-bottom: 15px;
}

.footer__company p {
    color: var(--color-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 300;
    opacity: 0.7;
}

.footer__legal {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border-light);
}

.footer__legal p {
    color: var(--color-light);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 300;
    opacity: 0.5;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.social-link:hover {
    border-color: var(--color-orange);
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--color-orange);
    transform: translateY(-5px);
    box-shadow: var(--glow-orange);
}

/* Модальное окно */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
}

.modal__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    background-color: var(--color-dark-light);
    border: 1px solid var(--color-border);
    padding: 80px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal__container {
    opacity: 1;
    transform: scale(1);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border-light);
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-lighter);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.modal__close {
    background: transparent;
    border: none;
    color: var(--color-light);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
    opacity: 0.7;
    margin-top: -10px;
}

.modal__close:hover {
    color: var(--color-orange);
}

.modal__text {
    color: var(--color-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

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


a {
    text-decoration: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: var(--color-dark);
    border: 1px solid var(--color-border);
    color: var(--color-light);
    padding: 22px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: var(--glow-orange);
    background-color: rgba(10, 10, 10, 0.8);
}

.form-group textarea {
    height: 180px;
    resize: vertical;
}

.btn--modal {
    background-color: var(--color-orange);
    color: var(--color-dark);
    border: none;
    padding: 24px 56px;
    font-weight: 500;
    margin-top: 20px;
    font-size: 0.9rem;
}

.btn--modal:hover {
    background-color: var(--color-orange-dark);
    color: var(--color-dark);
    transform: translateY(-5px);
    box-shadow: var(--glow-orange);
}

.modal__note {
    font-size: 0.8rem;
    color: var(--color-light);
    margin-top: 40px;
    text-align: center;
    opacity: 0.5;
    font-weight: 300;
}

/* Адаптивность */
@media (max-width: 1440px) {
    .container, .header__top, .hero__content, .gallery__header, 
    .gallery__grid, .gallery__footer, .contact-block__container,
    .footer__container {
        padding: 0 40px;
    }
    
    .hero__title {
        font-size: 6rem;
    }
    
    .section-title, .gallery__title {
        font-size: 4rem;
    }
    
    .contact-block__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .hero__title {
        font-size: 5rem;
    }
    
    .numbers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 40px;
    }
    
    .collection__grid {
        gap: 100px;
    }
    
    .product-card {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .product-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .product-card:nth-child(even) .product-card__content {
        order: 0;
    }
    
    .product-card__image {
        height: 500px;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-block__container {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .contact-block__content {
        padding-right: 0;
    }
    
    .contact-block__map {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .header__contacts .btn-contact {
        display: none;
    }
    
    .header__burger {
        display: flex;
    }
    
    .hero {
        min-height: 800px;
        padding: 100px 0 60px;
    }
    
    .hero__title {
        font-size: 4rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .section-title, .gallery__title {
        font-size: 3.5rem;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__main {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container, .header__top, .hero__content, .gallery__header,
    .gallery__grid, .gallery__footer, .contact-block__container,
    .footer__container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: 700px;
        padding: 80px 0 40px;
    }
    
    .hero__title {
        font-size: 3.2rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .numbers__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .number-item__value {
        font-size: 3.5rem;
    }
    
    .section-title, .gallery__title {
        font-size: 2.8rem;
    }
    
    .contact-block__title {
        font-size: 2.8rem;
    }
    
    .product-card__image {
        height: 400px;
    }
    
    .product-card__title {
        font-size: 2.2rem;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item {
        height: 250px;
    }
    
    .modal {
        padding: 20px;
    }
    
    .modal__container {
        padding: 40px 30px;
    }
    
    .modal__title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .header__top {
        padding: 0 20px;
    }
    
    .logo__symbol {
        font-size: 2.2rem;
    }
    
    .logo__text span:first-child {
        font-size: 1.4rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .btn, .btn--hero, .btn--contact {
        padding: 18px 30px;
        font-size: 0.8rem;
    }
    
    .section-title, .gallery__title {
        font-size: 2.2rem;
    }
    
    .contact-block__title {
        font-size: 2.2rem;
    }
    
    .product-card__title {
        font-size: 1.8rem;
    }
    
    .contact-info__icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .modal__container {
        padding: 30px 20px;
    }
}