:root {
    --sh-muted-surface: #7d7972;
    --sh-muted-surface-hover: #6e6a64;
    --sh-muted-surface-soft: #969088;
    --sh-muted-surface-rgb: 125, 121, 114;
    --sh-muted-surface-soft-rgb: 150, 144, 136;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

#top,
.sh-page-main,
.sh-site-footer {
    background: #f5f3ee;
}

.sh-site-footer {
    padding-top: 0.5rem;
}

.sh-site-footer__inner {
    padding: 2.5rem 0 1.25rem;
    border-top: 1px solid rgba(17, 24, 39, 0.12);
}

.sh-site-footer__brand {
    display: grid;
    gap: 2rem;
    max-width: 25rem;
}

.sh-site-footer__logo-link {
    display: inline-flex;
    align-items: center;
}

.sh-site-footer__logo {
    width: auto;
    height: 118px;
}

.sh-site-footer__description {
    color: #6b7280;
    line-height: 1.8;
}

.sh-site-footer__meta {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.sh-site-footer__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b08d57;
}

.sh-site-footer__contact,
.sh-site-footer__legal {
    color: #4b5563;
    line-height: 1.8;
}

.sh-site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    padding-top: 0.85rem;
}

.sh-site-footer__contact a,
.sh-site-footer__legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sh-site-footer__contact a:hover,
.sh-site-footer__legal a:hover {
    color: #b08d57;
}

.sh-site-footer__bottom {
    padding: 1.1rem 0 1.5rem;
}

.sh-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0.85rem;
    z-index: 1090;
    padding: 0 0.85rem;
    pointer-events: none;
}

.sh-cookie-consent__alert {
    max-width: 76rem;
    margin: 0 auto;
    pointer-events: auto;
}

.sh-cookie-consent__container,
.sh-cookie-consent__expandable {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 1.35rem;
    box-shadow: 0 18px 54px rgba(17, 24, 39, 0.16);
    backdrop-filter: blur(12px);
}

.sh-cookie-consent__container {
    transition: height 0.32s ease, opacity 0.24s ease, transform 0.24s ease;
}

.sh-cookie-consent__wrapper {
    display: grid;
    gap: 1.25rem;
    padding: 1.15rem;
}

.sh-cookie-consent__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b08d57;
}

.sh-cookie-consent__title {
    margin: 0.55rem 0 0;
    font-size: clamp(1.45rem, 3.8vw, 2rem);
    line-height: 1.05;
}

.sh-cookie-consent__intro {
    margin-top: 0.9rem;
    color: #4b5563;
    line-height: 1.7;
}

.sh-cookie-consent__intro p {
    margin-bottom: 0;
}

.sh-cookie-consent__intro p + p {
    margin-top: 0.5rem;
}

.sh-cookie-consent__intro a {
    color: #111827;
    font-weight: 600;
}

.sh-cookie-consent__actions {
    display: grid;
    gap: 0.75rem;
}

.sh-cookie-consent__button {
    margin: 0;
}

.sh-cookie-consent__button__link,
.sh-cookie-consent__save-button,
.sh-cookie-reset__link {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sh-cookie-consent__button__link:hover,
.sh-cookie-consent__save-button:hover,
.sh-cookie-reset__link:hover {
    transform: translateY(-1px);
}

.sh-cookie-consent__button--primary .sh-cookie-consent__button__link,
.sh-cookie-consent__save-button,
.sh-cookie-reset__link {
    background: #3f464d;
    color: #fff;
    box-shadow: 0 16px 28px rgba(63, 70, 77, 0.24);
}

.sh-cookie-consent__button--primary .sh-cookie-consent__button__link:hover,
.sh-cookie-consent__save-button:hover,
.sh-cookie-reset__link:hover {
    background: #2f363d;
    color: #fff;
}

.sh-cookie-consent__button--secondary .sh-cookie-consent__button__link {
    background: #f3ede3;
    color: #111827;
}

.sh-cookie-consent__button--secondary .sh-cookie-consent__button__link:hover {
    background: #eadfce;
}

.sh-cookie-consent__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.1rem 1rem;
    color: #111827;
    font-weight: 600;
    text-decoration: none;
}

