/* ========== VARIABLES ========== */
:root {
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --blue-authority: #23326B;
    --dusty-rose-action: #B56576;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --border-blue: rgba(35, 50, 107, 0.2);
    --sidebar-width: 260px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== PRINT STYLES & PAGE BREAKS ========== */
@media print {
    .sidebar,
    .mobile-header,
    .mobile-overlay,
    .burger-menu,
    .hero-cta,
    .btn {
        display: none !important;
    }

    .main-content {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }

    .tab-content {
        padding: 20px;
        page-break-inside: avoid;
    }

    .page-hero,
    .hero {
        page-break-after: avoid;
    }

    .feature-card,
    .platform-card {
        page-break-inside: avoid;
    }

    .feature-cards-grid {
        display: block;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    section {
        page-break-before: always;
    }

    section:first-of-type {
        page-break-before: avoid;
    }
}
