:root{
  --bg-page: #fafafa;
  --bg-card: #ffffff;
  --primary: #6c8693;
  --primary-dark: #2b3b45;
  --text-main: #272d30;
  --text-muted: #6c787f;
  --bg-muted: #eef0f2;
  --border-color: #dbdfe1;
  --font-headings: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --bg-sec-hero: #ffffff;
  --bg-sec-quote: #2b3b45;
  --bg-sec-carousel: #ffffff;
  --bg-sec-grid: #eef0f2;
  --bg-sec-steps: #eef0f2;
  --bg-sec-gallery: #6c8693;
}


/* --- CZCIONKI WG STYLU (css/fonts.html) --- */
:root {
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Manrope', sans-serif;
}


* {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font-body);
        background-color: var(--bg-page);
        color: var(--text-main);
        line-height: 1.6;
        padding-top: 80px;
    }

    h1, h2, h3 {
        font-family: var(--font-headings);
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-wrapper {
        width: 100%;
        margin-bottom: 30px;
    }

    .section-content {
        width: 100%;
        max-width: 1560px;
        margin: 0 auto;
        padding: 30px 30px;
        box-sizing: border-box;
    }

    /* --- STRONY SPECJALNE: POLITYKA PRYWATNOŚCI / COOKIES ---
       Treść z html_sections/special/<slug>/ jest jednym blokiem tekstu, bez sekcji i bez
       wariantów stylowych, więc jej style siedzą tutaj (wspólne dla wszystkich 6 stylów),
       a nie w main_1..6.css.

       Reguła jest potrzebna, bo reset "* { margin:0; padding:0 }" na górze tego pliku zabiera
       listom wcięcie (znaczniki <li> wychodzą poza kolumnę i potrafią się przyciąć), a akapitom
       odstęp - surowa polityka zlewałaby się w jedną ścianę tekstu. */
    .policy .section-content {
        max-width: 1100px;
        padding: 40px 30px 60px;
        background-color: var(--bg-card);
        color: var(--text-main);
    }

    .policy h3 {
        font-size: 20px;
        color: var(--primary-dark, var(--primary));
        margin-top: 32px;
    }

    .policy h3:first-child {
        margin-top: 0;
    }

    .policy p {
        margin-bottom: 14px;
    }

    .policy ul,
    .policy ol {
        /* wcięcie oddające znacznikom listy miejsce zabrane przez reset */
        padding-left: 26px;
        margin-bottom: 18px;
    }

    .policy li {
        margin-bottom: 10px;
    }

    .policy li > ul {
        margin: 10px 0 0;
    }

    .policy a {
        color: var(--primary);
        overflow-wrap: anywhere;
    }

    @media (max-width: 768px) {
        .policy .section-content {
            padding: 25px 18px 40px;
        }
    }

    /* --- WYMUSZONA LICZBA KOLUMN W GRIDACH (klasa grid-cols-N z generator.py) ---
       Liczba kolumn jest cechą STRUKTURALNĄ, wspólną dla wszystkich 6 wariantów stylowych,
       więc siedzi tutaj, a nie w main_1..6.css.

       Dwie rzeczy, które muszą tu zagrać:
       1) Selektor jest DWUKLASOWY (.grid-standard.grid-cols-4), czyli ma wyższą specyficzność
          niż .grid-standard z main_N.css - wygrywa niezależnie od kolejności wczytywania plików.
       2) Całość jest zamknięta w @media (min-width: 1025px), więc na tabletach i telefonach
          reguła w ogóle nie istnieje i wracają responsywne auto-fill z main_N.css. Bez tego
          8 kolumn zostałoby 8 kolumnami także na telefonie. */
    @media (min-width: 1025px) {
        .grid-standard.grid-cols-2,  .grid-cities.grid-cols-2  { grid-template-columns: repeat(2,  minmax(0, 1fr)); }
        .grid-standard.grid-cols-3,  .grid-cities.grid-cols-3  { grid-template-columns: repeat(3,  minmax(0, 1fr)); }
        .grid-standard.grid-cols-4,  .grid-cities.grid-cols-4  { grid-template-columns: repeat(4,  minmax(0, 1fr)); }
        .grid-standard.grid-cols-5,  .grid-cities.grid-cols-5  { grid-template-columns: repeat(5,  minmax(0, 1fr)); }
        .grid-standard.grid-cols-6,  .grid-cities.grid-cols-6  { grid-template-columns: repeat(6,  minmax(0, 1fr)); }
        .grid-standard.grid-cols-7,  .grid-cities.grid-cols-7  { grid-template-columns: repeat(7,  minmax(0, 1fr)); }
        .grid-standard.grid-cols-8,  .grid-cities.grid-cols-8  { grid-template-columns: repeat(8,  minmax(0, 1fr)); }
        .grid-standard.grid-cols-9,  .grid-cities.grid-cols-9  { grid-template-columns: repeat(9,  minmax(0, 1fr)); }
        .grid-standard.grid-cols-10, .grid-cities.grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)); }
    }