.sh-cookie-consent__toggle:hover {
    color: #b08d57;
}

.sh-cookie-consent__expandable {
    margin-top: 0.85rem;
    height: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: height 0.32s ease, opacity 0.24s ease, transform 0.24s ease;
}

.sh-cookie-consent__expandable.cookies__expandable--open {
    height: auto;
}

.sh-cookie-consent.cookies--show .sh-cookie-consent__expandable,
.sh-cookie-consent.cookies--no-js .sh-cookie-consent__expandable {
    opacity: 1;
    transform: translateY(0);
}

.sh-cookie-consent.cookies--no-js .sh-cookie-consent__toggle {
    display: none;
}

.sh-cookie-consent.cookies--no-js .sh-cookie-consent__expandable {
    height: auto !important;
    margin-top: 0.85rem;
}

.sh-cookie-consent .cookies__container--hide {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

.sh-cookie-consent__form {
    padding: 1.15rem;
}

.sh-cookie-consent__form-head h3 {
    font-size: 1.2rem;
}

.sh-cookie-consent__sections {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.sh-cookie-consent__section {
    padding: 1rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 1rem;
    background: #faf9f7;
}

.sh-cookie-consent__category {
    display: block;
    cursor: pointer;
}

.sh-cookie-consent__category input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sh-cookie-consent__box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
}

.sh-cookie-consent__switch {
    position: relative;
    width: 2.9rem;
    height: 1.75rem;
    border-radius: 999px;
    background: #d8d3ca;
    transition: background-color 0.2s ease;
}

.sh-cookie-consent__switch::after {
    content: '';
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.16);
    transition: transform 0.2s ease;
}

.sh-cookie-consent__category input:checked + .sh-cookie-consent__box .sh-cookie-consent__switch {
    background: #b08d57;
}

.sh-cookie-consent__category input:checked + .sh-cookie-consent__box .sh-cookie-consent__switch::after {
    transform: translateX(1.15rem);
}

.sh-cookie-consent__category input:disabled + .sh-cookie-consent__box {
    cursor: not-allowed;
}

.sh-cookie-consent__label {
    display: block;
    margin-bottom: 0.3rem;
    color: #111827;
}

.sh-cookie-consent__info {
    display: block;
    color: #6b7280;
    line-height: 1.65;
}

.sh-cookie-consent__category-details {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.32s ease, opacity 0.24s ease;
}

.sh-cookie-consent__category-details.cookies__expandable--open {
    height: auto;
    opacity: 1;
}

.sh-cookie-consent__definitions {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    padding: 0.25rem 0 0;
    margin: 0;
}

