@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800;900&display=swap');

.ss-slider-wrap { max-width: 100%; font-family: 'Rubik', sans-serif; }

.ss-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
}

.ss-card-head {
    padding: 28px 28px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.ss-card-head h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    color: #111;
    line-height: 1.2;
}

.ss-card-head p {
    color: #6b7280;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
}

.ss-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    color: #fff;
    background: #0171E2;
    text-decoration: none;
    transition: background .25s, transform .2s;
    margin-top: 4px;
}

.ss-cta:hover {
    background: #005bbf;
    color: #fff;
    transform: translateY(-1px);
}

.ss-mockup {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
    margin-top: 16px;
}

.ss-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #eee;
    margin-top: auto;
}

.ss-stat {
    padding: 18px 16px;
    text-align: left;
    border-right: 1px solid #eee;
}

.ss-stat:last-child { border-right: none; }

.ss-stat strong {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0171E2;
}

.ss-stat span {
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.3;
    display: block;
    margin-top: 2px;
}

.ss-nav {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 16px;
}

.ss-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    font-family: 'Rubik', sans-serif;
    transition: background .2s, color .2s, border-color .2s;
}

.ss-nav button:hover {
    background: #0171E2;
    color: #fff;
    border-color: #0171E2;
}

/* Responsywność */
@media (max-width: 600px) {
    .ss-stats { grid-template-columns: repeat(2, 1fr); }
    .ss-stat { border-bottom: 1px solid #eee; }
    .ss-card-head { padding: 20px 20px 0; }
    .ss-card-head h3 { font-size: 17px; }
    .ss-stat strong { font-size: 18px; }
}