/* --- HERO SECTION STYLES --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0;
    transform: scale(1.05);
    animation: breathe 20s infinite alternate;
}

@keyframes breathe {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge.highlight {
    color: var(--xp-orange);
    border-color: rgba(255, 105, 0, 0.4);
}

.hero h1 {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    text-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-tracker {
    background: white;
    border-radius: 99px;
    padding: 6px;
    display: flex;
    width: 100%;
    max-width: 480px;
    margin: 50px auto 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.hero-tracker:focus-within {
    transform: scale(1.02);
}

.hero-tracker input {
    border: none;
    outline: none;
    flex: 1;
    padding: 0 24px;
    font-size: 15px;
    color: var(--xp-navy);
    background: transparent;
}

.hero-tracker button {
    background: var(--xp-navy);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-tracker button:hover {
    background: var(--xp-blue);
}

.hero-stats {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    justify-content: center;
    opacity: 0.7;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}