.sh-cookie-consent__cookie {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.sh-cookie-consent__cookie:first-child {
    border-top: 0;
}

.sh-cookie-consent__cookie-name,
.sh-cookie-consent__cookie-duration {
    font-weight: 700;
    color: #111827;
}

.sh-cookie-consent__cookie-duration {
    color: #b08d57;
}

.sh-cookie-consent__cookie-description {
    margin-top: 0.35rem;
    color: #6b7280;
    line-height: 1.65;
}

.sh-cookie-consent__details-link {
    display: inline-flex;
    margin-top: 0.8rem;
    color: #111827;
    font-weight: 600;
    text-decoration: none;
}

.sh-cookie-consent__details-link:hover {
    color: #b08d57;
}

.sh-cookie-consent__save {
    margin-top: 1.1rem;
}

.sh-cookie-consent__save-button {
    display: inline-flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .sh-cookie-consent {
        bottom: 1.2rem;
    }

    .sh-cookie-consent__wrapper {
        grid-template-columns: minmax(0, 1.8fr) minmax(17rem, 0.95fr);
        align-items: end;
        gap: 1.5rem;
        padding: 1.4rem 1.5rem;
    }

    .sh-cookie-consent__form {
        padding: 1.4rem 1.5rem;
    }
}

.sh-page-section {
    background: transparent !important;
}

:where(#top, #o-nas, #korzysci, #uslugi, #jak-dzialamy, #cennik, #faq, #kontakt) {
    scroll-margin-top: calc(var(--navbar-offset, 84px) + 16px);
}

.sh-contact-section {
    background: linear-gradient(180deg, var(--sh-muted-surface) 0%, var(--sh-muted-surface-soft) 100%) !important;
}

.sh-neutral-button {
    color: #fff !important;
    background-color: var(--sh-muted-surface) !important;
    border-color: var(--sh-muted-surface) !important;
}

.sh-neutral-button:hover,
.sh-neutral-button:focus,
.sh-neutral-button:active {
    color: #fff !important;
    background-color: var(--sh-muted-surface-hover) !important;
    border-color: var(--sh-muted-surface-hover) !important;
}

.sh-neutral-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--sh-muted-surface-rgb), 0.24) !important;
}

.sh-content-page {
    min-height: 100vh;
    padding-top: calc(var(--navbar-offset, 84px) + 1rem);
}

.sh-content-page__frame {
    padding-top: clamp(1.25rem, 2.8vw, 2.25rem) !important;
}

.sh-content-page__hero {
    max-width: 50rem;
}

.sh-content-page__hero-shell {
    position: relative;
    width: min(100%, 67rem);
    margin-inline: auto;
}

.sh-content-page__hero-grid {
    align-items: center;
    --bs-gutter-x: clamp(1.25rem, 2.4vw, 2.25rem);
    --bs-gutter-y: 1.5rem;
    justify-content: center;
}

.sh-content-page__hero--split {
    max-width: 28rem;
    margin-inline: auto;
}

.sh-content-page__title {
    margin-top: 0.75rem;
    margin-bottom: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(17, 24, 39, 0.16);
}

.sh-content-page__hero-media-shell {
    position: relative;
    width: 100%;
    max-width: 35rem;
    margin-inline: auto;
}

.sh-content-page__hero-media-shell::before {
    content: "";
    position: absolute;
    inset: auto auto 1rem -0.85rem;
    width: clamp(6rem, 15vw, 9rem);
    aspect-ratio: 1;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(176, 141, 87, 0.16), rgba(176, 141, 87, 0.04));
    z-index: 0;
}

.sh-content-page__hero-media {
    position: relative;
    z-index: 1;
    aspect-ratio: 922 / 615;
    overflow: hidden;
    border-radius: 1.75rem;
    background: #d9d2c5;
    box-shadow: 0 20px 42px rgba(17, 24, 39, 0.13);
}

.sh-content-page__hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.14));
    pointer-events: none;
}

.sh-content-page__hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sh-content-page__eyebrow {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b08d57;
}

.sh-content-page__body {
    display: grid;
    gap: 2.5rem;
}

.sh-content-page__section {
    display: grid;
    gap: 1.5rem;
}

.sh-home-discovery__intro {
    margin-bottom: 1rem;
}

.sh-about-gallery {
    display: none !important;
}

.sh-mobile-photo {
    width: 100%;
    max-width: none;
    margin: 1.25rem 0;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.07) !important;
}

.sh-mobile-photo--about {
    margin: 1.1rem 0 1.2rem;
    --bs-aspect-ratio: 150%;
    background-position: center top;
}

.sh-mobile-photo--benefit {
    background-position: center 32%;
}

.sh-mobile-photo--service {
    background-position: center top;
}

.sh-mobile-photo-slot {
    margin-top: 0.75rem;
}

