body {
   overflow-x: hidden;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 1000px;
       padding-top: 5%;
    padding-bottom: 5%;
}


.newsletter-panel {
    position: relative;
    z-index: 2;
    background: #000;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    color: white;
}

.brand-identifier {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.headline-text {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px !important;
    letter-spacing: -1px;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.email-collector {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.email-collector::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-collector:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.cta-button {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(45deg, #E8B4FF, #91c849);
    border: none;
    border-radius: 12px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 132, 252, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .newsletter-panel {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .headline-text {
        font-size: 36px;
    }
    

}