/* CSS dla bloku koszt-bledu */
.koszt-bledu__wrap {
    background: linear-gradient(135deg, #28538E 0%, #1b3d6e 100%);
    position: relative;
}
.koszt-bledu__bg-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.12; filter: grayscale(1);
}
.koszt-bledu__deco {
    position: absolute; top: -40px; right: -40px;
    font-size: clamp(160px, 20vw, 280px);
    font-weight: 600; letter-spacing: -0.04em;
    color: white; opacity: 0.07; line-height: 1;
    pointer-events: none; user-select: none;
    animation: koszt-pulse 4s ease-in-out infinite;
}
@keyframes koszt-pulse {
    0%, 100% { opacity: 0.07; transform: translate(0, 0); }
    50% { opacity: 0.13; transform: translate(-8px, 4px); }
}
.koszt-bledu__eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: #a8c4e5; display: flex; align-items: center; gap: 10px;
}
.koszt-bledu__eyebrow::before { content: ""; display: inline-block; width: 24px; height: 1px; background: #a8c4e5; }
.koszt-bledu__tytul {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 500; letter-spacing: -0.02em; line-height: 1.1;
}
.koszt-bledu__opis {
    font-size: 1rem; line-height: 1.65;
    color: rgba(255,255,255,0.85); max-width: 32rem;
}
.koszt-bledu__btn {
    display: inline-block; padding: 13px 28px; border-radius: 50px;
    background: white; color: #0A0A0A;
    font-size: 0.9rem; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
}
.koszt-bledu__btn:hover { background: #f0f0f0; color: #0A0A0A; transform: translateY(-1px); }
