/* CSS dla bloku serwis-hero */
.serwis-hero {
    background: #fff;
}

.serwis-hero__eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #28538E;
    display: flex;
    align-items: center;
    gap: 10px;
}
.serwis-hero__eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #28538E;
}
.serwis-hero__tytul p{
    margin-bottom: 0px !important;
}
.serwis-hero__tytul {
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.08;
}
.serwis-hero__tytul em {
    font-style: normal;
    color: #28538E;
}

.serwis-hero__sub {
    font-size: 1.1rem;
    color: #6B6B6B;
    line-height: 1.6;
    max-width: 36rem;
}

.serwis-hero__btn--primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    background: #28538E;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.serwis-hero__btn--primary:hover {
    background: #1b3d6e;
    color: white;
    transform: translateY(-1px);
}

.serwis-hero__btn--ghost {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid #0A0A0A;
    color: #0A0A0A;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.serwis-hero__btn--ghost:hover {
    background: #0A0A0A;
    color: white;
}

.serwis-hero__stat-nr {
    font-size: 2rem;
    font-weight: 600;
    color: #28538E;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
    border-top: 1px solid #E4E4E4;
    padding-top: 12px;
}

.serwis-hero__stat-label {
    font-size: 0.78rem;
    color: #6B6B6B;
    line-height: 1.3;
}

.serwis-hero__img {
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

@media (max-width: 991.98px) {
    .serwis-hero__img {
        aspect-ratio: 16/9;
    }
}
