/* ==========================================================================
   Design Tokens — Euroaccounts
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: #13356F;
    --color-primary-light: #1E4D8C;
    --color-primary-dark: #0C2147;
    --color-accent: #C8A96E;
    --color-accent-light: #DFC794;
    --color-secondary: #171819;
    --color-text: #4A4F52;
    --color-text-light: #6B7280;
    --color-text-inverse: #FFFFFF;
    --color-bg: #FFFFFF;
    --color-bg-light: #F7F8FA;
    --color-bg-dark: #13356F;
    --color-bg-darker: #0C2147;
    --color-border: #E5E7EB;
    --color-border-light: #F0F1F3;
    --color-success: #10B981;
    --color-error: #EF4444;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-label: 'Roboto Condensed', sans-serif;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Layout */
    --max-content: 720px;
    --max-wide: 1080px;
    --max-container: 1200px;
    --max-full: 1400px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 2px 8px rgba(19, 53, 111, 0.08);
    --shadow-hover: 0 4px 16px rgba(19, 53, 111, 0.14);
    --shadow-lg: 0 8px 32px rgba(19, 53, 111, 0.12);

    /* Transitions */
    --transition: 250ms ease;
    --transition-slow: 400ms ease;

    /* Z-index */
    --z-dropdown: 50;
    --z-header: 100;
    --z-offcanvas: 200;
    --z-modal: 250;
    --z-consent: 300;
    --z-sticky-cta: 150;
}
