/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-md);
    min-height: calc(100vh - 70px);
    background: linear-gradient(135deg, #ffffff 0%, #f0ecff 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero__content {
    z-index: 2;
}

.hero__title {
    font-size: 3.5rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    animation: slideInDown 0.8s ease-out;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    animation: slideInUp 0.8s ease-out 0.2s both;
    opacity: 0.95;
    font-weight: 500;
}

.hero__cta {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(139, 107, 166, 0.4);
    animation: slideInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.hero__cta:hover::before {
    left: 100%;
}

.hero__cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 40px rgba(139, 107, 166, 0.5);
}

.hero__images {
    position: relative;
    height: 500px;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.hero__image {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero__image--1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.hero__image--2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    animation-delay: 0.5s;
}

.hero__image--3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__images {
        height: 400px;
    }

    .hero__image {
        width: 200px;
        height: 200px;
    }

    .hero__image--2 {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__images {
        height: 300px;
    }

    .hero__image {
        width: 150px;
        height: 150px;
    }

    .hero__image--2 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .hero__subtitle {
        font-size: 0.9rem;
    }

    .hero__images {
        height: 250px;
    }

    .hero__image {
        width: 120px;
        height: 120px;
    }

    .hero__image--2 {
        width: 100px;
        height: 100px;
    }
}
