/* ============================================
   ZMIENNE GLOBALNE
   ============================================ */
:root {
    --cp-green-900: #0a1a0a;
    --cp-green-800: #0e1f0e;
    --cp-green-700: #143214;
    --cp-green-600: #1a4a1a;
    --cp-green-500: #1e6e1e;
    --cp-green-400: #2d8a2d;
    --cp-green-300: #4aad4a;
    --cp-accent: #34d399;
    --cp-surface-dark: #0e1a0e;
    --cp-surface-light: #f0f5f0;
    --cp-text-light: #e8f0e8;
    --cp-text-muted: #8aaa8a;
    --cp-text-dark: #1a2e1a;
    --cp-border: #2a4a2a;
    --cp-radius: 8px;
    --cp-radius-lg: 12px;
    --cp-transition: 0.2s ease;
}

/* ============================================
   RESET BAZOWY
   ============================================ */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ============================================
   HEADER — fixed, przezroczysty, ciemny po scrollu
   Klasa JS: .scrolled
   ============================================ */
header.wp-block-template-part {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header.wp-block-template-part > .wp-block-group {
    background-color: transparent !important;
    padding: 16px 32px !important;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

header.wp-block-template-part.scrolled > .wp-block-group {
    background-color: rgba(14, 26, 14, 0.95) !important;
    padding: 10px 32px !important;
    backdrop-filter: blur(8px);
}

/* ============================================
   HEADER — menu mobilne overlay
   ============================================ */
.wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 999 !important;
    background-color: #0e1a0e !important;
    padding-top: 80px !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 1000 !important;
    color: #e8f0e8 !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    color: #e8f0e8 !important;
    font-size: 18px !important;
    padding: 12px 24px !important;
}

/* ============================================
   NAWIGACJA — spacing, hover
   ============================================ */
.wp-block-navigation .wp-block-navigation-item__content {
    padding: 8px 12px;
    transition: color 0.2s ease;
}

.wp-block-navigation .wp-block-navigation-item__content:hover {
    color: #34d399;
}

/* ============================================
   SEKCJA 1: HERO (HOMEPAGE)
   Klasa: .hero-section
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #0e1a0e;
    background-image: url('http://serwer385119.lh.pl/autoinstalator/serwer385119.lh.pl/wordpress158153/wp-content/uploads/2026/04/hero-bubbles-1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 140px !important;
    padding-bottom: 96px !important;
    padding-left: 64px !important;
    padding-right: 64px !important;
}

.hero-section > h1 {
    max-width: 55% !important;
    position: relative;
    z-index: 2;
    margin-bottom: 24px !important;
}

.hero-section > p {
    max-width: 50% !important;
    position: relative;
    z-index: 2;
    margin-bottom: 40px !important;
}

.hero-section .wp-block-buttons {
    position: relative;
    z-index: 2;
    margin-top: 16px !important;
}

/* ============================================
   SEKCJA 3: USŁUGI (HOMEPAGE) — kontener + karty z ikonami
   Klasa na grupie opakowującej: .services-section
   Klasa na każdej karcie: .service-card
   ============================================ */
.services-section {
    padding: 96px 64px !important;
}

.services-section h2 {
    margin-bottom: 16px !important;
}

.services-section h2 + p {
    margin-bottom: 48px !important;
}

.service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(26, 46, 26, 0.1);
    border-radius: 12px !important;
    padding: 40px 32px !important;
    background: #ffffff;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 26, 10, 0.1);
    border-color: rgba(52, 211, 153, 0.3);
}

.service-card .wp-block-image {
    margin-bottom: 20px !important;
}

.service-card .wp-block-image img {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain;
    border-radius: 0 !important;
}

.service-card h3 {
    margin-bottom: 12px !important;
}

.service-card p {
    margin-bottom: 16px !important;
    line-height: 1.7;
}

.service-card a {
    transition: color 0.2s ease;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
    padding-top: 8px;
}

.service-card a:hover {
    color: #34d399;
}

.wp-block-columns:has(.service-card) {
    align-items: stretch !important;
    margin-bottom: 32px !important;
    gap: 32px !important;
}

/* ============================================
   SEKCJA 4: DLACZEGO MY (HOMEPAGE) + zaokrąglenie na dole
   Klasa: .why-us-section
   ============================================ */
.why-us-section {
    padding: 96px 64px 120px !important;
    position: relative;
}

.why-us-section::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #0e1a0e;
    clip-path: ellipse(52% 100% at 50% 0%);
    z-index: 1;
}

.why-us-section h2 {
    margin-bottom: 48px !important;
}

