/*
 * Podstrona pojedynczej usługi HAVA.
 */

.hava-service-container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.hava-single-service {
    color: var(--hava-slate);
    background: #EEEEF6;
}

.hava-single-service h1,
.hava-single-service h2,
.hava-single-service h3 {
    color: var(--hava-navy);
}

.hava-single-service__hero {
    overflow: hidden;
    padding: 34px 0 76px;
    background:
        radial-gradient(
            circle at 94% 4%,
            rgba(187, 203, 215, 0.12),
            transparent 32%
        ),
        var(--hava-navy);
}


.hava-service-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 52px;
    color: rgba(238, 238, 246, 0.72);
    font-size: 14px;
}


.hava-service-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.hava-service-breadcrumbs a:hover,
.hava-service-breadcrumbs a:focus-visible,
.hava-service-breadcrumbs [aria-current="page"] {
    color: var(--hava-copper);
}

.hava-service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(44px, 7vw, 90px);
}

.hava-service-heading-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.hava-service-main-icon {
    display: grid;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    place-items: center;
    padding: 14px;
    border-radius: 50%;
    background: rgba(187, 203, 215, 0.52);
}

.hava-service-main-icon__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hava-service-eyebrow {
    margin: 0;
    color: var(--hava-copper);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hava-service-hero-content h1 {
    margin: 0;
    font-size: clamp(48px, 5.6vw, 76px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.hava-service-hero-content h1::after {
    content: "";
    display: block;
    width: 68px;
    height: 2px;
    margin-top: 25px;
    background: var(--hava-copper);
}

.hava-service-lead {
    max-width: 640px;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.7;
}

.hava-service-lead > :first-child,
.hava-service-richtext > :first-child {
    margin-top: 0;
}

.hava-service-lead > :last-child,
.hava-service-richtext > :last-child {
    margin-bottom: 0;
}

.hava-service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.hava-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.hava-button:hover {
    transform: translateY(-2px);
}

.hava-button--primary {
    color: #EEEEF6;
    background: var(--hava-copper);
}

.hava-button--primary:hover,
.hava-button--primary:focus-visible {
    color: var(--hava-navy);
    background: #E19E6E;
}

.hava-button--secondary {
    color: var(--hava-navy);
    border-color: rgba(33, 35, 74, 0.42);
    background: transparent;
}

.hava-button--secondary:hover,
.hava-button--secondary:focus-visible {
    color: #EEEEF6;
    border-color: var(--hava-navy);
    background: var(--hava-navy);
}

.hava-service-hero-media,
.hava-service-about-media {
    overflow: hidden;
    border-radius: 26px;
}

.hava-service-hero-media {
    aspect-ratio: 1 / 1;
    min-height: 0;
    box-shadow: 0 22px 54px rgba(33, 35, 74, 0.12);
}

.hava-service-hero-image,
.hava-service-about-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hava-service-hero-image {
    min-height: 0;
    object-position: 50% 50%;
}



.hava-single-service__hero .hava-service-hero-content h1,
.hava-single-service__hero .hava-service-hero-content h1::after {
    color: #EEEEF6;
}

.hava-single-service__hero .hava-service-hero-content h1::after {
    background: var(--hava-copper);
}

.hava-single-service__hero .hava-service-lead {
    color: #EEEEF6;
}

.hava-single-service__hero .hava-service-eyebrow {
    color: var(--hava-copper);
}

.hava-single-service__hero .hava-service-breadcrumbs a {
    color: rgba(238, 238, 246, 0.72);
}

.hava-single-service__hero .hava-service-breadcrumbs a:hover,
.hava-single-service__hero .hava-service-breadcrumbs a:focus-visible,
.hava-single-service__hero .hava-service-breadcrumbs [aria-current="page"] {
    color: var(--hava-copper);
}

.hava-single-service__hero .hava-button--secondary {
    color: #EEEEF6;
    border-color: rgba(238, 238, 246, 0.52);
    background: transparent;
}

.hava-single-service__hero .hava-button--secondary:hover,
.hava-single-service__hero .hava-button--secondary:focus-visible {
    color: var(--hava-navy);
    border-color: #EEEEF6;
    background: #EEEEF6;
}

.hava-single-service__hero .hava-service-main-icon {
    background: rgba(187, 203, 215, 0.18);
}

.hava-single-service__hero .hava-service-main-icon img {
    filter: brightness(0) invert(0.95);
}

.hava-service-image-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 0;
    place-items: center;
    padding: 30px;
    color: var(--hava-slate);
    background: rgba(187, 203, 215, 0.48);
    text-align: center;
}

.hava-service-facts {
    position: relative;
    z-index: 2;
    margin-top: -34px;
}

.hava-service-facts__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid rgba(64, 78, 102, 0.12);
    border-radius: 20px;
    background: #EEEEF6;
    box-shadow: 0 16px 44px rgba(33, 35, 74, 0.08);
}

.hava-service-fact {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
    padding: 24px 22px;
}


.hava-service-fact--wide {
    grid-column: span 2;
}

.hava-service-fact + .hava-service-fact {
    border-left: 1px solid rgba(64, 78, 102, 0.11);
}

.hava-service-fact__icon {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    place-items: center;
    border-radius: 50%;
    background: rgba(187, 203, 215, 0.48);
}

.hava-service-fact__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--hava-navy);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hava-service-fact__label {
    display: block;
    margin-bottom: 4px;
    color: rgba(64, 78, 102, 0.72);
    font-size: 12px;
    line-height: 1.3;
}