.sh-mobile-photo-slot .sh-mobile-photo {
    margin: 0;
}

@media (min-width: 768px) {
    .sh-about-gallery {
        display: block !important;
    }

    .sh-mobile-photo {
        display: none;
    }
}

.sh-home-links {
    --bs-gutter-x: 1.25rem;
}

.sh-home-link-item {
    position: relative;
}

.sh-home-link-card {
    display: grid;
    grid-template-columns: 6.25rem minmax(0, 1fr);
    column-gap: 0.75rem;
    height: 100%;
    padding: 1.25rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    transition: transform 0.25s ease, color 0.25s ease;
}

.sh-home-link-card:hover {
    transform: translateY(-3px);
    color: inherit;
}

.sh-home-link-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    color: #b08d57;
}

.sh-home-link-card__icon svg {
    width: 3.35rem;
    height: 3.35rem;
}

.sh-home-link-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

.sh-home-link-card__eyebrow {
    display: inline-flex;
    margin-bottom: 0.15rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #b08d57;
    text-transform: uppercase;
}

.sh-home-link-card__cta {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(17, 24, 39, 0.14);
    color: #111827;
}

.sh-home-link-card:hover .sh-home-link-card__cta {
    border-top-color: rgba(176, 141, 87, 0.45);
}

@media (max-width: 991.98px) {
    .sh-home-links {
        --bs-gutter-x: 1rem;
    }

    .sh-home-link-card {
        grid-template-columns: 5rem minmax(0, 1fr);
        column-gap: 0.5rem;
    }

    .sh-home-link-card__icon {
        min-width: 0;
    }

    .sh-home-link-card__icon svg {
        width: 2.8rem;
        height: 2.8rem;
    }

    .sh-home-link-item:not(:last-child) {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(17, 24, 39, 0.12);
    }
}

.sh-legal-page {
    min-height: 100vh;
    padding-top: calc(var(--navbar-offset, 84px) + 2rem);
}

.sh-legal-page__hero {
    max-width: 48rem;
}

.sh-legal-page__eyebrow {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b08d57;
}

.sh-legal-page__hero .badge {
    border-color: rgba(17, 24, 39, 0.12) !important;
    color: #5e5443;
}

.sh-legal-page__content {
    display: grid;
    gap: 2rem;
}

.sh-legal-page__block {
    padding-top: 2rem;
    border-top: 1px solid rgba(17, 24, 39, 0.12);
}

.sh-legal-page__number {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #b08d57;
}

.sh-legal-page__block h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.sh-legal-page__block ul,
.sh-legal-page__block ol {
    padding-left: 1.2rem;
}

.sh-legal-page__block li + li {
    margin-top: 0.5rem;
}

.sh-legal-page__summary {
    padding: 1.5rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
}

.sh-legal-page__summary ul {
    padding-left: 0;
}

.sh-legal-page__summary li + li {
    margin-top: 0.85rem;
}

.sh-legal-page__note {
    padding: 1.5rem;
    border: 1px solid rgba(176, 141, 87, 0.26);
    border-radius: 1rem;
    background: rgba(176, 141, 87, 0.1);
}

@media (min-width: 992px) {
    .sh-home-link-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 0;
        right: calc(var(--bs-gutter-x) * 0.5);
        width: 1px;
        height: 100%;
        background: rgba(17, 24, 39, 0.12);
    }

    .sh-legal-page__summary {
        position: sticky;
        top: calc(var(--navbar-offset, 84px) + 2rem);
    }

    .sh-site-footer__inner {
        padding: 3rem 0 1.4rem;
    }

    .sh-site-footer__logo {
        height: 140px;
    }

    .sh-site-footer__meta {
        gap: 1.15rem;
    }
}

#navScroll .sh-navbar-menu .nav-link {
    font-size: 1.05rem;
    font-weight: 700;
}

#navScroll .sh-navbar-menu .sh-navbar-link {
    transition: text-shadow 0.2s ease;
}

