/* hidden attribute zawsze ukrywa — nawet gdy CSS ustawia display: flex/grid */
[hidden] { display: none !important; }

/* === Design Tokens === */
:root {
    --brand:       #005d7d;
    --accent-red:  #E71324;
    --white:       #ffffff;
    --black:       #000000;
    --gray-100:    #f5f5f5;
    --gray-600:    #6b7280;
    --gray-900:    #111827;

    --font-primary: 'Montserrat', sans-serif;
    --font-sans:    'Geist Sans', sans-serif;

    --max-w:         1344px;
    --nav-h:         72px;
    --radius-card:   20px;
    --section-py:    80px;
    --section-px:    48px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* === Layout === */
.jac-main {
    min-height: 60vh;
}

.container,
.wrap {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--section-px);
}

/* Multisite utility classes */
.section-label {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.375rem, 2.8vw, 2.125rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #212121;
    margin-bottom: 36px;
}

/* Promo archive grid & cards (1:1 multisite) */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.promo-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.promo-card:hover {
    box-shadow: 0 8px 28px rgba(0,93,125,.1);
    border-color: rgba(0,93,125,.3);
}
.promo-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 750;
    overflow: hidden;
    background: #f4f4f4;
    display: block;
}
.promo-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.promo-card:hover .promo-card__img { transform: scale(1.04); }
.promo-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-red);
    color: #fff;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
}
.promo-card__body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}
.promo-card__title {
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #212121;
    line-height: 1.25;
}
.promo-card__desc {
    font-size: .8125rem;
    color: rgba(33,33,33,.55);
    line-height: 1.65;
    flex: 1;
}
.promo-card__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}
.promo-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--brand);
    color: #fff;
    font-size: .8125rem;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s;
}
.promo-card__cta:hover { background: #004a64; }
.promo-card__cta svg { width: 14px; height: 14px; }

@media (max-width: 1000px) { .promos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .promos-grid { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
    :root {
        --section-py: 48px;
        --section-px: 20px;
    }
}

@media (max-width: 640px) {
    :root { --section-py: 40px; }
    .jac-section-header { margin-bottom: 28px; }
    .jac-section-title { margin-bottom: 20px; }
}

/* === WordPress admin bar fix === */
body.admin-bar .jac-header { top: 32px; }
body.admin-bar .jac-mega  { top: calc(32px + var(--nav-h)); }
body.admin-bar .jac-mega-backdrop { top: calc(32px + var(--nav-h)); }
body.admin-bar .jac-drawer { top: calc(32px + var(--nav-h)); }

@media screen and (max-width: 782px) {
    body.admin-bar .jac-header { top: 46px; }
    body.admin-bar .jac-mega  { top: calc(46px + var(--nav-h)); }
    body.admin-bar .jac-drawer { top: calc(46px + var(--nav-h)); }
}

/* Anchor link offset — wszystkie sekcje z ID scrollują poniżej headera */
section[id], div[id].scroll-target {
    scroll-margin-top: calc(var(--nav-h) + 16px);
}

/* === Header === */
.jac-header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 1px 4px rgb(0 0 0 / .06);
}

.jac-header__inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--section-px);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.jac-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.jac-header__logo-sep {
    width: 1px;
    height: 20px;
    background: rgba(0,0,0,.2);
}

.jac-header__logo-name {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    letter-spacing: .01em;
}

/* Desktop nav */
.jac-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-inline-start: auto;
}

.jac-nav__link,
.jac-nav__btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    font-size: .9375rem;
    font-weight: 500;
    color: #212121;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    white-space: nowrap;
    transition: color .2s, background .2s;
    font-family: var(--font-primary);
}

.jac-nav__link:hover,
.jac-nav__btn:hover { color: var(--brand); }

.jac-nav__link--red { color: var(--accent-red); }
.jac-nav__link--red:hover { color: #991a24; }

.jac-nav__chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform .2s;
}

.jac-nav__chevron.is-open { transform: rotate(180deg); }

/* Dropdown */
.jac-nav__item--dropdown { position: relative; }

.jac-dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
    min-width: 210px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgb(0 0 0 / .12);
    padding: 6px;
    z-index: 201;
}

.jac-dropdown__link {
    display: block;
    padding: 10px 14px;
    font-size: .875rem;
    font-weight: 500;
    color: #212121;
    border-radius: 8px;
    transition: background .15s, color .15s;
}

.jac-dropdown__link:hover {
    background: rgba(0,93,125,.08);
    color: var(--brand);
}

/* Desktop CTA buttons */
.jac-header__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.jac-header__cta-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    color: #212121;
    white-space: nowrap;
    transition: border-color .2s, color .2s;
    font-family: var(--font-primary);
}

.jac-header__cta-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* Burger */
.jac-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background .2s;
}

.jac-header__burger:hover { background: rgba(0,0,0,.05); }

.jac-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

.jac-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jac-header__burger.is-open span:nth-child(2) { opacity: 0; }
.jac-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Mega backdrop === */
.jac-mega-backdrop {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    z-index: 198;
    background: rgba(0,0,0,.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}

.jac-mega-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* === Mega menu === */
.jac-mega {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-h);
    z-index: 199;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 12px 48px rgb(0 0 0 / .14);
    max-height: calc(100vh - var(--nav-h));
    overflow: hidden;
}

.jac-mega__inner {
    display: flex;
    height: calc(100vh - var(--nav-h));
    min-height: 480px;
}

.jac-mega__sidebar {
    width: 220px;
    flex-shrink: 0;
    background: #f3f3f3;
    border-right: 1px solid rgba(0,0,0,.08);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.jac-mega__sidebar-label {
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #999;
    margin-bottom: 16px;
}

.jac-mega__sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: .8125rem;
    font-weight: 500;
    color: #212121;
    margin-bottom: 2px;
    transition: background .15s, color .15s;
}

.jac-mega__sidebar-link:hover {
    background: rgba(0,93,125,.1);
    color: var(--brand);
}

.jac-mega__content {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px 36px;
}

.jac-mega__filters {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.jac-mega__filter {
    padding: 6px 18px;
    border-radius: 999px;
    border: 2px solid rgba(0,0,0,.12);
    background: var(--white);
    font-size: .8125rem;
    font-weight: 500;
    color: #212121;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    font-family: var(--font-primary);
}

.jac-mega__filter:hover { border-color: var(--brand); color: var(--brand); }

.jac-mega__filter.is-active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: var(--white);
}

.jac-mega__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.jac-mega__card {
    border: 2px solid rgba(0,0,0,.1);
    border-radius: 14px;
    background: var(--white);
    padding: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.jac-mega__card:hover {
    border-color: rgba(0,93,125,.3);
    box-shadow: 0 6px 24px rgb(0 0 0 / .1);
    transform: translateY(-2px);
}

.jac-mega__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.jac-mega__card-name {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #212121;
}

.jac-mega__card-price {
    flex-shrink: 0;
    font-size: .875rem;
    font-weight: 600;
    border: 2px solid rgba(0,0,0,.12);
    border-radius: 10px;
    padding: 3px 10px;
    white-space: nowrap;
    color: #212121;
}

.jac-mega__card-price--promo {
    border-color: transparent;
    background: var(--accent-red);
    color: var(--white);
}

.jac-mega__card-img-wrap {
    position: relative;
    background: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.jac-mega__card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.jac-mega__card-catalog {
    position: absolute;
    bottom: 4px;
    left: 6px;
    font-size: .625rem;
    color: #aaa;
    white-space: nowrap;
    line-height: 1;
}

.jac-mega__card-price--muted { color: #888; }
.jac-mega__card-price sup { font-size: .5em; vertical-align: super; }

.jac-mega__card-actions {
    display: flex;
    gap: 6px;
}

.jac-mega__card-btn {
    flex: 1;
    padding: 7px 8px;
    border-radius: 8px;
    text-align: center;
    font-size: .75rem;
    font-weight: 500;
    transition: background .2s, border-color .2s, color .2s;
}

.jac-mega__card-btn--outline {
    border: 1.5px solid rgba(0,0,0,.12);
    color: #212121;
}

.jac-mega__card-btn--outline:hover { border-color: var(--brand); color: var(--brand); }

.jac-mega__card-btn--primary {
    background: var(--brand);
    color: var(--white);
    border: 1.5px solid transparent;
}

.jac-mega__card-btn--primary:hover { background: #007aa3; }

/* === Mobile drawer === */
.jac-drawer {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    z-index: 199;
    background: var(--white);
    overflow-y: auto;
    padding: 20px var(--section-px) 80px;
}

.jac-drawer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
    font-size: 1rem;
    font-weight: 500;
    color: #212121;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    transition: color .2s;
}

.jac-drawer__row:hover { color: var(--brand); }
.jac-drawer__row--red { color: var(--accent-red); }
.jac-drawer__row--red:hover { color: #991a24; }

.jac-drawer__sub {
    padding: 12px 0;
}

.jac-drawer__sub-link {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    font-size: .9375rem;
    font-weight: 500;
    color: #212121;
    transition: color .2s;
}

.jac-drawer__sub-link:hover { color: var(--brand); }

.jac-drawer__model-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid rgba(0,0,0,.1);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    min-height: 76px;
    padding-right: 100px;
    transition: border-color .2s;
}

.jac-drawer__model-card:hover { border-color: rgba(0,93,125,.3); }

.jac-drawer__model-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.jac-drawer__model-price {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 999px;
    padding: 2px 10px;
    color: #212121;
}

.jac-drawer__model-price.is-promo {
    background: var(--accent-red);
    border-color: transparent;
    color: var(--white);
}

.jac-drawer__model-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 96px;
    object-fit: contain;
}

.jac-drawer__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--brand);
    transition: opacity .2s;
}

.jac-drawer__phone:hover { opacity: .75; }

/* === Footer === */
.jac-footer {
    background: #1a1a1a;
    color: var(--white);
}

.jac-footer__wrap {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--section-px);
}

/* Locations bar */
.jac-footer__locations {
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-block: 40px;
}

.jac-footer__locations-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.jac-footer__loc-brand p {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}

.jac-footer__loc-name {
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--white);
    margin-bottom: 8px;
}

.jac-footer__loc-city {
    font-size: .75rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
}

.jac-footer__loc-address {
    font-size: .8125rem;
    line-height: 1.6;
    color: rgba(255,255,255,.55);
    margin-bottom: 6px;
}

.jac-footer__loc-phone {
    display: block;
    font-size: .8125rem;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    transition: color .2s;
}

.jac-footer__loc-phone:hover { color: var(--white); }
.jac-footer__loc-phone span { opacity: .7; }

/* Main columns */
.jac-footer__main {
    padding-block: 56px;
}

.jac-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
}

.jac-footer__logo {
    height: 68px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    display: block;
}

