    /* =========================
    Hero Section
    ========================= */

    .hero{
    position: relative;
    min-height: 90svh;
    overflow: hidden;
    }

    /* Background image (HTML <img>) */
    .hero__bg{
    position: absolute;
    left: 0;
    top: -40px;
    width: 100%;
    height: calc(100% + 40px);

    display: block;
    object-fit: cover;
    object-position: 72% 22%;

    filter: contrast(1.05) saturate(1.05);
    transform: scale(1.02);
    }


    /* Overlay: left-heavy gradient + subtle vignette */
    .hero__overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(900px 520px at 18% 40%, rgba(198,167,94,0.10), transparent 60%),
        linear-gradient(
        90deg,
        rgba(11,12,15,0.70) 0%,
        rgba(11,12,15,0.52) 34%,
        rgba(11,12,15,0.26) 56%,
        rgba(11,12,15,0.10) 72%,
        rgba(11,12,15,0.00) 86%
        ),
        linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.12) 35%, rgba(0,0,0,0.28) 100%);
    }


    /* Content wrapper */
    .hero-inner{
    position: relative;
    z-index: 2;

    /* Space so header doesn't visually "eat" the top */
    padding-top: calc(var(--space-7) + 56px);
    padding-bottom: var(--space-8);
    }

    .hero-content{
    width: min(600px, 90%);
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    margin-left: clamp(0px, -3vw, -44px);

    /* Desktop: menos opaco, más premium */
    background: rgba(20,22,27,0.46);
    backdrop-filter: none;
    border: 1px solid rgba(255,255,255,0.04);
    outline: 1px solid rgba(198,167,94,0.04);
    outline-offset: -1px;

    box-shadow:
        0 22px 70px rgba(0,0,0,0.42),
        0 10px 30px rgba(0,0,0,0.30);
    }



    /* Social proof line */
    .hero-proof{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(20,22,27,0.50);
    backdrop-filter: blur(8px);
    }

    .stars{
    letter-spacing: 0.12em;
    color: var(--color-accent);
    font-size: 0.9rem;
    transform: translateY(-1px);
    }

    .hero-proof-text{
    color: var(--color-text-muted);
    font-size: 0.92rem;
    }

    /* Title + subtitle */
    .hero-title{
    margin-top: var(--space-4);
    font-size: clamp(2.25rem, 4.2vw, 3.4rem);
    font-weight: 650;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--color-text);
    max-width: 18ch;
    }

    .hero-subtitle{
    margin-top: var(--space-3);
    font-size: clamp(1.05rem, 1.25vw, 1.2rem);
    color: rgba(242,242,242,0.72);
    max-width: 54ch;
    }

    /* CTA buttons */
    .hero-actions{
    margin-top: var(--space-5);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    }

    .btn{
    gap: 10px;
    }

    .btn-primary{
    box-shadow: 0 18px 50px rgba(198,167,94,0.18), 0 14px 30px rgba(0,0,0,0.35);
    }

    .btn-primary:hover{
    transform: translateY(-1px);
    }

    .btn-ghost{
    background: rgba(20,22,27,0.35);
    backdrop-filter: blur(8px);
    }

    .btn-ghost:hover{
    background: rgba(20,22,27,0.55);
    transform: translateY(-1px);
    }

    /* Badges */
    .hero-badges{
    margin-top: var(--space-4);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    }

    .badge{
    background: rgba(20,22,27,0.40);
    backdrop-filter: blur(8px);
    border-color: rgba(255,255,255,0.10);
    }

    /* Scroll hint */
    .hero-scroll-hint{
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(242,242,242,0.55);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    }

    .scroll-line{
    width: 42px;
    height: 1px;
    background: rgba(255,255,255,0.18);
    position: relative;
    overflow: hidden;
    }

    .scroll-line::after{
    content: "";
    position: absolute;
    left: -40%;
    top: 0;
    width: 40%;
    height: 100%;
    background: rgba(198,167,94,0.75);
    animation: scrollSweep 1.6s ease-in-out infinite;
    }

    @keyframes scrollSweep{
    0% { left: -40%; opacity: 0.0; }
    20% { opacity: 1; }
    60% { opacity: 1; }
    100% { left: 110%; opacity: 0.0; }
    }

    @media (max-width: 1024px){
        .hero__bg{ object-position: 70% 16%; }

        .hero-content {
            border: 1px solid rgba(255,255,255,0.04);
            outline: 1px solid rgba(198,167,94,0.04);
        }
    }

    /* Responsive tweaks */
    @media (max-width: 860px){
        .hero-inner{
            padding-top: calc(var(--space-6) + 56px);
            padding-bottom: var(--space-7);
        }

        .hero-title{
            max-width: 22ch;
        }

        .hero__bg{
            top: -60px;
            height: calc(100% + 60px); 
            object-position: 68% 12%;
        }

        .hero-content{
        background: rgba(20,22,27,0.52);
        backdrop-filter: blur(14px);
        }
    }

    @media (max-width: 520px){
        .hero-inner{
            padding-top: calc(var(--space-4) + 56px);
            padding-bottom: var(--space-5);
        }
        

        .hero__bg{ 
            top: -80px;
            height: calc(100% + 80px);
            object-position: 70% 8%;
        }

        .hero-content{
            padding: 22px 18px;
            border-radius: 18px;
            margin: auto;
            margin-top: 40px;
            background: rgba(20,22,27,0.62);
            backdrop-filter: blur(18px);
        }

        .hero-actions{
            flex-direction: column;
            align-items: stretch;
        }

        .btn{
            width: 100%;
        }

        .hero-scroll-hint{
            display: none;
        }
    }


    @media (max-width: 380px){
        .hero__bg{ 
            object-position: 70% 6%; 
        }

        .hero-inner{
            padding-top: calc(var(--space-3) + 44px);
            padding-bottom: var(--space-4);
        }

        .hero-content{
            background: rgba(20,22,27,0.66);
            backdrop-filter: blur(20px);
            padding: 18px 16px;
        }

        /* También reduce un poco el título y el panel */
        .hero-title{ font-size: clamp(1.9rem, 8vw, 2.35rem); }
    }
