@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Nunito+Sans:wght@700;800;900&display=swap");

:root {
    --green: #007236;
    --green-dark: #005c2a;
    --green-soft: #eef8ef;
    --ink: #101827;
    --muted: #5d6878;
    --line: #dfe7e3;
    --shadow: 0 22px 60px rgba(16,24,39,.10);
}

* { box-sizing: border-box; }

html { margin-top: 0 !important; }

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: #ffffff;
}

#wpadminbar { display: none !important; }

a { color: inherit; }
img { max-width: 100%; height: auto; }

.container {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #edf1ee;
    position: relative;
    z-index: 20;
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-svg {
    width: 218px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 900;
    padding: 12px 18px;
    border-radius: 999px;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--green-soft);
    color: var(--green);
}

.header-contact {
    display: flex;
    gap: 18px;
    font-weight: 900;
    color: var(--green);
    white-space: nowrap;
}

.header-contact a { text-decoration: none; }

/* GŁÓWNA */
.hero-clean {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    background: #fff;
}

.hero-clean-photo {
    position: absolute;
    inset: 0 0 0 36%;
    z-index: 0;
}

.hero-clean-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.hero-clean::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            #fff 0%,
            #fff 27%,
            rgba(255,255,255,.94) 39%,
            rgba(255,255,255,.72) 51%,
            rgba(255,255,255,.22) 68%,
            rgba(255,255,255,0) 100%);
}

.hero-clean-inner {
    min-height: 660px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    width: 600px;
    padding-bottom: 80px;
}

.eyebrow {
    display: inline-flex;
    border: 1px solid rgba(0,114,54,.24);
    color: var(--green);
    border-radius: 999px;
    padding: 10px 18px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 900;
    background: rgba(255,255,255,.88);
    margin-bottom: 28px;
}

.hero-copy h1 {
    margin: 0 0 20px;
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: clamp(54px, 6vw, 80px);
    line-height: .98;
    letter-spacing: -0.055em;
}

.hero-copy h1 span { color: var(--green); }

.hero-copy h2 {
    margin: 0 0 20px;
    font-size: 23px;
    font-weight: 900;
}

.hero-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--green);
    color: #fff !important;
    border-color: var(--green);
    box-shadow: 0 10px 24px rgba(0,114,54,.20);
}

.btn-outline {
    background: #fff;
    color: var(--green) !important;
    border-color: rgba(0,114,54,.45);
}

.trust-clean {
    margin-top: -88px;
    position: relative;
    z-index: 5;
}

.trust-card {
    background: #fff;
    border: 1px solid #e3ebe6;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.trust-item {
    display: flex;
    gap: 18px;
    padding: 30px 28px;
    align-items: center;
    border-right: 1px solid #e3ebe6;
}

.trust-item:last-child { border-right: 0; }

.trust-item b {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.trust-item span {
    color: var(--muted);
    line-height: 1.55;
}

.trust-number strong,
.round-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #eaf6ec;
    color: var(--green);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.trust-number strong {
    font-size: 31px;
    font-weight: 900;
}

.round-icon svg,
.quick-item svg,
.contact-icon svg,
.municipality-pin svg {
    width: 32px;
    height: 32px;
    stroke: var(--green);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-clean {
    padding: 36px 0 66px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 86px;
}

.quick-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: center;
    text-decoration: none;
}

.quick-item > span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(0,114,54,.24);
    display: grid;
    place-items: center;
}

.quick-item b {
    display: block;
    color: #657181;
    font-size: 16px;
    font-weight: 600;
}

.quick-item strong {
    display: block;
    color: var(--green);
    font-size: 22px;
    font-weight: 900;
}

.offers-clean {
    padding: 42px 0 92px;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading.center {
    text-align: center;
}

.section-heading h1,
.section-heading h2,
.page-hero-simple h1,
.page-content-card h2 {
    font-family: "Nunito Sans", Arial, sans-serif;
}

.section-heading h1,
.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(42px, 4vw, 62px);
    letter-spacing: -0.045em;
}

.section-heading h1::after,
.section-heading h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    background: var(--green);
    border-radius: 99px;
    margin-top: 14px;
}

.section-heading.center h2::after {
    margin-left: auto;
    margin-right: auto;
}

.section-heading p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
    max-width: 860px;
}