.jac-footer__brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.jac-footer__social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.jac-footer__social-link {
    color: rgba(255,255,255,.7);
    transition: color .2s, opacity .2s;
    display: flex;
}

.jac-footer__social-link:hover { color: var(--white); }

.jac-footer__col-title {
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--white);
    margin-bottom: 14px;
}

.jac-footer__col-link {
    display: block;
    font-size: .875rem;
    color: rgba(255,255,255,.55);
    line-height: 1;
    margin-bottom: 9px;
    transition: color .2s;
}

.jac-footer__col-link:hover { color: var(--white); }

/* Bottom bar */
.jac-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-block: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--white);
}

.jac-footer__bottom-links {
    display: flex;
    gap: 16px;
}

.jac-footer__bottom-links a {
    color: var(--white);
    transition: opacity .2s;
}

.jac-footer__bottom-links a:hover { opacity: .75; }

/* === Responsive header === */
@media (max-width: 900px) {
    .jac-nav        { display: none; }
    .jac-header__cta { display: none; }
    .jac-header__burger { display: flex; margin-inline-start: auto; }
}

@media (min-width: 901px) {
    .jac-drawer { display: none !important; }
    .jac-mega__grid { grid-template-columns: repeat(3, 1fr); }
}

/* === Footer responsive === */
@media (max-width: 900px) {
    .jac-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .jac-footer__locations-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .jac-footer__inner { gap: 24px; }
}

@media (max-width: 520px) {
    .jac-footer__locations-inner {
        grid-template-columns: 1fr;
    }
    .jac-footer__locations { padding-block: 24px; }
    .jac-footer__main { padding-block: 32px; }
    .jac-footer__logo { height: 48px; }
    .jac-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-block: 16px;
    }
}

/* === Shared section helpers === */
.jac-section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -.025em;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.jac-section-subtitle {
    font-size: 1.0625rem;
    color: rgba(33,33,33,.7);
    line-height: 1.6;
    text-align: center;
    margin-top: -28px;
    margin-bottom: 40px;
}

.jac-link-more {
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand);
    transition: opacity .2s;
}

.jac-link-more:hover { opacity: .75; }

/* =========================================================
   HERO SLIDER (1:1 multisite Carousel)
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: #0a2233;
    aspect-ratio: 4095 / 1440;
    min-height: 420px;
    width: 100%;
}

/* Slajdy — leżą jeden na drugim, przełączane klasami */
.hero__track { position: relative; width: 100%; height: 100%; }

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0s, visibility 0s;
    z-index: 1;
}
.hero__slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

/* Animacja slide-in/out */
.hero__slide--enter-right {
    animation: heroEnterRight var(--hero-anim, 450ms) ease both;
    z-index: 3;
}
.hero__slide--enter-left {
    animation: heroEnterLeft var(--hero-anim, 450ms) ease both;
    z-index: 3;
}
.hero__slide--exit-left {
    animation: heroExitLeft var(--hero-anim, 450ms) ease both;
    z-index: 2;
}
.hero__slide--exit-right {
    animation: heroExitRight var(--hero-anim, 450ms) ease both;
    z-index: 2;
}
@keyframes heroEnterRight  { from { transform: translateX(6%);  opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes heroEnterLeft   { from { transform: translateX(-6%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes heroExitLeft    { from { transform: none; opacity: 1; } to { transform: translateX(-6%); opacity: 0; } }
@keyframes heroExitRight   { from { transform: none; opacity: 1; } to { transform: translateX(6%);  opacity: 0; } }

/* Zdjęcie */
.hero__picture {
    position: absolute;
    inset: 0;
    display: block;
}
.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Treść — bottom-left, max 480px, nad zdjęciem */
.hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: var(--max-w);
    margin: 0 auto;
    left: 0; right: 0;
    padding: 0 var(--section-px) 48px;
}
.hero__text { max-width: 480px; }

.hero__headline {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 4px;
}
.hero__title-low {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 4px;
}
.hero__subtitle {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255,255,255,.85);
    line-height: 1.6;
    margin-bottom: 24px;
}
.hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero__btn {
    display: inline-flex;
    align-items: center;
    padding: 11px 24px;
    border: 1.5px solid rgba(255,255,255,.7);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: .9375rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background .2s, border-color .2s;
}
.hero__btn:hover { background: rgba(255,255,255,.22); border-color: #fff; }

/* Link całego slajdu */
.hero__slide-link { position: absolute; inset: 0; z-index: 2; }

/* Strzałki */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.hero__arrow svg { width: 22px; height: 22px; }
.hero__arrow:hover { background: rgba(255,255,255,.22); }
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

/* Dots — linie postępu */
.hero__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero__dot {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    border: none;
    padding: 0;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: background .25s;
}
.hero__dot.is-active { background: #fff; }

/* Mobile */
@media (max-width: 640px) {
    .hero { aspect-ratio: auto; height: 520px; }
    .hero__content { padding: 0 20px 32px; }
    .hero__arrow { display: none; }
    .hero__btn { padding: 8px 14px; font-size: .875rem; }
    .hero__buttons { flex-wrap: nowrap; }
}

/* === Shortcut bar === */
.jac-shortcut-bar {
    padding-block: 16px 64px;
}

.jac-shortcut-bar__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jac-shortcut-bar__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgb(0 0 0 / .08);
    color: #212121;
    transition: box-shadow .2s;
}

.jac-shortcut-bar__card:hover {
    box-shadow: 0 6px 32px rgb(0 0 0 / .13);
}

.jac-shortcut-bar__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.jac-shortcut-bar__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.jac-shortcut-bar__label {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .jac-shortcut-bar { padding-block: 16px; }
    .jac-shortcut-bar__grid { grid-template-columns: 1fr; gap: 8px; }
    .jac-shortcut-bar__card {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 10px;
    }
    .jac-shortcut-bar__icon { width: 26px; height: 26px; }
    .jac-shortcut-bar__label { font-size: .8125rem; line-height: 1.3; }
}

/* === Models section === */
.jac-models {
    padding-block: var(--section-py);
}

.jac-models__filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.jac-models__filter {
    padding: 8px 20px;
    border-radius: 999px;
    border: 2px solid rgba(0,0,0,.12);
    background: var(--white);
    color: #212121;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    font-family: var(--font-primary);
}

.jac-models__filter:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.jac-models__filter.is-active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: var(--white);
}

.jac-models__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jac-model-card {
    border-radius: var(--radius-card);
    border: 1px solid rgba(0,0,0,.1);
    background: var(--white);
    box-shadow: 0 1px 4px rgb(0 0 0 / .05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.jac-model-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0,93,125,.3);
    box-shadow: 0 8px 24px rgb(0 0 0 / .1);
}

.jac-model-card[data-hidden] { display: none; }

.jac-model-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 16px 8px;
}

.jac-model-card__name {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 700;
    letter-spacing: -.02em;
    color: #1a1a1a;
}

.jac-model-card__price {
    flex-shrink: 0;
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,.12);
    padding: 4px 12px;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 600;
    white-space: nowrap;
    color: #212121;
}

.jac-model-card__price--promo {
    border: none;
    background: var(--accent-red);
    color: var(--white);
}

.jac-model-card__img-wrap {
    background: var(--gray-100);
}

.jac-model-card__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    padding: 16px;
}

.jac-model-card__actions {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    border-top: 1px solid rgba(0,0,0,.05);
    margin-top: auto;
}

.jac-model-card__btn {
    flex: 1;
    padding: 9px 8px;
    border-radius: 8px;
    text-align: center;
    font-size: .75rem;
    font-weight: 500;
    transition: border-color .2s, color .2s, background .2s;
}

.jac-model-card__btn--outline {
    border: 1px solid rgba(0,0,0,.15);
    color: #212121;
}

.jac-model-card__btn--outline:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.jac-model-card__btn--primary {
    background: var(--brand);
    color: var(--white);
    border: 1px solid transparent;
}

.jac-model-card__btn--primary:hover { background: #007aa3; }

@media (max-width: 900px) {
    .jac-models__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .jac-models__grid { grid-template-columns: 1fr; }
}

/* === Promo banner === */
.jac-promo-banner {
    padding-block: var(--section-py);
}

.jac-promo-banner__box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0a2233;
    min-height: 340px;
    background-size: cover;
    background-position: center;
}

.jac-promo-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.5) 0%, transparent 65%);
}

.jac-promo-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    max-width: 400px;
    min-height: 340px;
}

.jac-promo-banner__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.jac-promo-banner__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.jac-promo-banner__cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 500;
    border: 1.5px solid rgba(255,255,255,.45);
    color: var(--white);
    background: rgba(255,255,255,.08);
    align-self: flex-start;
    transition: background .2s;
}

.jac-promo-banner__cta:hover { background: rgba(255,255,255,.18); }

@media (max-width: 640px) {
    .jac-promo-banner__content { padding: 28px 20px; min-height: 280px; }
    .jac-promo-banner__box { min-height: 280px; }
}

/* === Contact section === */
.jac-contact-home {
    padding-block: var(--section-py);
    background: var(--gray-100);
}

.jac-contact-home__inner {
    max-width: 680px;
    margin-inline: auto;
}

.jac-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.jac-contact-home__form .wpcf7-form label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-900);
}

.jac-contact-home__form .wpcf7-form input[type="text"],
.jac-contact-home__form .wpcf7-form input[type="email"],
.jac-contact-home__form .wpcf7-form input[type="tel"],
.jac-contact-home__form .wpcf7-form select,
.jac-contact-home__form .wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0,0,0,.15);
    border-radius: 10px;
    font-size: .9375rem;
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color .2s;
    margin-bottom: 16px;
}

.jac-contact-home__form .wpcf7-form input:focus,
.jac-contact-home__form .wpcf7-form select:focus,
.jac-contact-home__form .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--brand);
}

.jac-contact-home__form .wpcf7-form textarea { min-height: 120px; resize: vertical; }

.jac-contact-home__form .wpcf7-submit {
    width: 100%;
    padding: 14px;
    background: var(--brand);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background .2s;
}

.jac-contact-home__form .wpcf7-submit:hover { background: #007aa3; }

/* === Blog recent === */
.jac-blog-recent {
    padding-block: var(--section-py);
    background: #f6f6f6;
}

.jac-blog-recent .jac-section-header { margin-bottom: 40px; }

.jac-blog-recent__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jac-post-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.jac-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgb(0 0 0 / .14);
}

.jac-post-card__img-wrap {
    height: 200px;
    overflow: hidden;
    background: #e5e5e5;
    position: relative;
}

.jac-post-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jac-post-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,93,125,.15), #f0f0f0);
}

.jac-post-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.jac-post-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.45;
    color: #212121;
}

.jac-post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.jac-post-card__date {
    font-size: .8125rem;
    color: rgba(33,33,33,.7);
}

