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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: #1f2937;
    line-height: 1.6;
}

/* ===== ОСНОВНЫЕ СТИЛИ ГЛАВНОЙ СТРАНИЦЫ ===== */

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.hero-section {
    max-width: 800px;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.main-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    font-weight: var(--font-weight-normal);
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .main-title {
        font-size: var(--font-size-3xl);
    }
    
    .subtitle {
        font-size: var(--font-size-lg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-section {
        margin: var(--spacing-md);
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: var(--font-size-2xl);
    }
    
    .subtitle {
        font-size: var(--font-size-base);
    }
}
