/* ============================================
   HERO SECTION
   ============================================ */
/* ---- Hero Particles Canvas ---- */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 140px 24px 80px;
}

/* Animated background glow */
.hero::before {
    display: none;
}

/* Subtle grid pattern */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-right: auto;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-content.centered {
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

.hero-content.centered .hero-subtitle {
    justify-content: center;
}

.hero-description.centered-desc {
    margin: 0 auto 36px;
    max-width: 620px;
}

.hero-ctas.centered-ctas {
    justify-content: center;
}

/* ---- Centered Hero Logo Badge ---- */
.hero-logo-badge-center {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 50px rgba(11, 102, 195, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 24px;
    animation: floatCenteredLogo 6s ease-in-out infinite;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-logo-badge-center:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 60px rgba(11, 102, 195, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-logo-badge-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes floatCenteredLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease 0.15s both;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin: 0 0 36px;
    max-width: 620px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.25s both;
}

.centered-stats {
    justify-content: center;
    width: 100%;
    gap: 64px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .stat-number span {
    color: var(--primary);
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: var(--surface-400);
    font-weight: 400;
}

/* Hero floating decorative elements */
.hero-visual.centered-visual {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.hero-visual .circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(11, 102, 195, 0.15);
}

.hero-visual .circle-1 {
    width: 100%;
    height: 100%;
    animation: spinSlow 30s linear infinite;
}

.hero-visual .circle-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-color: rgba(245, 135, 31, 0.12);
    animation: spinSlow 25s linear infinite reverse;
}

.hero-visual .circle-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-color: rgba(11, 102, 195, 0.1);
    animation: spinSlow 20s linear infinite;
}

.hero-visual .center-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(11, 102, 195, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

