/*
 Theme Name: IRO AAU Theme
 Theme URI: https://iro.aauni.edu
 Description: Custom child theme for IRO (Institutional Research Office) at Anglo-American University Prague. Features professional data visualization styling, AAU brand colors (#000000 black + #CD0000 red), and optimized typography for institutional reports and dashboards.
 Author: Ing. Martin Opatrný - Institutional Research Office
 Author URI: https://iro.aauni.edu
 Template: hello-elementor
 Version: 2.0.0
 License: GNU General Public License v3 or later
 License URI: https://www.gnu.org/licenses/gpl-3.0.html
 Text Domain: iro-aau-theme
 Tags: institutional-research, data-visualization, aau, reports, dashboard
*/

/* ==========================================================================
   AAU DESIGN SYSTEM - CSS Variables
   Based on AAU Brand Guidelines: #000000 (black) + #CD0000 (red)
   ========================================================================== */

:root {
    /* ══════════════════════════════════════════════════════════════════════
       PRIMARY COLORS - AAU Official Brand
       ══════════════════════════════════════════════════════════════════════ */
    --aau-black: #000000;
    --aau-red: #CD0000;
    --aau-red-dark: #A00000;
    --aau-red-light: #E53935;
    --aau-red-bg: rgba(205, 0, 0, 0.08);
    
    /* ══════════════════════════════════════════════════════════════════════
       SECONDARY COLORS - IRO Reports & Infographics
       ══════════════════════════════════════════════════════════════════════ */
    --iro-blue-primary: #1F4E78;
    --iro-blue-secondary: #2E5C8A;
    --iro-blue-accent: #4472C4;
    --iro-blue-light: #E7F0FF;
    
    /* ══════════════════════════════════════════════════════════════════════
       STATUS & SEMANTIC COLORS
       ══════════════════════════════════════════════════════════════════════ */
    --status-success: #00B050;
    --status-success-light: #E7F5E7;
    --status-warning: #FFC000;
    --status-warning-light: #FFF8E1;
    --status-error: #C00000;
    --status-error-light: #FFE7E7;
    --status-info: #2196F3;
    --status-info-light: #E3F2FD;
    
    /* ══════════════════════════════════════════════════════════════════════
       NEUTRAL COLORS
       ══════════════════════════════════════════════════════════════════════ */
    --neutral-900: #0a0a0a;
    --neutral-800: #1a1a1a;
    --neutral-700: #333333;
    --neutral-600: #555555;
    --neutral-500: #777777;
    --neutral-400: #999999;
    --neutral-300: #cccccc;
    --neutral-200: #e5e5e5;
    --neutral-100: #f0f0f0;
    --neutral-50: #f8f8f8;
    --white: #ffffff;
    
    /* ══════════════════════════════════════════════════════════════════════
       TYPOGRAPHY
       ══════════════════════════════════════════════════════════════════════ */
    --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    
    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
    --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    --text-lg: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-xl: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
    --text-2xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-3xl: clamp(1.5rem, 1.25rem + 1.25vw, 1.875rem);
    --text-4xl: clamp(1.75rem, 1.5rem + 1.5vw, 2.25rem);
    --text-5xl: clamp(2rem, 1.75rem + 2vw, 3rem);
    --text-6xl: clamp(2.5rem, 2rem + 2.5vw, 3.75rem);
    
    /* ══════════════════════════════════════════════════════════════════════
       SPACING SYSTEM
       ══════════════════════════════════════════════════════════════════════ */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* ══════════════════════════════════════════════════════════════════════
       BORDER RADIUS
       ══════════════════════════════════════════════════════════════════════ */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* ══════════════════════════════════════════════════════════════════════
       SHADOWS
       ══════════════════════════════════════════════════════════════════════ */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --shadow-card: 0 1px 3px 0 rgb(0 0 0 / 0.04), 0 1px 2px -1px rgb(0 0 0 / 0.02);
    --shadow-card-hover: 0 10px 20px -5px rgb(0 0 0 / 0.1);
    --shadow-red: 0 4px 14px 0 rgba(205, 0, 0, 0.25);
    --shadow-inset: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    
    /* ══════════════════════════════════════════════════════════════════════
       TRANSITIONS
       ══════════════════════════════════════════════════════════════════════ */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* ══════════════════════════════════════════════════════════════════════
       LAYOUT
       ══════════════════════════════════════════════════════════════════════ */
    --container-max: 1400px;
    --container-narrow: 900px;
    --container-wide: 1600px;
    --header-height: 80px;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

/* Import Google Fonts - Optimized */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--neutral-700);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Selection styling */
::selection {
    background-color: var(--aau-red);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--aau-red);
    color: var(--white);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--aau-black);
    margin-top: 0;
    margin-bottom: var(--space-4);
}