.why-us-section .wp-block-column {
    padding: 24px;
    border-left: 3px solid #34d399;
    transition: background 0.2s ease;
}

.why-us-section .wp-block-column:hover {
    background: rgba(52, 211, 153, 0.05);
}

/* ============================================
   SEKCJA 5: PROCES WSPÓŁPRACY (HOMEPAGE)
   Klasa na grupie: .process-section
   Klasa na każdej kolumnie: .process-step
   ============================================ */
.process-section {
    padding: 96px 64px !important;
    counter-reset: step-counter;
}

.process-section h2 {
    margin-bottom: 16px !important;
}

.process-section h2 + p {
    margin-bottom: 64px !important;
}

.process-section .wp-block-columns {
    gap: 24px !important;
    margin-bottom: 48px !important;
}

.process-step {
    counter-increment: step-counter;
    position: relative;
    background: #f0f5f0;
    border-radius: 12px;
    padding: 40px 24px 32px !important;
    text-align: center;
    border: 1px solid rgba(26, 46, 26, 0.08);
    transition: border-color 0.2s ease;
}

.process-step:hover {
    border-color: rgba(52, 211, 153, 0.3);
}

.process-step::before {
    content: counter(step-counter, decimal-leading-zero);
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #34d399;
    margin-bottom: 16px;
    line-height: 1;
}

.process-step h3 {
    margin-bottom: 12px !important;
}

/* ============================================
   SEKCJA 6: ZASIĘG (HOMEPAGE)
   Klasa: .coverage-section
   ============================================ */
.coverage-section {
    padding: 96px 64px !important;
}

.coverage-section h2 {
    margin-bottom: 16px !important;
}

.coverage-section h2 + p {
    margin-bottom: 48px !important;
}

.coverage-section .wp-block-columns {
    align-items: center !important;
    gap: 48px !important;
}

.coverage-section .wp-block-column:first-child .wp-block-group {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px !important;
    box-shadow: 0 2px 12px rgba(10, 26, 10, 0.06);
}

.coverage-section .wp-block-column:first-child h3 {
    margin-bottom: 8px !important;
}

.coverage-section .wp-block-column:first-child .wp-block-separator {
    margin: 24px 0 !important;
    opacity: 0.15;
}

.coverage-section .wp-block-column:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-section .wp-block-column:last-child img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* ============================================
   SEKCJA 7: CTA BAND (HOMEPAGE)
   Klasa: .cta-band
   ============================================ */
.cta-band {
    padding: 80px 64px !important;
}

.cta-band h2 {
    margin-bottom: 16px !important;
}

.cta-band h2 + p {
    margin-bottom: 32px !important;
}

/* ============================================
   SEKCJA 8: STOPKA
   Klasa: .site-footer-wave
   ============================================ */
.site-footer-wave {
    position: relative;
}

.site-footer-wave::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #0a1a0a;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.site-footer-wave .wp-block-separator {
    opacity: 0.1;
    border-color: #2a4a2a !important;
}

.site-footer-wave a {
    transition: color 0.2s ease;
}

.site-footer-wave a:hover {
    color: #34d399 !important;
}

/* ============================================
   PRZYCISKI — globalne
   ============================================ */
.wp-block-button__link {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border-radius: 6px !important;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 110, 30, 0.3);
}

.is-style-outline .wp-block-button__link {
    border-width: 2px !important;
}

/* ============================================
   ANIMACJE — subtelny fade-in przy scrollu (HOMEPAGE)
   ============================================ */
