.membership-hero{
    position: relative;
    min-height: 650px;
    background-image: url("../img/optica-1.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.membership-overlay{
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        to right,
        rgba(8,24,36,0.95),
        rgba(8,24,36,0.65)
    );
}

.membership-content{
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.membership-content p{
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.membership-content h1{
    font-size: 82px;
    line-height: 1;
    margin-bottom: 20px;
}

.membership-content span{
    color: #a6ff00;
}

.membership-content h3{
    opacity: 0.8;
    font-weight: normal;
    line-height: 1.6;
    max-width: 600px;
}

.membership-price{
    margin-top: 30px;
    display: inline-block;
    background: rgba(166,255,0,0.15);
    border: 1px solid rgba(166,255,0,0.4);
    color: #a6ff00;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: bold;
}

.hero-buttons{
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-buttons a{
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px 28px;
    border-radius: 999px;
    transition: 0.3s ease;
}

.hero-buttons a:hover{
    background: rgba(255,255,255,0.05);
}

.membership-benefits{
    padding: 90px 60px;
}

.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title p{
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.section-title h2{
    font-size: 52px;
}

.section-title span{
    color: #a6ff00;
}

.benefits-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.benefit-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 40px;
    transition: 0.3s ease;
}

.benefit-card:hover{
    transform: translateY(-8px);
    border-color: rgba(166,255,0,0.35);
}

.benefit-icon{
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3{
    font-size: 28px;
    margin-bottom: 15px;
}

.benefit-card p{
    opacity: 0.75;
    line-height: 1.6;
}

.premium-protection{
    padding: 0 60px 90px;
}

.protection-card{
    background: #a6ff00;
    border-radius: 35px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.protection-left{
    max-width: 650px;
    color: #081824;
}

.protection-left p{
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.protection-left h2{
    font-size: 58px;
    margin-bottom: 20px;
}

.protection-left h3{
    line-height: 1.6;
    margin-bottom: 20px;
}

.protection-left span{
    font-weight: bold;
}

.protection-right{
    font-size: 140px;
}

.comparison-section{
    padding: 0 60px 90px;
}

.comparison-table{
    max-width: 900px;
    margin: auto;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    overflow: hidden;
}

.comparison-row{
    display: flex;
    justify-content: space-between;
    padding: 28px 35px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-row:last-child{
    border-bottom: none;
}

.comparison-row span{
    opacity: 0.8;
}

.comparison-row strong{
    color: #a6ff00;
}

.comparison-row.premium{
    background: rgba(166,255,0,0.08);
}

.family-section{
    padding: 0 60px 90px;
}

.family-box{
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 35px;
    padding: 70px;
}

.family-icon{
    font-size: 72px;
    margin-bottom: 25px;
}

.family-box h2{
    font-size: 52px;
    margin-bottom: 20px;
}

.family-box span{
    color: #a6ff00;
}

.family-box p{
    max-width: 800px;
    margin: auto;
    opacity: 0.75;
    line-height: 1.8;
    font-size: 20px;
}

.membership-cta{
    padding: 100px 60px;
    background: #071923;
    text-align: center;
}

.membership-cta h2{
    font-size: 62px;
    margin-bottom: 25px;
}

.membership-cta span{
    color: #a6ff00;
}

.membership-cta p{
    opacity: 0.75;
    margin-bottom: 40px;
    font-size: 20px;
}

.cta-quote{
    margin-top: 50px;
    opacity: 0.6;
    font-style: italic;
}