/* MAIN (gridy + breadcrumbs) | Styl 6: Gradient Modern
   Gradientowe akcenty: tytuł wycięty w gradiencie, kafelek wypełnia się gradientem przy hover.
   Gradient hover celowo trzyma się ciemnego końca skali, żeby jasny tekst był czytelny
   w każdym motywie z css/root. */

/* --- BREADCRUMBS --- */
.breadcrumbs {
    background: linear-gradient(90deg,
        color-mix(in srgb, var(--primary) 14%, transparent),
        color-mix(in srgb, var(--primary) 4%, transparent));
    padding: 16px 0;
    margin-bottom: 32px;
}

.breadcrumbs-content {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

.breadcrumbs-sep {
    color: var(--text-muted);
}

.breadcrumbs-current {
    color: var(--text-main);
    font-weight: 700;
}

/* --- GRIDY LINKÓW --- */
.grid-section-title {
    font-family: var(--font-headings);
    font-size: 28px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 24px;
}

.grid-standard,
.grid-cities {
    display: grid;
    gap: 14px;
}

.grid-standard {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.grid-cities {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border-radius: 14px;
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: color 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.grid-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}

.grid-item:hover {
    background: linear-gradient(135deg, var(--primary-dark),
        color-mix(in srgb, var(--primary-dark) 55%, var(--primary)));
    color: var(--bg-card);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 12px 0;
        margin-bottom: 22px;
    }
    .breadcrumbs-content {
        padding: 0 18px;
        font-size: 13px;
        gap: 8px;
    }
    .grid-section-title {
        font-size: 22px;
    }
    .grid-standard {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .grid-cities {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .grid-item {
        padding: 12px 15px;
        font-size: 14px;
    }
}


/* HEADER | Styl 6: Gradient Modern */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.header-content {
    max-width: 1560px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.menu-toggle-checkbox {
    display: none;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
}

.header-left-img {
    max-width: 50px;
    max-height: 50px;
}

.header-left-text {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-card);
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav-btn {
    display: inline-block;
    background: none;
    border: none;
    font-family: var(--font-headings);
    color: var(--bg-card);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    margin-right: 26px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.header-nav-btn:hover {
    opacity: 1;
}

.header-phone-num {
    display: inline-block;
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 15px;
    background: var(--bg-card);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s ease;
}

.header-phone-num:hover {
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .hamburger-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 100;
    }

    .hamburger-label span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--bg-card);
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        padding: 20px 0;
        gap: 15px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
    }

    .header-nav-btn {
        width: 100%;
        text-align: center;
        margin-right: 0;
        padding: 10px 0;
    }

    .header-phone-num {
        margin: 0 auto;
    }

    .menu-toggle-checkbox:checked ~ .header-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-toggle-checkbox:checked + .hamburger-label span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle-checkbox:checked + .hamburger-label span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle-checkbox:checked + .hamburger-label span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .header-left {
        gap: 10px;
    }
    .header-left-text {
        font-size: 16px;
    }
}


/* SEC1 - HERO | Styl 6: Gradient Modern */
.section1-color {
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding-top: 20px;
}

.sec1-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sec1-text-col {
    width: 58%;
}

.sec1-img-col {
    width: 42%;
}

.sec1-badge {
    display: inline-block;
    background: color-mix(in srgb, var(--bg-card) 15%, transparent);
    color: var(--bg-card);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.sec1-title {
    font-size: 42px;
    line-height: 1.15;
    color: var(--bg-card);
    margin-bottom: 10px;
}

.sec1-subtitle {
    position: relative;
    padding-left: 38px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--bg-card);
    margin-bottom: 20px;
}

.sec1-subtitle::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -14px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 56px;
    line-height: 1;
    color: var(--bg-card);
    opacity: 0.4;
}

.sec1-desc {
    font-family: var(--font-body);
    font-size: 17px;
    color: color-mix(in srgb, var(--bg-card) 88%, transparent);
    margin-bottom: 30px;
    max-width: 500px;
}

.sec1-cta-group {
    display: flex;
    gap: 15px;
}

.sec1-btn-primary,
.sec1-btn-secondary {
    display: inline-block;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sec1-btn-primary {
    background: var(--bg-card);
    color: var(--primary-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.sec1-btn-secondary {
    background: transparent;
    color: var(--bg-card);
    border: 2px solid color-mix(in srgb, var(--bg-card) 60%, transparent);
}

.sec1-btn-primary:hover,
.sec1-btn-secondary:hover {
    transform: translateY(-3px);
}

.sec1-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 560px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .sec1-flex {
        flex-direction: column;
    }
    .sec1-text-col, .sec1-img-col {
        width: 100%;
    }
    .sec1-title {
        font-size: 30px;
    }
    .sec1-img {
        aspect-ratio: 4 / 3;
        max-height: 320px;
    }
}


/* SEC6 - PROCES ZAKUPOWY WARIANT 33 | Styl 6: Gradient Modern */
.section6-color {
    background-color: var(--bg-sec-steps);
    padding: 60px 0;
}

.sec6-header {
    text-align: center;
    margin-bottom: 40px;
}

.sec6-title {
    font-size: 32px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.sec6-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.sec6-dotted-33 {
    position: relative;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.sec6-dotted-33::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 10%;
    right: 10%;
    height: 0;
    border-top: 2px dashed var(--border-color);
    z-index: 0;
}

.sec6-step {
    position: relative;
    z-index: 1;
    width: 100%;
    background: var(--bg-card);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.sec6-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-card);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.sec6-step-title {
    font-family: var(--font-headings);
    font-size: 19px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.sec6-step-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .sec6-dotted-33 {
        flex-direction: column;
    }
    .sec6-dotted-33::before {
        display: none;
    }
}


/* SEC_AREA - KARTA Z ZAKŁADKĄ NAD OBRAMOWANIEM (wariant 14) | Styl 6: Gradient Modern */
.sectionarea-color {
    background-color: var(--bg-sec-grid);
    padding: 34px 0;
}

.secarea-card-14 {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    margin-top: 14px;
    overflow: hidden;
}

.secarea-card-14::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}

.secarea-tab-14 {
    position: absolute;
    top: 0;
    left: 24px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: var(--bg-card);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 10px;
}

.secarea-card-body-14 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 26px 22px;
}

.secarea-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.secarea-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-main);
}

