/* ================================
   HOME HERO
================================ */

.home-hero {
    position: relative;
    padding: 130px 0 100px;
    overflow: hidden;
    background: linear-gradient(90deg, #fa33a1 0%, #553add 100%);
    box-shadow: 0 35px 80px rgba(85, 58, 221, 0.35);
}

.home-hero-inner {
    position: relative;
    z-index: 3;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-hero-content {
    max-width: 640px;
}

.home-hero-content .hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffd6ef;
    margin-bottom: 14px;
}

.home-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
}

.home-hero-content h1 span {
    font-style: italic;
}

.home-hero-content .hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 999px;
    background: #fff;
    color: #553add;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 34px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.home-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-hero-visual img {
    max-width: 100%;
    height: auto;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
}

@keyframes heroFloat {
    50% { transform: translateY(-14px); }
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.home-hero .icons-one {
    position: absolute;
    left: 40px;
    top: 80px;
    width: 300px;
    height: 350px;
    background: url(../images/icons/icon-4.png) no-repeat;
    animation: floatY 6s ease-in-out infinite;
    opacity: 0.28;
}

.home-hero .icons-two {
    position: absolute;
    right: 60px;
    bottom: 40px;
    width: 260px;
    height: 280px;
    background: url(../images/icons/icon-5.png) no-repeat;
    animation: floatYReverse 7s ease-in-out infinite;
    opacity: 0.25;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 60%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.2), transparent 60%);
    z-index: 2;
}

@keyframes floatY {
    50% { transform: translateY(-18px); }
}

@keyframes floatYReverse {
    50% { transform: translateY(18px); }
}

/* Stats Section */
.stats-section {
    padding: 60px 0 80px;
    background: #fafaff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stats-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 30px;
    text-align: center;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.04),
        0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.06);
}

.stats-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #553add;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stats-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 992px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-hero-content {
        max-width: 100%;
    }

    .home-hero-content .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .home-hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 100px 0 70px;
    }

    .home-hero-content h1 {
        font-size: 36px;
    }

    .home-hero-content .hero-sub {
        font-size: 16px;
    }

    .home-hero .icons-one,
    .home-hero .icons-two {
        display: none;
    }

    .stats-section {
        padding: 40px 0 60px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