.jac-post-card__more {
    flex-shrink: 0;
    padding: 7px 14px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 8px;
    font-size: .8125rem;
    font-weight: 500;
    color: #212121;
    transition: border-color .2s, color .2s;
}

.jac-post-card__more:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.jac-blog-recent__bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.jac-blog-recent__see-all {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    color: #212121;
    background: var(--white);
    transition: border-color .2s, color .2s;
}

.jac-blog-recent__see-all:hover {
    border-color: var(--brand);
    color: var(--brand);
}

@media (max-width: 900px) {
    .jac-blog-recent__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .jac-blog-recent__grid { grid-template-columns: 1fr; }
}

/* === Disclaimer === */
.jac-disclaimer {
    background: var(--gray-100);
    border-top: 1px solid rgba(0,0,0,.08);
    padding-block: 40px;
}

.jac-disclaimer__text {
    max-width: 900px;
    margin-inline: auto;
    font-size: .75rem;
    color: #212121;
    line-height: 1.7;
}

.jac-disclaimer__text p + p { margin-top: 8px; }

/* === Shared buttons === */
.jac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}

.jac-btn--primary {
    background: var(--brand);
    color: var(--white);
    border: 2px solid transparent;
}
.jac-btn--primary:hover { background: #007aa3; }

.jac-btn--outline {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}
.jac-btn--outline:hover { background: var(--brand); color: var(--white); }

.jac-btn--ghost {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid rgba(0,0,0,.15);
}
.jac-btn--ghost:hover { border-color: var(--gray-900); }

/* === Model single === */
.jac-model-hero {
    padding-block: var(--section-py);
    background: var(--gray-100);
}

.jac-model-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.jac-model-hero__title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -.03em;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.jac-model-hero__price {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid rgba(0,0,0,.15);
    border-radius: 12px;
    padding: 6px 18px;
    margin-bottom: 32px;
    color: #212121;
}

.jac-model-hero__price--promo {
    border-color: transparent;
    background: var(--accent-red);
    color: var(--white);
}

.jac-model-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.jac-model-hero__img-wrap {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 4px 24px rgb(0 0 0 / .08);
}

.jac-model-hero__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    padding: 24px;
}

/* Gallery */
.jac-model-gallery {
    padding-block: 48px;
}

.jac-model-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.jac-model-gallery__item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

.jac-model-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.jac-model-gallery__item:hover img { transform: scale(1.05); }

/* Description */
.jac-model-description {
    padding-block: var(--section-py);
}

.jac-model-description__content {
    max-width: 780px;
    margin-inline: auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333;
}

.jac-model-description__content h2,
.jac-model-description__content h3 {
    font-weight: 700;
    letter-spacing: -.02em;
    margin-top: 32px;
    margin-bottom: 12px;
}

/* Specs table */
.jac-model-specs {
    padding-block: var(--section-py);
    background: var(--gray-100);
}

.jac-model-specs__table {
    max-width: 720px;
    margin-inline: auto;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
}

.jac-model-specs__row {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: var(--white);
}

.jac-model-specs__row:nth-child(even) { background: #fafafa; }
.jac-model-specs__row:last-child { border-bottom: none; }

.jac-model-specs__name {
    font-size: .875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.jac-model-specs__value {
    font-size: .875rem;
    font-weight: 700;
    color: var(--gray-900);
}

@media (max-width: 900px) {
    .jac-model-hero__inner { grid-template-columns: 1fr; gap: 32px; }
    .jac-model-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .jac-model-hero__actions { flex-direction: column; }
    .jac-model-gallery__grid { grid-template-columns: 1fr; }
}

/* === Page header (shared) === */
.jac-page-header {
    padding: 60px 0 48px;
    background: var(--gray-100);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.jac-page-header__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -.03em;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.jac-page-header__subtitle {
    font-size: 1rem;
    color: var(--gray-600);
}

/* === Contact page === */
.jac-contact-page__main {
    padding-block: var(--section-py);
}

.jac-contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.jac-contact-info__block {
    margin-bottom: 36px;
}

.jac-contact-info__label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.jac-contact-info__block p {
    font-size: .9375rem;
    line-height: 1.8;
    color: var(--gray-900);
}

.jac-contact-info__link {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand);
    line-height: 2;
    transition: opacity .2s;
}

.jac-contact-info__link:hover { opacity: .75; }

.jac-contact-info__map-link {
    display: inline-block;
    margin-top: 8px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand);
    transition: opacity .2s;
}

.jac-contact-info__map-link:hover { opacity: .75; }

.jac-contact-page__form-title {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.jac-contact-map {
    height: 420px;
}

.jac-contact-map__iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 900px) {
    .jac-contact-page__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 540px) {
    .jac-contact-map { height: 280px; }
}

/* === Promo archive === */
.jac-promos-archive__main {
    padding-block: var(--section-py);
}

.jac-promos-archive__empty {
    text-align: center;
    color: var(--gray-600);
    font-size: 1rem;
    padding: 60px 0;
}

.jac-promos-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.jac-promo-card {
    border-radius: var(--radius-card);
    border: 1px solid rgba(0,0,0,.08);
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.jac-promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 0 0 / .08);
}

.jac-promo-card__img-wrap { display: block; overflow: hidden; }

.jac-promo-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform .35s;
}

.jac-promo-card:hover .jac-promo-card__img { transform: scale(1.03); }

.jac-promo-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.jac-promo-card__date {
    font-size: .75rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.jac-promo-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--gray-900);
}

.jac-promo-card__title a { transition: color .2s; }
.jac-promo-card__title a:hover { color: var(--brand); }

.jac-promo-card__excerpt {
    font-size: .875rem;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
}

.jac-promo-card .jac-btn { margin-top: auto; align-self: flex-start; }

/* =========================================================
   PROMO LANDING — pjs6-* (layout 1:1 z multisite)
   ========================================================= */
.pjs6-top { background: #f4f7f9; }
.pjs6-top__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-h));
}
.pjs6-top__img { position: relative; }
.pjs6-top__img img { width: 100%; height: auto; display: block; }
.pjs6-top__form-col {
    display: flex;
    align-items: center;
    padding: 60px 48px;
}
.pjs6-form-card { max-width: 480px; }
.pjs6-form-card__title {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 12px;
}
.pjs6-form-card__sub {
    font-size: .9375rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pjs6-benefits { overflow: hidden; }
.pjs6-benefits__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.pjs6-benefits__text { padding: 80px 48px; }
.pjs6-benefits__eyebrow {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
}
.pjs6-benefits__title {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}
.pjs6-benefits__desc { font-size: .9375rem; color: #555; line-height: 1.7; margin-bottom: 24px; }
.pjs6-benefits__img { position: relative; overflow: hidden; }
.pjs6-benefits__img::before { content: ''; display: block; aspect-ratio: 1 / 1; }
.pjs6-benefits__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

.pjs6-benefit-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 14px;
    background: var(--white);
}
.pjs6-benefit-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.pjs6-benefit-card__check {
    width: 28px;
    height: 28px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}
.pjs6-benefit-card__check svg { width: 14px; height: 14px; }
.pjs6-benefit-card__title { font-size: .9375rem; font-weight: 700; color: var(--gray-900); }
.pjs6-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pjs6-benefit-list li { font-size: .875rem; color: #555; line-height: 1.5; padding-left: 12px; position: relative; }
.pjs6-benefit-list li::before { content: '–'; position: absolute; left: 0; color: var(--brand); }

.pjs6-features { overflow: hidden; }
.pjs6-features__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.pjs6-features__img-col { position: relative; overflow: hidden; }
.pjs6-features__img-col::before { content: ''; display: block; aspect-ratio: 9 / 16; }
.pjs6-features__img-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.pjs6-features__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 36px;
}
.pjs6-features__model-name {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.pjs6-features__tagline { font-size: .9375rem; color: rgba(255,255,255,.75); margin-bottom: 20px; }
.pjs6-features__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}
.pjs6-features__more svg { width: 16px; height: 16px; }
.pjs6-features__list-col { padding: 60px 48px; background: var(--white); }
.pjs6-features__list-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}
.pjs6-feature-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: border-color .2s, box-shadow .2s;
}
.pjs6-feature-row:hover { border-color: rgba(0,93,125,.3); box-shadow: 0 4px 12px rgba(0,93,125,.07); }
.pjs6-feature-row__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pjs6-feature-row__icon svg { width: 22px; height: 22px; }
.pjs6-feature-row__text { font-size: .875rem; color: #333; line-height: 1.45; }
.pjs6-feature-row__text small { display: block; font-size: .75rem; color: #777; margin-top: 2px; }

.jac-promo-disclaimer {
    padding: 24px 0;
    background: #f6f6f6;
    border-top: 1px solid #e8e8e8;
}
.jac-promo-disclaimer p { font-size: .75rem; color: #888; line-height: 1.6; }

/* Responsive promo landing */
@media (max-width: 1000px) {
    .pjs6-top__grid { grid-template-columns: 1fr; min-height: auto; }
    .pjs6-top__img img { width: 100%; height: auto; display: block; }
    .pjs6-top__form-col { padding: 32px 24px; }
    .pjs6-benefits__grid { grid-template-columns: 1fr; }
    .pjs6-features__grid { grid-template-columns: 1fr; }
    .pjs6-features__img-col::before { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
    .pjs6-top__form-col { padding: 24px 16px; }
    .pjs6-benefits__text { padding: 40px 16px; }
    .pjs6-features__list-col { padding: 32px 16px; }
    .pjs6-form-card__title { font-size: clamp(1.1rem, 5vw, 1.4rem); }
}

/* === Promo landing (hardcoded) === */
.jac-promo-landing__hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a1a22;
}
.jac-promo-landing__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .65;
}
.jac-promo-landing__hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 100%);
}
.jac-promo-landing__header {
    background: #0a1a22;
    padding: 60px 0 48px;
}
.jac-promo-landing__back {
    font-size: .8125rem;
    margin-bottom: 16px;
}
.jac-promo-landing__back a {
    color: rgba(255,255,255,.55);
    font-weight: 600;
    transition: color .2s;
}
.jac-promo-landing__back a:hover { color: #fff; }
.jac-promo-landing__title {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}
.jac-promo-landing__dates {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}
.jac-promo-landing__form-section {
    padding: 80px 0;
    background: #f6f6f6;
}
.jac-promo-landing__form-wrap {
    max-width: 680px;
    margin-inline: auto;
}
.jac-promo-landing__form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--gray-900);
}

/* Badge & CTA link w kartach archiwum */
.jac-promo-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-red);
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}
.jac-promo-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
}
.jac-promo-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
    transition: gap .2s;
}
.jac-promo-card__cta:hover { gap: 10px; }

/* === Promo single (legacy — kept for compat) === */
.jac-promo-single__back {
    margin-bottom: 12px;
    font-size: .875rem;
}