.secarea-text a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--primary) 45%, transparent);
}

.secarea-text a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

@media (max-width: 768px) {
    .secarea-tab-14 {
        left: 18px;
        font-size: 11px;
        padding: 5px 11px;
    }
    .secarea-card-body-14 {
        gap: 12px;
        padding: 22px 18px 18px;
    }
    .secarea-icon {
        font-size: 22px;
    }
    .secarea-text {
        font-size: 14px;
    }
}


/* SEC3 - HOVER REVEAL GRID | Styl 6: Gradient Modern */
.section3-color {
    background-color: var(--bg-sec-carousel);
}

.sec3-header {
    text-align: center;
    margin-bottom: 35px;
}

.sec3-title {
    font-size: 32px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.sec3-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.sec3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sec3-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease;
}

.sec3-card:hover,
.sec3-card:focus-within {
    transform: translateY(-6px);
}

.sec3-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.sec3-card-img-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec3-card-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 80%);
}

.sec3-card-title {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 52px;
    z-index: 2;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 15px;
    color: var(--bg-card);
}

.sec3-card-btn {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: block;
    text-align: center;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: var(--bg-card);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 12px;
    padding: 12px;
    border-radius: 10px;
}

.sec3-card:hover .sec3-card-btn,
.sec3-card:focus-within .sec3-card-btn {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: none) {
    .sec3-card-btn {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .sec3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sec3-grid {
        grid-template-columns: 1fr;
    }
}


/* SEC2 - PASEK USP | Styl 6: Gradient Modern */
.section2-color {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    padding: 28px 0;
}

.sec28-usp-row {
    display: flex;
    justify-content: space-between;
}

.sec28-usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.sec28-usp-icon {
    font-size: 20px;
    background: color-mix(in srgb, var(--bg-card) 20%, transparent);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec28-usp-underline {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: color-mix(in srgb, var(--bg-card) 55%, transparent);
}

.sec28-usp-text {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 15px;
    color: var(--bg-card);
    text-align: center;
}

@media (max-width: 1024px) {
    .sec28-usp-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    .sec28-usp-item {
        flex: 0 0 45%;
    }
}


/* SEC4 wariant 35 - mikropasek, link tekstowy zamiast guzika | Styl 6: Gradient Modern */
.section4-color {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    padding: 22px 0;
}

.sec4-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.sec4-title {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 17px;
    color: var(--bg-card);
}

.sec4-link-btn {
    display: inline-block;
    color: var(--bg-card);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid var(--bg-card);
    padding-bottom: 2px;
    transition: transform 0.2s ease;
}

.sec4-link-btn:hover {
    transform: translateY(-2px);
}

.sec4-link-btn::after {
    content: "\2192";
    margin-left: 8px;
}

@media (max-width: 768px) {
    .sec4-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* SEC5 - RZĄD Z PIONOWYMI SEPARATORAMI (3 ELEMENTY, BEZ KART) | Styl 6: Gradient Modern */
.section5-color{
  background: var(--bg-sec-grid);
  padding: 60px 0;
}
.sec5-header{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.sec5-title{
  color: var(--primary-dark);
  font-family: var(--font-headings);
  font-size: 32px;
  margin: 0 0 12px;
}
.sec5-subtitle{
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0;
}
.sec5-divider-row-25{
  display: flex;
  align-items: flex-start;
}
.sec5-divider-item-25{
  flex: 1;
  text-align: center;
  padding: 0 36px;
  border-right: 1px solid var(--border-color);
  transition: transform 0.25s ease;
}
.sec5-divider-item-25:last-child{
  border-right: none;
}
.sec5-divider-item-25:hover{
  transform: translateY(-5px);
}
.sec5-item-icon{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-muted) 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary);
  margin: 0 auto 18px;
}
.sec5-item-desc{
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1024px){
  .sec5-divider-item-25{ padding: 0 20px; }
}
@media (max-width: 768px){
  .sec5-divider-row-25{ flex-direction: column; }
  .sec5-divider-item-25{
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
  }
  .sec5-divider-item-25:last-child{ border-bottom: none; }
}


/* SEC8 wariant 9 - GALERIA (dwa przesunięte rzędy) | Styl 6: Gradient Modern */
.section8-color {
    background-color: var(--bg-sec-gallery);
    padding: 50px 0;
}

.sec8-header {
    text-align: center;
    margin-bottom: 30px;
}

.sec8-title {
    font-size: 30px;
    color: var(--bg-card);
}

.sec8-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: color-mix(in srgb, var(--bg-card) 85%, transparent);
}

.sec8-offset-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sec8-offset-row {
    display: flex;
    gap: 18px;
}

.sec8-offset-row-shift {
    margin-left: 60px;
}

.sec8-offset-cell {
    width: 100%;
}

.sec8-offset-frame {
    width: 100%;
    height: 158px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.sec8-offset-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
}

.sec8-offset-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec8-offset-caption {
    display: block;
    font-family: var(--font-body);
    font-size: 18px;
    color: color-mix(in srgb, var(--bg-card) 80%, transparent);
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .sec8-offset-row {
        flex-wrap: wrap;
    }
    .sec8-offset-row-shift {
        margin-left: 0;
    }
    .sec8-offset-cell {
        width: calc(50% - 9px);
    }
    .sec8-offset-caption {
        font-size: 14px;
    }
    .sec8-subtitle {
        font-size: 15px;
    }
}


/* SEC9 - FAQ | Styl 6: Gradient Modern | Wariant 14: Paski zebra */
.section9-color {
    background-color: var(--bg-sec-grid);
    padding: 60px 0;
}

.sec9-header {
    text-align: center;
    margin-bottom: 40px;
}

.sec9-sub-title {
    font-family: var(--font-headings);
    font-size: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec9-title {
    font-size: 32px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.sec9-list {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.sec9-item {
    margin-bottom: 0;
    border-left: 3px solid transparent;
    transition: border-color 0.2s ease;
}

.sec9-item:nth-child(odd) {
    background: var(--bg-card);
}

.sec9-item:nth-child(even) {
    background: color-mix(in srgb, var(--bg-card) 92%, var(--primary) 8%);
}

.sec9-item[open] {
    border-left: 3px solid var(--primary);
}

.sec9-question {
    font-family: var(--font-headings);
    font-size: 17px;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 55px;
}

.sec9-question::-webkit-details-marker {
    display: none;
}

.sec9-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sec9-item[open] .sec9-question::after {
    content: '−';
}

.sec9-answer {
    padding: 0 25px 25px 25px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-main);
}


/* SEC10 - CTA WATERMARK IKONY W TLE (wariant 38) | Styl 6: Gradient Modern */
.section10-color { background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 70px 0; position: relative; overflow: hidden; }
.sec10-main-38 { position: relative; z-index: 1; display: flex; flex-direction: column; max-width: 900px; margin: 0 auto; text-align: center; }
.sec10-title { font-size: 38px; color: var(--bg-card); margin-bottom: 15px; }
.sec10-desc { font-family: var(--font-body); font-size: 16px; color: color-mix(in srgb, var(--bg-card) 88%, transparent); margin-bottom: 32px; }
.sec10-btn-row { display: flex; justify-content: center; gap: 20px; }
.sec10-btn-primary, .sec10-btn-secondary { display: inline-block; font-family: var(--font-headings); font-weight: 700; font-size: 15px; text-decoration: none; padding: 17px 36px; border-radius: 30px; transition: transform 0.2s ease; }
.sec10-btn-primary { background: var(--bg-card); color: var(--primary-dark); box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3); }
.sec10-btn-secondary { background: transparent; color: var(--bg-card); border: 2px solid color-mix(in srgb, var(--bg-card) 60%, transparent); }
.sec10-btn-primary:hover, .sec10-btn-secondary:hover { transform: translateY(-4px); }
.sec10-watermark-38 { position: absolute; top: -60px; right: -60px; z-index: 0; pointer-events: none; }
.sec10-watermark-icon-38 { position: relative; width: 240px; height: 240px; }
.sec10-watermark-circle-38 { position: absolute; top: 40px; left: 40px; width: 160px; height: 160px; border-radius: 50%; border: 14px solid color-mix(in srgb, var(--bg-card) 10%, transparent); }
.sec10-watermark-tooth-38 { position: absolute; width: 0; height: 0; }
.sec10-watermark-tooth-38-top { top: 8px; left: 108px; border-left: 15px solid transparent; border-right: 15px solid transparent; border-bottom: 26px solid color-mix(in srgb, var(--bg-card) 10%, transparent); }
.sec10-watermark-tooth-38-bottom { bottom: 8px; left: 108px; border-left: 15px solid transparent; border-right: 15px solid transparent; border-top: 26px solid color-mix(in srgb, var(--bg-card) 10%, transparent); }
.sec10-watermark-tooth-38-left { left: 8px; top: 108px; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-right: 26px solid color-mix(in srgb, var(--bg-card) 10%, transparent); }
.sec10-watermark-tooth-38-right { right: 8px; top: 108px; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-left: 26px solid color-mix(in srgb, var(--bg-card) 10%, transparent); }
@media (max-width: 768px) { .sec10-btn-row { flex-wrap: wrap; } .sec10-btn-primary, .sec10-btn-secondary { width: 100%; text-align: center; } .sec10-watermark-38 { display: none; } }


/* SEC7 - DLACZEGO MY | Wariant 40: karta powitalna | Styl 6: Gradient Modern */
.section7-color {
    background-color: var(--bg-sec-hero);
}

.sec7-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.sec7-title {
    font-size: 32px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

.sec7-lead {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: center;
}

.sec7-list {
    list-style: none;
}

.sec7-list li {
    position: relative;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-main);
    padding-left: 30px;
    margin-bottom: 16px;
}

.sec7-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
}

.sec7-badge-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.sec7-badge-icon {
    font-size: 38px;
    flex-shrink: 0;
}

.sec7-badge-title {
    font-family: var(--font-headings);
    font-size: 18px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.sec7-badge-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .sec7-card {
        padding: 30px 20px;
    }
    .sec7-badge-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* FOOTER | Styl 6: Gradient Modern */
footer {
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--bg-card);
    font-family: var(--font-body);
}

.footer-main {
    display: flex;
    max-width: 1560px;
    padding: 60px 30px;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer1 {
    flex: 0 0 40%;
    padding-right: 20px;
}

.footer1-logo-title {
    display: flex;
    justify-content: start;
    gap: 20px;
    margin-bottom: 20px;
}

.footer1-logo-title-img {
    max-height: 50px;
}

.footer1-logo-title-text {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-card);
    letter-spacing: 1px;
}

.footer2, .footer3, .footer4 {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
}

footer h2 {
    font-family: var(--font-headings);
    font-size: 22px;
    font-weight: 700;
    color: var(--bg-card);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer h3 {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 700;
    color: color-mix(in srgb, var(--bg-card) 85%, transparent);
    margin-bottom: 20px;
}

footer p {
    font-size: 15px;
    color: color-mix(in srgb, var(--bg-card) 85%, transparent);
    line-height: 1.6;
}

footer a {
    color: color-mix(in srgb, var(--bg-card) 85%, transparent);
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 12px;
    display: inline-block;
    width: fit-content;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--bg-card);
    text-decoration: underline;
}

.footer-contact-link {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--bg-card);
    padding: 6px 16px;
    border-radius: 30px;
}

