.hero {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.hero-label {
    position: relative;
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background-color: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.hero-label span {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    font-weight: var(--font-weight-black);
    letter-spacing: 1.5px;
    color: var(--color-black);
    text-transform: uppercase;
}

.light-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent);
    animation: sweep 3s infinite;
    z-index: 1;
}

@keyframes sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-headline {
    font-size: clamp(2.90rem, 4.5vw, 2.90rem);
    font-weight: var(--font-weight-black);
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
    color: var(--color-black);
    white-space: nowrap;
    overflow: visible;
    margin-left: -40px;
    text-align: center;
}

.hero-headline .highlight {
    color: #059669;
}

.hero-subheadline {
    font-size: clamp(1.25rem, 2.75vw, 1.5rem);
    color: var(--color-black);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    overflow: visible;
}

.trust-bar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: nowrap;
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    border-radius: 8px;
    white-space: nowrap;
    max-width: 90%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.trust-item.desktop-only {
    display: flex;
}

.trust-item.mobile-only {
    display: none;
}

.star-container {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star {
    width: 15px;
    height: 15px;
    fill: currentColor;
    display: block;
}

.star-full {
    color: #10b981;
}

.star-half {
    fill: url(#half-star-gradient);
}

.rating-number {
    font-size: 0.95rem;
    font-weight: var(--font-weight-black);
    color: var(--color-black);
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.trust-text {
    font-size: 0.8rem;
    color: var(--color-gray-dark);
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.trustpilot-star {
    width: 15px;
    height: 15px;
    fill: #10b981;
    display: block;
}

.whop-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.whop-text {
    font-size: 1rem;
    font-weight: var(--font-weight-black);
    color: var(--color-black);
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.user-avatars {
    display: flex;
    align-items: center;
    position: relative;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    object-fit: cover;
    position: relative;
}

.user-avatar:not(:first-child) {
    margin-left: -12px;
}

.trust-divider {
    display: none;
}

.video-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto var(--spacing-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.wistia-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.wistia_responsive_padding {
    padding: 0 !important;
    position: relative;
}

.wistia_responsive_wrapper {
    height: 100% !important;
    left: 0;
    position: absolute !important;
    top: 0;
    width: 100% !important;
}

.wistia_embed {
    height: 100% !important;
    position: relative !important;
    width: 100% !important;
}

.wistia_embed video {
    object-fit: contain !important;
}

.wistia_responsive_padding,
.wistia_responsive_wrapper,
.wistia_embed,
.wistia-video,
.video-container {
    background: none !important;
    background-color: transparent !important;
}

.wistia_click_to_play {
    background-color: rgba(0, 0, 0, 0.7) !important;
    border-radius: 50% !important;
}

.wistia_playbar {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.wistia_playbar_progress {
    background-color: #ffffff !important;
}

.hero .cta-button {
    margin-top: var(--spacing-lg);
    font-size: 1.50rem;
    font-weight: var(--font-weight-extrabold);
    padding: 1.25rem 4rem;
    color: var(--color-white);
}

.hero .cta-button:hover {
    color: var(--color-white);
}

@media (max-width: 1024px) {
    .hero-headline {
        white-space: normal;
        font-size: clamp(1.65rem, 4.5vw, 2.25rem);
        margin-left: 0;
    }

    .hero-subheadline {
        white-space: normal;
    }

    .video-container {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero-label {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        border: 1.5px solid rgba(0, 0, 0, 0.4);
        margin-bottom: var(--spacing-xs);
    }

    .hero-headline {
        font-size: clamp(1.35rem, 5.5vw, 1.85rem);
        white-space: normal;
        line-height: 1.25;
        margin-bottom: var(--spacing-xs);
        margin-left: 0;
    }

    .hero-subheadline {
        font-size: clamp(1.05rem, 3vw, 1.25rem);
        white-space: normal;
        margin-bottom: var(--spacing-sm);
    }

    .trust-bar {
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        max-width: 95%;
    }

    .trust-item.desktop-only {
        display: none;
    }

    .trust-item.mobile-only {
        display: flex;
    }

    .star {
        width: 14px;
        height: 14px;
    }

    .trust-text {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }

    .rating-number {
        font-size: 0.85rem;
    }

    .video-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto var(--spacing-md);
        border-radius: var(--radius-md);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .hero .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .trust-bar {
        gap: 0.4rem;
        padding: 0.5rem 0.8rem;
    }

    .star {
        width: 12px;
        height: 12px;
    }

    .trust-text {
        font-size: 0.6rem;
    }

    .rating-number {
        font-size: 0.8rem;
    }

    .video-container {
        border-radius: 8px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .hero .cta-button {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}