/* Custom CSS for FinBae Landing Page */

:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #059669;
    --info-color: #0891b2;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    
    /* Light theme colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --navbar-bg: rgba(255, 255, 255, 0.98);
    --navbar-text: #1e293b;
    --table-bg: #ffffff;
    --table-header-bg: #f8fafc;
    --modal-bg: #ffffff;
    --modal-header-bg: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --shadow-color: rgba(0, 0, 0, 0.08);
    --overlay-color: rgba(0, 0, 0, 0.04);
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}

/* Navigation */
.navbar {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--navbar-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Navbar scrolled state */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.theme-toggle {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}



/* Hero Section */
.hero-section {
    padding: 80px 0 0 0; /* Only top padding to account for fixed navbar */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.placeholder-hero {
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.placeholder-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* AI Dashboard Animation */
.hero-animation {
    position: relative;
    z-index: 1;
}

.ai-dashboard {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Animated Background Elements */
.ai-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
    z-index: -1;
}

.ai-dashboard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 98%, rgba(37, 99, 235, 0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(37, 99, 235, 0.1) 100%);
    background-size: 20px 20px;
    animation: gridMove 4s linear infinite;
    z-index: -1;
}

/* Floating Particles */
.ai-dashboard .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(37, 99, 235, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.ai-dashboard .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ai-dashboard .particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.ai-dashboard .particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.ai-dashboard .particle:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

.ai-dashboard .particle:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

/* Glowing Corner Elements */
.ai-dashboard .corner-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    animation: cornerPulse 3s ease-in-out infinite;
}

.ai-dashboard .corner-glow.top-left {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.ai-dashboard .corner-glow.top-right {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.ai-dashboard .corner-glow.bottom-left {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}

.ai-dashboard .corner-glow.bottom-right {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* Background Animations */
@keyframes backgroundShift {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translateX(-10px) translateY(-5px) scale(1.05);
        opacity: 1;
    }
    50% { 
        transform: translateX(5px) translateY(-10px) scale(0.95);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(-5px) translateY(5px) scale(1.02);
        opacity: 1;
    }
}

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-10px) translateX(5px);
        opacity: 1;
    }
    50% { 
        transform: translateY(-5px) translateX(-5px);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-15px) translateX(3px);
        opacity: 1;
    }
}

@keyframes cornerPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Data Flow Lines */
.ai-dashboard .data-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.6), transparent);
    animation: dataFlow 4s linear infinite;
}

.ai-dashboard .data-line.horizontal {
    width: 100px;
    top: 30%;
    left: 10%;
}

.ai-dashboard .data-line.vertical {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.6), transparent);
    right: 20%;
    top: 15%;
}

.ai-dashboard .data-line.diagonal {
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.6), transparent);
    transform: rotate(45deg);
    bottom: 25%;
    left: 15%;
}

/* Connection Dots */
.ai-dashboard .connection-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(37, 99, 235, 0.8);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.ai-dashboard .connection-dot:nth-child(1) {
    top: 25%;
    left: 5%;
    animation-delay: 0s;
}

.ai-dashboard .connection-dot:nth-child(2) {
    top: 75%;
    right: 8%;
    animation-delay: 0.5s;
}

.ai-dashboard .connection-dot:nth-child(3) {
    bottom: 15%;
    left: 30%;
    animation-delay: 1s;
}

.ai-dashboard .connection-dot:nth-child(4) {
    top: 45%;
    right: 35%;
    animation-delay: 1.5s;
}

@keyframes dataFlow {
    0% { 
        opacity: 0;
        transform: translateX(-100%);
    }
    50% { 
        opacity: 1;
    }
    100% { 
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.3);
    }
}

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

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 0.8s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-container {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 80px;
    gap: 0.5rem;
}

