.ev-partners-page{
    background:#f7f8fc;
    min-height:100vh;
}

.ev-partners-hero{
    padding:110px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(138,43,226,.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    text-align:center;
}

.ev-partners-hero .ev-container{
    max-width:900px;
}

.ev-partners-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:linear-gradient(135deg, rgba(138,43,226,.12), rgba(255,77,109,.12));
    color:#6A0DAD;
    font-weight:700;
    font-size:.92rem;
    border:1px solid rgba(138,43,226,.12);
    margin-bottom:18px;
}

.ev-partners-hero h1{
    font-size:clamp(2.2rem, 5vw, 4rem);
    line-height:1.05;
    color:#0F1020;
    margin-bottom:16px;
    font-weight:900;
    letter-spacing:-0.03em;
}

.ev-partners-hero p{
    color:#6B7280;
    font-size:1.08rem;
    line-height:1.8;
}

.ev-partners-grid-section{
    padding:30px 0 90px;
}

.ev-partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:24px;
}

.ev-partner-card{
    background:#fff;
    border:1px solid #E9EAF2;
    border-radius:24px;
    min-height:200px;
    padding:28px 24px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:18px;
    text-decoration:none;
    box-shadow:0 12px 35px rgba(15,16,32,.06);
    transition:all .30s ease;
    position:relative;
    overflow:hidden;
}

.ev-partner-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(138,43,226,.05), rgba(255,77,109,.06), rgba(255,122,69,.05));
    opacity:0;
    transition:all .30s ease;
}

.ev-partner-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 44px rgba(15,16,32,.12);
    border-color:rgba(138,43,226,.16);
}

.ev-partner-card:hover::before{
    opacity:1;
}

.ev-partner-card img{
    max-width:140px;
    max-height:70px;
    width:auto;
    height:auto;
    object-fit:contain;
    position:relative;
    z-index:2;
    filter:grayscale(0%);
    transition:all .30s ease;
}

.ev-partner-card:hover img{
    transform:scale(1.06);
}

.ev-partner-card span{
    position:relative;
    z-index:2;
    font-size:.92rem;
    font-weight:700;
    color:#6B7280;
}

.ev-partners-cta{
    padding:0 0 90px;
}

.ev-partners-cta-box{
    background:
        radial-gradient(circle at top left, rgba(138,43,226,.12), transparent 30%),
        linear-gradient(135deg, #0f1020, #171933);
    color:#fff;
    border-radius:28px;
    padding:38px 34px;
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    gap:28px;
    align-items:center;
    box-shadow:0 20px 50px rgba(15,16,32,.18);
}

.ev-partners-cta-box h2{
    font-size:clamp(1.7rem, 4vw, 2.6rem);
    line-height:1.08;
    margin-bottom:12px;
    font-weight:900;
}

.ev-partners-cta-box p{
    color:rgba(255,255,255,.84);
    line-height:1.8;
    max-width:720px;
}

.ev-partners-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:14px 24px;
    border-radius:14px;
    font-weight:800;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg, #8A2BE2 0%, #C9184A 45%, #FF7A45 100%);
    box-shadow:0 12px 28px rgba(201,24,74,.20);
    transition:all .28s ease;
}

.ev-partners-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 34px rgba(201,24,74,.24);
}

@media (max-width: 768px){
    .ev-partners-hero{
        padding:90px 0 55px;
    }

    .ev-partners-cta-box{
        grid-template-columns:1fr;
        text-align:left;
    }

    .ev-partner-card{
        min-height:180px;
    }
}