.section-heading.center p {
    margin-left: auto;
    margin-right: auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.offer-card {
    min-height: 575px;
    display: flex;
    flex-direction: column;
    padding: 0 24px 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(16,24,39,.035);
    transition: .18s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.offer-img {
    position: relative;
    width: calc(100% + 48px);
    height: 300px;
    margin: 0 -24px 26px;
    background: #f5faf6;
}

.offer-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.offer-card:nth-child(1) .offer-img::before { background-image: url("../img/wzor-oferta-firmy.jpg"); }
.offer-card:nth-child(2) .offer-img::before { background-image: url("../img/wzor-oferta-gminy.jpg"); }
.offer-card:nth-child(3) .offer-img::before { background-image: url("../img/wzor-oferta-bigbag.jpg"); }
.offer-card:nth-child(4) .offer-img::before { background-image: url("../img/wzor-oferta-niebezpieczne.jpg"); }
.offer-card:nth-child(5) .offer-img::before { background-image: url("../img/wzor-oferta-oczyszczanie.jpg"); }
.offer-card:nth-child(6) .offer-img::before { background-image: url("../img/wzor-oferta-flota.jpg"); }

.offer-card h3 {
    margin: 0 0 22px;
    font-size: 25px;
    line-height: 1.16;
}

.offer-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
}

.offer-card span {
    margin-top: auto;
    padding-top: 24px;
    color: var(--green);
    font-size: 16px;
    font-weight: 900;
}

/* KONTAKT */
.page-clean {
    padding: 54px 0 92px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 38px;
    align-items: start;
}

.contact-grid-four {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    min-height: 286px;
    padding: 22px 20px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(16,24,39,.045);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #eaf6ec;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
}

.contact-card h2 {
    min-height: 44px;
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 900;
}

.contact-line {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    min-width: 0;
}

.contact-line span {
    display: block;
}

.contact-line a {
    color: var(--green);
    font-weight: 900;
    text-decoration: none;
}

.email-link {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.25;
}

.contact-card .btn {
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    font-size: 13px;
    color: var(--green) !important;
    background: #fff;
    border-color: rgba(0,114,54,.35);
    box-shadow: none;
}

.contact-card.is-active {
    border-color: rgba(0,114,54,.55);
    box-shadow: 0 18px 44px rgba(0,114,54,.12);
}

.contact-panel {
    position: sticky;
    top: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(16,24,39,.12);
    border-radius: 18px;
    padding: 30px;
}

.contact-panel-close {
    position: absolute;
    right: 22px;
    top: 18px;
    border: 0;
    background: transparent;
    color: #667085;
    font-size: 34px;
    cursor: pointer;
    line-height: 1;
}

.contact-panel-head {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}

.panel-icon {
    margin: 0;
    flex: 0 0 auto;
}

.contact-panel h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
}

#contact-panel-email {
    color: var(--green);
    font-weight: 900;
    margin: 6px 0 0;
    overflow-wrap: anywhere;
}

.contact-panel > p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
    margin: 0 0 20px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: #4f5b6b;
    font-weight: 800;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 128px;
    resize: vertical;
}

.file-field {
    border: 1px dashed #cbd8d0;
    border-radius: 10px;
    padding: 15px 16px;
    color: var(--muted);
}

.contact-form .btn-primary {
    width: 100%;
    min-height: 60px;
    font-size: 18px;
}

.rodo-note {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
}

.rodo-note a {
    color: var(--green);
    font-weight: 900;
}

.company-card {
    margin-top: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
    display: grid;
    grid-template-columns: 82px 1.45fr .9fr 1.15fr;
    gap: 24px;
    align-items: center;
}

.company-icon {
    margin: 0;
}

.company-card h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.company-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
}

.company-card strong {
    color: var(--green);
    overflow-wrap: anywhere;
}

.contact-info-strip {
    margin-top: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contact-info-strip a {
    text-decoration: none;
}

.contact-info-strip b {
    display: block;
    color: var(--green);
}

.contact-info-strip span {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}

/* GMINY */
.gminy-clean .section-heading p {
    max-width: 850px;
}

.municipality-list {
    display: grid;
    gap: 22px;
}

.municipality-card {
    min-height: 244px;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 350px;
    gap: 30px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 38px rgba(16,24,39,.045);
}

.municipality-illu {
    width: 250px;
    height: 190px;
    border-radius: 34px;
    background: #f1f8f1;
    overflow: hidden;
    position: relative;
}

.municipality-illu::after {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.city-gdynia::after { background-image: url("../img/wzor-gdynia.jpg"); }
.city-reda::after { background-image: url("../img/wzor-reda.jpg"); }
.city-szemud::after { background-image: url("../img/wzor-szemud.jpg"); }

.municipality-title-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 14px;
}

.municipality-pin {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.municipality-copy h2 {
    margin: 0;
    color: var(--green);
    font-size: 31px;
    font-weight: 900;
}

.municipality-copy p {
    margin: 0;
    color: #4e5969;
    line-height: 1.75;
    font-size: 17px;
}

.municipality-action {
    border-left: 1px solid var(--line);
    padding-left: 32px;
}

.municipality-action .btn {
    width: 100%;
    min-height: 64px;
    line-height: 1.35;
    text-align: left;
}

.service-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--green);
    font-weight: 900;
    text-decoration: none;
}

