:root{
  --bg-page: #fafafa;
  --bg-card: #ffffff;
  --primary: #b19668;
  --primary-dark: #392f18;
  --text-main: #302d27;
  --text-muted: #7f786c;
  --bg-muted: #efeeeb;
  --border-color: #e1dfdb;
  --font-headings: 'Catamaran', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --bg-sec-hero: #ffffff;
  --bg-sec-quote: #392f18;
  --bg-sec-carousel: #ffffff;
  --bg-sec-grid: #efeeeb;
  --bg-sec-steps: #efeeeb;
  --bg-sec-gallery: #b19668;
}


/* --- CZCIONKI WG STYLU (css/fonts.html) --- */
:root {
  --font-headings: 'Fraunces', sans-serif;
  --font-body: 'Inter', 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 4: Minimalism
   Bez pudełek: włoskowate linie, lekkie kroje, dużo powietrza. */

/* --- BREADCRUMBS --- */
.breadcrumbs {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 22px 0;
    margin-bottom: 40px;
}

.breadcrumbs-content {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--text-main);
}

.breadcrumbs-sep {
    color: var(--border-color);
}

.breadcrumbs-current {
    color: var(--text-main);
}

/* --- GRIDY LINKÓW --- */
.grid-section-title {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 26px;
    color: var(--text-main);
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.grid-standard,
.grid-cities {
    display: grid;
    gap: 0;
}

.grid-standard {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.grid-cities {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 14px 16px 0;
    margin-right: 20px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--text-main);
    text-decoration: none;
    transition: border-color 0.2s ease, padding-left 0.2s ease;
    text-align: center;
}

.grid-item:hover {
    border-bottom-color: var(--text-main);
    padding-left: 6px;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 16px 0;
        margin-bottom: 26px;
    }
    .breadcrumbs-content {
        padding: 0 18px;
        gap: 9px;
        font-size: 12px;
    }
    .grid-section-title {
        font-size: 21px;
        margin-bottom: 20px;
    }
    .grid-standard {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .grid-cities {
        grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    }
    .grid-item {
        padding: 13px 10px 13px 0;
        margin-right: 12px;
        font-size: 14px;
    }
}


/* HEADER | Styl 4: Minimalism */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    max-width: 1560px;
    margin: 0 auto;
    padding: 24px 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: 16px;
    text-decoration: none;
}

.header-left-img {
    max-width: 44px;
}

.header-left-text {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 20px;
    color: var(--text-main);
    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-body);
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-right: 32px;
}

.header-nav-btn:hover {
    color: var(--primary);
}

.header-phone-num {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-main);
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2px;
}

@media (max-width: 1024px) {
    .hamburger-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 16px;
        cursor: pointer;
        z-index: 100;
    }

    .hamburger-label span {
        display: block;
        height: 1px;
        width: 100%;
        background-color: var(--text-main);
        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-color: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
        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(7px) 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(-7px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .header-left {
        gap: 10px;
    }
    .header-left-text {
        font-size: 16px;
    }
}


/* SEC1 - HERO | Styl 4: Minimalism */
.section1-color {
    background-color: var(--bg-sec-hero);
    padding-top: 40px;
}

.sec1-flex {
    display: flex;
    align-items: center;
    gap: 70px;
}

.sec1-text-col {
    width: 55%;
}

.sec1-img-col {
    width: 45%;
}

.sec1-badge {
    display: block;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.sec1-title {
    font-weight: 500;
    font-size: 38px;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 12px;
}

.sec1-subtitle {
    font-weight: 400;
    font-size: 19px;
    line-height: 1.45;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.sec1-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 480px;
}

.sec1-bullets {
    list-style: none;
    margin: 0 0 36px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sec1-bullet-item {
    position: relative;
    padding-left: 22px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--text-muted);
}

.sec1-bullet-item::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 600;
}

.sec1-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sec1-btn-primary,
.sec1-btn-secondary {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 0 0 4px 0;
}

.sec1-btn-primary {
    color: var(--text-main);
    border-bottom: 2px solid var(--primary);
}

.sec1-btn-secondary {
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.sec1-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .sec1-flex {
        flex-direction: column;
    }
    .sec1-text-col, .sec1-img-col {
        width: 100%;
    }
    .sec1-title {
        font-size: 28px;
    }
}


/* SEC2 - PASEK USP | Styl 4: Minimalism */
.section2-color {
    background-color: var(--bg-sec-hero);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.sec37-usp-row {
    display: flex;
    justify-content: space-between;
}

.sec37-usp-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 1;
    padding: 0px 20px;
}

.sec37-usp-item + .sec37-usp-item {
    border-left: 1px solid var(--border-color);
}

.sec37-usp-icon {
    font-size: 18px;
    filter: grayscale(1);
    opacity: 0.7;
    flex-shrink: 0;
}

.sec37-usp-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-main);
}