h1, .h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2, .h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3, .h3 {
    font-size: var(--text-3xl);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4, .h4 {
    font-size: var(--text-2xl);
    font-weight: 600;
}

h5, .h5 {
    font-size: var(--text-xl);
    font-weight: 600;
}

h6, .h6 {
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neutral-500);
}

p {
    margin-top: 0;
    margin-bottom: var(--space-4);
}

.lead {
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--neutral-600);
    line-height: 1.8;
}

.lead-large {
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--neutral-600);
    line-height: 1.6;
}

strong, b {
    font-weight: 700;
}

a {
    color: var(--aau-red);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--aau-red-dark);
}

/* Underline link style */
a.link-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

a.link-underline:hover {
    text-decoration-thickness: 2px;
}

/* Text Colors */
.text-black { color: var(--aau-black); }
.text-red { color: var(--aau-red); }
.text-primary { color: var(--iro-blue-primary); }
.text-accent { color: var(--aau-red); }
.text-success { color: var(--status-success); }
.text-warning { color: var(--status-warning); }
.text-error { color: var(--status-error); }
.text-muted { color: var(--neutral-500); }
.text-white { color: var(--white); }

/* Text weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* ==========================================================================
   LAYOUT & CONTAINERS
   ========================================================================== */

.container,
.iro-container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.section-sm {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
}

/* ==========================================================================
   CARDS - KPI Style from Infographics
   ========================================================================== */

.iro-card,
.kpi-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.iro-card:hover,
.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.iro-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--neutral-200);
}

.iro-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0;
}

.iro-card-body {
    flex: 1;
}

.iro-card-footer {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--neutral-200);
}

/* Card with accent border */
.iro-card-accent {
    border-left: 4px solid var(--aau-red);
}

.iro-card-accent-blue {
    border-left: 4px solid var(--iro-blue-primary);
}

/* ==========================================================================
   KPI NUMBERS & STATISTICS
   ========================================================================== */

.stat-number,
.kpi-number {
    font-family: var(--font-primary);
    font-size: var(--text-5xl);
    font-weight: 900;
    line-height: 1;
    color: var(--aau-red);
    letter-spacing: -0.02em;
}

.stat-number-black {
    color: var(--aau-black);
}

.stat-number-blue {
    color: var(--iro-blue-primary);
}

.stat-number-green {
    color: var(--status-success);
}

.stat-label {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-2);
}

.stat-change {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    font-weight: 700;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.stat-change-positive {
    color: var(--status-success);
    background-color: var(--status-success-light);
}

.stat-change-negative {
    color: var(--status-error);
    background-color: var(--status-error-light);
}

/* Stat cards */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--aau-red);
    box-shadow: var(--shadow-md);
}

.stat-card-highlight {
    background: var(--aau-black);
    color: var(--white);
    border-color: var(--aau-black);
}

.stat-card-highlight .stat-number {
    color: var(--aau-red);
}

.stat-card-highlight .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn,
.iro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Primary Button - Red (AAU Brand) */
.btn-primary,
.iro-btn-primary {
    background-color: var(--aau-red);
    color: var(--white);
    border-color: var(--aau-red);
}

