.hero-highlights-bar {
    position: relative;
    z-index: 11;
    width: auto;
    max-width: fit-content;
    margin: 0 auto 2rem;
    padding: 0;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.hero-highlights-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.hero-highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    text-align: center;
}

.hero-highlight-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #7ab528;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.hero-highlight-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #8b95a8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-highlight-divider {
    width: 1px;
    height: 28px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    clip-path: inset(0);
    padding-top: 160px;
    /* Balanced space for floating nav */
    padding-bottom: 2rem;
    align-items: center;
    justify-content: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    padding: 0 4rem;
}


/* Hide badge by default in desktop grid, it will be placed via grid-area if needed but for now it's inside hero-content on desktop */
/* Wait, I moved it in HTML. Let's fix desktop placement too. */
.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    margin-bottom: 1rem;
}

/* Desktop: badge should be above title inside hero-content technically, 
   but since I moved it to be a sibling of hero-content and image-wrapper, 
   I should probably use grid-area or similar for desktop if I want it exactly there.
   Let's just make it part of the hero-content stack on desktop if possible.
*/

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem 0;
    text-align: left;
}

.hero-title {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    font-weight: 550;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1.2px;
    color: var(--color-bg-dark);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-bg-dark);
    max-width: 600px;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Hero Social Proof Badge */
.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.75rem 1.5rem 0.75rem 0.75rem;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.hero-avatar-group {
    display: flex;
    align-items: center;
}

.hero-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    margin-left: -16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-social-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
}

.hero-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.hero-social-text p {
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--slate);
    margin: 0;
}

.hero-social-text strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-bg-dark);
}

.mobile-text {
    display: none;
}


.hero-description {
    font-size: 1.0rem;
    color: #8b95a8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform: translateY(-70px);
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 125%;
    max-width: 150%;
    max-height: 95vh;
    object-fit: contain;
    object-position: bottom center;
    transform: translateX(-8%);
}

.hero-backdrop-box {
    position: absolute;
    display: block !important;
    bottom: 0;
    left: 45%;
    transform: translateX(-50%);
    width: 110%;
    height: 80%;
    background: #e2e8f0;
    border-radius: 24px;
    z-index: 1;
}

/* For Desktop: Simplified layout since intro-badge is now inside hero-content again */
@media (min-width: 993px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (max-width: 992px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .intro-badge {
        display: none;
    }

    .hero-image-wrapper {
        order: 2;
        margin-bottom: 0.75rem;
        /* Tightened */
        z-index: 2;
        transform: translateY(0);
    }

    .hero-content {
        order: 3;
        text-align: center;
        padding: 0 0 2rem;
        /* Reduced bottom padding */
        max-width: 100%;
        position: relative;
        z-index: 3;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        letter-spacing: -0.8px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }



    .hero-image {
        max-height: 55vh;
        /* Restored original height */
        width: auto;
        transform: translateX(0);
    }

    .hero-backdrop-box {
        left: 50%;
        width: 90%;
        max-width: 480px;
        height: 72%;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .hero-highlights-inner {
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .hero-highlight-value {
        font-size: 0.8rem;
    }

    .hero-highlight-label {
        font-size: 0.6rem;
    }

    .hero-highlight-divider {
        height: 20px;
    }

    .hero-section {
        padding-top: 110px;
    }
}

@media (max-width: 480px) {
    .hero-highlights-inner {
        gap: 0.6rem;
    }

    .hero-highlight-value {
        font-size: 0.7rem;
    }

    .hero-highlight-label {
        font-size: 0.55rem;
    }

    .hero-highlight-divider {
        height: 16px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 1rem;
    }

    .hero-container {
        gap: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .hero-content {
        padding-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Mobile Optimized Social Proof Badge */
    .hero-social-proof {
        gap: 0.85rem;
        padding: 0.5rem 1rem 0.5rem 0.5rem;
        margin-top: 1.5rem;
        max-width: 95%; /* Avoid touching edges */
    }

    .hero-avatar {
        width: 44px;
        height: 44px;
        margin-left: -12px;
        border-width: 2px;
    }

    .hero-social-text p {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .hero-social-text strong {
        font-size: 0.9rem;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }

    .hero-image {
        max-height: 50vh;
    }
}