@media (max-width: 1024px) {
    .sec37-usp-row {
        flex-wrap: wrap;
        gap: 16px;
    }
    .sec37-usp-item {
        flex: 0 0 45%;
        border-left: none !important;
    }
}


/* SEC4 WARIANT 17 - CTA MINI (fade na brzegach) | Styl 4: Minimalism */
.section4-color {
    position: relative;
    overflow: hidden;
    background: var(--bg-sec-hero);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section4-color::before,
.section4-color::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}

.section4-color::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-sec-hero) 0%, transparent 100%);
}

.section4-color::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-sec-hero) 0%, transparent 100%);
}

.sec4-fade-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
}

.sec4-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 17px;
    color: var(--text-main);
}

.sec4-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.sec4-btn {
    display: inline-block;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 3px;
}

@media (max-width: 768px) {
    .section4-color::before,
    .section4-color::after {
        width: 24px;
    }
    .sec4-fade-wrap {
        gap: 12px;
    }
    .sec4-buttons {
        flex-direction: column;
        gap: 10px;
    }
}


/* SEC3 - FRAMED PHOTO CAROUSEL | Styl 4: Minimalism */
.section3-color {
    background-color: var(--bg-sec-carousel);
}

.sec3-header {
    text-align: center;
    margin-bottom: 40px;
}

.sec3-title {
    font-weight: 500;
    font-size: 30px;
    color: var(--text-main);
}

.sec3-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.sec3-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.sec3-card {
    display: flex;
    flex-direction: column;
    width: 15%;
    text-align: left;
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.sec3-card-frame {
    width: 100%;
    height: 150px;
    border: 1px solid var(--border-color);
    padding: 6px;
    margin-bottom: 14px;
    overflow: hidden;
}

.sec3-card-img-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec3-card-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 10px;
}

.sec3-card-btn {
    display: inline-block;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .sec3-row {
        flex-wrap: wrap;
    }
    .sec3-card {
        width: 31%;
    }
}

@media (max-width: 768px) {
    .sec3-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;
    }
    .sec3-card {
        flex: 0 0 70%;
    }
}


/* SEC_AREA - PASEK ZASIĘGU Z BOCZNYM AKCENTEM (wariant 6) | Styl 4: Minimalism */
.sectionarea-color {
    background-color: var(--bg-sec-grid);
    padding: 40px 0;
}

.secarea-card-6 {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-color);
}

.secarea-bar-6 {
    width: 6px;
    flex-shrink: 0;
    background: var(--text-muted);
}

.secarea-content-6 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 28px;
    flex: 1;
}

.secarea-iconrow-6 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.secarea-icon-6 {
    font-size: 18px;
    line-height: 1;
    opacity: 0.5;
}

.secarea-label-6 {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.secarea-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
}

.secarea-text a {
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-muted);
}

.secarea-text a:hover {
    color: var(--text-main);
    border-bottom-color: var(--text-main);
}

@media (max-width: 768px) {
    .sectionarea-color {
        padding: 30px 0;
    }
    .secarea-content-6 {
        padding: 18px 20px;
        gap: 8px;
    }
    .secarea-text {
        font-size: 15px;
    }
}


/* SEC5 - CIENKA RAMKA, CIEŃ DOPIERO NA HOVER | Styl 4: Minimalism */
.section5-color{
  background: var(--bg-sec-grid);
  padding: 70px 0;
}
.sec5-header{
  text-align: center;
  margin-bottom: 50px;
}
.sec5-title{
  color: var(--text-main);
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 12px;
}
.sec5-subtitle{
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  margin: 0;
}
.sec5-thin-frame-33-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sec5-thin-frame-33{
  background: none;
  border: 1px solid var(--border-color);
  box-shadow: none;
  padding: 26px 20px;
  transition: box-shadow 0.25s ease;
}
.sec5-thin-frame-33:hover{
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.sec5-thin-frame-33 .sec5-item-icon{
  color: var(--text-main);
  font-size: 24px;
  margin-bottom: 14px;
  filter: grayscale(1);
  opacity: 0.8;
}
.sec5-thin-frame-33 .sec5-item-desc{
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 1024px){
  .sec5-thin-frame-33-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .sec5-thin-frame-33-grid{ grid-template-columns: 1fr; }
}


/* SEC8 - GALERIA | Wariant 4: Polaroidy | Styl 4: Minimalism */
.section8-color {
    background-color: var(--bg-sec-hero);
    padding: 60px 0;
}

.sec8-header {
    text-align: center;
    margin-bottom: 36px;
}

.sec8-title {
    font-weight: 500;
    font-size: 28px;
    color: var(--text-main);
}

.sec8-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    color: var(--text-muted);
}