.service-card,
.process-step,
.why-us-section .wp-block-column {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.visible,
.process-step.visible,
.why-us-section .wp-block-column.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   ============================================
   PODSTRONY USŁUGOWE
   ============================================
   ============================================ */

/* ============================================
   HERO PODSTRONY — gradient, cień na zdjęciu
   Klasa: .subpage-hero
   ============================================ */
.subpage-hero {
    padding-top: 140px !important;
    padding-bottom: 80px !important;
    padding-left: 64px !important;
    padding-right: 64px !important;
    background: linear-gradient(135deg, #0e1a0e 0%, #132913 40%, #0e1f12 100%) !important;
    border-bottom: 1px solid rgba(52, 211, 153, 0.15);
}

.subpage-hero .wp-block-columns {
    align-items: center !important;
    gap: 48px !important;
}

.subpage-hero h1 {
    margin-bottom: 16px !important;
}

/* Breadcrumb */
.subpage-hero > .wp-block-columns > .wp-block-column:first-child > p:first-child {
    margin-bottom: 8px !important;
    font-size: 13px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.55;
}

.subpage-hero .wp-block-image img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.subpage-hero .wp-block-buttons {
    margin-top: 24px !important;
}

/* ============================================
   SEKCJA ZAKRES — "Co obejmuje..."
   Klasa sekcji: .scope-section
   Klasa kart: .scope-card
   ============================================ */
.scope-section {
    padding: 80px 64px !important;
}

.scope-section h2 {
    margin-bottom: 16px !important;
}

.scope-section h2 + p {
    margin-bottom: 40px !important;
}

.scope-card {
    background: #ffffff !important;
    border: 1px solid rgba(26, 46, 26, 0.06) !important;
    border-top: 3px solid var(--cp-accent) !important;
    border-radius: 0 0 12px 12px !important;
    padding: 36px 32px !important;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.scope-card:hover {
    box-shadow: 0 8px 24px rgba(10, 26, 10, 0.08);
    transform: translateY(-2px);
}

.scope-card h3 {
    margin-bottom: 12px !important;
    font-size: 22px;
}

.scope-card p {
    line-height: 1.75;
    color: #4a6a4a;
}

.wp-block-columns:has(.scope-card) {
    gap: 32px !important;
}

/* ============================================
   SEKCJA "DLA KOGO" — Jakie obiekty obsługujemy
   Klasa sekcji: .client-types
   Klasa kart: .client-type-card
   ============================================ */
.client-types {
    padding: 96px 64px !important;
    counter-reset: client-counter;
}

.client-types h2 {
    margin-bottom: 16px !important;
}

.client-types h2 + p {
    margin-bottom: 48px !important;
}

.client-type-card {
    counter-increment: client-counter;
    position: relative;
    background: #ffffff !important;
    border: 1px solid rgba(52, 211, 153, 0.2) !important;
    border-radius: 12px !important;
    padding: 36px 28px 32px !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.client-type-card::before {
    content: "0" counter(client-counter);
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cp-accent);
    letter-spacing: 1px;
    opacity: 0.7;
}

.client-type-card:hover {
    border-color: rgba(52, 211, 153, 0.5) !important;
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.08);
}

.client-type-card h3 {
    margin-bottom: 12px !important;
}

.client-type-card p {
    line-height: 1.7;
    color: #4a6a4a;
}

.wp-block-columns:has(.client-type-card) {
    gap: 24px !important;
}

/* ============================================
   SEKCJA "JAK PRACUJEMY" — 3 filary z dekoracyjną kropką
   Klasa sekcji: .service-process
   Klasa kolumn: .process-timeline-step
   ============================================ */
.service-process {
    padding: 80px 64px !important;
}

.service-process h2 {
    margin-bottom: 56px !important;
}

.service-process .wp-block-columns {
    gap: 48px !important;
}

.process-timeline-step {
    position: relative;
    padding: 0 24px !important;
    text-align: center;
    border-left: none !important;
    border-top: 2px solid rgba(52, 211, 153, 0.25);
    padding-top: 32px !important;
}

/* Dekoracyjna kropka na górze — bez numeru */
.process-timeline-step::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--cp-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--cp-surface-dark), 0 0 12px rgba(52, 211, 153, 0.3);
}

.process-timeline-step h3 {
    color: var(--cp-text-light) !important;
    margin-bottom: 10px !important;
    font-size: 19px !important;
}

.process-timeline-step p {
    color: var(--cp-text-muted) !important;
    line-height: 1.65;
    font-size: 15px !important;
}

/* ============================================
   CENNIK PODSTRONY — UNIWERSALNY
   Działa na: biura, hale, magazyny, inne
   Klasa sekcji: .pricing-section
   Klasa kart: .price-card (wszystkie karty, w tym wycena indyw.)
   Opcjonalnie: .price-value na paragrafach z kwotą
                .price-value-custom na "wycena indywidualna"
   ============================================ */
.pricing-section {
    padding: 80px 64px !important;
}

.pricing-section h2 {
    margin-bottom: 16px !important;
}

.pricing-section h2 + p {
    margin-bottom: 48px !important;
}

.price-card {
    background: #ffffff !important;
    border: 1px solid rgba(26, 46, 26, 0.08);
    border-radius: 12px !important;
    padding: 36px 28px !important;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-4px);
}

.price-card h3 {
    margin-bottom: 12px !important;
}

.price-card p:last-of-type {
    margin-top: 16px !important;
}

