/* ================================
   HERO SECTION - PROFESSIONAL ENTERPRISE
   Big Image Focus, Clean Design
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--primary-600) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('../assets/images/server-hero-main.png') center/cover;
    opacity: 0.3;
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-text {
    max-width: 640px;
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.hero-text .lead {
    font-size: 1.25rem;
    color: var(--neutral-300);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

/* Trust Badges */
.hero-trust {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust p {
    font-size: 0.875rem;
    color: var(--neutral-400);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    align-items: center;
}

.trust-logos img {
    height: 32px;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity var(--transition-base);
}

.trust-logos img:hover {
    opacity: 1;
}

/* Hero Stats Card */
.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.stat-item {
    text-align: center;
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--neutral-400);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
}

.floating-badge .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-500);
    border-radius: var(--radius-md);
}

.floating-badge .icon svg {
    color: white;
}

.badge-1 {
    top: -16px;
    right: -16px;
}

.badge-2 {
    bottom: 48px;
    left: -24px;
}

/* Hero Image Feature */
.hero-image-feature {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-image-feature img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-logos {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-24) 0 var(--space-16);
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

/* Animation - Subtle fade in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    animation: fadeInUp 0.6s ease;
}

.hero-text .lead {
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-cta {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-trust {
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-visual {
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}