/* Global / component styles moved from index.html */

body {
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    height: 100%;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.gradient-bg {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #0EA5E9 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-divider {
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0EA5E9, transparent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-left: 4px solid #0EA5E9;
}

/* stat-gradient replaces inline background styles used for the four trust cards */
.stat-gradient {
    background: linear-gradient(135deg, rgba(14,165,233,0.95) 0%, rgba(20,184,166,0.95) 100%);
    border-left: 4px solid #0EA5E9;
}