/* Wyróżniona karta cenowa — ta sama forma, inna treść */
.price-card-featured {
    background: #ffffff !important;
    border: 1px solid rgba(26, 46, 26, 0.08) !important;
    border-radius: 12px !important;
    padding: 36px 28px !important;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card-featured::before {
    display: none;
}

.price-card-featured:hover {
    border-color: rgba(52, 211, 153, 0.3) !important;
    transform: translateY(-4px);
}

.price-card-featured h3 {
    margin-bottom: 12px !important;
}

/* Kwota cenowa — wyróżniony kolor */
.price-value {
    color: var(--cp-green-500) !important;
    font-size: 28px !important;
    font-weight: 800 !important;
}

/* "wycena indywidualna" — ten sam styl co kwoty */
.price-value-custom {
    color: var(--cp-accent) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
}

.wp-block-columns:has(.price-card) {
    gap: 24px !important;
    margin-bottom: 24px !important;
}

/* Tekst disclaimera pod kartami */
.pricing-section > p,
.pricing-section .wp-block-group > p,
.pricing-section p:has(+ .wp-block-buttons) {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

/* Przycisk pod kartami cenowymi — wycentrowany z oddechem */
.pricing-section .wp-block-buttons {
    justify-content: center !important;
    margin-top: 16px !important;
}

/* ============================================
   FAQ PODSTRONY — pełna szerokość tła
   Wrapper: .faq-wrapper (Group w WP, pełna szer., tło #f0f5f0)
   Wewnątrz: .subpage-faq (max-width 800px)
   ============================================ */
.faq-wrapper {
    background: var(--cp-surface-light) !important;
    padding: 80px 24px !important;
}

.faq-wrapper .subpage-faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 !important;
    background: transparent !important;
}

.faq-wrapper .wp-block-details,
.subpage-faq .wp-block-details {
    border-bottom: 1px solid rgba(26, 46, 26, 0.12);
    padding: 20px 0;
    transition: background 0.2s ease, padding 0.2s ease;
}

.faq-wrapper .wp-block-details:hover,
.subpage-faq .wp-block-details:hover {
    background: rgba(52, 211, 153, 0.04);
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 8px;
}

.faq-wrapper .wp-block-details summary,
.subpage-faq .wp-block-details summary {
    font-size: 17px;
    font-weight: 600;
    color: var(--cp-text-dark);
    cursor: pointer;
    padding: 4px 0;
    list-style: none;
    transition: color 0.2s ease;
}

.faq-wrapper .wp-block-details summary:hover,
.subpage-faq .wp-block-details summary:hover {
    color: var(--cp-green-500);
}

.faq-wrapper .wp-block-details summary::-webkit-details-marker,
.subpage-faq .wp-block-details summary::-webkit-details-marker {
    display: none;
}

.faq-wrapper .wp-block-details summary::before,
.subpage-faq .wp-block-details summary::before {
    content: "+";
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 26px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--cp-surface-dark);
    background: var(--cp-accent);
    border-radius: 50%;
    margin-right: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
    vertical-align: middle;
}

.faq-wrapper .wp-block-details[open] summary::before,
.subpage-faq .wp-block-details[open] summary::before {
    content: "−";
    background: var(--cp-green-400);
}

.faq-wrapper .wp-block-details p,
.subpage-faq .wp-block-details p {
    margin-top: 12px !important;
    padding-left: 42px;
    color: #4a6a4a;
    line-height: 1.7;
}

/* ============================================
   CTA BAND PODSTRONY — inna forma niż homepage
   Klasa: .subpage-cta
   ============================================ */
.subpage-cta {
    padding: 72px 64px !important;
    position: relative;
    overflow: hidden;
}

.subpage-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.subpage-cta h2 {
    margin-bottom: 16px !important;
}

.subpage-cta h2 + p {
    margin-bottom: 32px !important;
}

/* ============================================
   STARE KLASY PODSTRON — fallback
   (subpage-card, subpage-section, subpage-dark)
   Zostawione na wypadek gdyby były używane na
   innych podstronach niż /sprzatanie-biur/
   ============================================ */
.subpage-section {
    padding: 80px 64px !important;
}

.subpage-section h2 {
    margin-bottom: 16px !important;
}

.subpage-section h2 + p {
    margin-bottom: 40px !important;
}

.subpage-section .wp-block-columns {
    gap: 32px !important;
}

.subpage-card {
    background: #ffffff !important;
    border: 1px solid rgba(26, 46, 26, 0.08);
    border-radius: 12px !important;
    padding: 32px !important;
    transition: border-color 0.2s ease;
}

.subpage-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
}

.subpage-card h3 {
    margin-bottom: 12px !important;
}

.subpage-dark {
    padding: 80px 64px !important;
}

.subpage-dark h2 {
    margin-bottom: 48px !important;
}

.subpage-dark .wp-block-columns {
    gap: 48px !important;
}

.subpage-dark .wp-block-column {
    padding-left: 24px;
    border-left: 2px solid #34d399;
}