#navScroll .container {
    position: relative;
    gap: 0.75rem;
}

#navScroll .navbar-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 3.75rem);
    margin-right: 0;
    padding-right: 0.75rem !important;
}

#navScroll .navbar-toggler {
    flex-shrink: 0;
    margin-left: auto;
}

#navScroll .navbar-collapse {
    min-width: 0;
}

#navScroll .sh-navbar-partner {
    flex: 0 0 auto;
    min-width: 0;
}

#navScroll .sh-navbar-partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: translateZ(0);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#navScroll .sh-navbar-partner-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: 2.4rem;
    opacity: 0.92;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#navScroll .sh-navbar-partner--desktop {
    display: none;
}

#navScroll .sh-navbar-partner--mobile {
    display: grid;
    width: 100%;
    justify-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

#navScroll .sh-navbar-partner--mobile .sh-navbar-partner-logo {
    height: 2.7rem;
}

#navScroll .sh-navbar-partner-link:hover .sh-navbar-partner-logo,
#navScroll .sh-navbar-partner-link:focus-visible .sh-navbar-partner-logo {
    transform: scale(1.05);
    opacity: 1;
}

#navScroll .sh-navbar-partner-link:focus-visible {
    outline: 2px solid rgba(176, 141, 87, 0.4);
    outline-offset: 0.3rem;
    border-radius: 0.75rem;
}

#navScroll .sh-navbar-logo {
    display: block;
    width: min(100%, 11.75rem);
    height: auto;
    max-height: 82px;
}

#navScroll.scrolled .sh-navbar-logo {
    width: auto;
    height: 48px;
}

@media (min-width: 992px) {
    #navScroll .container {
        gap: 0;
    }

    #navScroll .navbar-brand {
        flex: 0 0 auto;
        max-width: none;
        padding-right: 1.5rem !important;
    }

    #navScroll .navbar-collapse {
        flex: 1 1 auto;
    }

    #navScroll .sh-navbar-logo {
        height: 108px;
        width: auto;
        max-height: none;
    }

    #navScroll .sh-navbar-partner--mobile {
        display: none !important;
    }

    #navScroll .sh-navbar-partner--desktop {
        position: absolute;
        top: 50%;
        right: calc(var(--bs-gutter-x) * 0.5);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-50%);
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    #navScroll .sh-navbar-partner--desktop .sh-navbar-partner-logo {
        height: 2.55rem;
    }

    #navScroll.scrolled .sh-navbar-logo {
        height: 48px;
    }

    #navScroll.scrolled .navbar-collapse {
        padding-right: clamp(9.5rem, 12.5vw, 11.5rem);
    }

    #navScroll.scrolled .sh-navbar-partner--desktop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    #navScroll:not(.scrolled) .sh-navbar-menu .sh-navbar-link {
        text-shadow: 0 0 8px rgba(245, 243, 238, 0.9), 0 0 18px rgba(245, 243, 238, 0.45);
    }
}

#top .sh-hero-shell {
    isolation: isolate;
}

#top .sh-hero-media {
    left: calc(var(--bs-gutter-x) * -0.5);
    width: calc(100% + var(--bs-gutter-x));
    background-repeat: no-repeat;
    background-position: center center;
}

#top .sh-hero-copy {
    z-index: 1;
}

#top .sh-hero-cta {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

#top .sh-hero-cta .btn {
    margin-left: auto;
}

#top .sh-hero-lead {
    visibility: hidden;
    overflow: hidden;
    max-width: 23rem;
    height: 10.5rem;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    #top .sh-hero-shell {
        min-height: clamp(40rem, 100svh, 54rem);
    }

    #top .sh-hero-cta {
        max-width: 23rem;
        justify-content: flex-start;
    }

    #top .sh-hero-cta .btn {
        margin-left: 0;
    }

    #top .sh-hero-media {
        left: auto;
        right: calc((100vw - 100%) / -2);
        width: min(62vw, 56rem);
    }
}

