
/* ===================================================== */
/* ================= HERO =============================== */
/* ===================================================== */

/*.hero{*/
/*    position:relative;*/
/*    height:100vh;*/
/*    width:100%;*/
/*    overflow:hidden;*/
/*}*/

/*.hero video{*/
/*    position:absolute;*/
/*    top:50%;*/
/*    left:50%;*/
/*    min-width:100%;*/
/*    min-height:100%;*/
/*    transform:translate(-50%,-50%);*/
/*    object-fit:cover;*/
/*}*/

/*.overlay{*/
/*    position:absolute;*/
/*    inset:0;*/
/*    background:rgba(0,0,0,0.35);*/
/*}*/

          .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .hero video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            z-index: 2;
        }

        .hero .mobile-video {
            display: none;
        }

        .hero .desktop-video {
            display: block;
        }

        @media (max-width: 768px) {
            .hero .desktop-video {
                display: none;
            }
            .hero .mobile-video {
                display: block;
            }
        }

        .hero-content {
            position: absolute;
            bottom: 15%;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            z-index: 3;
            padding: 1.5rem;
            text-shadow: 0 2px 12px rgba(0,0,0,0.5);
            pointer-events: none;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 8vw, 4.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: clamp(1rem, 4vw, 1.4rem);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .badge {
            margin-top: 1.5rem;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            display: inline-block;
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            pointer-events: auto;
        }