.jac-promo-single__back a {
    color: var(--brand);
    font-weight: 600;
    transition: opacity .2s;
}

.jac-promo-single__back a:hover { opacity: .75; }

.jac-promo-single__dates {
    margin-top: 8px;
    font-size: .875rem;
    color: var(--accent-red);
    font-weight: 600;
}

.jac-promo-single__main {
    padding-block: var(--section-py);
}

.jac-promo-single__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: start;
}

.jac-promo-single__img {
    width: 100%;
    border-radius: var(--radius-card);
    margin-bottom: 32px;
}

.jac-promo-single__desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 28px;
}

.jac-promo-single__desc h2,
.jac-promo-single__desc h3 {
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .jac-promos-archive__grid { grid-template-columns: repeat(2, 1fr); }
    .jac-promo-single__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 540px) {
    .jac-promos-archive__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STATIC PAGES — shared
   ============================================================ */

.jac-page-hero--dark {
    background: #0a1e2e;
    padding: 80px 0 72px;
}

.jac-page-hero__title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.025em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.jac-page-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    max-width: 640px;
}

.jac-eyebrow {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: .01em;
    margin-bottom: 10px;
}

.jac-eyebrow--light { color: rgba(255,255,255,.6); }

.jac-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.jac-split-body {
    font-size: .9375rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 16px;
}

.jac-info-grid {
    display: grid;
    gap: 20px;
}

.jac-info-grid--4 { grid-template-columns: repeat(4, 1fr); }
.jac-info-grid--3 { grid-template-columns: repeat(3, 1fr); }

.jac-info-card {
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 16px;
    padding: 20px;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}

.jac-info-card:hover {
    border-color: rgba(0,93,125,.25);
    box-shadow: 0 4px 16px rgb(0 0 0 / .06);
}

.jac-info-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,93,125,.08);
    color: var(--brand);
    border-radius: 10px;
    margin-bottom: 12px;
}

.jac-info-card__title {
    font-size: .9375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.jac-info-card__desc {
    font-size: .8125rem;
    line-height: 1.6;
    color: #666;
}

.jac-info-card--full { display: flex; flex-direction: column; }

.jac-btn-outline-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid var(--brand);
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand);
    transition: background .2s, color .2s;
}

.jac-btn-outline-brand:hover { background: var(--brand); color: var(--white); }

.jac-link-brand {
    font-weight: 600;
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.jac-static-cta-bar {
    background: #fafafa;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 48px 0;
    font-size: .9375rem;
    color: #666;
}

.jac-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(0,93,125,.08);
    color: var(--brand);
    border-radius: 999px;
    font-size: .8125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.jac-quote-block {
    background: var(--gray-100);
    border-left: 3px solid var(--brand);
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
    font-size: .9375rem;
    line-height: 1.6;
    color: #333;
    margin-block: 12px;
}

.jac-map-wrap {
    position: relative;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

/* Gwarancja */
.jac-warranty-card {
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 16px;
    padding: 24px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: border-color .2s, box-shadow .2s;
}

.jac-warranty-card:hover { border-color: rgba(0,93,125,.25); box-shadow: 0 4px 16px rgb(0 0 0 / .06); }

.jac-warranty-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,93,125,.08);
    color: var(--brand);
    border-radius: 10px;
    margin-bottom: 16px;
}

.jac-warranty-card__value {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #1a1a1a;
    line-height: 1;
}

.jac-warranty-card__unit {
    font-size: .875rem;
    font-weight: 500;
    color: #999;
    margin-bottom: 16px;
}

.jac-warranty-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.jac-warranty-card__desc {
    font-size: .8125rem;
    line-height: 1.6;
    color: #666;
}

.jac-warranty-pdf-bar {
    background: #fafafa;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 20px 0;
}

.jac-warranty-pdf-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.jac-warranty-pdf-bar__note { font-size: .875rem; color: #666; }

.jac-warranty-assist-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.jac-assist-items { display: flex; flex-direction: column; gap: 12px; }

.jac-assist-item {
    display: flex;
    gap: 14px;
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 12px;
    padding: 16px;
    transition: border-color .2s;
}

.jac-assist-item:hover { border-color: rgba(0,93,125,.3); }

.jac-assist-item__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,93,125,.08);
    color: var(--brand);
    border-radius: 8px;
}

.jac-assist-item__title { font-size: .875rem; font-weight: 600; color: #1a1a1a; }
.jac-assist-item__sub   { font-size: .75rem; color: #999; line-height: 1.5; margin-top: 2px; }

/* Assistance dur cards */
.jac-dur-cards { display: flex; flex-direction: column; gap: 12px; }

.jac-dur-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 12px;
    padding: 16px;
}

.jac-dur-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,93,125,.08);
    color: var(--brand);
    border-radius: 8px;
}

.jac-dur-card__value { font-size: 1.25rem; font-weight: 800; color: #1a1a1a; }
.jac-dur-card__label { font-size: .875rem; font-weight: 600; color: #333; }
.jac-dur-card__hint  { font-size: .75rem; color: #999; margin-top: 2px; }

.jac-dur-or {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .8125rem;
    font-weight: 700;
    color: #999;
    margin-block: 4px;
}

.jac-phone-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.jac-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--brand);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    transition: background .2s;
    white-space: nowrap;
}

.jac-phone-cta:hover { background: #007aa3; }

/* O nas – KPI grid */
.jac-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.jac-kpi-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: #f6f6f6;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.1);
    border-left: 3px solid var(--brand);
}

.jac-kpi-card__value { font-size: 1.25rem; font-weight: 800; color: var(--brand); line-height: 1.1; }
.jac-kpi-card__label { font-size: .6875rem; font-weight: 600; color: #666; line-height: 1.3; }

/* O nas hero */
.jac-onas-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a1a22;
}

.jac-onas-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
}

.jac-onas-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,30,42,.6) 60%, rgba(0,0,0,.3) 100%);
}

.jac-onas-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 80px 0;
}

.jac-onas-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 20px;
}

.jac-onas-hero__title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 24px;
}

.jac-onas-hero__title em { color: #4eb8d4; font-style: normal; }

.jac-onas-hero__sub {
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 36px;
}

.jac-onas-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Stats bar */
.jac-stats-bar { background: var(--brand); }

.jac-stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.jac-stats-bar__item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.18);
}

.jac-stats-bar__item:last-child { border-right: none; }

.jac-stats-bar__value {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.jac-stats-bar__label {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    line-height: 1.3;
}

/* Awards */
.jac-awards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.jac-award-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.1);
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}

.jac-award-card:hover { box-shadow: 0 8px 24px rgb(0 0 0 / .08); transform: translateY(-3px); }

.jac-award-card img { width: 72px; height: 72px; object-fit: contain; }

.jac-award-card__label { font-size: .6875rem; font-weight: 600; color: #777; line-height: 1.4; }

/* GB Distribution logo */
.jac-gbd-logo-wrap {
    background: #f0f0f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 200px;
}

.jac-gbd-logo-wrap img { max-height: 180px; width: 100%; object-fit: contain; }

/* Technologia */
.jac-tech-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #0a1a22;
    overflow: hidden;
}

.jac-tech-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.jac-tech-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.7) 0%, transparent 70%);
}

.jac-tech-hero__inner {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.jac-tech-hero__line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #4eb8d4;
    vertical-align: middle;
    margin-right: 8px;
}

.jac-tech-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.jac-tech-hero__title em { color: #4eb8d4; font-style: normal; }

.jac-tech-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    max-width: 600px;
}

.jac-tech-intro-img {
    border-radius: 12px;
    overflow: hidden;
}

.jac-tech-intro-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

/* R&D diagram */
.jac-rd-diagram-wrap { overflow-x: auto; }
.jac-rd-svg { width: 100%; max-width: 920px; display: block; margin-inline: auto; }