@media (min-width: 1200px) {
    #top .sh-hero-lead {
        visibility: visible;
        height: auto;
        max-width: 23rem;
    }

    #top .sh-hero-media {
        width: min(66vw, 64rem);
    }
}

#korzysci .sh-benefit-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

#korzysci .sh-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

#korzysci .sh-benefit-icon {
    width: 84px;
    height: 84px;
    min-width: 84px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(176, 141, 87, 0.14);
    color: #b08d57;
}

#korzysci .sh-benefit-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

#korzysci .sh-benefit-card h3 {
    overflow-wrap: anywhere;
}

#korzysci .sh-benefits-grid {
    --bs-gutter-x: 1.75rem;
    --bs-gutter-y: 1.75rem;
}

@media (min-width: 992px) {
    #korzysci .sh-benefits-grid {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 2rem;
    }

    #korzysci .sh-benefit-card {
        padding: 24px;
    }
}

.sh-service-item > span {
    display: inline-block;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 500 !important;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #b08d57;
}

.sh-service-item > h3 {
    border-top-color: #b08d57 !important;
}

@media (min-width: 768px) {
    .sh-services-grid .sh-service-item:nth-child(2) {
        padding-top: 3vh;
        padding-bottom: 0;
    }

    .sh-services-grid .sh-service-item:nth-child(3) {
        padding-top: 9vh;
        padding-bottom: 0;
    }

    .sh-services-grid .sh-service-item:nth-child(4) {
        padding-top: 16vh;
        padding-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .sh-services-grid {
        --bs-gutter-y: 1.75rem;
        padding-top: 1.5rem !important;
    }

    .sh-services-grid .sh-service-item {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

.sh-process-phase__intro,
.sh-process-card,
.sh-cooperation-cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.sh-cooperation-cta {
    padding: clamp(1.75rem, 3vw, 2.5rem);
}

.sh-process-phase__intro::after,
.sh-cooperation-cta::after {
    content: "";
    position: absolute;
    right: -5rem;
    bottom: -5rem;
    width: 14rem;
    height: 14rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(176, 141, 87, 0.18) 0%, rgba(176, 141, 87, 0) 70%);
    pointer-events: none;
}

.sh-process-experience {
    gap: 0;
}

.sh-process-phase + .sh-process-phase {
    margin-top: 2.75rem;
    padding-top: 2.75rem;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.sh-process-phase__intro {
    padding: 1.9rem;
}

.sh-process-phase__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b08d57;
}

.sh-process-phase__steps {
    display: grid;
    gap: 1.25rem;
}

.sh-process-phase__layout {
    --bs-gutter-y: 1.5rem;
}

.sh-process-card {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1.15rem;
    padding: 1.55rem;
}

.sh-process-card__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sh-process-card__number {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #b08d57;
    background: rgba(176, 141, 87, 0.14);
}

.sh-process-card__line {
    flex: 1;
    width: 2px;
    margin-top: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(176, 141, 87, 0.55) 0%, rgba(176, 141, 87, 0.06) 100%);
}

.sh-process-card__tag {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7f6a46;
}

.sh-process-card__body {
    display: grid;
    gap: 0.35rem;
}

.sh-process-card__body p {
    color: #4b5563;
    line-height: 1.7;
    margin-top: 0.15rem;
}

.sh-process-card--final {
    background: linear-gradient(135deg, rgba(var(--sh-muted-surface-rgb), 0.98) 0%, rgba(var(--sh-muted-surface-soft-rgb), 0.98) 100%);
    border-color: rgba(var(--sh-muted-surface-rgb), 0.94);
    color: #fff;
}

.sh-process-card--final .sh-process-card__number {
    background: rgba(176, 141, 87, 0.2);
}

.sh-process-card--final .sh-process-card__tag {
    color: rgba(255, 255, 255, 0.72);
}

.sh-process-card--final .sh-process-card__body p {
    color: rgba(255, 255, 255, 0.82);
}

.sh-faq-list {
    display: grid;
    gap: 1.5rem;
}

.sh-faq-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.sh-faq-card__header {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1.15rem;
    align-items: center;
}

.sh-faq-card__answer {
    padding-left: calc(3rem + 1.15rem);
    color: #4b5563;
    line-height: 1.7;
}

.sh-pricing-group__intro,
.sh-pricing-item,
.sh-pricing-cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.sh-pricing-group__intro::after,
.sh-pricing-cta::after {
    content: "";
    position: absolute;
    right: -5rem;
    bottom: -5rem;
    width: 14rem;
    height: 14rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(176, 141, 87, 0.18) 0%, rgba(176, 141, 87, 0) 70%);
    pointer-events: none;
}