.hava-service-fact strong {
    display: block;
    color: var(--hava-navy);
    font-size: 14px;
    line-height: 1.35;
}


.hava-service-fact__location-link {
    display: block;
    color: var(--hava-navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.hava-service-fact__location-link:hover,
.hava-service-fact__location-link:focus-visible {
    color: var(--hava-navy);
    text-decoration: none;
}


.hava-service-section {
    padding: 96px 0;
}

.hava-service-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
    align-items: center;
    gap: clamp(48px, 8vw, 100px);
}

.hava-service-copy h2,
.hava-service-section-header h2,
.hava-service-details h2,
.hava-service-final-cta h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.hava-service-copy h2::after,
.hava-service-section-header h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    margin-top: 22px;
    background: var(--hava-copper);
}

.hava-service-richtext {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.8;
}

.hava-service-about-media {
    min-height: 420px;
}

.hava-service-about-image {
    min-height: 420px;
}

.hava-service-when {
    color: #EEEEF6;
    background: var(--hava-navy);
}

.hava-service-when .hava-service-eyebrow {
    color: var(--hava-copper);
}

.hava-service-when .hava-service-section-header h2,
.hava-service-when .hava-service-text-item p {
    color: #EEEEF6;
}

.hava-service-when .hava-service-text-item h3 {
    color: var(--hava-copper);
}


.hava-service-when .hava-service-section-header h2::after {
    background: var(--hava-copper);
}

.hava-service-when .hava-service-text-item + .hava-service-text-item {
    border-color: rgba(238, 238, 246, 0.22);
}

.hava-service-section-header {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.hava-service-section-header h2::after {
    margin-inline: auto;
}

.hava-service-section-header .hava-service-eyebrow {
    margin-bottom: 13px;
}

.hava-service-text-grid,
.hava-service-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hava-service-text-item,
.hava-service-step {
    min-width: 0;
    padding: 0 30px;
}

.hava-service-text-item + .hava-service-text-item,
.hava-service-step + .hava-service-step {
    border-left: 1px solid rgba(64, 78, 102, 0.18);
}

.hava-service-text-item h3,
.hava-service-step h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
}

.hava-service-text-item p,
.hava-service-step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.68;
}

.hava-service-step__number {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--hava-copper);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hava-service-problems-section {
    padding: 0 0 76px;
    background: #EEEEF6;
}

.hava-service-problems-section--after-about {
    margin-top: -28px;
}

.hava-service-problems-strip {
    display: block;
    padding: 30px 34px;
    border: 1px solid rgba(64, 78, 102, 0.12);
    border-radius: 20px;
    background: #EEEEF6;
    box-shadow: 0 16px 44px rgba(33, 35, 74, 0.08);
}

.hava-service-problems-strip__heading {
    margin-bottom: 24px;
}

.hava-service-problems-strip__heading h2 {
    margin: 8px 0 0;
    color: var(--hava-navy);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.hava-service-problem-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hava-service-problem-list a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--hava-navy);
    background: rgba(187, 203, 215, 0.38);
    font-size: 14px;
    line-height: 1.35;
}