.jac-rd-mobile {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.jac-rd-mobile__center {
    background: var(--brand);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
}

.jac-rd-mobile__box {
    background: var(--white);
    border: 1.5px solid rgba(78,184,212,.5);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .875rem;
    color: #333;
    text-align: center;
}

/* Lab slider */
.jac-lab-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.jac-lab-tab {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(0,0,0,.12);
    background: var(--white);
    font-size: .875rem;
    font-weight: 500;
    color: #212121;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    font-family: var(--font-primary);
}

.jac-lab-tab:hover    { border-color: var(--brand); color: var(--brand); }
.jac-lab-tab.is-active { border-color: #1a1a1a; background: #1a1a1a; color: var(--white); }

.jac-lab-slides-wrap { overflow: hidden; border-radius: 16px; }

.jac-lab-slides {
    display: flex;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.jac-lab-slide {
    flex: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
}

.jac-lab-slide__img { overflow: hidden; }
.jac-lab-slide__img img { width: 100%; height: 100%; object-fit: cover; }

.jac-lab-slide__body {
    background: #1a1a1a;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jac-lab-slide__num   { font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,.15); line-height: 1; margin-bottom: 16px; }
.jac-lab-slide__title { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.jac-lab-slide__text  { font-size: .9375rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* Instrukcje */
.jac-instrukcje-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jac-instrukcje-card {
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
}

.jac-instrukcje-card__model {
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 20px;
    background: var(--gray-100);
    border-bottom: 1px solid rgba(0,0,0,.08);
    color: #1a1a1a;
}

.jac-instrukcje-card__docs { padding: 8px 0; }

.jac-instrukcje-doc {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: .875rem;
    font-weight: 500;
    color: #212121;
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: background .15s, color .15s;
}

.jac-instrukcje-doc:last-child { border-bottom: none; }
.jac-instrukcje-doc:hover { background: rgba(0,93,125,.05); color: var(--brand); }

/* Feat slider */
.jac-feat-slider { position: relative; }

.jac-feat-slider__wrap { overflow: hidden; }

.jac-feat-slider__track {
    display: flex;
    gap: 20px;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.jac-feat-slider__card {
    flex: none;
    width: calc((100% - 40px) / 3);
    border-radius: 12px;
    overflow: hidden;
    background: #fbfbfb;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.jac-feat-slider__img-wrap { overflow: hidden; }

.jac-feat-slider__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform .35s;
}

.jac-feat-slider__card:hover .jac-feat-slider__img { transform: scale(1.03); }

.jac-feat-slider__body { padding: 16px; }

.jac-feat-slider__title { font-size: .9375rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.jac-feat-slider__desc  { font-size: .8125rem; line-height: 1.55; color: rgba(33,33,33,.7); }

.jac-feat-slider__arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
    background: var(--white);
    box-shadow: 0 2px 8px rgb(0 0 0 / .1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    z-index: 5;
}

.jac-feat-slider__arrow:hover   { border-color: var(--brand); background: var(--brand); color: var(--white); }
.jac-feat-slider__arrow:disabled { opacity: .3; pointer-events: none; }
.jac-feat-slider__arrow--prev { left: -20px; }
.jac-feat-slider__arrow--next { right: -20px; }

/* ============================================================
   STATIC PAGES — responsive
   ============================================================ */

@media (max-width: 1100px) {
    .jac-awards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .jac-split-grid { grid-template-columns: 1fr; gap: 40px; }
    .jac-info-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .jac-info-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .jac-kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .jac-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .jac-stats-bar__item { border-bottom: 1px solid rgba(255,255,255,.18); }
    .jac-awards-grid { grid-template-columns: repeat(2, 1fr); }
    .jac-instrukcje-grid { grid-template-columns: repeat(2, 1fr); }
    .jac-lab-slide { grid-template-columns: 1fr; }
    .jac-lab-slide__img { height: 220px; }
    .jac-rd-svg { display: none; }
    .jac-rd-mobile { display: flex; }
    .jac-feat-slider__card { width: calc((100% - 20px) / 2); }
    .jac-phone-row { flex-direction: column; }
}

@media (max-width: 540px) {
    .jac-info-grid--4 { grid-template-columns: 1fr; }
    .jac-info-grid--3 { grid-template-columns: 1fr; }
    .jac-awards-grid { grid-template-columns: repeat(2, 1fr); }
    .jac-instrukcje-grid { grid-template-columns: 1fr; }
    .jac-onas-hero { min-height: 80vh; }
    .jac-feat-slider__card { width: 100%; }
}

/* ============================================================
   MODEL PAGE — single-jac_model.php
   Tłumaczenie 1:1 z NowejacModelPage.tsx
   ============================================================ */

.jac-model-page { background: #fff; padding-bottom: 80px; }

/* Shared section padding */
.jac-msection { padding-block: 80px; }

.jac-divider { border: none; border-top: 1px solid rgba(0,0,0,.12); margin: 0; }

/* === HERO === */
.jac-mhero { position: relative; background: #0a1e2e; }

.jac-mhero__bg {
    position: relative;
    z-index: 0;
    height: 160px;
    overflow: hidden;
    background: #0a1e2e;
}

.jac-mhero__video,
.jac-mhero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jac-mhero__car-wrap {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 40px;
    z-index: 10;
    width: 80%;
    max-width: 860px;
    transform: translateX(-50%);
}

.jac-mhero__car {
    height: auto;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,.22));
}

.jac-mhero__bar {
    position: relative;
    z-index: 1;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding-bottom: 28px;
    padding-top: 100px;
}

.jac-mhero__badges {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.jac-mhero__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
}

.jac-mhero__badge-value {
    width: 100%;
    border: 1.5px solid #005d7d;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 8px 16px;
    font-size: clamp(18px, 4vw, 32px);
    font-weight: 700;
    letter-spacing: -.03em;
    color: #212121;
    line-height: 1;
}

.jac-mhero__badge-label {
    width: 100%;
    border-radius: 0 0 12px 12px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
    background: #005d7d;
    line-height: 1.3;
}

.jac-mhero__badge-label.is-promo { background: #E71324; }

.jac-mhero__catalog-price {
    margin-top: 12px;
    text-align: center;
    font-size: .875rem;
    color: rgba(33,33,33,.7);
}

.jac-mhero__cta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* === OVERVIEW === */
.jac-moverview { padding-block: 80px; }

.jac-moverview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.jac-moverview__title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.jac-moverview__intro {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(33,33,33,.7);
    margin-bottom: 28px;
}

.jac-moverview__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.jac-moverview__feat-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.jac-moverview__feat-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jac-moverview__feat-header img { width: 36px; height: 36px; object-fit: contain; }

.jac-moverview__feat-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #1a1a1a;
}

.jac-moverview__feat-desc {
    font-size: .875rem;
    line-height: 1.55;
    color: rgba(33,33,33,.7);
}

/* === PROMOS === */
.jac-mpromos { padding-block: 48px; }

.jac-mpromos__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.jac-mpromos__heading h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
    color: #1a1a1a;
    align-self: center;
}

.jac-mpromos__card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
}

.jac-mpromos__card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #e5e5e5;
}

.jac-mpromos__card-img img { width: 100%; height: 100%; object-fit: cover; }

.jac-mpromos__card-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

.jac-mpromos__card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.jac-mpromos__card-body p {
    font-size: .875rem;
    color: rgba(33,33,33,.7);
    line-height: 1.5;
}

/* === STATS GRID (power, zabudowa, warranty) === */
.jac-mstats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.jac-mstats-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: 12px;
    padding: 28px;
    background: rgba(255,255,255,.8);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.jac-mstats-title {
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #1a1a1a;
}

.jac-mstats-desc {
    font-size: .9375rem;
    line-height: 1.6;
    color: rgba(33,33,33,.7);
}

.jac-mstats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.jac-mstats-item {
    padding: 8px 24px 8px 0;
    margin-right: 24px;
    border-right: 1px solid rgba(0,0,0,.1);
}

.jac-mstats-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.jac-mstats-value {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #1a1a1a;
    line-height: 1;
}

.jac-mstats-label {
    font-size: .75rem;
    color: rgba(33,33,33,.7);
    margin-top: 2px;
}

.jac-mstats-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
}

.jac-mstats-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* === DESIGN EXPLORER (1:1 z DesignExplorer.tsx) === */
.jac-de {
    border-top: 1px solid rgba(0,0,0,.12);
    padding-block: 64px 80px;
    overflow-x: hidden;
}

.jac-de__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.jac-de__sidebar { min-width: 0; }

/* Sidebar */
.jac-de__title {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.025em;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.jac-de__subtitle {
    font-size: .9375rem;
    color: rgba(33,33,33,.7);
    margin-bottom: 20px;
}

.jac-de__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.jac-de__nav { scrollbar-width: none; }
.jac-de__nav::-webkit-scrollbar { display: none; }

.jac-de__nav-btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,.06);
    color: #212121;
    font-size: .9375rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.jac-de__nav-btn:hover   { background: rgba(0,0,0,.09); }
.jac-de__nav-btn.is-active { background: var(--brand); color: #fff; }

/* Content area */
.jac-de__content {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f6f6f6;
    min-width: 0;
}

.jac-de__panel { display: none; }
.jac-de__panel.is-active { display: block; }

/* Colors panel */
.jac-de__img-wrap { position: relative; aspect-ratio: 16/9; background: #f2f2f2; }
.jac-de__img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }

.jac-de__color-slide { display: none; width: 100%; height: 100%; }
.jac-de__color-slide.is-active { display: block; }
.jac-de__color-slide img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }

.jac-de__color-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.jac-de__swatches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 16px 24px;
    border-top: 1px solid #ebebeb;
    background: #fff;
}

.jac-de__swatch {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform .2s, box-shadow .2s;
    outline: none;
}

.jac-de__swatch:hover { transform: scale(1.12); }
.jac-de__swatch.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 4px #005d7d; }

/* Tab panels */
.jac-de__tab-img { aspect-ratio: 16/9; overflow: hidden; background: #e5e5e5; }
.jac-de__tab-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.jac-de__tab-body { padding: 24px; background: #fff; }

.jac-de__tab-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.jac-de__tab-desc {
    font-size: .9375rem;
    line-height: 1.6;
    color: rgba(33,33,33,.7);
}

/* Responsive */
@media (max-width: 1024px) {
    .jac-de { padding-block: 48px 64px; }
    .jac-de__grid { grid-template-columns: 1fr; gap: 32px; }
    .jac-de__nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
    }
    .jac-de__nav-btn { flex-shrink: 0; font-size: .875rem; }
}

/* === TJA === */
.jac-mtja {
    position: relative;
    padding-block: 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 420px;
    display: flex;
    align-items: center;
}

@media (max-width: 900px) {
    /* background-attachment: fixed doesn't work well on mobile */
    .jac-mtja { background-attachment: scroll; }
}

.jac-mtja__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 100%);
}

.jac-mtja__inner { position: relative; z-index: 2; max-width: 600px; }

.jac-mtja__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}

.jac-mtja__desc {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
}

/* === INTERIOR === */
.jac-minterior { padding-block: 80px; }

.jac-minterior__hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: center;
    margin-bottom: 80px;
}

.jac-minterior__hero-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
}

.jac-minterior__hero-img img { width: 100%; height: 100%; object-fit: cover; }

.jac-minterior__hero-text h2 {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}

.jac-minterior__hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(33,33,33,.7);
}

/* === TECHNOLOGY === */
.jac-mtech { padding-block: 80px; }

.jac-mtech__header {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
}

.jac-mtech__intro h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}

.jac-mtech__intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(33,33,33,.7);
}

.jac-mtech__highlight {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.jac-mtech__highlight img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.jac-mtech__highlight-body { padding: 16px; }

.jac-mtech__highlight-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.jac-mtech__highlight-desc {
    font-size: .875rem;
    line-height: 1.55;
    color: rgba(33,33,33,.7);
}

/* === SAFETY === */
.jac-msafety { padding-block: 80px; }

.jac-msafety__intro {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(33,33,33,.7);
    max-width: 720px;
    margin-bottom: 32px;
}

.jac-msafety__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jac-msafety__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    background: #fbfbfb;
    box-shadow: 0 0 4px rgba(0,0,0,.08);
}

.jac-msafety__card-img { position: relative; aspect-ratio: 16/9; width: 100%; overflow: hidden; }
.jac-msafety__card-img img { width: 100%; height: 100%; object-fit: cover; }

.jac-msafety__card-body { flex: 1; padding: 16px; }

.jac-msafety__card-title {
    font-size: .9375rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 6px;
}

.jac-msafety__card-desc {
    font-size: .8125rem;
    line-height: 1.55;
    color: rgba(33,33,33,.7);
}

/* === CTA === */
.jac-mcta { padding-block: 80px; border-top: 1px solid rgba(0,0,0,.12); }

.jac-mcta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.jac-mcta__logo { height: 52px; width: auto; object-fit: contain; }

.jac-mcta__model-name {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #1a1a1a;
}

.jac-mcta__car {
    max-width: 480px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-inline: auto;
}

.jac-mcta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* === MOBILE BOTTOM BAR === */
.jac-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    border-top: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.97);
    padding: 10px 20px 16px;
    backdrop-filter: blur(12px);
}

.jac-mobile-bar__inner {
    display: flex;
    justify-content: space-around;
    background: #f0f0f0;
    border-radius: 999px;
    padding: 6px;
}

.jac-mobile-bar__btn {
    display: flex;
    flex: 1;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #212121;
    transition: background .2s;
}

.jac-mobile-bar__btn:hover { background: rgba(0,0,0,.06); }

