:root{
    --gold:#d4af37;
    --gold-light:#f7dd88;
    --dark:#050505;
    --card:#0d0d0d;
    --border:rgba(212,175,55,.15);
    --text:#ffffff;
    --muted:#a6a6a6;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#050505;
    color:white;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

.bg-glow{
    position:fixed;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:700px;
    height:500px;
    background:radial-gradient(circle,
    rgba(212,175,55,.12),
    transparent 70%);
    pointer-events:none;
}

.hero{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:80px 20px 60px;
}

.logo-container{
    width:110px;
    height:110px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.3);
    margin-bottom:30px;
}

.logo-container img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.badge-premium{
    display:inline-block;
    padding:10px 18px;
    border:1px solid rgba(212,175,55,.3);
    border-radius:50px;
    color:var(--gold);
    font-size:.8rem;
    letter-spacing:2px;
    margin-bottom:25px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    font-weight:600;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    color:var(--muted);
    line-height:1.8;
    font-size:1.05rem;
}

.partners{
    max-width:1400px;
    margin:auto;
    padding:50px 20px 100px;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    color:var(--gold);
    letter-spacing:3px;
    font-size:.8rem;
}

.section-header h2{
    margin-top:15px;
    font-size:3rem;
    font-family:'Cormorant Garamond',serif;
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.card{
    background:rgba(255,255,255,.02);
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    transition:.4s;
    backdrop-filter:blur(15px);
}

.card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 20px 60px rgba(212,175,55,.15);
}

.card-image{
    height:220px;
    overflow:hidden;
}

.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.card:hover img{
    transform:scale(1.08);
}

.card-content{
    padding:28px;
}

.icon-circle{
    width:60px;
    height:60px;
    border-radius:50%;
    border:1px solid rgba(212,175,55,.3);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:1.4rem;
    margin-bottom:20px;
}

.card-content h3{
    font-size:1.7rem;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:12px;
}

.card-content p{
    color:var(--muted);
    line-height:1.8;
    min-height:90px;
}

.card-content a{
    margin-top:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;

    padding:14px 20px;

    background:linear-gradient(
        135deg,
        #d4af37,
        #f7dd88
    );

    color:#111;
    text-decoration:none;

    border-radius:12px;

    font-weight:700;
    font-size:.95rem;

    transition:.3s ease;
}

.card-content a:hover{
    transform:translateY(-2px);
    box-shadow:
    0 10px 30px rgba(212,175,55,.35);
}

.card-content a i{
    transition:.3s;
}

.card-content a:hover i{
    transform:translateX(4px);
}

footer{
    text-align:center;
    padding:30px;
    border-top:1px solid rgba(255,255,255,.05);
}

footer p{
    color:#888;
}

@media(max-width:1200px){

    .cards-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .hero h1{
        font-size:2.8rem;
    }

    .section-header h2{
        font-size:2.2rem;
    }

    .cards-grid{
        grid-template-columns:1fr;
    }

}