.btn-primary:hover,
.iro-btn-primary:hover {
    background-color: var(--aau-red-dark);
    border-color: var(--aau-red-dark);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Secondary Button - Black */
.btn-secondary,
.iro-btn-secondary {
    background-color: var(--aau-black);
    color: var(--white);
    border-color: var(--aau-black);
}

.btn-secondary:hover,
.iro-btn-secondary:hover {
    background-color: var(--neutral-800);
    border-color: var(--neutral-800);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Accent Button - Blue (for reports) */
.btn-accent,
.iro-btn-accent {
    background-color: var(--iro-blue-primary);
    color: var(--white);
    border-color: var(--iro-blue-primary);
}

.btn-accent:hover,
.iro-btn-accent:hover {
    background-color: var(--iro-blue-secondary);
    border-color: var(--iro-blue-secondary);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Outline Buttons */
.btn-outline,
.iro-btn-outline {
    background-color: transparent;
    color: var(--aau-red);
    border-color: var(--aau-red);
}

.btn-outline:hover,
.iro-btn-outline:hover {
    background-color: var(--aau-red);
    color: var(--white);
    text-decoration: none;
}

.btn-outline-black {
    background-color: transparent;
    color: var(--aau-black);
    border-color: var(--aau-black);
}

.btn-outline-black:hover {
    background-color: var(--aau-black);
    color: var(--white);
    text-decoration: none;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--aau-black);
    text-decoration: none;
}

/* Ghost Button */
.btn-ghost {
    background-color: transparent;
    color: var(--neutral-600);
    border-color: transparent;
}

.btn-ghost:hover {
    background-color: var(--neutral-100);
    color: var(--aau-black);
    text-decoration: none;
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-base);
}

.btn-xl {
    padding: var(--space-5) var(--space-12);
    font-size: var(--text-lg);
}

/* Button with icon */
.btn-icon {
    padding: var(--space-3);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   BADGES & TAGS
   ========================================================================== */

.badge,
.iro-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.badge-primary {
    background-color: rgba(31, 78, 120, 0.1);
    color: var(--iro-blue-primary);
}

.badge-accent {
    background-color: rgba(205, 0, 0, 0.1);
    color: var(--aau-red);
}

.badge-success {
    background-color: var(--status-success-light);
    color: var(--status-success);
}

.badge-warning {
    background-color: var(--status-warning-light);
    color: #b36b00;
}

.badge-error {
    background-color: var(--status-error-light);
    color: var(--status-error);
}

/* ==========================================================================
   TABLES
   ========================================================================== */

.iro-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.iro-table thead {
    background-color: var(--iro-blue-primary);
    color: var(--white);
}

.iro-table th {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-4);
    text-align: left;
}

.iro-table td {
    padding: var(--space-4);
    border-bottom: 1px solid var(--neutral-200);
    font-size: var(--text-sm);
}

.iro-table tbody tr:hover {
    background-color: var(--neutral-50);
}

.iro-table tbody tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.iro-input,
.iro-select,
.iro-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--neutral-800);
    background-color: var(--white);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.iro-input:focus,
.iro-select:focus,
.iro-textarea:focus {
    outline: none;
    border-color: var(--iro-blue-primary);
    box-shadow: 0 0 0 3px rgba(31, 78, 120, 0.15);
}

.iro-input::placeholder {
    color: var(--neutral-400);
}

.iro-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: var(--space-2);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header,
.iro-header {
    background-color: var(--aau-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.iro-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-8);
    max-width: var(--container-max);
    margin: 0 auto;
    height: 100%;
}

.iro-logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.iro-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1); /* Make logo white on black bg */
}

.iro-logo-text {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.iro-logo-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 var(--space-2);
}

.iro-logo-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.iro-nav {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.iro-nav a {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.iro-nav a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.iro-nav a.active {
    color: var(--white);
    background-color: var(--aau-red);
}

/* Red accent strip under header */
.iro-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aau-red) 0%, var(--aau-red-dark) 100%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer,
.iro-footer {
    background-color: var(--aau-black);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
}

/* Red accent strip on top of footer */
.iro-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--aau-red);
}