.jac-mobile-bar__btn--red {
    flex: none;
    width: 44px;
    height: 44px;
    background: #ff3131;
    flex-shrink: 0;
}

.jac-mobile-bar__btn--red:hover { background: #e62b2b; }

/* === MODEL PAGE — responsive === */
@media (min-width: 901px) {
    .jac-mhero__bg { height: 420px; }
    .jac-mhero__car-wrap { top: 150px; width: 36%; }
    .jac-mhero__bar { padding-top: 140px; padding-bottom: 36px; }
    .jac-mhero__badge { min-width: 180px; }
}

@media (max-width: 900px) {
    .jac-mhero__bg { height: 220px; }
    .jac-mhero__car-wrap { top: 60px; width: 50%; }
    .jac-mhero__bar { padding-top: 120px; }
    .jac-moverview__grid { grid-template-columns: 1fr; }
    .jac-mstats-grid { grid-template-columns: 1fr; }
    .jac-mpromos__wrap { grid-template-columns: 1fr; }
    .jac-minterior__hero { grid-template-columns: 1fr; }
    .jac-mtech__header { grid-template-columns: 1fr; }
    .jac-msafety__grid { grid-template-columns: repeat(2, 1fr); }
    .jac-mobile-bar { display: block; }
    .jac-model-page { padding-bottom: 96px; }
}

@media (max-width: 640px) {
    .jac-mhero__bg { height: 160px; }
    .jac-mhero__car-wrap { top: 40px; width: 80%; }
    .jac-mhero__bar { padding-top: 100px; }
    .jac-moverview__features { grid-template-columns: 1fr; }
    .jac-msafety__grid { grid-template-columns: 1fr; }
    .jac-mhero__badges { gap: 8px; }
    .jac-mhero__badge { min-width: 120px; }
}

/* =========================================================
   HEADER LOGO IMAGE
   ========================================================= */
.jac-header__logo-img {
    height: 18px;
    width: auto;
    display: block;
}

/* =========================================================
   O NAS DEALERA
   ========================================================= */

/* Hero — uzupełnienie klas */
.jac-onas-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
}
.jac-onas-hero__eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #4eb8d4;
}
.jac-onas-hero__subtitle {
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 36px;
}
.jac-onas-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
}
.jac-onas-hero__scroll-icon { animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}
.jac-onas-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 80px var(--section-px);
    width: 100%;
}

/* Intro */
.jac-onas-intro { padding: 100px 0; background: var(--white); }

.jac-onas-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.jac-onas-intro__body { font-size: .9375rem; line-height: 1.75; color: #555; }

/* KPI cards */
.jac-onas-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.jac-onas-kpi {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: #f6f6f6;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.1);
    border-left: 3px solid var(--brand);
}
.jac-onas-kpi__value { font-size: 1.25rem; font-weight: 800; color: var(--brand); line-height: 1.1; }
.jac-onas-kpi__label { font-size: .6875rem; font-weight: 600; color: #666; line-height: 1.3; }

/* Stats bar */
.jac-onas-stats { background: var(--brand); }
.jac-onas-stats__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), 1fr);
}
.jac-onas-stats__item {
    padding: 32px 24px;
    text-align: center;
}
.jac-onas-stats__item--border { border-right: 1px solid rgba(255,255,255,.18); }
.jac-onas-stats__value {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.jac-onas-stats__label { font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.7); line-height: 1.3; }

/* About dealer */
.jac-onas-about { padding: 100px 0; background: var(--white); }
.jac-onas-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.jac-onas-about__body { font-size: .9375rem; line-height: 1.75; color: #555; }
.jac-onas-about__body p { margin-bottom: 16px; }
.jac-onas-about__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.jac-onas-about__image-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
}
.jac-onas-about__image { width: 100%; height: auto; display: block; }

/* Locations grid */
.jac-onas-locations { padding: 100px 0; background: #f6f6f6; }
.jac-onas-locations__eyebrow,
.jac-onas-locations__title { text-align: center; }
.jac-onas-locations__title { margin-bottom: 48px; }
.jac-onas-locations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.jac-onas-location {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,.08);
}
.jac-onas-location__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
}
.jac-onas-location__address {
    font-size: .875rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}
.jac-onas-location__phone {
    display: block;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
    margin-bottom: 8px;
}
.jac-onas-location__phone:hover { color: var(--brand); }
.jac-onas-location__hours {
    font-size: .8125rem;
    color: #777;
    line-height: 1.6;
    margin-top: 8px;
}
.jac-onas-location__map {
    display: inline-block;
    margin-top: 12px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}
.jac-onas-location__map:hover { text-decoration: underline; }

/* Shared button styles */
.jac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: background .2s, border-color .2s, color .2s;
}
.jac-btn--primary {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}
.jac-btn--primary:hover { background: #007aa3; border-color: #007aa3; }
.jac-btn--outline {
    background: var(--white);
    border-color: rgba(0,0,0,.12);
    color: var(--gray-900);
}
.jac-btn--outline:hover { border-color: var(--brand); color: var(--brand); }

/* O NAS — RESPONSIVE */
@media (max-width: 900px) {
    .jac-onas-intro__grid,
    .jac-onas-about__grid { grid-template-columns: 1fr; gap: 40px; }
    .jac-onas-kpis { grid-template-columns: repeat(2, 1fr); }
    .jac-onas-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .jac-onas-stats__item--border:nth-child(2) { border-right: none; }
    .jac-onas-stats__item:nth-child(1),
    .jac-onas-stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.18); }
    .jac-onas-locations__grid { grid-template-columns: repeat(2, 1fr); }
    .jac-onas-hero__content { padding: 80px 24px; }
}
@media (max-width: 600px) {
    .jac-onas-kpis { grid-template-columns: 1fr; }
    .jac-onas-locations__grid { grid-template-columns: 1fr; }
    .jac-onas-stats__grid { grid-template-columns: 1fr !important; }
    .jac-onas-stats__item--border { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
}


/* =========================================================
   O NAS DEALERA (/dealer layout)
   ========================================================= */

/* Hero */
.jda-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a1a22;
}
.jda-hero__picture {
    position: absolute;
    inset: 0;
    display: block;
}
.jda-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
}
.jda-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
}
.jda-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
}
.jda-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 12px;
}
.jda-hero__eyebrow-line {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #4eb8d4;
}
.jda-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0;
}