.sec8-polaroid-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.sec8-polaroid-card {
    flex: 0 1 220px;
    background: var(--bg-card);
    padding: 14px 14px 34px;
}

.sec8-polaroid-photo {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.sec8-polaroid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.15);
}

.sec8-polaroid-caption {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .sec8-polaroid-row {
        gap: 20px;
    }
    .sec8-polaroid-card {
        flex: 0 1 calc(50% - 10px);
    }
    .sec8-polaroid-photo {
        height: 140px;
    }
    .sec8-polaroid-caption {
        font-size: 14px;
    }
    .sec8-subtitle {
        font-size: 15px;
    }
}


.sec-dup-1 .section10-color { background: var(--bg-sec-hero); padding: 80px 0; border-top: 1px solid var(--border-color); }
.sec-dup-1 .sec10-main-43 { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; align-items: center; }
.sec-dup-1 .sec10-row-43 { display: flex; align-items: center; gap: 26px; margin-bottom: 34px; }
.sec-dup-1 .sec10-icon-circle-43 { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; }
.sec-dup-1 .sec10-icon-shape-43 { position: relative; width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--text-main); }
.sec-dup-1 .sec10-icon-shape-43::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--text-main); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.sec-dup-1 .sec10-text-col-43 { text-align: left; }
.sec-dup-1 .sec10-title { font-weight: 500; font-size: 30px; color: var(--text-main); margin-bottom: 10px; }
.sec-dup-1 .sec10-desc { font-family: var(--font-body); font-weight: 300; font-size: 16px; color: var(--text-muted); margin-bottom: 0; }
.sec-dup-1 .sec10-btn-row { display: flex; justify-content: center; align-items: center; gap: 30px; }
.sec-dup-1 .sec10-btn-primary, .sec-dup-1 .sec10-btn-secondary { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 15px; text-decoration: none; }
.sec-dup-1 .sec10-btn-primary { background: var(--text-main); color: var(--bg-card); padding: 16px 34px; }
.sec-dup-1 .sec10-btn-secondary { color: var(--text-main); border-bottom: 1px solid var(--border-color); padding-bottom: 3px; }
@media (max-width: 768px) {.sec-dup-1 .sec10-row-43 { flex-direction: column; text-align: center; }
.sec-dup-1 .sec10-text-col-43 { text-align: center; }
.sec-dup-1 .sec10-btn-row { flex-direction: column; gap: 16px; }
}


/* SEC7 v23 - Duży panel z miniaturą | Styl 4: Minimalism */
.section7-color {
    background-color: var(--bg-sec-hero);
}

.sec7-panel {
    position: relative;
    border: 1px solid var(--border-color);
    padding: 56px 50px 46px;
    max-width: 880px;
    margin: 0 auto;
}

.sec7-panel-thumb {
    position: absolute;
    top: -30px;
    right: 56px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    filter: grayscale(1);
}

.sec7-title {
    font-weight: 500;
    font-size: 30px;
    color: var(--text-main);
    margin-bottom: 16px;
    max-width: calc(100% - 150px);
}

.sec7-lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.sec7-list {
    list-style: none;
    margin-bottom: 30px;
}

.sec7-list li {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-main);
    padding: 14px 0;
    border-top: 1px solid var(--border-color);
}

.sec7-badge-box {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.sec7-badge-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.sec7-badge-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .sec7-panel {
        padding: 56px 24px 30px;
    }
    .sec7-panel-thumb {
        width: 90px;
        height: 90px;
        right: 24px;
        top: -26px;
    }
    .sec7-title {
        max-width: 100%;
    }
}


/* SEC9 - FAQ | Styl 4: Minimalism | Wariant 3: Boczna kolumna kontaktowa */
.section9-color {
    background-color: var(--bg-sec-hero);
    padding: 70px 0;
}

.sec9-layout-3 {
    display: grid;
    grid-template-columns: minmax(220px, 30%) 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1050px;
    margin: 0 auto;
}

.sec9-sidebar-3 {
    border-left: 1px solid var(--border-color);
    padding-left: 26px;
}

.sec9-sidebar-title-3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 10px;
}

.sec9-sidebar-text-3 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.sec9-sidebar-btn-3 {
    display: inline-block;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    padding: 0 0 6px 0;
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
}

.sec9-sidebar-btn-3:hover {
    color: var(--text-muted);
    border-color: var(--text-muted);
}

.sec9-header {
    text-align: left;
    margin-bottom: 40px;
}

.sec9-sub-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sec9-title {
    font-weight: 500;
    font-size: 30px;
    color: var(--text-main);
}