.hava-service-problem-list a {
    text-decoration: none;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.hava-service-problem-list a:hover,
.hava-service-problem-list a:focus-visible {
    color: #EEEEF6;
    background: var(--hava-navy);
    transform: translateY(-2px);
}

.hava-service-faq-section {
    background: #EEEEF6;
}

.hava-service-faq--standalone {
    max-width: 920px;
    margin-inline: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hava-service-faq-list {
    border-top: 1px solid rgba(33, 35, 74, 0.18);
}

.hava-service-faq-item {
    border-bottom: 1px solid rgba(33, 35, 74, 0.18);
}

.hava-service-faq-item summary {
    position: relative;
    padding: 22px 40px 22px 0;
    color: var(--hava-navy);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.hava-service-faq-item summary::-webkit-details-marker {
    display: none;
}

.hava-service-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 4px;
    color: var(--hava-copper);
    font-size: 23px;
    font-weight: 400;
    transform: translateY(-50%);
}

.hava-service-faq-item[open] summary::after {
    content: "−";
}

.hava-service-faq-answer {
    padding: 0 30px 18px 0;
    font-size: 15px;
    line-height: 1.7;
}

.hava-service-faq-answer > :first-child {
    margin-top: 0;
}

.hava-service-faq-answer > :last-child {
    margin-bottom: 0;
}

.hava-related-services {
    background: #EEEEF6;
}

.hava-related-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.hava-related-service-card {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    padding: 32px;
    border: 1px solid rgba(64, 78, 102, 0.14);
    border-radius: 20px;
    background: #EEEEF6;
    box-shadow: 0 12px 38px rgba(33, 35, 74, 0.05);
}

.hava-related-service-card h3 {
    margin: 0 0 16px;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.22;
}

.hava-related-service-card h3 a {
    color: inherit;
    text-decoration: none;
}

.hava-related-service-card__description {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.65;
}

.hava-related-service-card__description > :first-child {
    margin-top: 0;
}

.hava-related-service-card__description > :last-child {
    margin-bottom: 0;
}

.hava-related-service-card__link {
    margin-top: auto;
    color: var(--hava-copper);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.hava-service-final-cta {
    padding: 82px 0;
    color: #EEEEF6;
    background: var(--hava-navy);
}

.hava-service-final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hava-service-final-cta__inner > div:first-child {
    max-width: 680px;
}

.hava-service-final-cta .hava-service-eyebrow {
    color: var(--hava-copper);
}

.hava-service-final-cta h2 {
    margin: 10px 0 0;
    color: #EEEEF6;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.hava-service-final-cta p:last-child {
    margin: 14px 0 0;
    color: #EEEEF6;
    font-size: 17px;
}

.hava-service-final-cta .hava-service-actions {
    flex: 0 0 auto;
    margin-top: 0;
}

.hava-service-final-cta .hava-button--secondary {
    color: #EEEEF6;
    border-color: rgba(238, 238, 246, 0.65);
}

.hava-service-final-cta .hava-button--secondary:hover,
.hava-service-final-cta .hava-button--secondary:focus-visible {
    color: var(--hava-navy);
    border-color: #EEEEF6;
    background: #EEEEF6;
}

.hava-single-service a:focus-visible,
.hava-single-service summary:focus-visible {
    outline: 2px solid var(--hava-copper);
    outline-offset: 4px;
}

@media (max-width: 1100px) {
    .hava-service-facts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hava-service-fact--wide {
        grid-column: span 2;
    }

    .hava-service-hero-grid,
    .hava-service-about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

    
.hava-service-fact--wide {
    grid-column: span 2;
}

.hava-service-fact + .hava-service-fact {
        border-left: 0;
    }

    .hava-service-fact:nth-child(n + 4) {
        border-top: 1px solid rgba(64, 78, 102, 0.11);
    }

    .hava-service-text-grid,
    .hava-service-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 0;
    }

    .hava-service-text-item:nth-child(3),
    .hava-service-step:nth-child(3) {
        border-left: 0;
    }
}

@media (max-width: 820px) {
    .hava-service-problems-strip {
        grid-template-columns: minmax(0, 1fr);
    }

    .hava-service-hero-grid,
    .hava-service-about-grid,
    .hava-service-details-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hava-service-hero-media,
    .hava-service-hero-image,
    

.hava-single-service__hero .hava-service-hero-content h1,
.hava-single-service__hero .hava-service-hero-content h1::after {
    color: #EEEEF6;
}

.hava-single-service__hero .hava-service-hero-content h1::after {
    background: var(--hava-copper);
}

.hava-single-service__hero .hava-service-lead {
    color: #EEEEF6;
}

.hava-single-service__hero .hava-service-eyebrow {
    color: var(--hava-copper);
}

.hava-single-service__hero .hava-service-breadcrumbs a {
    color: rgba(238, 238, 246, 0.72);
}

.hava-single-service__hero .hava-service-breadcrumbs a:hover,
.hava-single-service__hero .hava-service-breadcrumbs a:focus-visible,
.hava-single-service__hero .hava-service-breadcrumbs [aria-current="page"] {
    color: var(--hava-copper);
}

.hava-single-service__hero .hava-button--secondary {
    color: #EEEEF6;
    border-color: rgba(238, 238, 246, 0.52);
    background: transparent;
}

.hava-single-service__hero .hava-button--secondary:hover,
.hava-single-service__hero .hava-button--secondary:focus-visible {
    color: var(--hava-navy);
    border-color: #EEEEF6;
    background: #EEEEF6;
}

.hava-single-service__hero .hava-service-main-icon {
    background: rgba(187, 203, 215, 0.18);
}

.hava-single-service__hero .hava-service-main-icon img {
    filter: brightness(0) invert(0.95);
}

.hava-service-image-placeholder {
        min-height: 0;
    }

    .hava-service-facts {
        margin-top: 24px;
    }

    .hava-service-facts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hava-service-fact:nth-child(n + 3) {
        border-top: 1px solid rgba(64, 78, 102, 0.11);
    }

    .hava-service-about-grid {
        gap: 38px;
    }

    .hava-service-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hava-service-final-cta .hava-service-actions {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .hava-service-fact--wide {
        grid-column: auto;
    }

    .hava-service-container {
        width: min(100% - 32px, 1240px);
    }

    .hava-single-service__hero {
    overflow: hidden;
    padding: 34px 0 76px;
    background:
        radial-gradient(
            circle at 94% 4%,
            rgba(187, 203, 215, 0.12),
            transparent 32%
        ),
        var(--hava-navy);
}