.info-box {
    min-height: 104px;
    margin-top: 28px;
    display: grid;
    grid-template-columns: 76px 1fr 300px;
    gap: 20px;
    align-items: center;
    background: var(--green-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 28px;
}

.info-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 3px solid rgba(0,114,54,.25);
    display: grid;
    place-items: center;
    color: var(--green);
    font-size: 34px;
    font-weight: 900;
    background: #fff;
}

.info-box strong {
    display: block;
    font-size: 20px;
}

.info-box span {
    color: var(--muted);
}

/* ZWYKŁE PODSTRONY */
.page-hero-simple {
    background: linear-gradient(180deg, #f8fbf9, #fff);
    padding: 70px 0 22px;
}

.page-hero-simple h1 {
    margin: 0;
    font-size: 58px;
    font-family: "Nunito Sans", Arial, sans-serif;
}

.page-content-section {
    padding: 62px 0 90px;
}

.page-content-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 52px 58px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(16,24,39,.04);
}

.page-content-card h2 {
    font-size: 38px;
    margin: 0 0 26px;
}

.page-content-card h3 {
    font-size: 24px;
    margin: 34px 0 14px;
    color: var(--green);
}

.page-content-card p,
.page-content-card li {
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.page-content-card a {
    color: var(--green);
    font-weight: 800;
}

/* STOPKA */
.site-footer {
    background: #111827;
    color: #d9e1dc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 52px 0;
}

.footer-logo-svg {
    width: 205px;
    height: auto;
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 18px;
}

.site-footer h3 {
    color: #fff;
    margin: 0 0 14px;
}

.site-footer p,
.site-footer a {
    color: #d9e1dc;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 18px 0;
    color: #aeb8b2;
    font-size: 14px;
}

@media (max-width: 1280px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        position: relative;
        top: 0;
    }
}