.sh-pricing-cta {
    padding: clamp(1.75rem, 3vw, 2.35rem);
}

.sh-pricing-experience {
    gap: 0;
}

.sh-pricing-group + .sh-pricing-group {
    margin-top: 2.75rem;
    padding-top: 2.75rem;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.sh-pricing-group__layout {
    --bs-gutter-y: 1.5rem;
}

.sh-pricing-group__intro {
    padding: 1.75rem;
}

.sh-pricing-group__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b08d57;
}

.sh-pricing-group__items {
    display: grid;
    gap: 1rem;
}

.sh-pricing-item {
    display: grid;
    gap: 1rem;
    padding: 1.45rem 1.5rem;
}

.sh-pricing-item__body {
    display: grid;
    gap: 0.35rem;
}

.sh-pricing-item__body h3 {
    overflow-wrap: anywhere;
}

.sh-pricing-item__body p {
    color: #6b7280;
}

.sh-pricing-item__price {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #1f2329;
}

.sh-pricing-group--muted .sh-pricing-group__intro,
.sh-pricing-group--muted .sh-pricing-item {
    background: linear-gradient(135deg, rgba(var(--sh-muted-surface-rgb), 0.98) 0%, rgba(var(--sh-muted-surface-soft-rgb), 0.98) 100%);
    border-color: rgba(var(--sh-muted-surface-rgb), 0.94);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
    color: #fff;
}

.sh-pricing-group--muted .sh-pricing-group__intro::after {
    background: radial-gradient(circle, rgba(176, 141, 87, 0.22) 0%, rgba(176, 141, 87, 0) 72%);
}

.sh-pricing-group--muted .sh-pricing-group__eyebrow {
    color: rgba(255, 255, 255, 0.74);
}

.sh-pricing-group--muted .sh-pricing-item__body p,
.sh-pricing-group--muted .sh-pricing-group__intro p {
    color: rgba(255, 255, 255, 0.78) !important;
}

.sh-pricing-group--muted .sh-pricing-item__price {
    color: #fff;
}

.sh-pricing-cta {
    margin-top: 0.5rem;
}

.sh-pricing-cta__actions {
    display: grid;
    justify-items: center;
}

.sh-pricing-cta__actions .btn {
    min-height: 3.75rem;
    width: min(100%, 16rem);
}

.sh-cooperation-cta {
    margin-top: 0.5rem;
}

.sh-cooperation-cta__actions {
    align-content: center;
    justify-items: center;
}

.sh-cooperation-cta__actions .btn {
    min-height: 3.75rem;
    width: min(100%, 16rem);
}

