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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(12, 18, 10, 0.88) 0%,
        rgba(25, 38, 22, 0.78) 35%,
        rgba(35, 55, 30, 0.6) 70%,
        rgba(45, 67, 41, 0.5) 100%
    );
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(12,18,10,0.5), transparent);
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    color: var(--white);
    max-width: 640px;
}

.hero-text .section-badge {
    background: rgba(199,164,106,0.15);
    border: 1px solid rgba(199,164,106,0.35);
    padding: 8px 20px;
    border-radius: 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-pretitle {
    color: var(--sand-light);
    font-weight: 600;
    margin-top: 16px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-size: 12px;
}

.hero-text h1 {
    color: var(--white);
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.08;
    margin: 18px 0 0 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4),
                0 8px 30px rgba(0,0,0,0.2);
    letter-spacing: -1px;
    font-weight: 800;
}

.hero-text h1 span.highlight {
    color: var(--sand);
}

.hero-lead {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-top: 20px;
    max-width: 520px;
    line-height: 1.75;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
    font-weight: 400;
}

/* Hero Benefits Pills */
.hero-benefits {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
    backdrop-filter: blur(10px);
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
}

.hero-benefits li:hover {
    background: rgba(199,164,106,0.15);
    border-color: rgba(199,164,106,0.3);
    transform: translateY(-2px);
}

.hero-benefits li i {
    color: var(--sand);
    font-size: 15px;
}

/* Hero Feature Items */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.hero-feature-icon {
    width: 38px;
    height: 38px;
    background: rgba(199,164,106,0.2);
    border: 1px solid rgba(199,164,106,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sand);
    font-size: 15px;
    flex-shrink: 0;
}

.hero-feature-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.hero-feature-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
}

/* Hero Partners */
.hero-partners {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-partners-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.hero-partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-partners-list span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.hero-partners-list span i {
    color: var(--sand);
    font-size: 11px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(63,90,60,0.45), rgba(63,90,60,0.2));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(199,164,106,0.2);
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sand), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    background: linear-gradient(145deg, rgba(63,90,60,0.55), rgba(63,90,60,0.3));
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3),
               0 0 0 1px rgba(199,164,106,0.25);
    border-color: rgba(199,164,106,0.35);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 46px;
    font-weight: 800;
    color: var(--sand);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(199,164,106,0.3);
}

.stat-number span {
    font-size: 30px;
}

.stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin-top: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.stat-icon {
    width: 36px;
    height: 36px;
    background: rgba(199,164,106,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--sand);
    font-size: 15px;
    border: 1px solid rgba(199,164,106,0.15);
}

/* Hero Badge */
.hero-badge-wrap {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.25));
    backdrop-filter: blur(18px);
    padding: 12px 26px;
    border-radius: 50px;
    border: 1px solid rgba(199,164,106,0.2);
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-badge i {
    color: var(--sand);
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-text .section-badge {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-text h1 {
    animation: fadeInUp 0.8s ease-out 0.35s both;
}

.hero-lead {
    animation: fadeInUp 0.7s ease-out 0.55s both;
}

.hero-benefits {
    animation: fadeInUp 0.7s ease-out 0.7s both;
}

.hero-features {
    animation: fadeInUp 0.7s ease-out 0.85s both;
}

.hero-partners {
    animation: fadeInUp 0.6s ease-out 1s both;
}

.hero-stats {
    animation: slideInRight 0.9s ease-out 0.6s both;
}

.stat-card:nth-child(1) { animation: fadeInScale 0.5s ease-out 0.7s both; }
.stat-card:nth-child(2) { animation: fadeInScale 0.5s ease-out 0.85s both; }
.stat-card:nth-child(3) { animation: fadeInScale 0.5s ease-out 1.0s both; }
.stat-card:nth-child(4) { animation: fadeInScale 0.5s ease-out 1.15s both; }

.hero-badge-wrap {
    animation: fadeInUp 1s ease-out 1.5s both;
}
