/* foundation.css - базовый фундамент для внутренних страниц */
:root {
    --primary-dark: #1e3a8a;
    --primary-blue: #2563eb;
    --primary-light: #3b82f6;
    --accent-gold: #d97706;
    --gold-light: #f59e0b;

    --white: #ffffff;
    --white-pure: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --text-dark: #1e293b;

    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    --gradient-gold: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --gradient-light: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);

    --shadow-soft: 0 4px 20px rgba(30, 58, 138, 0.08);
    --shadow-medium: 0 8px 40px rgba(30, 58, 138, 0.12);
    --shadow-large: 0 20px 60px rgba(30, 58, 138, 0.15);

    --border-radius: 12px;
    --border-radius-lg: 16px;
    --surface-radius: 20px;
    --surface-radius-lg: 24px;
    --surface-border: 1px solid rgba(15, 23, 42, 0.08);
    --surface-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    --surface-shadow-hover: 0 20px 48px rgba(37, 99, 235, 0.14);

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --page-top-offset: 102px;
    --page-top-offset-mobile: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white-pure);
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}


:root {
    --notice-bg: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    --notice-border: rgba(37, 99, 235, 0.2);
    --notice-border-strong: #2563eb;
    --notice-shadow: 0 16px 34px rgba(37, 99, 235, 0.16);
    --notice-icon-bg: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(29, 78, 216, 0.16) 100%);
    --notice-icon-color: #2563eb;
    --notice-title: #1d4ed8;
    --notice-text: #475569;
}