/* Intro */
.jda-intro { padding: 80px 0; background: #fff; }
.jda-intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 760px;
}
.jda-intro__grid--with-img {
    grid-template-columns: 1fr 1fr;
    max-width: none;
}
.jda-intro__heading {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #212121;
    line-height: 1.2;
    margin-bottom: 20px;
}
.jda-intro__body {
    font-size: .9375rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 32px;
}
.jda-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.jda-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 14px;
    background: #f6f6f6;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.1);
    border-left: 3px solid var(--brand);
}
.jda-stat__value { font-size: 1.3rem; font-weight: 800; color: var(--brand); line-height: 1.1; }
.jda-stat__label { font-size: .6875rem; font-weight: 600; color: #666; line-height: 1.3; }
.jda-intro__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.jda-intro__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Pillars */
.jda-pillars { padding: 80px 0; background: #f7f8fa; }
.jda-pillars__grid {
    display: grid;
    gap: 32px;
}
.jda-pillars__grid--1 { grid-template-columns: 1fr; max-width: 520px; }
.jda-pillars__grid--2 { grid-template-columns: repeat(2, 1fr); }
.jda-pillars__grid--3 { grid-template-columns: repeat(3, 1fr); }
.jda-pillar {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.jda-pillar__img-wrap { position: relative; aspect-ratio: 4 / 3; width: 100%; overflow: hidden; }
.jda-pillar__img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.jda-pillar__body { padding: 24px; }
.jda-pillar__heading { font-size: 1.0625rem; font-weight: 700; color: #212121; margin-bottom: 8px; }
.jda-pillar__text { font-size: .875rem; line-height: 1.7; color: #555; }

/* Kontakt */
.jda-contact { padding: 80px 0; background: #f7f8fa; }
.jda-contact__title {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    color: #212121;
    margin-bottom: 32px;
}
.jda-locations { display: flex; flex-direction: column; gap: 20px; }
.jda-loc {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.12);
    padding: 24px;
    transition: border-color .2s, box-shadow .2s;
}
.jda-loc:hover { border-color: rgba(0,93,125,.3); box-shadow: 0 0 0 3px rgba(0,93,125,.08); }
.jda-loc__name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: #212121; }
.jda-loc__city { font-size: .75rem; color: #aaa; margin-bottom: 16px; }
.jda-loc__details { display: flex; flex-direction: column; gap: 16px; }
.jda-loc__row { display: flex; align-items: flex-start; gap: 12px; }
.jda-loc__icon { color: var(--brand); margin-top: 2px; flex-shrink: 0; width: 14px; height: 14px; }
.jda-loc__icon svg { width: 14px; height: 14px; }
.jda-loc__row-label {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 3px;
}
.jda-loc__row-value { font-size: .875rem; color: #1a1a1a; }
.jda-loc__row-value a { color: inherit; text-decoration: none; }
.jda-loc__row-value a:hover { color: var(--brand); }
.jda-loc__row-sub { font-size: .75rem; color: #888; }
.jda-loc__maps-link {
    display: inline-block;
    font-size: .8125rem;
    color: var(--brand);
    margin-top: 4px;
    text-decoration: none;
}
.jda-loc__maps-link:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
    .jda-hero { min-height: 320px; }
    .jda-intro__grid--with-img { grid-template-columns: 1fr; }
    .jda-stats { grid-template-columns: repeat(2, 1fr); }
    .jda-pillars__grid--3 { grid-template-columns: repeat(2, 1fr); }
    .jda-pillars__grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .jda-stats { grid-template-columns: 1fr; }
    .jda-pillars__grid--3,
    .jda-pillars__grid--2 { grid-template-columns: 1fr; }
}

/* ── Mapa Leaflet (o-nas-dealer) ── */
.jda-contact__grid--with-map {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: start;
}
.jda-map-wrap {
    position: sticky;
    top: 90px;
}
.jda-map {
    height: 520px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.jda-map-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}
@media (max-width: 1024px) {
    .jda-contact__grid--with-map {
        grid-template-columns: 1fr;
    }
    .jda-map-wrap { position: static; }
    .jda-map { height: 360px; }
}

/* Hero subtitle (o-nas-dealer) */
.jda-hero__subtitle {
    margin-top: 12px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

/* Pillar bez zdjęcia — wyrównanie */
.jda-pillar:not(:has(.jda-pillar__img-wrap)) .jda-pillar__body {
    padding: 28px 24px 32px;
}

/* =========================================================
   STRONA KONTAKT
   ========================================================= */
.jac-contact-locs {
    padding: 80px 0;
    background: #f7f8fa;
}
.jac-contact-locs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.jac-contact-locs__grid--map {
    grid-template-columns: 1fr 420px;
    align-items: start;
}

.jac-contact-form-section {
    padding: 80px 0;
    background: #fff;
}
.jac-contact-form-inner {
    max-width: 720px;
    margin-inline: auto;
}
.jac-contact-form-head {
    margin-bottom: 36px;
}
.jac-contact-form-sub {
    font-size: .9375rem;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .jac-contact-locs__grid--map {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CF7 — LAYOUT FORMULARZY
   ========================================================= */
.cf7-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.column33 { flex: 0 0 calc(33.333% - 11px); }
.column49 { flex: 0 0 calc(50% - 8px); }
.column100 { flex: 1; }

.wpcf7 label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: .8125rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
}
/* Zeruj margines na labelach wewnątrz .cf7-row (tam spacing robi gap) */
.cf7-row label { margin-bottom: 0; }
/* CF7 — zeruj marginesy p, ukryj puste p i zbędne br */
.wpcf7 p { margin-top: 0; margin-bottom: 8px; }
.wpcf7 p:empty { display: none !important; }
.wpcf7 br { display: none; }
.wpcf7 .wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=submit]) {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    font-size: .9375rem;
    color: #212121;
    background: #fff;
    transition: border-color .2s;
    font-family: inherit;
}
.wpcf7 .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--brand);
}
.wpcf7 select.wpcf7-form-control {
    width: 100%;
    cursor: pointer;
}
.wpcf7 textarea.wpcf7-form-control {
    resize: vertical;
    min-height: 100px;
}
.wpcf7 input[type=date].wpcf7-form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    font-size: .9375rem;
    font-family: inherit;
}

/* Submit */
.wpcf7 .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-top: 8px;
}
.wpcf7 .wpcf7-submit:hover { background: #007aa3; }
.wpcf7 .wpcf7-submit:disabled { opacity: .6; cursor: not-allowed; }

/* Spinner */
.wpcf7 .wpcf7-spinner { margin-left: 12px; }

/* Validation */
.wpcf7-not-valid { border-color: var(--accent-red) !important; }
.wpcf7-not-valid-tip { font-size: .75rem; color: var(--accent-red); margin-top: 4px; }
.wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .875rem;
}
.wpcf7-mail-sent-ok { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.wpcf7-mail-sent-ng,
.wpcf7-aborted { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
.wpcf7-validation-errors { background: #fff8e1; color: #f57f17; border: 1px solid #ffe082; }

/* Zgody */
.cf7-rodo-info {
    font-size: .75rem;
    color: #777;
    line-height: 1.6;
    margin: 20px 0 12px;
}
.cf7-rodo-info a { color: var(--brand); }
.zgody-txt {
    font-size: .75rem;
    color: #777;
    line-height: 1.6;
    margin: 12px 0 8px;
}
/* Checkbox / radio listy — inline z zawijaniem, wyrównane do lewej */
.wpcf7-checkbox,
.wpcf7-radio {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    align-items: flex-start;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
    font-size: .8125rem;
}
.wpcf7-checkbox label,
.wpcf7-radio label {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    color: #555;
    cursor: pointer;
    font-size: .8125rem;
    line-height: 1.4;
}
.wpcf7-checkbox .wpcf7-list-item.first label,
.wpcf7-radio .wpcf7-list-item.first label {
    font-weight: 700;
    color: #333;
}
.wpcf7-checkbox input[type=checkbox],
.wpcf7-radio input[type=radio] {
    flex-shrink: 0;
}

/* ── Selektor modelu (Jazda Testowa) ── */
.cf7-model-selector { margin: 24px 0 20px; }
.cf7-model-selector__label {
    font-size: .8125rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
}
.cf7-model-selector__grid .wpcf7-radio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.cf7-model-selector__grid .wpcf7-list-item {
    margin: 0;
}
.cf7-model-selector__grid .wpcf7-list-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: .875rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    text-align: center;
    gap: 0;
}
.cf7-model-selector__grid .wpcf7-list-item label:hover {
    border-color: var(--brand);
    color: var(--brand);
}
.cf7-model-selector__grid .wpcf7-list-item input[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.cf7-model-selector__grid .wpcf7-list-item input[type=radio]:checked + span,
.cf7-model-selector__grid .wpcf7-list-item:has(input:checked) label {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

/* Responsive formularze */
@media (max-width: 700px) {
    .cf7-row { flex-direction: column; gap: 12px; }
    .column33, .column49 { flex: none; width: 100%; }
    .cf7-model-selector__grid .wpcf7-radio { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
    .cf7-model-selector__grid .wpcf7-radio { grid-template-columns: 1fr; }
}

/* =========================================================
   JAZDA TESTOWA
   ========================================================= */

/* Stepper */
.jt-stepper {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: var(--nav-h);
    z-index: 90;
}
.jt-stepper__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 18px 0;
}
.jt-step {
    display: flex;
    align-items: center;
    gap: 10px;
}
.jt-step__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8e8e8;
    color: #aaa;
    font-size: .9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}
.jt-step__label {
    font-size: .8125rem;
    font-weight: 600;
    color: #aaa;
    white-space: nowrap;
    transition: color .25s;
}
.jt-step--active .jt-step__num,
.jt-step--done .jt-step__num  { background: var(--brand); color: #fff; }
.jt-step--active .jt-step__label,
.jt-step--done .jt-step__label { color: var(--brand); }
.jt-step__line {
    width: 48px;
    height: 2px;
    background: #e8e8e8;
    margin: 0 12px;
    flex-shrink: 0;
}

/* Body */
.jt-body {
    padding: 40px 0 80px;
    background: #f5f7f9;
    min-height: 60vh;
}
.jt-body .wrap { display: flex; flex-direction: column; gap: 28px; }

/* Cards */
.jt-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    padding: 36px;
}
.jt-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.jt-card__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: .9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.jt-card__title { font-size: 1.25rem; font-weight: 700; color: #212121; margin: 0; }

/* Model grid */
.jt-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.jt-model-card {
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    position: relative;
}
.jt-model-card:hover {
    border-color: rgba(0,93,125,.4);
    box-shadow: 0 4px 16px rgba(0,93,125,.1);
}
.jt-model-card--selected {
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 3px rgba(0,93,125,.15) !important;
}
.jt-model-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid #e8e8e8;
}
.jt-model-card__name {
    font-size: .875rem;
    font-weight: 700;
    color: #212121;
    letter-spacing: .02em;
}
.jt-model-card__price {
    font-size: .6875rem;
    font-weight: 600;
    color: #212121;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    padding: 3px 8px;
    white-space: nowrap;
    flex-shrink: 0;
}
.jt-model-card__price--promo {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
}
.jt-model-card__img-wrap {
    position: relative;
    background: #f5f5f5;
}
.jt-model-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
}
.jt-model-card__img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #eee;
}
.jt-model-card__catalog {
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: .6875rem;
    color: #aaa;
}

/* Selected badge */
.jt-selected-model {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0,93,125,.07);
    border: 1px solid rgba(0,93,125,.2);
    border-radius: 10px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 20px;
}
.jt-selected-model svg { flex-shrink: 0; stroke: var(--brand); }
.jt-selected-model__change {
    margin-left: auto;
    background: none;
    border: none;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand);
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .jt-models-grid { grid-template-columns: repeat(2, 1fr); }
    .jt-card { padding: 24px 20px; }
}
@media (max-width: 500px) {
    .jt-models-grid { grid-template-columns: 1fr; }
    .jt-step__label { display: none; }
}

/* =========================================================
   INSTRUKCJE / CENNIKI (docs pages — 1:1 multisite)
   ========================================================= */
.page-hero--dark {
    background: #0a1a22;
    padding: calc(var(--nav-h) + 60px) 0 60px;
}
.page-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 8px 0 12px;
}
.page-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
    max-width: 580px;
}

/* Category pills */
.cat-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.cat-pill {
    padding: 7px 18px;
    border-radius: 100px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    font-size: .8125rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
}
.cat-pill:hover { border-color: var(--brand); color: var(--brand); }
.cat-pill.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Docs grid */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Docs card */
.docs-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, border-color .2s;
}
.docs-card:hover {
    box-shadow: 0 8px 28px rgba(0,93,125,.1);
    border-color: rgba(0,93,125,.3);
}
.docs-card__img-wrap {
    background: #f7f7f7;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.docs-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .3s;
}
.docs-card:hover .docs-card__img { transform: scale(1.04); }
.docs-card__body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 14px;
}
.docs-card__name {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #1a1a1a;
    line-height: 1.1;
}
.docs-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

/* Year select */
.year-select-wrap { position: relative; }
.year-select {
    width: 100%;
    padding: 9px 36px 9px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: .875rem;
    font-family: inherit;
    color: #212121;
    background: #fff;
    cursor: pointer;
    appearance: none;
}
.year-select-wrap::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -3px;
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
}

