:root {
    /* ЦВЕТА */
    --sea: #00afac;
    --sea-light: #4fc9c7;
    --sea-dark: #008a88;
    --sea-ultralight: #e6f6f5;
    
    --orange: #f5a623;
    --orange-dark: #e09515;
    --orange-light: #f8c56e;
    
    /* ТЕМНЫЕ ЗАГОЛОВКИ */
    --heading-color: #1a2c3e;
    --text-dark: #2c3e4e;
    --text-muted: #6b7f8f;
    --text-light: #9aabb8;
    
    --white: #ffffff;
    --gray-bg: #f5f8fa;
    --gray-light: #eef2f5;
    
    /* ТЕНИ */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-sea: 0 8px 20px rgba(0,175,172,0.12);
    --shadow-orange: 0 8px 20px rgba(245,166,35,0.15);
    
    /* СКРУГЛЕНИЯ */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 999px;
    
    /* ОТСТУПЫ */
    --space-sm: 20px;
    --space-md: 40px;
    --space-lg: 60px;
    --space-xl: 80px;
    
    --transition: all 0.25s ease;
}