:root {
    /* Технологичная палитра (Deep Tech) */
    --color-bg: #FFFFFF;
    --color-section: #F8FAFC;
    --color-primary: #0F172A;   /* Темно-синий/Черный для текста */
    --color-accent: #0891B2;    /* Cyan (Бирюзовый) для акцентов */
    --color-text-main: #1E293B;
    --color-text-muted: #64748B;
    
    --font-display: 'Lexend', sans-serif; /* Более современный и "технологичный" шрифт */
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--color-bg);
    font-family: var(--font-body);
    color: var(--color-text-main);
    letter-spacing: -0.01em;
}

/* Свечение для текста */
.text-glow {
    text-shadow: 0 0 20px rgba(8, 145, 178, 0.4);
}

.header-scrolled {
    background-color: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Элементы появления */
.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Кастомные кнопки */
button, .btn {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-1px);
}

/* Улучшение форм */
input::placeholder {
    color: #94A3B8;
}

/* Адаптация под Италию (типографика) */
h1, h2 {
    letter-spacing: -0.03em;
}