/* Telefon/e-mail to jasna "pigułka" - bez tego footer a:hover (wyższa specyficzność niż klasa)
   ustawiał tekst na --bg-card, czyli DOKŁADNIE kolor tła kafelka: napis znikał. */
.footer-contact-link:hover {
    color: var(--primary-dark);
    background: var(--bg-card);
}

.footer-bottom {
    display: flex;
    width: 100%;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid color-mix(in srgb, var(--bg-card) 25%, transparent);
}

.footer-bottom-left {
    width: 50%;
    display: flex;
}

.footer-bottom-right {
    width: 50%;
    gap: 20px;
    display: flex;
    justify-content: end;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer-main {
        flex-wrap: wrap;
    }
    .footer1, .footer2, .footer3, .footer4 {
        flex: 0 0 40%;
    }
    .footer3, .footer4 {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        flex-wrap: wrap;
    }
    .footer1-logo-title {
        align-items: center;
        gap: 10px;
    }
    .footer1-logo-title-text {
        font-size: 16px;
    }
    .footer1, .footer2, .footer3, .footer4 {
        flex: 0 0 100%;
    }
    .footer2, .footer3, .footer4 {
        margin-top: 20px;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer-bottom-left {
        width: 100%;
    }
    .footer-bottom-right {
        margin-top: 20px;
        gap: 0px;
        flex-direction: column;
        justify-content: start;
    }
}


/* PASEK COOKIES | Styl 6: Gradient Modern */
.cookie-bar {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--primary-dark) 35%, transparent);
    font-family: var(--font-body);
}

.cookie-bar[hidden] {
    display: none;
}

.cookie-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.cookie-text a {
    color: var(--bg-card);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-text a:hover {
    color: var(--bg-muted);
}

.cookie-accept {
    flex: none;
    padding: 13px 32px;
    border: none;
    border-radius: 999px;
    background: var(--bg-card);
    color: var(--primary-dark);
    font-family: var(--font-headings);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

@media (max-width: 700px) {
    .cookie-bar {
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 16px;
    }

    .cookie-inner {
        padding: 16px 18px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 14px;
    }

    .cookie-accept {
        width: 100%;
    }
}