/* Download buttons */
.docs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: .8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, color .2s;
    box-sizing: border-box;
    width: 100%;
}
.docs-btn--primary {
    background: var(--brand);
    color: #fff;
}
.docs-btn--primary:hover { background: #004a64; }
.docs-btn--outline {
    background: #fff;
    color: var(--brand);
    border: 1.5px solid var(--brand);
}
.docs-btn--outline:hover { background: rgba(0,93,125,.06); }
.docs-btn--disabled {
    background: rgba(0,93,125,.08);
    color: rgba(0,93,125,.4);
    cursor: default;
    pointer-events: none;
}
.docs-btn--outline.docs-btn--disabled {
    background: #fff;
    border-color: rgba(0,93,125,.2);
}

@media (max-width: 1000px) { .docs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .docs-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROMO SECTION — strony modeli
   ============================================================ */

.promo-section { padding: 80px 0; border-bottom: 1px solid rgba(0,0,0,.12); }

.promo-section .wrap {
    display: grid;
    grid-template-columns: 280px 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.promo-section .promo-card {
    background: #fbfbfb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.promo-section .promo-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,.14);
    transform: translateY(-2px);
}

.promo-section .promo-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1920/750;
    height: auto;
    overflow: hidden;
    background: #f0f0f0;
}

.promo-section .promo-card__img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.promo-section .promo-card__body { padding: 16px; }

.promo-section .promo-card__title {
    font-size: 1.125rem; font-weight: 700;
    letter-spacing: -.02em; color: #1a1a1a;
    margin-bottom: 8px; line-height: 1.3;
}

.promo-section .promo-card__desc {
    font-size: .875rem; color: rgba(33,33,33,.55);
    line-height: 1.6; margin-bottom: 14px;
}

.promo-section .promo-card__footer { display: flex; justify-content: flex-end; }

/* ── Jedna promocja: zdjęcie na lewej połowie absolutnie ── */
.promo-section .wrap:has(> .promo-card:nth-child(2):last-child) {
    grid-template-columns: 280px 1fr;
}
.promo-section .wrap:has(> .promo-card:nth-child(2):last-child) .promo-card {
    position: relative;
    display: block;
}
.promo-section .wrap:has(> .promo-card:nth-child(2):last-child) .promo-card__img-wrap {
    position: absolute; top: 0; left: 0; right: 50%; bottom: 0;
    width: auto; height: 100%; aspect-ratio: unset;
}
.promo-section .wrap:has(> .promo-card:nth-child(2):last-child) .promo-card__body {
    margin-left: 50%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 28px 32px; min-height: 180px;
}
.promo-section .wrap:has(> .promo-card:nth-child(2):last-child) .promo-card__footer {
    margin-top: auto; justify-content: flex-start;
}

@media (max-width: 900px) {
    .promo-section .wrap { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .promo-section .wrap > *:first-child { grid-column: 1 / -1; }
    .promo-section .wrap:has(> .promo-card:nth-child(2):last-child) { grid-template-columns: 1fr; }
    .promo-section .wrap:has(> .promo-card:nth-child(2):last-child) > *:first-child { grid-column: 1; }
}
@media (max-width: 640px) {
    .promo-section { padding: 48px 0; }
    .promo-section .wrap { grid-template-columns: 1fr; }
    .promo-section .wrap > *:first-child { grid-column: 1; }
    .promo-section .wrap:has(> .promo-card:nth-child(2):last-child) .promo-card__img-wrap {
        position: relative; top: auto; left: auto; right: auto; bottom: auto;
        width: 100%; height: auto; aspect-ratio: 1920/750;
    }
    .promo-section .wrap:has(> .promo-card:nth-child(2):last-child) .promo-card__body {
        margin-left: 0; padding: 20px; min-height: 0;
    }
}

/* ============================================================
   PROMO LANDING — T8 PRO / T9 (leasing)
   1:1 z globals.css multisite
   ============================================================ */

.pleas-top { background: #f4f7f9; }
.pleas-top__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}
.pleas-top__img { position: relative; overflow: hidden; }
.pleas-top__img img { width: 100%; height: auto; display: block; }
.pleas-top__form-col {
    background: #f4f7f9;
    display: flex;
    align-items: flex-start;
    padding: 48px 40px;
}
.pleas-form-card { width: 100%; max-width: 520px; }
.pleas-form-card__eyebrow {
    font-size: .6875rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--brand); margin-bottom: 10px;
}
.pleas-form-card__title {
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 800; letter-spacing: -.03em; color: #111; line-height: 1.2; margin-bottom: 6px;
}
.pleas-form-card__title sup a { font-size: .55em; color: inherit; text-decoration: none; }
.pleas-form-card__sub { font-size: .875rem; color: #555; margin-bottom: 24px; font-weight: 500; }

.pleas-why { background: #fff; border-top: 1px solid #e8e8e8; padding: var(--section-py) 0; }
.pleas-why__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px); }
.pleas-why__eyebrow {
    font-size: .6875rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--brand); margin-bottom: 10px; text-align: center;
}
.pleas-why__title {
    font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; letter-spacing: -.03em;
    color: #111; line-height: 1.2; margin-bottom: 40px; text-align: center;
}
.pleas-why__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pleas-why-card {
    border: 1.5px solid #e8e8e8; border-radius: 16px; padding: 28px 22px;
    background: #fff; display: flex; flex-direction: column; gap: 12px;
    transition: box-shadow .2s, border-color .2s;
}
.pleas-why-card:hover { border-color: rgba(0,93,125,.3); box-shadow: 0 6px 20px rgba(0,93,125,.08); }
.pleas-why-card__icon {
    width: 48px; height: 48px; background: rgba(0,93,125,.08); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pleas-why-card__icon svg { width: 24px; height: 24px; stroke: var(--brand); }
.pleas-why-card__title { font-size: .9375rem; font-weight: 700; color: #111; line-height: 1.3; }
.pleas-why-card__desc { font-size: .8125rem; color: #666; line-height: 1.6; }

.pleas-models { border-top: 1px solid #e8e8e8; background: var(--gray-100); padding: var(--section-py) 0; }
.pleas-models__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px); }
.pleas-models__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pleas-model-card {
    background: #fff; border: 1.5px solid #e8e8e8; border-radius: 20px;
    overflow: hidden; display: flex; flex-direction: column;
}
.pleas-model-card__img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.pleas-model-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pleas-model-card--t8 { border-color: #A0A559; }
.pleas-model-card--t9 { border-color: #9C6E48; }
.pleas-model-card__logo-overlay {
    position: absolute; top: 32px; left: 32px;
    height: 32px !important; width: auto !important;
    object-fit: contain; pointer-events: none; z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.pleas-model-card__body {
    padding: 28px 28px 24px; display: flex; flex-direction: column; flex: 1;
}
.pleas-model-feat-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 7px; }
.pleas-model-feat-list li {
    font-size: .875rem; color: #444; line-height: 1.5; padding-left: 18px; position: relative;
}
.pleas-model-feat-list li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 6px; height: 6px; background: var(--brand); border-radius: 50%;
}
.pleas-model-card--t8 .pleas-model-feat-list li::before { background: #A0A559; }
.pleas-model-card--t9 .pleas-model-feat-list li::before { background: #9C6E48; }
.pleas-model-card__leasing-box {
    background: rgba(0,93,125,.06); border: 1.5px solid rgba(0,93,125,.18);
    border-radius: 14px; padding: 18px 20px; margin-bottom: 20px;
}
.pleas-model-card__rate {
    font-size: clamp(26px, 2.5vw, 36px); font-weight: 900;
    color: var(--brand); letter-spacing: -.03em; margin-bottom: 4px;
}
.pleas-model-card__rate span { font-size: .875rem; font-weight: 500; color: #666; }
.pleas-model-card__params { font-size: .75rem; color: #777; line-height: 1.7; }
.pleas-model-card__btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.pleas-model-card__body--dark { background: #111; }
.pleas-model-card__body--dark .pleas-model-feat-list li { color: rgba(255,255,255,.75); }
.pleas-model-card__body--dark .pleas-model-feat-list li::before { background: rgba(255,255,255,.4); }
.pleas-model-card__leasing-box--dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); }
.pleas-model-card__body--dark .pleas-model-card__rate { color: #fff; }
.pleas-model-card__body--dark .pleas-model-card__rate span { color: rgba(255,255,255,.6); }
.pleas-model-card__body--dark .pleas-model-card__params { color: rgba(255,255,255,.5); }

.btn--t8 { background: #A0A559 !important; border-color: #A0A559 !important; color: #fff !important; }
.btn--t8:hover { background: #8f9449 !important; }
.btn--t9 { background: #9C6E48 !important; border-color: #9C6E48 !important; color: #fff !important; }
.btn--t9:hover { background: #8a5f3c !important; }
.btn--outline-light { border-color: rgba(255,255,255,.35) !important; color: #fff !important; background: transparent !important; }
.btn--outline-light:hover { border-color: #fff !important; background: rgba(255,255,255,.08) !important; }

.pleas-benefits { background: #111; padding: var(--section-py) 0; }
.pleas-benefits__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px); }
.pleas-benefits__title {
    font-size: clamp(20px, 2vw, 28px); font-weight: 800; color: #fff;
    letter-spacing: -.03em; text-align: center; margin-bottom: 36px;
}
.pleas-benefits__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pleas-benefit-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.pleas-benefit-item__icon {
    width: 56px; height: 56px; background: rgba(255,255,255,.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.pleas-benefit-item__icon svg { width: 26px; height: 26px; stroke: #fff; }
.pleas-benefit-item__label { font-size: .875rem; font-weight: 700; color: #fff; line-height: 1.35; }

.pleas-calc { background: #fff; border-top: 1px solid #e8e8e8; padding: var(--section-py) 0; }
.pleas-calc__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px); }
.pleas-calc__eyebrow {
    font-size: .6875rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--brand); margin-bottom: 10px; text-align: center;
}
.pleas-calc__title {
    font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; letter-spacing: -.03em;
    color: #111; text-align: center; margin-bottom: 40px;
}
.pleas-calc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pleas-calc-card { border: 1.5px solid #e8e8e8; border-radius: 20px; overflow: hidden; }
.pleas-calc-card__head {
    background: var(--brand); padding: 18px 24px; display: flex; align-items: center;
}
.pleas-calc-card--t8 .pleas-calc-card__head { background: #A0A559; }
.pleas-calc-card--t9 .pleas-calc-card__head { background: #9C6E48; }
.pleas-calc-card__logo { height: 28px; width: auto; object-fit: contain; display: block; }
.pleas-calc-card__body { padding: 24px; }
.pleas-calc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid #e8e8e8; font-size: .875rem;
}
.pleas-calc-row:last-child { border-bottom: none; }
.pleas-calc-row__label { color: #666; font-weight: 500; }
.pleas-calc-row__val { color: #111; font-weight: 700; }
.pleas-calc-row--rate .pleas-calc-row__val {
    font-size: 1.75rem; font-weight: 900; color: #c0392b; letter-spacing: -.03em;
}

.pleas-contact { padding: var(--section-py) 0; background: var(--gray-100); border-top: 1px solid #e8e8e8; }
.pleas-contact__head { margin-bottom: 32px; }
.pleas-contact__title {
    font-size: clamp(22px, 2.8vw, 36px); font-weight: 900; letter-spacing: -.03em;
    color: #111; text-transform: uppercase; line-height: 1.1; margin-bottom: 4px;
}
.pleas-contact__sub { font-size: .9375rem; color: #666; }

.pleas-disclaimer { background: #fff; border-top: 1px solid #e8e8e8; padding: 24px 0; }
.pleas-disclaimer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px); }
.pleas-disclaimer p { font-size: .6875rem; color: #999; line-height: 1.7; margin-bottom: 8px; }
.pleas-disclaimer p:last-child { margin-bottom: 0; }
.fn-link { color: inherit; text-decoration: none; }
.fn-link:hover { opacity: .7; }

@media (max-width: 1100px) {
    .pleas-why__cards { grid-template-columns: repeat(2, 1fr); }
    .pleas-benefits__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
    .pleas-top__grid { grid-template-columns: 1fr; }
    .pleas-top__form-col { padding: 36px 24px; }
    .pleas-models__grid { grid-template-columns: 1fr; }
    .pleas-calc__grid { grid-template-columns: 1fr; }
    .pleas-calc-row--rate { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (max-width: 640px) {
    .pleas-top__form-col { padding: 28px 20px; }
    .pleas-why__cards { grid-template-columns: 1fr; }
    .pleas-benefits__row { grid-template-columns: 1fr 1fr; }
    .pleas-model-card__btns { flex-direction: column; }
}