.iro-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.iro-footer a:hover {
    color: var(--aau-red);
}

.iro-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.iro-footer-brand {
    padding-right: var(--space-8);
}

.iro-footer-brand img {
    height: 40px;
    margin-bottom: var(--space-4);
    filter: brightness(0) invert(1);
}

.iro-footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.iro-footer-title {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.iro-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.iro-footer-links li {
    margin-bottom: var(--space-2);
}

.iro-footer-links a {
    font-size: var(--text-sm);
    display: inline-block;
    padding: var(--space-1) 0;
}

.iro-footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.iro-hero {
    background: var(--aau-black);
    color: var(--white);
    padding: var(--space-24) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Geometric pattern background */
.iro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(205, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(205, 0, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.iro-hero-content {
    position: relative;
    z-index: 1;
}

.iro-hero h1 {
    color: var(--white);
    font-size: var(--text-6xl);
    margin-bottom: var(--space-6);
    font-weight: 700;
}

.iro-hero h1 .text-red {
    color: var(--aau-red);
}

.iro-hero .lead {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto var(--space-10);
    font-size: var(--text-xl);
}

/* Hero with red accent */
.iro-hero-red {
    background: linear-gradient(135deg, var(--aau-red) 0%, var(--aau-red-dark) 100%);
}

.iro-hero-red::before {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

/* ==========================================================================
   IRO LANDING PAGE - HOME DASHBOARD
   ========================================================================== */

.iro-landing {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.iro-landing-hero {
    background: var(--aau-black);
    color: var(--white);
    padding: var(--space-20) var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.iro-landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(205, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(205, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.iro-landing-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.iro-landing-hero .iro-logo-large {
    height: 60px;
    margin-bottom: var(--space-8);
}

.iro-landing-hero h1 {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.iro-landing-hero h1 .highlight {
    color: var(--aau-red);
}

.iro-landing-hero .subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-6);
    font-weight: 400;
}

.iro-landing-hero .lead-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Navigation Cards Section */
.iro-landing-nav {
    padding: var(--space-16) var(--space-8);
    background: var(--neutral-50);
    flex: 1;
}

.iro-landing-nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.iro-landing-nav h2 {
    text-align: center;
    font-size: var(--text-3xl);
    margin-bottom: var(--space-12);
    color: var(--aau-black);
}

.iro-nav-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.iro-nav-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    border: 2px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.iro-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--aau-red);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.iro-nav-card:hover {
    border-color: var(--aau-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.iro-nav-card:hover::before {
    transform: scaleX(1);
}

.iro-nav-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--aau-red-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.iro-nav-card:hover .iro-nav-card-icon {
    background: var(--aau-red);
}

.iro-nav-card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--aau-red);
    transition: color var(--transition-base);
}

.iro-nav-card:hover .iro-nav-card-icon svg {
    color: var(--white);
}

.iro-nav-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--aau-black);
    margin-bottom: var(--space-3);
}

.iro-nav-card p {
    color: var(--neutral-600);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.iro-nav-card .card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--aau-red);
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.iro-nav-card .card-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.iro-nav-card:hover .card-cta svg {
    transform: translateX(4px);
}

/* Quick Stats Section */
.iro-landing-stats {
    background: var(--white);
    padding: var(--space-12) var(--space-8);
    border-top: 1px solid var(--neutral-200);
}

.iro-landing-stats-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.iro-stat-item {
    text-align: center;
}

.iro-stat-number {
    font-family: var(--font-primary);
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--aau-red);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.iro-stat-label {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Features Section */
.iro-landing-features {
    padding: var(--space-16) var(--space-8);
    background: var(--aau-black);
    color: var(--white);
}

.iro-landing-features-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.iro-landing-features h2 {
    text-align: center;
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--white);
}

.iro-landing-features .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.iro-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.iro-feature-item {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.iro-feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--aau-red);
}

.iro-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--aau-red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.iro-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.iro-feature-item h4 {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.iro-feature-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin: 0;
}

/* Annual Report Section */
.iro-landing-report {
    padding: var(--space-16) var(--space-8);
    background: var(--white);
}

.iro-landing-report-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.iro-report-content h2 {
    font-size: var(--text-3xl);
    color: var(--aau-black);
    margin-bottom: var(--space-4);
}

.iro-report-content .year-badge {
    display: inline-block;
    background: var(--aau-red);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.iro-report-content p {
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.iro-report-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.iro-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.iro-highlight-item svg {
    width: 20px;
    height: 20px;
    color: var(--aau-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.iro-highlight-item span {
    font-size: var(--text-sm);
    color: var(--neutral-700);
}

/* Contact/Feedback Section */
.iro-landing-contact {
    padding: var(--space-16) var(--space-8);
    background: var(--neutral-50);
    text-align: center;
}

.iro-landing-contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

.iro-landing-contact h2 {
    font-size: var(--text-2xl);
    color: var(--aau-black);
    margin-bottom: var(--space-4);
}

.iro-landing-contact p {
    color: var(--neutral-600);
    margin-bottom: var(--space-6);
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES
   ========================================================================== */

/* Reports Dashboard */
.iro-reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
}

/* Report Types */
.report-type-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

/* Chart Containers */
.chart-container {
    position: relative;
    width: 100%;
    height: 350px;
    max-height: 400px;
}

@media (min-width: 768px) {
    .chart-container {
        height: 400px;
    }
}

/* ==========================================================================
   ALERTS & NOTIFICATIONS
   ========================================================================== */

.iro-alert {
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    border-left: 4px solid;
    margin-bottom: var(--space-4);
}

.iro-alert-info {
    background-color: var(--iro-blue-light);
    border-left-color: var(--iro-blue-primary);
    color: var(--iro-blue-primary);
}

.iro-alert-success {
    background-color: var(--status-success-light);
    border-left-color: var(--status-success);
    color: #1a5f2c;
}

.iro-alert-warning {
    background-color: var(--status-warning-light);
    border-left-color: var(--status-warning);
    color: #8a5d00;
}

.iro-alert-error {
    background-color: var(--status-error-light);
    border-left-color: var(--status-error);
    color: var(--status-error);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Display */
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

/* Flexbox */
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Margins */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Padding */
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }

/* Backgrounds */
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--neutral-50); }
.bg-primary { background-color: var(--iro-blue-primary); }
.bg-accent { background-color: var(--aau-red); }

/* Border */
.border { border: 1px solid var(--neutral-200); }
.border-top { border-top: 1px solid var(--neutral-200); }
.border-bottom { border-bottom: 1px solid var(--neutral-200); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }

/* Shadows */
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Large screens */
@media (max-width: 1200px) {
    .iro-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
    
    .iro-landing-report-inner {
        gap: var(--space-8);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .iro-nav-cards {
        gap: var(--space-6);
    }
    
    .iro-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .iro-landing-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .iro-landing-report-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section {
        padding-top: var(--space-10);
        padding-bottom: var(--space-10);
    }
    
    /* Header */
    .iro-header-inner {
        padding: 0 var(--space-4);
    }
    
    .iro-logo-subtitle,
    .iro-logo-divider {
        display: none !important;
    }
    
    /* Ensure logo doesn't wrap on mobile and subtitle is hidden */
    .iro-logo {
        flex-shrink: 0;
        max-width: calc(100% - 50px); /* Leave space for menu toggle */
        flex-wrap: nowrap;
    }
    
    .iro-logo img,
    .iro-logo .iro-logo-img {
        max-height: 40px !important;
        height: 40px !important;
        width: auto !important;
        display: block !important;
    }
    
    /* Hide any duplicate logos or subtitles on mobile */
    /* Hide subtitle and divider on mobile */
    .iro-logo > span,
    .iro-logo > *:not(img):not(a):not(.iro-logo-img) {
        display: none !important;
    }
    
    .iro-logo a {
        display: inline-block !important;
        line-height: 0;
    }
    
    /* Ensure only one logo image is visible */
    .iro-logo img:not(.iro-logo-img),
    .iro-logo .iro-logo-img ~ img {
        display: none !important;
    }
    
    /* Navigation is hidden by default on mobile */
    .iro-nav {
        display: none !important;
    }
    
    /* Hero */
    .iro-hero {
        padding: var(--space-12) var(--space-4);
    }
    
    .iro-hero h1 {
        font-size: var(--text-4xl);
    }
    
    /* Landing Page */
    .iro-landing-hero {
        padding: var(--space-12) var(--space-4);
    }
    
    .iro-landing-hero h1 {
        font-size: var(--text-3xl);
    }
    
    .iro-nav-cards {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .iro-nav-card {
        padding: var(--space-6);
    }
    
    .iro-features-grid {
        grid-template-columns: 1fr;
    }
    
    .iro-landing-stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .iro-stat-number {
        font-size: var(--text-3xl);
    }
    
    .iro-report-highlights {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .iro-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .iro-footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    /* Hide footer logo on mobile - multiple selectors to ensure it works */
    .iro-footer-brand img,
    .iro-footer-brand .iro-footer-logo,
    .iro-footer-logo,
    footer .iro-footer-brand img {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Stats */
    .stat-number,
    .kpi-number {
        font-size: var(--text-3xl);
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .iro-landing-stats-inner {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 48px;
    height: 48px;
    background: var(--aau-red);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--aau-black);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.iro-mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.iro-mobile-menu-toggle:hover,
.iro-mobile-menu-toggle:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.iro-mobile-menu-toggle svg {
    position: absolute;
    transition: opacity var(--transition-base), transform var(--transition-base);
    pointer-events: none;
}

.iro-mobile-menu-toggle .menu-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.iro-mobile-menu-toggle .close-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.iro-mobile-menu-toggle.is-active .menu-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.iro-mobile-menu-toggle.is-active .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

@media (max-width: 768px) {
    .iro-mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        z-index: 1001 !important;
    }
    
    .iro-nav {
        position: fixed !important;
        top: var(--header-height) !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--aau-black) !important;
        padding: var(--space-6) !important;
        flex-direction: column !important;
        gap: var(--space-2) !important;
        max-height: calc(100vh - var(--header-height)) !important;
        overflow-y: auto !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        z-index: 1000 !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
        display: none !important;
        width: 100% !important;
    }
    
    .iro-nav.is-open {
        display: flex !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .iro-nav a {
        display: block !important;
        padding: var(--space-4) var(--space-4) !important;
        text-align: center !important;
        border-radius: var(--radius-sm) !important;
        font-size: var(--text-base) !important;
        width: 100% !important;
        color: rgba(255, 255, 255, 0.85) !important;
        font-weight: 600 !important;
    }
    
    .iro-nav a:hover,
    .iro-nav a.active {
        background-color: rgba(255, 255, 255, 0.15) !important;
        color: var(--white) !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
    
    body.menu-open #page {
        position: fixed;
        width: 100%;
    }
}

/* ==========================================================================
   TOOLTIP
   ========================================================================== */

.iro-tooltip {
    position: fixed;
    background: var(--aau-black);
    color: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    white-space: nowrap;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.iro-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: var(--aau-black) transparent transparent transparent;
}

.iro-tooltip.is-visible {
    opacity: 1;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation classes */
[data-animate] {
    opacity: 0;
}

.animated.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animated.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animated.fade-in-down {
    animation: fadeInDown 0.6s ease forwards;
}

.animated.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animated.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

.animated.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    .iro-header,
    .iro-footer,
    .no-print {
        display: none !important;
    }
    
    .iro-card,
    .kpi-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* ==========================================================================
   ELEMENTOR OVERRIDES
   ========================================================================== */

/* Override Elementor default colors to match IRO theme */
.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-heading);
}

.elementor-widget-text-editor {
    font-family: var(--font-primary);
}

.elementor-button {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.elementor-button-primary {
    background-color: var(--iro-blue-primary) !important;
}

.elementor-button-primary:hover {
    background-color: var(--iro-blue-secondary) !important;
}
