/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    transition: background-color 0.5s;
}

.hero__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    z-index: 0;
    overflow: hidden;
    clip-path: ellipse(150% 100% at 50% 0%);
}

@media (min-width: 1024px) {
    .hero__image-container {
        width: 65%;
    }
}

.hero__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}

.hero__image-fade {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.hero__image-fade--right {
    right: 0;
    width: 100%;
    background: linear-gradient(to left, white, rgba(255, 255, 255, 0.8), transparent);
}

.dark .hero__image-fade--right {
    background: linear-gradient(to left, #111111, rgba(17, 17, 17, 0.8), transparent);
}

@media (min-width: 768px) {
    .hero__image-fade--right {
        width: 70%;
    }
}

@media (min-width: 1024px) {
    .hero__image-fade--right {
        width: 50%;
    }
}

.hero__image-fade--mobile {
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.dark .hero__image-fade--mobile {
    background: rgba(0, 0, 0, 0.6);
}

@media (min-width: 1024px) {
    .hero__image-fade--mobile {
        display: none;
    }
}

.hero__glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(124, 179, 66, 0.1), transparent);
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
    z-index: 0;
    display: none;
}

@media (min-width: 768px) {
    .hero__glow {
        display: block;
    }
}

.hero__content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1.5rem 5rem;
    width: 100%;
    position: relative;
    z-index: 20;
    display: flex;
}

.hero__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 2.5rem;
}

@media (min-width: 1024px) {
    .hero__text {
        width: 55%;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 179, 66, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(124, 179, 66, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    color: var(--dark-orange);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.1);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark-orange);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero__title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero__title {
        font-size: 5rem;
    }
}

.hero__title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.5rem;
}

.hero__title-reveal {
    display: block;
}

.hero__title .highlight {
    color: var(--primary-orange);
}

.hero__subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 36rem;
    font-weight: 500;
}

.dark .hero__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.25rem;
    }
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.25rem !important;
        line-height: 1.1;
    }

    .hero__stats-box {
        padding: 1.25rem;
        gap: 1.5rem;
        width: 100%;
        justify-content: space-around;
        border-radius: 1.5rem;
    }

    .hero__stat-value {
        font-size: 1.75rem;
    }
}

.hero__stats-box {
    display: flex;
    gap: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.dark .hero__stats-box {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .hero__stats-box {
        gap: 4rem;
    }
}

.hero__stats-box-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.dark .hero__stats-box-glow {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.hero__stat-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .hero__stat-value {
        font-size: 3rem;
    }
}

.hero__stat-value span {
    font-size: 1.5rem;
}

.hero__stat-label {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.75rem;
}

.dark .hero__stat-label {
    color: rgba(255, 255, 255, 0.5);
}