/* CSS dla bloku proces-hero */
.proces-hero__wrap { background: #0A0A0A; aspect-ratio: 21/9; min-height: 520px; max-height: 680px; }
.proces-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.proces-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 45%, rgba(10,10,10,0) 65%);
}
.proces-hero__panel {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-radius: 16px;
}
.proces-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;
}
.proces-hero__eyebrow::before { content: ""; display: inline-block; width: 24px; height: 1px; background: #28538E; }
.proces-hero__tytul {
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 500; letter-spacing: -0.02em; line-height: 1.08;
}
.proces-hero__tytul em { font-style: normal; color: #28538E; }
.proces-hero__opis { font-size: 1rem; color: rgba(8,47,73,0.78); line-height: 1.6; }
.proces-hero__btn--primary {
    display: inline-block; padding: 13px 26px; border-radius: 50px;
    background: #28538E; color: white; font-size: 0.9rem; font-weight: 500;
    text-decoration: none; transition: all 0.2s;
}
.proces-hero__btn--primary:hover { background: #1b3d6e; color: white; transform: translateY(-1px); }
.proces-hero__btn--ghost {
    display: inline-block; padding: 13px 26px; border-radius: 50px;
    border: 1px solid #0A0A0A; color: #0A0A0A;
    font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: all 0.2s;
}
.proces-hero__btn--ghost:hover { background: #0A0A0A; color: white; }
@media (max-width: 767.98px) {
    .proces-hero__wrap { aspect-ratio: auto; }
    .proces-hero__bg { position: relative; inset: auto; height: 260px; }
    .proces-hero__overlay { display: none; }
    .proces-hero__panel { border-radius: 0; background: white; backdrop-filter: none; }
}