@media (max-width: 991.98px) {
    .sh-content-page {
        padding-top: calc(var(--navbar-offset, 84px) + 0.75rem);
    }

    .sh-content-page__frame {
        padding-top: 1.25rem !important;
    }

    .sh-content-page__body {
        gap: 2.75rem;
    }

    .sh-content-page__hero--split {
        max-width: none;
    }

    .sh-content-page__hero-media-shell {
        width: min(100%, 30rem);
        max-width: none;
        margin-inline: auto;
    }

    .sh-content-page__hero-media {
        border-radius: 1.5rem;
    }

    .sh-content-page__hero-media-shell::before {
        left: -0.55rem;
        bottom: 0.8rem;
        width: 7.5rem;
    }

    .sh-content-page__section {
        gap: 1.75rem;
    }

    .sh-cooperation-cta {
        padding: 1.5rem;
    }

    .sh-pricing-cta {
        padding: 1.5rem;
    }

    .sh-process-phase__intro {
        padding: 1.5rem;
    }

    .sh-pricing-group__intro {
        padding: 1.5rem;
    }

    .sh-pricing-group + .sh-pricing-group {
        margin-top: 2.25rem;
        padding-top: 2.25rem;
    }

    .sh-process-phase + .sh-process-phase {
        margin-top: 2.25rem;
        padding-top: 2.25rem;
    }

    .sh-process-phase__layout {
        --bs-gutter-y: 1.9rem;
    }

    .sh-process-card {
        gap: 0.95rem;
        padding: 1.35rem 1.2rem;
    }

    .sh-faq-card__header {
        gap: 0.95rem;
    }

    .sh-faq-card__answer {
        padding-left: calc(3rem + 0.95rem);
    }

    .sh-pricing-group__layout {
        --bs-gutter-y: 1.75rem;
    }

    .sh-pricing-item {
        gap: 0.85rem;
        padding: 1.3rem 1.15rem;
    }

    .sh-pricing-item__price {
        font-size: 1.45rem;
    }

    .sh-process-card__body {
        gap: 0.5rem;
    }

    .sh-process-card__body h3 {
        margin-bottom: 0 !important;
    }

    .sh-cooperation-cta__actions {
        margin-top: 1.1rem;
        padding-top: 0.4rem;
        padding-bottom: 1rem;
    }

    .sh-pricing-cta__actions {
        margin-top: 1rem;
        padding-top: 0.4rem;
        padding-bottom: 0.75rem;
    }
}

@media (min-width: 992px) {
    .sh-content-page__hero-media-shell {
        max-width: 35rem;
        padding-left: 0;
    }

    .sh-process-phase__intro {
        position: sticky;
        top: calc(var(--navbar-offset, 84px) + 1.5rem);
    }

    .sh-pricing-group__intro {
        position: sticky;
        top: calc(var(--navbar-offset, 84px) + 1.5rem);
    }

    .sh-process-phase__steps .sh-process-card:nth-child(even) {
        margin-left: 1.5rem;
    }

    .sh-process-phase__steps .sh-process-card:nth-child(odd) {
        margin-right: 1.5rem;
    }

    .sh-faq-list .sh-faq-card:nth-child(even) {
        margin-left: 1.5rem;
    }

    .sh-faq-list .sh-faq-card:nth-child(odd) {
        margin-right: 1.5rem;
    }

    .sh-pricing-group__items .sh-pricing-item:nth-child(even) {
        margin-left: 1.5rem;
    }

    .sh-pricing-group__items .sh-pricing-item:nth-child(odd) {
        margin-right: 1.5rem;
    }

    .sh-cooperation-cta__actions {
        padding-left: 1rem;
        justify-items: center;
    }

    .sh-pricing-cta__actions {
        padding-left: 1rem;
    }
}

@media (max-width: 575.98px) {
    .sh-content-page {
        padding-top: calc(var(--navbar-offset, 84px) + 0.5rem);
    }

    .sh-content-page__frame {
        padding-top: 1rem !important;
    }

    .sh-content-page__hero-media-shell {
        width: 100%;
        max-width: none;
    }

    .sh-content-page__title {
        padding-bottom: 0.85rem;
    }

    .sh-content-page__hero-media-shell::before {
        display: none;
    }
}