@media (max-width: 1180px) {
    .contact-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .municipality-card {
        grid-template-columns: 260px 1fr;
    }

    .municipality-action {
        grid-column: 1 / -1;
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 920px) {
    .container {
        width: min(100% - 36px, 1380px);
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .header-contact {
        width: 100%;
        justify-content: space-between;
    }

    .trust-card,
    .quick-grid,
    .company-card,
    .contact-info-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .brand-logo-svg {
        width: 178px;
    }

    .main-nav {
        width: 100%;
    }

    .main-nav a {
        flex: 1;
        text-align: center;
    }

    .hero-copy h1 {
        font-size: 43px;
    }

    .hero-clean-photo {
        left: 22%;
        opacity: .6;
    }

    .offer-grid,
    .contact-grid-four,
    .municipality-card,
    .info-box {
        grid-template-columns: 1fr;
    }

    .municipality-illu {
        width: 100%;
        height: 230px;
    }

    .page-content-card {
        padding: 30px 22px;
    }
}

/* SANIPOR PATCH - TELEFON 58 785 76 00, GMINY, WYROWNANA OFERTA */

/* Oferta: tytuly, opisy i linki w jednej linii */
body .offer-grid {
    align-items: stretch !important;
}

body .offer-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

body .offer-card h3 {
    min-height: 88px !important;
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 18px !important;
}

body .offer-card p {
    min-height: 150px !important;
    display: block !important;
}

body .offer-card span {
    margin-top: auto !important;
    padding-top: 22px !important;
    display: block !important;
}

/* Drobne wyrównanie obrazków w ofercie */
body .offer-img {
    height: 300px !important;
    flex: 0 0 300px !important;
}

/* Obsługa gmin: większy oddech i stabilne proporcje */
body .gminy-clean {
    padding-top: 58px !important;
}

body .gminy-clean .section-heading {
    margin-bottom: 38px !important;
}

body .municipality-card {
    min-height: 258px !important;
    grid-template-columns: 292px minmax(0, 1fr) 365px !important;
    gap: 34px !important;
    padding: 30px !important;
}

body .municipality-illu {
    width: 264px !important;
    height: 198px !important;
}

body .municipality-title-row {
    margin-bottom: 16px !important;
}

body .municipality-copy h2 {
    font-size: 33px !important;
}

body .municipality-copy p {
    font-size: 17px !important;
    line-height: 1.78 !important;
}

body .municipality-action {
    padding-left: 34px !important;
}

body .municipality-action .btn {
    min-height: 66px !important;
    font-size: 17px !important;
}

body .service-link {
    font-size: 16px !important;
}

/* Telefon główny - zabezpieczenie, aby nie łamał się brzydko */
body .header-contact a,
body .quick-item strong,
body .site-footer a {
    white-space: nowrap !important;
}

/* Responsywność po zmianie kart gmin */
@media (max-width: 1180px) {
    body .municipality-card {
        grid-template-columns: 280px 1fr !important;
    }

    body .municipality-action {
        grid-column: 1 / -1 !important;
        border-left: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 720px) {
    body .offer-card h3,
    body .offer-card p {
        min-height: 0 !important;
    }

    body .offer-img {
        height: 260px !important;
        flex-basis: 260px !important;
    }

    body .municipality-card {
        grid-template-columns: 1fr !important;
    }

    body .municipality-illu {
        width: 100% !important;
        height: 230px !important;
    }
}


/* SANIPOR FIX - OBSLUGA GMIN TABLICE BEZ UCINANIA I BEZ PRZEBIJANIA STARYCH GRAFIK */
body .gminy-final .municipality-illu,
body .gminy-clean .municipality-illu,
body .municipality-illu {
    width: 264px !important;
    height: 198px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    position: relative !important;
    background: linear-gradient(180deg, #eaf6ec 0%, #ffffff 100%) !important;
    box-shadow: none !important;
}

/* Usuwa stare przycięte obrazki i wszystkie przebijające fragmenty */
body .municipality-illu::after {
    background-image: none !important;
    background: none !important;
}

/* Delikatne tło za tablicą */
body .municipality-illu::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(circle at 25% 75%, rgba(0,114,54,.16) 0 12%, transparent 13%),
        radial-gradient(circle at 78% 72%, rgba(0,114,54,.12) 0 10%, transparent 11%),
        linear-gradient(180deg, #dff1e4 0%, #f8fbf9 55%, #ffffff 100%) !important;
    z-index: 1 !important;
}

/* Słupki tablicy */
body .municipality-illu .fake-post,
body .municipality-illu::marker {
    display: none !important;
}

body .city-gdynia,
body .city-reda,
body .city-szemud {
    isolation: isolate !important;
}

/* Tablica */
body .city-gdynia::after,
body .city-reda::after,
body .city-szemud::after {
    position: absolute !important;
    left: 24px !important;
    top: 34px !important;
    width: 205px !important;
    height: 84px !important;
    border-radius: 9px !important;
    background: linear-gradient(180deg, #087a3d 0%, #006b32 100%) !important;
    border: 4px solid #ffffff !important;
    box-shadow:
        0 0 0 2px rgba(0,78,38,.28),
        0 18px 30px rgba(16,24,39,.18) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
    text-shadow: 0 2px 2px rgba(0,0,0,.22) !important;
    z-index: 3 !important;
    background-image: none !important;
}

/* Nazwy na tablicach */
body .city-gdynia::after {
    content: "Gdynia" !important;
}

body .city-reda::after {
    content: "Reda" !important;
}

body .city-szemud::after {
    content: "Szemud" !important;
}

/* Słupki pod tablicą */
body .city-gdynia > *,
body .city-reda > *,
body .city-szemud > * {
    display: none !important;
}

body .city-gdynia,
body .city-reda,
body .city-szemud {
    background-image: none !important;
}

body .city-gdynia:before,
body .city-reda:before,
body .city-szemud:before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, transparent 79px, #d7e0dc 80px, #aebbb5 86px, transparent 87px),
        linear-gradient(90deg, transparent 169px, #d7e0dc 170px, #aebbb5 176px, transparent 177px),
        radial-gradient(circle at 23% 80%, rgba(0,114,54,.14) 0 16%, transparent 17%),
        radial-gradient(circle at 80% 80%, rgba(0,114,54,.12) 0 15%, transparent 16%),
        linear-gradient(180deg, #e6f3e9 0%, #f8fbf9 68%, #ffffff 100%) !important;
    z-index: 1 !important;
}

/* Poprawia kartę Szemud, żeby nic nie wychodziło pod obrazkiem */
body .municipality-card {
    overflow: hidden !important;
}

body .municipality-list {
    overflow: visible !important;
}

/* Lekko porządkuje proporcje sekcji gmin */
body .municipality-card {
    align-items: center !important;
}

body .municipality-copy {
    min-width: 0 !important;
}

body .municipality-action {
    min-width: 0 !important;
}

@media (max-width: 720px) {
    body .municipality-illu {
        width: 100% !important;
        height: 220px !important;
    }

    body .city-gdynia::after,
    body .city-reda::after,
    body .city-szemud::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 220px !important;
        height: 88px !important;
    }
}


/* SANIPOR FIX FINAL - CZYSTE TABLICE GMIN, BEZ UCINANIA I BEZ STARYCH WKLEJEK */
body .municipality-card {
    overflow: hidden !important;
}

body .city-sign-card {
    width: 264px !important;
    height: 198px !important;
    border-radius: 18px !important;
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 22% 78%, rgba(0,114,54,.15) 0 15%, transparent 16%),
        radial-gradient(circle at 78% 78%, rgba(0,114,54,.12) 0 14%, transparent 15%),
        linear-gradient(180deg, #e8f5ec 0%, #f8fbf9 65%, #ffffff 100%) !important;
    box-shadow: none !important;
    flex: 0 0 auto !important;
}

/* słupki pod tablicą */
body .city-sign-card::before {
    content: "" !important;
    position: absolute !important;
    left: 78px !important;
    top: 18px !important;
    width: 7px !important;
    height: 164px !important;
    background: linear-gradient(180deg, #c9d5d0, #a9b8b2) !important;
    box-shadow: 88px 0 0 #a9b8b2 !important;
    border-radius: 99px !important;
    z-index: 1 !important;
}

/* dolny cień */
body .city-sign-card::after {
    content: "" !important;
    position: absolute !important;
    left: 44px !important;
    right: 44px !important;
    bottom: 18px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(16,24,39,.08) !important;
    filter: blur(4px) !important;
    z-index: 1 !important;
}

/* właściwa zielona tablica */
body .road-sign {
    position: absolute !important;
    left: 24px !important;
    top: 36px !important;
    width: 216px !important;
    height: 86px !important;
    border-radius: 9px !important;
    background: linear-gradient(180deg, #087d3f 0%, #006b32 100%) !important;
    border: 4px solid #ffffff !important;
    box-shadow:
        0 0 0 2px rgba(0,78,38,.26),
        0 18px 30px rgba(16,24,39,.20) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
    text-shadow: 0 2px 3px rgba(0,0,0,.25) !important;
    z-index: 3 !important;
    white-space: nowrap !important;
}

/* zabezpieczenie, żeby stare style municipality-illu już nie wpływały */
body .municipality-illu {
    display: none !important;
}

@media (max-width: 720px) {
    body .city-sign-card {
        width: 100% !important;
        height: 220px !important;
    }

    body .road-sign {
        left: 50% !important;
        top: 46px !important;
        transform: translateX(-50%) !important;
        width: 230px !important;
        height: 88px !important;
    }

    body .city-sign-card::before {
        left: calc(50% - 60px) !important;
        top: 28px !important;
        height: 168px !important;
        box-shadow: 112px 0 0 #a9b8b2 !important;
    }
}


/* SANIPOR - PODSTRONA O FIRMIE */
body .sanipor-about-page {
    position: relative !important;
    min-height: calc(100vh - 88px) !important;
    overflow: hidden !important;
    background: #f5f2eb !important;
}

body .sanipor-about-bg {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    filter: grayscale(100%) sepia(10%) contrast(94%) !important;
    opacity: .80 !important;
    transform: scale(1.01) !important;
    z-index: 1 !important;
}

body .sanipor-about-overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, rgba(255,255,255,.80) 0%, rgba(255,255,255,.58) 38%, rgba(255,255,255,.38) 100%),
        linear-gradient(180deg, rgba(255,255,255,.60) 0%, rgba(255,255,255,.32) 45%, rgba(255,255,255,.66) 100%) !important;
    z-index: 2 !important;
}

body .sanipor-about-inner {
    position: relative !important;
    z-index: 3 !important;
    padding: 92px 0 120px !important;
}

body .sanipor-about-title {
    max-width: 1180px !important;
    margin: 0 auto 42px !important;
}

body .sanipor-about-title h1 {
    margin: 0 !important;
    font-family: "Nunito Sans", "Inter", Arial, sans-serif !important;
    font-size: clamp(56px, 5.8vw, 82px) !important;
    line-height: .95 !important;
    letter-spacing: -0.055em !important;
    color: #101827 !important;
}

body .sanipor-about-title h1::after {
    content: "" !important;
    display: block !important;
    width: 82px !important;
    height: 5px !important;
    border-radius: 99px !important;
    background: #007236 !important;
    margin-top: 28px !important;
}

body .sanipor-about-card {
    width: min(980px, calc(100% - 120px)) !important;
    margin: 0 auto !important;
    padding: 58px 70px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.76) !important;
    border: 1px solid rgba(255,255,255,.72) !important;
    box-shadow: 0 26px 80px rgba(16,24,39,.14) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}

body .sanipor-about-card h2 {
    margin: 0 0 32px !important;
    font-family: "Nunito Sans", "Inter", Arial, sans-serif !important;
    font-size: 42px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    color: #101827 !important;
}

body .sanipor-about-card p {
    margin: 0 0 28px !important;
    color: #394456 !important;
    font-size: 19px !important;
    line-height: 1.85 !important;
    font-weight: 500 !important;
}

body .sanipor-about-card p:last-child {
    margin-bottom: 0 !important;
}

body .sanipor-about-card strong {
    color: #2f394a !important;
    font-weight: 900 !important;
}

@media (max-width: 920px) {
    body .sanipor-about-inner {
        padding: 70px 0 80px !important;
    }

    body .sanipor-about-title {
        margin-bottom: 32px !important;
    }

    body .sanipor-about-card {
        width: 100% !important;
        padding: 38px 28px !important;
    }

    body .sanipor-about-card h2 {
        font-size: 34px !important;
    }

    body .sanipor-about-card p {
        font-size: 17px !important;
        line-height: 1.75 !important;
    }
}


/* SANIPOR GMINY FINAL START */
body .sgm-page {
    background: #ffffff !important;
    padding: 58px 0 90px !important;
}

body .sgm-heading {
    max-width: 900px !important;
    margin: 0 0 34px !important;
}

body .sgm-heading h1 {
    margin: 0 !important;
    font-family: "Nunito Sans", "Inter", Arial, sans-serif !important;
    font-size: clamp(44px, 4.2vw, 64px) !important;
    line-height: 1 !important;
    letter-spacing: -0.05em !important;
    color: #101827 !important;
    font-weight: 900 !important;
}

body .sgm-heading h1::after {
    content: "" !important;
    display: block !important;
    width: 66px !important;
    height: 4px !important;
    border-radius: 99px !important;
    background: #007236 !important;
    margin-top: 18px !important;
}

body .sgm-heading p {
    margin: 18px 0 0 !important;
    max-width: 900px !important;
    color: #4f5b6b !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
}

body .sgm-list {
    display: grid !important;
    gap: 22px !important;
}

body .sgm-card {
    min-height: 244px !important;
    display: grid !important;
    grid-template-columns: 330px minmax(0, 1fr) 390px !important;
    align-items: center !important;
    gap: 38px !important;
    padding: 26px !important;
    border: 1px solid #dfe7e3 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 15px 44px rgba(16,24,39,.045) !important;
    overflow: hidden !important;
}

body .sgm-visual {
    position: relative !important;
    width: 292px !important;
    height: 178px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background:
        linear-gradient(180deg, rgba(64,170,230,.42), rgba(255,255,255,.08) 44%, rgba(32,130,45,.24)),
        radial-gradient(circle at 18% 82%, #4d9b39 0 17%, transparent 18%),
        radial-gradient(circle at 88% 80%, #6fb04b 0 16%, transparent 17%),
        linear-gradient(90deg, #6bb35d 0%, #d8e8d2 44%, #e5d7c2 100%) !important;
}

body .sgm-visual::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(circle at 18% 84%, rgba(28,112,42,.70) 0 17%, transparent 18%),
        radial-gradient(circle at 72% 82%, rgba(47,131,52,.55) 0 16%, transparent 17%),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.18)) !important;
    z-index: 1 !important;
}

body .sgm-visual::after {
    content: "" !important;
    position: absolute !important;
    left: 84px !important;
    top: 78px !important;
    width: 7px !important;
    height: 106px !important;
    border-radius: 99px !important;
    background: linear-gradient(180deg, #cbd5d1, #828f8a) !important;
    box-shadow: 132px 0 0 #828f8a !important;
    z-index: 2 !important;
}

body .sgm-sign {
    position: absolute !important;
    left: 27px !important;
    top: 31px !important;
    width: 238px !important;
    height: 88px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 9px !important;
    background: linear-gradient(180deg, #087d3e 0%, #006b32 100%) !important;
    border: 4px solid #ffffff !important;
    box-shadow:
        0 0 0 2px rgba(0,74,36,.32),
        0 14px 26px rgba(16,24,39,.24) !important;
    color: #ffffff !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 39px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.035em !important;
    text-shadow: 0 2px 4px rgba(0,0,0,.28) !important;
    transform: rotate(1.5deg) !important;
    white-space: nowrap !important;
    z-index: 3 !important;
}

body .sgm-visual-reda .sgm-sign {
    transform: rotate(1deg) !important;
}

body .sgm-visual-szemud .sgm-sign {
    transform: rotate(1.4deg) !important;
    font-size: 37px !important;
}

body .sgm-copy {
    min-width: 0 !important;
}

body .sgm-title-row {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 18px !important;
}

body .sgm-pin {
    width: 42px !important;
    height: 42px !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 auto !important;
}

body .sgm-pin svg,
body .sgm-service svg {
    fill: none !important;
    stroke: #007236 !important;
    stroke-width: 4 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

body .sgm-pin svg {
    width: 38px !important;
    height: 38px !important;
}

body .sgm-copy h2 {
    margin: 0 !important;
    color: #007236 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 33px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
}

body .sgm-copy p {
    margin: 0 !important;
    color: #354052 !important;
    font-size: 17px !important;
    line-height: 1.72 !important;
    font-weight: 500 !important;
}

body .sgm-action {
    min-width: 0 !important;
    border-left: 1px solid #dfe7e3 !important;
    padding-left: 32px !important;
}

body .sgm-button {
    min-height: 68px !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 34px !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 24px !important;
    border-radius: 8px !important;
    background: linear-gradient(180deg, #00823f 0%, #006b32 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 13px 26px rgba(0,114,54,.18) !important;
    font-size: 18px !important;
    line-height: 1.32 !important;
    font-weight: 900 !important;
}

body .sgm-button strong {
    font-size: 34px !important;
    line-height: 1 !important;
    text-align: right !important;
}

body .sgm-service {
    margin-top: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    color: #007236 !important;
    text-decoration: none !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

body .sgm-service svg {
    width: 24px !important;
    height: 24px !important;
}

body .sgm-info {
    margin-top: 26px !important;
    min-height: 104px !important;
    display: grid !important;
    grid-template-columns: 74px minmax(0, 1fr) 310px !important;
    gap: 24px !important;
    align-items: center !important;
    padding: 22px 30px !important;
    border-radius: 15px !important;
    border: 1px solid #dcebe1 !important;
    background: #eef8ef !important;
}

body .sgm-info-icon {
    width: 60px !important;
    height: 60px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    border: 4px solid rgba(0,114,54,.18) !important;
    background: #ffffff !important;
    color: #007236 !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

body .sgm-info strong {
    display: block !important;
    margin-bottom: 6px !important;
    color: #101827 !important;
    font-size: 21px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

body .sgm-info span {
    display: block !important;
    color: #4f5b6b !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
}

body .sgm-info a {
    min-height: 58px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    border: 1px solid rgba(0,114,54,.48) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #007236 !important;
    text-decoration: none !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

body .sgm-info a b {
    font-size: 28px !important;
    line-height: 1 !important;
}

@media (max-width: 1180px) {
    body .sgm-card {
        grid-template-columns: 310px minmax(0, 1fr) !important;
    }

    body .sgm-action {
        grid-column: 1 / -1 !important;
        border-left: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 760px) {
    body .sgm-page {
        padding: 38px 0 62px !important;
    }

    body .sgm-card {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 18px !important;
    }

    body .sgm-visual {
        width: 100% !important;
        max-width: 360px !important;
        height: 190px !important;
    }

    body .sgm-info {
        grid-template-columns: 1fr !important;
    }

    body .sgm-info a {
        width: 100% !important;
    }
}
/* SANIPOR GMINY FINAL END */


/* SANIPOR OBSLUGA GMIN Z PLIKU START */
body .spg-page {
    background: #ffffff !important;
    padding: 58px 0 90px !important;
}

body .spg-heading {
    max-width: 900px !important;
    margin: 0 0 34px !important;
}

body .spg-heading h1 {
    margin: 0 !important;
    font-family: "Nunito Sans", "Inter", Arial, sans-serif !important;
    font-size: clamp(44px, 4.2vw, 64px) !important;
    line-height: 1 !important;
    letter-spacing: -0.05em !important;
    color: #101827 !important;
    font-weight: 900 !important;
}

body .spg-heading h1::after {
    content: "" !important;
    display: block !important;
    width: 66px !important;
    height: 4px !important;
    border-radius: 99px !important;
    background: #007236 !important;
    margin-top: 18px !important;
}

body .spg-heading p {
    margin: 18px 0 0 !important;
    max-width: 900px !important;
    color: #4f5b6b !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
}

body .spg-list {
    display: grid !important;
    gap: 22px !important;
}

body .spg-card {
    min-height: 244px !important;
    display: grid !important;
    grid-template-columns: 330px minmax(0, 1fr) 390px !important;
    align-items: center !important;
    gap: 38px !important;
    padding: 26px !important;
    border: 1px solid #dfe7e3 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 15px 44px rgba(16,24,39,.045) !important;
    overflow: hidden !important;
}

body .spg-visual {
    width: 306px !important;
    height: 180px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #eef8ef !important;
}

body .spg-visual img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

body .spg-copy {
    min-width: 0 !important;
}

body .spg-title-row {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 18px !important;
}

body .spg-pin {
    width: 42px !important;
    height: 42px !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 auto !important;
}

body .spg-pin svg,
body .spg-service svg {
    fill: none !important;
    stroke: #007236 !important;
    stroke-width: 4 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

body .spg-pin svg {
    width: 38px !important;
    height: 38px !important;
}

body .spg-copy h2 {
    margin: 0 !important;
    color: #007236 !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 33px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
}

body .spg-copy p {
    margin: 0 !important;
    color: #354052 !important;
    font-size: 17px !important;
    line-height: 1.72 !important;
    font-weight: 500 !important;
}

body .spg-action {
    min-width: 0 !important;
    border-left: 1px solid #dfe7e3 !important;
    padding-left: 32px !important;
}

body .spg-button {
    min-height: 68px !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 34px !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 24px !important;
    border-radius: 8px !important;
    background: linear-gradient(180deg, #00823f 0%, #006b32 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 13px 26px rgba(0,114,54,.18) !important;
    font-size: 18px !important;
    line-height: 1.32 !important;
    font-weight: 900 !important;
}

body .spg-button strong {
    font-size: 34px !important;
    line-height: 1 !important;
    text-align: right !important;
}

body .spg-service {
    margin-top: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    color: #007236 !important;
    text-decoration: none !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

body .spg-service svg {
    width: 24px !important;
    height: 24px !important;
}

body .spg-info {
    margin-top: 26px !important;
    min-height: 104px !important;
    display: grid !important;
    grid-template-columns: 74px minmax(0, 1fr) 310px !important;
    gap: 24px !important;
    align-items: center !important;
    padding: 22px 30px !important;
    border-radius: 15px !important;
    border: 1px solid #dcebe1 !important;
    background: #eef8ef !important;
}

body .spg-info-icon {
    width: 60px !important;
    height: 60px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    border: 4px solid rgba(0,114,54,.18) !important;
    background: #ffffff !important;
    color: #007236 !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

body .spg-info strong {
    display: block !important;
    margin-bottom: 6px !important;
    color: #101827 !important;
    font-size: 21px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

body .spg-info span {
    display: block !important;
    color: #4f5b6b !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
}

body .spg-info a {
    min-height: 58px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    border: 1px solid rgba(0,114,54,.48) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #007236 !important;
    text-decoration: none !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

body .spg-info a b {
    font-size: 28px !important;
    line-height: 1 !important;
}

@media (max-width: 1180px) {
    body .spg-card {
        grid-template-columns: 310px minmax(0, 1fr) !important;
    }

    body .spg-action {
        grid-column: 1 / -1 !important;
        border-left: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 760px) {
    body .spg-page {
        padding: 38px 0 62px !important;
    }

    body .spg-card {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 18px !important;
    }

    body .spg-visual {
        width: 100% !important;
        max-width: 360px !important;
        height: 210px !important;
    }

    body .spg-info {
        grid-template-columns: 1fr !important;
    }

    body .spg-info a {
        width: 100% !important;
    }
}
/* SANIPOR OBSLUGA GMIN Z PLIKU END */