/* ============================================
   RESPONSYWNOŚĆ — MOBILE (do 782px)
   ============================================ */
@media (max-width: 782px) {
    h1 { font-size: 28px !important; }
    h2 { font-size: 26px !important; }
    h3 { font-size: 20px !important; }

    header.wp-block-template-part > .wp-block-group {
        padding: 12px 16px !important;
    }
    header.wp-block-template-part.scrolled > .wp-block-group {
        padding: 8px 16px !important;
    }

    /* Homepage hero */
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 64px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        background: linear-gradient(160deg, #0e1a0e 0%, #143214 50%, #0e1a0e 100%) !important;
    }
    .hero-section > h1,
    .hero-section > p {
        max-width: 100% !important;
    }

    /* Homepage sekcje */
    .services-section {
        padding: 64px 24px !important;
    }
    .wp-block-columns:has(.service-card) {
        flex-direction: column !important;
    }
    .service-card {
        padding: 32px 24px !important;
    }

    .why-us-section {
        padding: 64px 24px 80px !important;
    }
    .why-us-section .wp-block-columns {
        flex-direction: column !important;
    }
    .why-us-section .wp-block-column {
        margin-bottom: 16px;
    }
    .why-us-section::after {
        height: 24px;
        bottom: -24px;
    }

    .process-section {
        padding: 64px 24px !important;
    }
    .process-section .wp-block-columns {
        flex-direction: column !important;
    }

    .coverage-section {
        padding: 64px 24px !important;
    }
    .coverage-section .wp-block-columns {
        flex-direction: column !important;
    }

    .cta-band {
        padding: 48px 24px !important;
    }

    .site-footer-wave {
        padding: 64px 24px 32px !important;
    }
    .site-footer-wave::before {
        height: 30px;
        top: -30px;
    }
    .site-footer-wave .wp-block-columns {
        flex-direction: column !important;
        gap: 32px;
    }

    /* Animacje wyłączone na mobile */
    .service-card,
    .process-step,
    .why-us-section .wp-block-column {
        opacity: 1;
        transform: none;
    }

    /* ---- PODSTRONY MOBILE ---- */
    .subpage-hero {
        padding-top: 100px !important;
        padding-bottom: 56px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    .subpage-hero .wp-block-columns {
        flex-direction: column !important;
    }
    .subpage-hero .wp-block-image img {
        height: 240px;
    }

    .scope-section {
        padding: 56px 24px !important;
    }
    .wp-block-columns:has(.scope-card) {
        flex-direction: column !important;
    }

    .client-types {
        padding: 56px 24px !important;
    }
    .wp-block-columns:has(.client-type-card) {
        flex-direction: column !important;
    }

    /* Service process — kolumny pionowo na mobile */
    .service-process {
        padding: 56px 24px !important;
    }
    .service-process .wp-block-columns {
        flex-direction: column !important;
        gap: 24px !important;
    }
    .process-timeline-step {
        text-align: left;
        border-top: none;
        border-left: 2px solid rgba(52, 211, 153, 0.25);
        padding: 0 0 0 24px !important;
        padding-top: 0 !important;
    }
    .process-timeline-step::before {
        top: 50%;
        left: -5px;
        transform: translateY(-50%);
    }

    .pricing-section {
        padding: 56px 24px !important;
    }
    .wp-block-columns:has(.price-card),
    .wp-block-columns:has(.price-card-featured) {
        flex-direction: column !important;
    }

    .faq-wrapper {
        padding: 56px 20px !important;
    }

    .subpage-cta {
        padding: 48px 24px !important;
    }

    /* Stare klasy fallback */
    .subpage-section {
        padding: 56px 24px !important;
    }
    .subpage-section .wp-block-columns {
        flex-direction: column !important;
    }
    .subpage-dark {
        padding: 56px 24px !important;
    }
    .subpage-dark .wp-block-columns {
        flex-direction: column !important;
    }
}

/* ============================================
   RESPONSYWNOŚĆ — TABLET (783px do 1024px)
   ============================================ */
@media (max-width: 1024px) and (min-width: 783px) {
    .hero-section > h1 { max-width: 65% !important; }
    .hero-section > p { max-width: 60% !important; }
    .hero-section { padding-left: 48px !important; padding-right: 48px !important; }

    .services-section,
    .why-us-section,
    .process-section,
    .coverage-section,
    .cta-band,
    .site-footer-wave {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    /* Podstrony tablet */
    .subpage-hero {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    .scope-section,
    .client-types,
    .service-process,
    .pricing-section,
    .subpage-cta {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    .subpage-section,
    .subpage-dark {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}