.sec9-list {
    width: 100%;
}

.sec9-item {
    border-bottom: 1px solid var(--border-color);
}

.sec9-question {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-main);
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.sec9-question::-webkit-details-marker {
    display: none;
}

.sec9-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
    font-size: 20px;
    color: var(--text-muted);
}

.sec9-item[open] .sec9-question::after {
    content: '−';
}

.sec9-answer {
    padding: 0 0 20px 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .sec9-layout-3 {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sec9-sidebar-3 {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 26px;
    }
}


/* SEC6 - PROCES ZAKUPOWY WARIANT 14 | Styl 4: Minimalism */
.section6-color {
    background-color: var(--bg-sec-steps);
    padding: 70px 0;
}

.sec6-header {
    text-align: center;
    margin-bottom: 50px;
}

.sec6-title {
    font-weight: 500;
    font-size: 30px;
    color: var(--text-main);
}

.sec6-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.sec6-skew-14 {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.sec6-skew-14-card {
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    transform: skewX(-4deg);
}

.sec6-skew-14-inner {
    transform: skewX(4deg);
}

.sec6-step-number {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 32px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.sec6-step-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.sec6-step-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .sec6-skew-14 {
        flex-direction: column;
    }
    .sec6-skew-14-card,
    .sec6-skew-14-inner {
        transform: none;
    }
}


.sec-dup-2 .section10-color { background: var(--bg-sec-hero); padding: 80px 0; border-top: 1px solid var(--border-color); }
.sec-dup-2 .sec10-main { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; text-align: center; }
.sec-dup-2 .sec10-usp-row-5 { list-style: none; display: flex; justify-content: center; gap: 28px; margin: 0 0 20px; padding: 0; flex-wrap: wrap; }
.sec-dup-2 .sec10-usp-item-5 { font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--text-muted); }
.sec-dup-2 .sec10-usp-item-5::before { content: "\2713"; font-weight: 700; margin-right: 6px; color: var(--text-main); }
.sec-dup-2 .sec10-title { font-weight: 500; font-size: 32px; color: var(--text-main); margin-bottom: 16px; }
.sec-dup-2 .sec10-desc { font-family: var(--font-body); font-weight: 300; font-size: 16px; color: var(--text-muted); margin-bottom: 34px; }
.sec-dup-2 .sec10-btn-row { display: flex; justify-content: center; align-items: center; gap: 30px; }
.sec-dup-2 .sec10-btn-primary, .sec-dup-2 .sec10-btn-secondary { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 15px; text-decoration: none; }
.sec-dup-2 .sec10-btn-primary { background: var(--text-main); color: var(--bg-card); padding: 16px 34px; }
.sec-dup-2 .sec10-btn-secondary { color: var(--text-main); border-bottom: 1px solid var(--border-color); padding-bottom: 3px; }
@media (max-width: 768px) {.sec-dup-2 .sec10-btn-row { flex-direction: column; gap: 16px; }
.sec-dup-2 .sec10-usp-row-5 { gap: 16px; }
}


/* FOOTER | Styl 4: Minimalism */
footer {
    background: var(--bg-sec-hero);
    color: var(--text-main);
    font-family: var(--font-body);
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: flex;
    max-width: 1560px;
    padding: 70px 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: 16px;
    margin-bottom: 20px;
}

.footer1-logo-title-img {
    max-height: 44px;
}

.footer1-logo-title-text {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 20px;
    color: var(--text-main);
    letter-spacing: 1px;
}

.footer2, .footer3, .footer4 {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
}

footer h2 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

footer h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 20px;
}

footer p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

footer a {
    color: var(--text-muted);
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 12px;
    display: inline-block;
    width: fit-content;
    transition: color 0.2s ease;
}

/* Jasna stopka - kontrast jest tu bezpieczny, ale telefon/e-mail są już w --text-main,
   więc bez podkreślenia hover nie byłby w ogóle widoczny. */
footer a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.footer-contact-link {
    font-weight: 600;
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    width: 100%;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-left {
    width: 50%;
    display: flex;
}

.footer-bottom-left p {
    font-weight: 300;
}

.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 4: Minimalism */
.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--bg-sec-hero);
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
    font-family: var(--font-body);
}

.cookie-bar[hidden] {
    display: none;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.cookie-text a {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-text a:hover {
    color: var(--primary);
}

.cookie-accept {
    flex: none;
    padding: 10px 24px;
    border: 1px solid var(--text-main);
    border-radius: 0;
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.cookie-accept:hover {
    background: var(--text-main);
    color: var(--bg-sec-hero);
}

@media (max-width: 700px) {
    .cookie-inner {
        padding: 16px 18px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 14px;
    }

    .cookie-accept {
        width: 100%;
    }
}


