* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #455C56;
    --primary-dark: #354a44;
    --primary-light: #5a7570;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #F8FAFC;
    --accent: #E6B17E;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero секция с центрированным контентом и плавающими точками */
.hero {
    background: var(--primary);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    margin-top: 0;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    color: var(--text-light);
    text-align: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    text-align: center;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: #d4a16b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Плавающие точки на весь фон */
.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dot {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

/* Размеры и позиции для каждой точки */
.dot-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background: rgba(230, 177, 126, 0.15);
}

.dot-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 10%;
    animation-delay: 1s;
    background: rgba(255, 255, 255, 0.1);
}

.dot-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 15%;
    animation-delay: 2s;
    background: rgba(230, 177, 126, 0.2);
}

.dot-4 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
    background: rgba(255, 255, 255, 0.05);
}

.dot-5 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 25%;
    animation-delay: 4s;
    background: rgba(230, 177, 126, 0.1);
}

.dot-6 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 30%;
    animation-delay: 5s;
    background: rgba(255, 255, 255, 0.08);
}

.dot-7 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    background: rgba(230, 177, 126, 0.12);
}

.dot-8 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 15%;
    animation-delay: 7s;
    background: rgba(255, 255, 255, 0.07);
}

.dot-9 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 10%;
    animation-delay: 8s;
    background: rgba(230, 177, 126, 0.15);
}

.dot-10 {
    width: 130px;
    height: 130px;
    top: 80%;
    left: 30%;
    animation-delay: 9s;
    background: rgba(255, 255, 255, 0.06);
}

.dot-11 {
    width: 50px;
    height: 50px;
    top: 20%;
    left: 40%;
    animation-delay: 10s;
    background: rgba(230, 177, 126, 0.2);
}

.dot-12 {
    width: 160px;
    height: 160px;
    bottom: 15%;
    right: 40%;
    animation-delay: 11s;
    background: rgba(255, 255, 255, 0.04);
}

.dot-13 {
    width: 110px;
    height: 110px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 12s;
    background: rgba(230, 177, 126, 0.1);
}

.dot-14 {
    width: 85px;
    height: 85px;
    top: 5%;
    right: 45%;
    animation-delay: 13s;
    background: rgba(255, 255, 255, 0.12);
}

.dot-15 {
    width: 140px;
    height: 140px;
    bottom: 5%;
    left: 45%;
    animation-delay: 14s;
    background: rgba(230, 177, 126, 0.08);
}

.dot-16 {
    width: 95px;
    height: 95px;
    top: 35%;
    right: 60%;
    animation-delay: 15s;
    background: rgba(255, 255, 255, 0.1);
}

.dot-17 {
    width: 170px;
    height: 170px;
    top: 85%;
    right: 65%;
    animation-delay: 16s;
    background: rgba(230, 177, 126, 0.06);
}

.dot-18 {
    width: 75px;
    height: 75px;
    top: 55%;
    left: 75%;
    animation-delay: 17s;
    background: rgba(255, 255, 255, 0.15);
}

.dot-19 {
    width: 125px;
    height: 125px;
    bottom: 25%;
    left: 70%;
    animation-delay: 18s;
    background: rgba(230, 177, 126, 0.09);
}

.dot-20 {
    width: 55px;
    height: 55px;
    top: 45%;
    right: 80%;
    animation-delay: 19s;
    background: rgba(255, 255, 255, 0.18);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.05);
    }
    50% {
        transform: translate(40px, 0px) scale(1.1);
    }
    75% {
        transform: translate(20px, 20px) scale(1.05);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Анимация появления текста */
.animate-hero {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .dot {
        opacity: 0.2;
    }
}
/* Features секция */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: var(--primary);
    transform: rotateY(180deg);
}

.feature-card h3 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 20px;
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.6;
}

/* Тарифы */
.tariffs {
    padding: 100px 0;
    background: white;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tariff-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.tariff-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.tariff-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.tariff-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 32px;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.period {
    color: var(--gray-500);
}

.tariff-features {
    list-style: none;
    margin-bottom: 32px;
}

.tariff-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
}

.tariff-features i {
    color: var(--accent);
    font-size: 18px;
}

/* CTA секция */
.cta {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text {
    color: var(--text-light);
}

.cta-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.cta-text p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.cta-feature i {
    color: var(--accent);
    font-size: 20px;
}

.cta-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.cta-form h3 {
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(69, 92, 86, 0.1);
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-400);
}

.form-success {
    text-align: center;
    padding: 20px;
}

.form-success i {
    font-size: 64px;
    color: #10B981;
    margin-bottom: 16px;
}

.form-success h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-500);
}

/* Отзывы */
.reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-rating {
    color: #FBBF24;
    margin-bottom: 16px;
    font-size: 14px;
}

.review-text {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-info h4 {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info p {
    color: var(--gray-400);
    font-size: 14px;
}

/* Карта */
.map-section {
    width: 100%;
    height: 500px;
    position: relative;
}

.map-section iframe {
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.map-section iframe:hover {
    filter: grayscale(0);
}

/* Футер */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.logo-sub {
    font-size: 14px;
    opacity: 0.8;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.contact-info li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info i {
    color: var(--accent);
    width: 16px;
}

.subscribe-form {
    display: flex;
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: white;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form input:focus {
    outline: none;
}

.subscribe-form button {
    padding: 12px 20px;
    background: var(--accent);
    border: none;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background: #d4a16b;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.6;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-text p {
        margin: 0 auto 32px;
    }
    
    .features-grid,
    .tariffs-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }
    
    .features-grid,
    .tariffs-grid,
    .reviews-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
}

/* Добавьте эти стили в начало файла style.css */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(69, 92, 86, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--accent);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero секция с новой анимацией */
.hero {
    background: var(--primary);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    margin-top: 0;
}

.hero-visual {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1527192491265-7e15af55a1f2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1170&q=80');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1169&q=80');
}

.slide-3 {
    background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1169&q=80');
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 30px 30px;
    z-index: 2;
}

.overlay-content {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.overlay-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.overlay-item i {
    color: var(--accent);
    font-size: 20px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
    opacity: 0;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 70%;
    left: 30%;
    animation-delay: 1s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(5) {
    top: 30%;
    left: 60%;
    animation-delay: 4s;
    width: 10px;
    height: 10px;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    25% {
        opacity: 0.8;
        transform: translate(20px, -20px);
    }
    50% {
        opacity: 0.6;
        transform: translate(40px, 0px);
    }
    75% {
        opacity: 0.4;
        transform: translate(20px, 20px);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .header-contacts {
        gap: 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-contacts {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .overlay-content {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .overlay-item {
        font-size: 14px;
    }
}

/* Обновим hero-text для лучшего отображения с новым header */
.hero-text {
    color: var(--text-light);
    padding-right: 20px;
}