/* ============================================
   main.css - Базовые стили, переменные, сбросы
   ============================================ */

:root {
    --primary: #00BFFF;
    --primary-dark: #0099CC;
    --accent: #FF9900;
    --accent-hover: #E68A00;
    --text: #1a1a2e;
    --text-light: #4a4a6a;
    --text-muted: #7a7a9a;
    --bg: #FAFBFC;
    --bg-card: #FFFFFF;
    --border: #E8E8F0;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile base */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