.chart-bar {
    background: linear-gradient(to top, #2563eb, #3b82f6);
    border-radius: 4px 4px 0 0;
    min-width: 20px;
    animation: growUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.chart-bar:nth-child(1) { height: 60%; animation-delay: 0.05s; }
.chart-bar:nth-child(2) { height: 80%; animation-delay: 0.1s; }
.chart-bar:nth-child(3) { height: 45%; animation-delay: 0.15s; }
.chart-bar:nth-child(4) { height: 90%; animation-delay: 0.2s; }
.chart-bar:nth-child(5) { height: 70%; animation-delay: 0.25s; }

@keyframes growUp {
    0% { height: 0; }
    100% { height: var(--final-height); }
}

.ai-message {
    display: flex;
    justify-content: flex-start;
}

.message-bubble {
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    animation: slideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideIn {
    0% { 
        opacity: 0; 
        transform: translateX(-15px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInUp {
    0% { 
        opacity: 0; 
        transform: translateY(15px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.metric-icon {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: #f8fafc;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #94a3b8;
}



/* Animation Keyframes */
@keyframes slideInDown {
    0% { 
        opacity: 0; 
        transform: translateY(-40px) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes fadeInRight {
    0% { 
        opacity: 0; 
        transform: translateX(30px) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) scale(1); 
    }
}

@keyframes fadeInUp {
    0% { 
        opacity: 0; 
        transform: translateY(40px) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes slideInLeft {
    0% { 
        opacity: 0; 
        transform: translateX(-40px) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) scale(1); 
    }
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow-color);
    color: var(--text-primary);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.feature-icon {
    color: var(--primary-color);
}

/* Step Cards */
.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow-color);
    color: var(--text-primary);
}

.step-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

/* Benefit Items */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Table Styling */
.table {
    background: var(--table-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
    color: var(--text-primary);
}

.table th {
    background: var(--table-header-bg);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-primary);
}

.table td {
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: #1d4ed8;
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    border-color: white;
    color: var(--primary-color);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Modal Styling */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 25px 50px var(--shadow-color);
    background: var(--modal-bg);
    color: var(--text-primary);
}

.modal-header {
    background: var(--modal-header-bg);
    color: white;
    border-bottom: 1px solid var(--border-color);
    border-radius: 16px 16px 0 0;
}

.modal-body {
    background: var(--modal-bg);
    color: var(--text-primary);
}

.modal-footer {
    background: var(--modal-bg);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 16px 16px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 16px 16px;
}

/* Form Controls */
.form-control {
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: var(--card-bg);
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    transform: translateY(-1px);
    background: var(--card-bg);
    color: var(--text-primary);
}

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

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 0 0;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 0 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}





/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Additional Enhancements */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
}

.table th {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.benefit-item {
    background: var(--overlay-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}



/* Modal styling */
.modal-content {
    border: none;
    box-shadow: 0 4px 12px var(--shadow-color);
    background: var(--modal-bg);
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: 8px 8px 0 0;
}

/* Improved form styling */
.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 0;
    color: var(--text-primary);
}

.footer p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-primary);
}

/* Story Blocks */
.story-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.3s ease;
}

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-icon {
    flex-shrink: 0;
}

.story-content {
    margin-top: 1rem;
}

.story-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Waitlist Benefits - No checkmarks */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-item span {
    font-weight: 500;
}

/* Feature Blocks */
.feature-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.feature-block .feature-icon {
    margin-bottom: 1rem;
}

.feature-block h5 {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-block .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Hero Content Styles */
.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-content .btn {
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Contact section button styling to match hero */
#contact .btn {
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#contact .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInLeft {
    0% { 
        opacity: 0; 
        transform: translateX(-30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.badge.bg-primary-subtle {
    background-color: rgba(37, 99, 235, 0.1) !important;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
}

.hero-features {
    opacity: 0.8;
}

.hero-features .d-flex {
    flex-wrap: wrap;
    gap: 1rem !important;
}

@media (max-width: 768px) {
    .hero-features .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .hero-stats {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
} 