/* =========================================================
   FirstPLAYER Support Page
   ========================================================= */

.support-hero{
    padding:80px 0 30px;
}

/* =========================================================
   REASONS STRIP (krótkie, konkretne powody wsparcia)
   ========================================================= */

.support-reasons{
    padding:10px 0 50px;
}

.reasons-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.reason-card{
    background:white;
    border-radius:24px;
    padding:26px;
    border:1px solid rgba(15,23,42,.06);
}

.reason-icon{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:16px;
    background:#eef3ff;
    font-size:1.3rem;
    margin-bottom:14px;
}

.reason-card h3{
    margin:0 0 8px;
    font-size:1.02rem;
    letter-spacing:-.02em;
}

.reason-card p{
    margin:0;
    color:#667085;
    font-size:.92rem;
}

/* =========================================================
   SUPPORT OPTIONS (karty z przyciskami do serwisów)
   ========================================================= */

.support-options{
    padding:20px 0 90px;
}

.support-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.support-card{
    flex:1 1 300px;
    max-width:340px;
    background:white;
    border-radius:32px;
    padding:35px;
    border:1px solid rgba(15,23,42,.06);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.support-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(15,23,42,.1);
}

.support-card.featured{
    border:2px solid rgba(79,124,255,.3);
    background:linear-gradient(180deg,#ffffff,#f7f9ff);
}

.support-icon{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:22px;
    background:#eef3ff;
    font-size:2rem;
    margin-bottom:25px;
}

.support-card h2{
    margin-top:0;
    letter-spacing:-.04em;
}

.support-card p{
    color:#667085;
    margin-bottom:25px;
}

.support-card .button{
    margin-top:auto;
}

/* =========================================================
   PAYMENT GUIDE
   ========================================================= */

.payment-guide{
    padding:100px 0;
}

.payment-guide > .container > h2{
    text-align:center;
    font-size:clamp(2rem,4vw,3rem);
    letter-spacing:-.04em;
    margin-bottom:50px;
}

.guide-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.guide-card{
    flex:1 1 300px;
    max-width:360px;
    background:white;
    border-radius:30px;
    padding:35px;
    border:1px solid rgba(15,23,42,.06);
}

.guide-card h3{
    margin-top:0;
}

.guide-card ol{
    padding-left:20px;
    color:#475467;
}

.guide-card p{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid rgba(15,23,42,.08);
    color:#667085;
    font-size:.95rem;
}

/* =========================================================
   THANK YOU
   ========================================================= */

.thank-you{
    padding:20px 0 100px;
}

.thank-box{
    text-align:center;
    background:linear-gradient(135deg,#eef3ff,#f7f5ff);
    border-radius:35px;
    padding:60px 40px;
}

.thank-box h2{
    margin-top:0;
    letter-spacing:-.04em;
}

.thank-box p{
    max-width:700px;
    margin:auto;
    color:#667085;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:900px){
    .reasons-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){
    .support-card,
    .guide-card{
        flex:1 1 100%;
        max-width:420px;
        padding:28px;
    }
}