/*-----------------------------------------------------------------------------------
    Stockage - Professional Mutual Fund Investment Platform
    Premium Financial Services Design System
-----------------------------------------------------------------------------------*/

/* ===== PROFESSIONAL FINANCIAL DESIGN SYSTEM ===== */
:root {
    /* Primary Colors - Professional Blue Palette */
    --primary-color: #1e3a8a;        /* Deep Professional Blue */
    --primary-light: #3b82f6;        /* Bright Blue */
    --primary-dark: #1e40af;         /* Darker Blue */
    --primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    
    /* Secondary Colors - Gold/Orange for Trust */
    --secondary-color: #f59e0b;       /* Professional Gold */
    --secondary-light: #fbbf24;       /* Light Gold */
    --secondary-dark: #d97706;        /* Dark Gold */
    --secondary-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    
    /* Success & Growth Colors */
    --success-color: #059669;         /* Professional Green */
    --success-light: #10b981;         /* Light Green */
    --success-dark: #047857;          /* Dark Green */
    
    /* Warning & Alert Colors */
    --warning-color: #dc2626;         /* Professional Red */
    --warning-light: #ef4444;         /* Light Red */
    --warning-dark: #b91c1c;          /* Dark Red */
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #1f2937;
    --bg-gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --bg-gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --bg-gradient-success: linear-gradient(135deg, #059669 0%, #10b981 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.hero-subtitle, .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.card-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.text-gradient {
    background: var(--bg-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: var(--bg-gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== LAYOUT UTILITIES ===== */
.section-padding {
    padding: var(--space-2xl) 0;
}

.container-fluid-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== BACKGROUND UTILITIES ===== */
.bg-primary-gradient {
    background: var(--bg-gradient-primary);
}

.bg-secondary-gradient {
    background: var(--bg-gradient-secondary);
}

.bg-success-gradient {
    background: var(--bg-gradient-success);
}

.bg-light-gradient {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.bg-dark-gradient {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
}

/* ===== MODERN BUTTONS ===== */
.btn-professional {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.btn-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-professional:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--bg-gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--bg-gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

/* ===== MODERN CARDS ===== */
.professional-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-primary);
}

.professional-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient-secondary);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.service-card:hover .service-icon::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ===== GRID SYSTEMS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

/* ===== STATISTICS COMPONENTS ===== */
.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===== FORM COMPONENTS ===== */
.form-group-professional {
    margin-bottom: var(--space-lg);
    position: relative;
}

.form-group-professional label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.form-control-professional {
    width: 100%;
    padding: var(--space-md);
    font-size: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--text-primary);
    transition: var(--transition-normal);
    outline: none;
}

.form-control-professional:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-control-professional::placeholder {
    color: var(--text-light);
}

/* ===== NAVIGATION ===== */
.professional-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.professional-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(30, 58, 138, 0.05);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(30, 58, 138, 0.1);
}

/* ===== FOOTER ===== */
.professional-footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-section h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
.animate-fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-fadeInLeft {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-slow);
}

.animate-fadeInRight {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-slow);
}

.animate-fadeIn {
    opacity: 0;
    transition: var(--transition-slow);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .professional-card,
    .service-card {
        padding: var(--space-lg);
    }
    
    .btn-professional {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space-md); }
.gap-4 { gap: var(--space-lg); }

/* ===== PROFESSIONAL DROPDOWN ===== */
.professional-dropdown .dropdown-toggle {
    position: relative;
    transition: all 0.3s ease;
}

.professional-dropdown .dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.professional-dropdown .dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.professional-dropdown-menu {
    min-width: 350px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin-top: 0.5rem;
    background: white;
    overflow: hidden;
    animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    background: var(--bg-gradient-primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.dropdown-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.dropdown-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-content {
    padding: 1rem 0;
}

.dropdown-section {
    padding: 0 0.5rem;
}

.professional-dropdown-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    margin: 0.25rem 0;
}

.professional-dropdown-item:hover {
    background: rgba(30, 58, 138, 0.05);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.professional-dropdown-item:hover .dropdown-item-icon {
    background: var(--bg-gradient-primary);
    transform: scale(1.1);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.dropdown-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.dropdown-footer {
    background: rgba(30, 58, 138, 0.05);
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.dropdown-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-cta:hover {
    background: var(--bg-gradient-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.dropdown-cta i {
    margin-right: 0.5rem;
}

/* Mobile dropdown adjustments */
@media (max-width: 1199px) {
    .professional-dropdown-menu {
        min-width: 300px;
    }
    
    .dropdown-header {
        padding: 1rem;
    }
    
    .professional-dropdown-item {
        padding: 0.75rem 1rem;
    }
    
    .dropdown-item-icon {
        width: 35px;
        height: 35px;
    }
}

/* ===== IMPROVED HERO BANNERS ===== */
.professional-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.professional-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.professional-hero .container {
    position: relative;
    z-index: 2;
}

.professional-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.professional-hero .hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

/* Page-specific hero gradients */
.bg-primary-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
}

.bg-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.bg-accent-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
}

/* Professional breadcrumb */
.professional-breadcrumb {
    margin-top: 1.5rem;
}

.professional-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.professional-breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
}

.professional-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.professional-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.professional-breadcrumb .breadcrumb-item a:hover {
    color: white;
}

.professional-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero stats grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem 0;
}

.hero-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .professional-hero {
        padding: 3rem 0;
        min-height: 350px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-stat-item {
        padding: 0.75rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
}