/* ============================================================
 * neXante - nowa identyfikacja wizualna
 * Header (top-bar + logo centrum + menu L/R) + Hero
 * ============================================================ */

/* Reset marginesów body - nadpisuje user-agent i ewentualne wtyczki.
   html bez !important, żeby nie łamać WP admin bar (margin-top: 32px) */
html { margin: 0; }
body { margin: 0 !important; overflow-x: hidden; }

:root {
    --nex-navy: #27348B;
    --nex-navy-dark: #1a2470;
    --nex-navy-light: #3a4aad;
    --nex-gold: #c9a84c;
    --nex-gold-light: #ddc06a;
    --nex-text: #2c2c3a;
    --nex-muted: #6b6b7b;
    --nex-bg: #ffffff;
    --nex-border: rgba(39, 52, 139, 0.1);
    --nex-max-width: 1400px;
    --nex-topbar-height: 42px;
    --nex-nav-height: 96px;
    --nex-nav-height-scrolled: 72px;
}

/* ============================================================
 * HEADER - kontener główny
 * ============================================================ */
.nexante-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.32);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

.nexante-header.is-scrolled {
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 4px 24px rgba(39, 52, 139, 0.12);
    border-bottom-color: var(--nex-border);
}

/* ============================================================
 * WARIANT LIGHT - biały tekst, ciemne przezroczyste tło
 * Pasuje nad hero z ciemnym obrazem
 * ============================================================ */
.nexante-header--light {
    background: rgba(10, 19, 64, 0.32);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nexante-header--light.is-scrolled {
    background: rgba(10, 19, 64, 0.85);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Menu links - biały */
.nexante-header--light .nexante-menu__link {
    color: rgba(255, 255, 255, 0.92);
}
.nexante-header--light .nexante-menu__link:hover,
.nexante-header--light .nexante-menu__link--active {
    color: #fff;
}
.nexante-header--light .nexante-menu__link::after {
    background: var(--nex-gold);
}

/* Burger - biały */
.nexante-header--light .nexante-burger span {
    background: #fff;
}

/* Mobile menu - ciemny panel */
.nexante-header--light .nexante-mobile-menu {
    background: rgba(10, 19, 64, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.nexante-header--light .nexante-mobile-menu .nexante-menu__item {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nexante-header--light .nexante-mobile-menu .nexante-menu__link {
    color: rgba(255, 255, 255, 0.92);
}
.nexante-header--light .nexante-mobile-menu__contact a {
    color: #fff;
}

/* ============================================================
 * WARIANT BG-BLUR - bez kryjącego tła, tylko rozmycie + linie
 * (jak na referencyjnym zrzucie: cienkie linie oddzielają topbar)
 * ============================================================ */
.nexante-header--bg-blur {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dark text + blur bg = jasny, bardzo subtelny wash */
.nexante-header--dark.nexante-header--bg-blur {
    border-bottom-color: rgba(39, 52, 139, 0.15);
}

/* Topbar w wariancie blur - bez tła, tylko linie góra/dół */
.nexante-header--bg-blur .nexante-topbar {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nexante-header--dark.nexante-header--bg-blur .nexante-topbar {
    border-top-color: rgba(39, 52, 139, 0.15);
    border-bottom-color: rgba(39, 52, 139, 0.15);
    color: var(--nex-navy-dark);
}

.nexante-header--dark.nexante-header--bg-blur .nexante-topbar__item {
    color: var(--nex-navy-dark);
}

.nexante-header--dark.nexante-header--bg-blur .nexante-topbar__item:hover {
    color: var(--nex-navy);
}

.nexante-header--dark.nexante-header--bg-blur .nexante-social {
    color: var(--nex-navy-dark);
}

.nexante-header--dark.nexante-header--bg-blur .nexante-social:hover {
    color: var(--nex-navy);
    background: rgba(201, 168, 76, 0.2);
}

/* Nav pozostaje transparentny - wystarczy dziedziczyć */
.nexante-header--bg-blur .nexante-nav {
    background: transparent;
}

/* Przy scrollu - lekko kryjące tło żeby menu było czytelne nad jasnymi sekcjami */
.nexante-header--bg-blur.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nexante-header--light.nexante-header--bg-blur.is-scrolled {
    background: rgba(10, 19, 64, 0.7);
}

.nexante-header--dark.nexante-header--bg-blur.is-scrolled {
    background: rgba(255, 255, 255, 0.7);
}

.nexante-header.is-scrolled .nexante-topbar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

/* ============================================================
 * TOP BAR (phone/email | social)
 * ============================================================ */
.nexante-topbar {
    background: rgba(39, 52, 139, 0.92);
    color: #fff;
    font-size: 13px;
    max-height: var(--nex-topbar-height);
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.nexante-topbar__inner {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: var(--nex-topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nexante-topbar__left,
.nexante-topbar__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nexante-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
}

.nexante-topbar__item:hover {
    color: var(--nex-gold-light);
}

.nexante-topbar__item svg {
    opacity: 0.8;
}

.nexante-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.85);
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.nexante-social:hover {
    color: var(--nex-navy);
    background: var(--nex-gold-light);
    transform: translateY(-1px);
}

/* ============================================================
 * MAIN NAV (logo center, menu L/R)
 * ============================================================ */
.nexante-nav {
    background: transparent;
}

.nexante-nav__inner {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: var(--nex-nav-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    transition: height 0.3s ease;
}

.nexante-header.is-scrolled .nexante-nav__inner {
    height: var(--nex-nav-height-scrolled);
}

/* Logo */
.nexante-nav__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nexante-nav__logo svg,
.nexante-nav__logo-img {
    height: 54px;
    width: auto;
    max-width: 320px;
    display: block;
    transition: height 0.3s ease;
}

.nexante-header.is-scrolled .nexante-nav__logo svg,
.nexante-header.is-scrolled .nexante-nav__logo-img {
    height: 42px;
}

/* Menu L/R */
.nexante-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nexante-menu--left {
    justify-content: flex-end;
}

.nexante-menu--right {
    justify-content: flex-start;
}

.nexante-menu__item {
    position: relative;
}

.nexante-menu__link {
    display: inline-block;
    padding: 10px 18px;
    color: var(--nex-navy-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.25s ease;
}

.nexante-menu__link::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 4px;
    height: 2px;
    background: var(--nex-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexante-menu__link:hover,
.nexante-menu__link--active {
    color: var(--nex-navy);
}

.nexante-menu__link:hover::after,
.nexante-menu__link--active::after {
    transform: scaleX(1);
}

/* ============================================================
 * BURGER (mobile)
 * ============================================================ */
.nexante-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nexante-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--nex-navy-dark);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

/* ============================================================
 * MOBILE MENU
 * ============================================================ */
.nexante-mobile-menu {
    position: fixed;
    top: var(--nex-nav-height);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: calc(100vh - var(--nex-nav-height));
    overflow-x: hidden;
    overflow-y: auto;
    padding: 24px 0;
}

.nexante-mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
}

.nexante-mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nexante-mobile-menu__list .nexante-menu__item {
    border-bottom: 1px solid var(--nex-border);
}

.nexante-mobile-menu__list .nexante-menu__link {
    display: block;
    padding: 16px 20px;
    font-size: 17px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.nexante-mobile-menu__contact {
    padding: 24px 20px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.nexante-mobile-menu__contact a {
    color: var(--nex-navy);
    text-decoration: none;
    font-weight: 500;
}

/* ============================================================
 * ODSTĘP POD FIXED HEADEREM
 * ============================================================ */
body.nexante-body {
    padding-top: calc(var(--nex-topbar-height) + var(--nex-nav-height));
}

/* Strony z blokiem hero - hero ma własny margin-top, body bez paddingu */
body.nexante-has-hero {
    padding-top: 0;
}

/* ============================================================
 * HERO BLOCK
 * ============================================================ */
.nexante-hero {
    position: relative;
    min-height: 760px;
    background-color: var(--nex-navy-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* hero zaczyna się od góry, header leży na nim z backdrop-blur */
    margin-top: 0;
    padding: calc(var(--nex-topbar-height) + var(--nex-nav-height) + 60px) 0 80px;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

.nexante-hero * {
    font-family: inherit;
}

.nexante-hero::before {
    /* radial accent z prawej */
    content: '';
    position: absolute;
    right: -10%;
    top: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.nexante-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
                rgba(10, 19, 64, 0.85) 0%,
                rgba(10, 19, 64, 0.55) 55%,
                rgba(10, 19, 64, 0.25) 100%);
    pointer-events: none;
}

.nexante-hero__inner {
    position: relative;
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    z-index: 1;
}

.nexante-hero__content {
    max-width: 680px;
    animation: nexHeroFade 1s ease-out both;
}

@keyframes nexHeroFade {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nexante-hero__overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--nex-gold);
    margin-bottom: 24px;
    padding-left: 52px;
    position: relative;
}

.nexante-hero__overline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--nex-gold);
}

.nexante-hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #fff;
    letter-spacing: -0.01em;
}

.nexante-hero__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 36px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
}

.nexante-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--nex-gold);
    color: var(--nex-navy-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nexante-hero__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.nexante-hero__cta:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.nexante-hero__cta:hover {
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.nexante-hero__cta svg {
    transition: transform 0.3s ease;
}

.nexante-hero__cta:hover svg {
    transform: translateX(4px);
}

/* ============================================================
 * CTA - wariant BLUE (nawiązuje do koloru logo)
 * Nadpisuje bazowy gold styl
 * ============================================================ */
.nexante-hero__cta--blue {
    background: #3b4eff;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 14px;
    padding: 17px 34px;
}

/* Fill przy hover - ciemniejszy niebieski zamiast białego */
.nexante-hero__cta--blue::before {
    background: linear-gradient(90deg, #2f3fd6 0%, #3b4eff 100%);
}

.nexante-hero__cta--blue:hover {
    box-shadow:
        0 10px 30px rgba(59, 78, 255, 0.45),
        0 0 0 1px rgba(59, 78, 255, 0.25),
        0 0 60px rgba(59, 78, 255, 0.25);
    transform: translateY(-2px);
}

/* Tekst zostaje biały przy hover (nie zmienia koloru) */
.nexante-hero__cta--blue:hover {
    color: #fff;
}

/* Explicit modyfier dla gold - na wypadek gdyby ktoś chciał pisać klasy jawnie */
.nexante-hero__cta--gold {
    background: var(--nex-gold);
    color: var(--nex-navy-dark);
}

/* ============================================================
 * HERO STATS (bloki w prawym dolnym rogu)
 * Design: czysty, minimalistyczny, biały tekst, subtelne tło
 * Stats są bezpośrednio w .nexante-hero (nie w __inner) - dzięki
 * czemu right:32px liczy się od prawej krawędzi całego hero.
 * ============================================================ */
.nexante-hero__stats {
    position: absolute;
    right: clamp(20px, 4vw, 60px);
    bottom: clamp(24px, 5vh, 60px);
    display: flex;
    gap: 14px;
    z-index: 2;
    justify-content: flex-end;
    max-width: calc(100% - 40px);
    flex-wrap: wrap;
}

.nexante-hero__stat {
    position: relative;
    width: 155px;
    min-height: 160px;
    padding: 32px 22px;
    background: linear-gradient(180deg, rgba(28, 40, 100, 0.45) 0%, rgba(28, 40, 100, 0) 100%);
    border: 0;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    /*box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);*/
    /* backdrop-filter przeniesiony na ::before żeby też fade-ował gradientem */
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* Animacja wejścia - start */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    transition-delay: var(--nex-stat-delay, 0s);
}

/* Po wejściu w viewport */
.nexante-hero__stats.is-visible .nexante-hero__stat {
    opacity: 1;
    transform: translateY(0);
}

/* Backdrop blur z gradient mask - blur zanika wraz z tłem */
.nexante-hero__stat::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
    /* Maska: blur pełny u góry, przezroczysty u dołu */
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    pointer-events: none;
}

/* Hover - mocniejszy gradient */
.nexante-hero__stat:hover {
    background: linear-gradient(180deg, rgba(28, 40, 100, 0.9) 0%, rgba(28, 40, 100, 0.05) 100%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    transform: translateY(-3px);
}

/* Tytuł - Montserrat, większy, medium weight, eleganckie proporcje */
.nexante-hero__stat-title {
    font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, sans-serif;
    font-size: clamp(2.4rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;

    /* Subtelny shine przy pojawieniu się - tylko biały */
    background: linear-gradient(90deg, #fff 0%, #fff 45%, rgba(255, 255, 255, 0.55) 50%, #fff 55%, #fff 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1.4s ease;
    transition-delay: calc(var(--nex-stat-delay, 0s) + 0.3s);
}

.nexante-hero__stats.is-visible .nexante-hero__stat-title {
    background-position: -100% 0;
}

.nexante-hero__stat-desc {
    margin-top: 18px;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0;
    text-transform: none;
}

/* ============================================================
 * RESPONSIVE
 * ============================================================ */
@media (max-width: 1024px) {
    :root {
        --nex-nav-height: 80px;
        --nex-nav-height-scrolled: 64px;
    }
    .nexante-topbar {
        font-size: 12px;
    }
    .nexante-topbar__inner {
        padding: 0 20px;
    }
    .nexante-menu__link {
        padding: 10px 12px;
        font-size: 14px;
    }
    .nexante-nav__logo svg { height: 46px; }
}

@media (max-width: 860px) {
    .nexante-topbar {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }
    body.nexante-body {
        padding-top: var(--nex-nav-height);
    }
    .nexante-nav__inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .nexante-menu--left,
    .nexante-menu--right {
        display: none;
    }
    .nexante-nav__logo {
        grid-column: 1;
    }
    .nexante-burger {
        display: flex;
    }
    .nexante-hero {
        min-height: 580px;
        padding: calc(var(--nex-nav-height) + 40px) 0 60px;
    }
    .nexante-hero__overlay {
        background: linear-gradient(180deg,
                    rgba(10, 19, 64, 0.75) 0%,
                    rgba(10, 19, 64, 0.55) 100%);
    }
    /* Na tabletach/małych laptopach stats nadal w prawym dolnym rogu, tylko kompaktowe */
    .nexante-hero__stats {
        right: 20px;
        bottom: 32px;
        gap: 8px;
    }
    .nexante-hero__stat {
        min-width: 130px;
        padding: 22px 18px 18px;
    }
    .nexante-hero__stat-title {
        font-size: clamp(1.6rem, 2.5vw, 2rem);
    }
    .nexante-hero__stat-desc {
        font-size: 12px;
        margin-top: 10px;
    }
}

/* Dopiero na prawdziwym mobile (poniżej 640px) stats są ukryte, hero kwadratowe 4/5 */
@media (max-width: 640px) {
    .nexante-hero {
        flex-direction: column;
        justify-content: flex-end;
        aspect-ratio: auto;
        height: 270px !important;
        min-height: 270px !important;
        padding: calc(var(--nex-nav-height) + 8px) 0 14px;
        background-position: right center;
        overflow: hidden;
    }
    .nexante-hero__content {
        margin-top: auto;
    }
    .nexante-hero__overline {
        font-size: 10px;
        margin-bottom: 12px;
        padding-left: 32px;
    }
    .nexante-hero__overline::before { width: 22px; }
    .nexante-hero__title {
        font-size: clamp(1.1rem, 4.5vw, 1.6rem);
        margin: 0 0 10px;
        word-wrap: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
    }
    .nexante-hero__subtitle {
        font-size: 13px;
        line-height: 1.45;
        margin: 0 0 16px;
    }
    .nexante-hero__cta {
        padding: 10px 18px;
        font-size: 12px;
    }
    .nexante-hero__inner {
        flex: 0 0 auto;
    }
    .nexante-hero__stats {
        display: none;
    }
}

@media (max-width: 420px) {
    .nexante-hero__stat {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .nexante-nav__inner { padding: 0 20px; }
    .nexante-hero__inner { padding: 0 20px; }
    .nexante-hero { min-height: 480px; }
    .nexante-hero__overline {
        font-size: 11px;
        padding-left: 32px;
    }
    .nexante-hero__overline::before { width: 24px; }
    .nexante-hero__cta {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ============================================================
 * GRID REFERENCJI (nexante/references-list-block)
 * Dedykowana podstrona z wszystkimi referencjami
 * ============================================================ */
.nexante-references-list {
    padding: 100px 0 110px;
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1fa 100%);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-references-list.is-visible { opacity: 1; transform: translateY(0); }
.nexante-references-list__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-references-list__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.nexante-references-list__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 18px;
}
.nexante-references-list__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--nex-muted);
    margin: 0;
}
.nexante-references-list__grid {
    display: grid;
    gap: 24px;
}
.nexante-references-list--cols-1 .nexante-references-list__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.nexante-references-list--cols-2 .nexante-references-list__grid { grid-template-columns: repeat(2, 1fr); }
.nexante-references-list--cols-3 .nexante-references-list__grid { grid-template-columns: repeat(3, 1fr); }
.nexante-references-list--cols-4 .nexante-references-list__grid { grid-template-columns: repeat(4, 1fr); }
.nexante-references-list__card {
    display: flex;
    flex-direction: column;
    padding: 30px 28px;
    background: #fff;
    border: 1px solid rgba(39, 52, 139, 0.05);
    border-radius: 8px;
    color: var(--nex-text);
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(39, 52, 139, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.nexante-references-list__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b4eff, var(--nex-gold));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
}
.nexante-references-list__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(39, 52, 139, 0.14);
    border-color: rgba(59, 78, 255, 0.12);
}
.nexante-references-list__card:hover::before { transform: scaleX(1); }
.nexante-references-list__quote-icon {
    color: rgba(59, 78, 255, 0.18);
    margin-bottom: 14px;
}
.nexante-references-list__quote {
    flex: 1;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    font-style: italic;
    margin: 0 0 22px;
}
.nexante-references-list__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(39, 52, 139, 0.06);
}
.nexante-references-list__logo {
    max-width: 90px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.nexante-references-list__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}
.nexante-references-list__author-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nexante-references-list__author-name {
    font-size: 14px;
    color: var(--nex-navy-dark);
    font-weight: 700;
}
.nexante-references-list__author-role {
    font-size: 12px;
    color: var(--nex-muted);
}
.nexante-references-list__arrow {
    flex-shrink: 0;
    color: rgba(59, 78, 255, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}
.nexante-references-list__card:hover .nexante-references-list__arrow {
    transform: translateX(4px);
    color: #3b4eff;
}
.nexante-references-list__pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.nexante-references-list__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    color: var(--nex-navy);
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
    background: #fff;
    border: 1px solid rgba(39, 52, 139, 0.1);
}
.nexante-references-list__pagination .page-numbers:hover {
    background: var(--nex-navy);
    color: #fff;
    border-color: var(--nex-navy);
}
.nexante-references-list__pagination .page-numbers.current {
    background: var(--nex-navy);
    color: #fff;
    border-color: var(--nex-navy);
}
.nexante-references-list__pagination .page-numbers.dots {
    background: transparent;
    border: 0;
}
@media (max-width: 960px) {
    .nexante-references-list { padding: 72px 0 80px; }
    .nexante-references-list__header { margin-bottom: 44px; }
    .nexante-references-list--cols-3 .nexante-references-list__grid,
    .nexante-references-list--cols-4 .nexante-references-list__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .nexante-references-list { padding: 56px 0 72px; }
    .nexante-references-list__container { padding: 0 20px; }
    .nexante-references-list--cols-2 .nexante-references-list__grid,
    .nexante-references-list--cols-3 .nexante-references-list__grid,
    .nexante-references-list--cols-4 .nexante-references-list__grid {
        grid-template-columns: 1fr;
    }
    .nexante-references-list__card { padding: 26px 22px; }
}


/* ============================================================
 * SEKCJA KARIERA - intro (nexante/career-intro-block)
 * ============================================================ */
.nexante-career-intro {
    position: relative;
    padding: 100px 0 110px;
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1fa 100%);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-career-intro.is-visible { opacity: 1; transform: translateY(0); }
.nexante-career-intro__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-career-intro--split .nexante-career-intro__container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
}
.nexante-career-intro--centered .nexante-career-intro__container {
    max-width: 820px;
    text-align: center;
}
.nexante-career-intro__accent {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--nex-gold);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.nexante-career-intro__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin: 0 0 30px;
}
.nexante-career-intro__body {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 28px;
}
.nexante-career-intro__body p { margin: 0 0 16px; }
.nexante-career-intro__body p:last-child { margin-bottom: 0; }
.nexante-career-intro__email-line {
    font-size: 15px;
    color: #555;
    margin: 0 0 28px;
}
.nexante-career-intro__email-line a {
    color: var(--nex-navy);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(39, 52, 139, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.2s ease;
}
.nexante-career-intro__email-line a:hover { border-bottom-color: var(--nex-navy); }
.nexante-career-intro__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.nexante-career-intro--centered .nexante-career-intro__actions { justify-content: center; }
.nexante-career-intro__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 30px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 1;
}
.nexante-career-intro__cta--primary {
    background: #3b4eff;
    color: #fff;
}
.nexante-career-intro__cta--primary:hover {
    background: #2f3fd9;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(59, 78, 255, 0.35);
}
.nexante-career-intro__cta--secondary {
    background: transparent;
    color: var(--nex-navy-dark);
    border: 2px solid var(--nex-navy-dark);
    padding: 15px 28px;
}
.nexante-career-intro__cta--secondary:hover {
    background: var(--nex-navy-dark);
    color: #fff;
    transform: translateY(-2px);
}
.nexante-career-intro__cta svg { transition: transform 0.3s ease; }
.nexante-career-intro__cta:hover svg { transform: translateX(4px); }
.nexante-career-intro__visual {
    aspect-ratio: 4/5;
    border-radius: 4px;
    background: linear-gradient(135deg, #1a2470 0%, #3b4eff 100%);
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(39, 52, 139, 0.2);
}
@media (max-width: 960px) {
    .nexante-career-intro { padding: 72px 0 80px; }
    .nexante-career-intro--split .nexante-career-intro__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nexante-career-intro__visual {
        aspect-ratio: 1 / 1.5;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
@media (max-width: 560px) {
    .nexante-career-intro { padding: 56px 0 64px; }
    .nexante-career-intro__container { padding: 0 20px; }
    .nexante-career-intro__cta { padding: 15px 24px; font-size: 13px; }
}

/* ============================================================
 * LISTA OFERT PRACY (nexante/job-offers-block)
 * ============================================================ */
.nexante-job-offers {
    padding: 100px 0 110px;
    background: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-job-offers.is-visible { opacity: 1; transform: translateY(0); }
.nexante-job-offers__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-job-offers__header { margin-bottom: 50px; }
.nexante-job-offers__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}
.nexante-job-offers__subtitle {
    font-size: 16px;
    color: var(--nex-muted);
    margin: 0;
}
.nexante-job-offers__empty {
    padding: 50px 32px;
    text-align: center;
    background: #f9fafc;
    border: 1px dashed rgba(39, 52, 139, 0.15);
    border-radius: 6px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}
.nexante-job-offers__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.nexante-job-offer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 32px;
    background: #fff;
    border: 1px solid rgba(39, 52, 139, 0.08);
    border-left: 3px solid #3b4eff;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.nexante-job-offer-card:hover {
    border-color: #3b4eff;
    border-left-width: 5px;
    transform: translateX(3px);
    box-shadow: 0 12px 32px rgba(39, 52, 139, 0.12);
}
.nexante-job-offer-card__main { flex: 1; min-width: 0; }
.nexante-job-offer-card__dept {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3b4eff;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.nexante-job-offer-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}
.nexante-job-offer-card__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 14px;
    max-width: 620px;
}
.nexante-job-offer-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nexante-job-offer-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--nex-muted);
}
.nexante-job-offer-card__meta svg {
    color: var(--nex-navy-light);
    flex-shrink: 0;
}
.nexante-job-offer-card__meta .nexante-job-offer-card__salary {
    color: var(--nex-navy-dark);
    font-weight: 600;
}
.nexante-job-offer-card__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #3b4eff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid #3b4eff;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.nexante-job-offer-card:hover .nexante-job-offer-card__cta { background: #3b4eff; color: #fff; }
.nexante-job-offer-card:hover .nexante-job-offer-card__cta svg { transform: translateX(3px); }
.nexante-job-offer-card__cta svg { transition: transform 0.3s ease; }
@media (max-width: 760px) {
    .nexante-job-offers { padding: 72px 0 80px; }
    .nexante-job-offers__container { padding: 0 20px; }
    .nexante-job-offer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 22px;
    }
    .nexante-job-offer-card__cta { align-self: stretch; justify-content: center; }
    .nexante-job-offer-card__meta { gap: 14px; }
}

/* ============================================================
 * WIDOK POJEDYNCZEJ OFERTY PRACY (single-nexante_job_offer.php)
 * ============================================================ */
.nexante-job-single {
    padding: 60px 0 100px;
    background: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    min-height: 60vh;
}
.nexante-job-single__container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-job-single__header {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(39, 52, 139, 0.1);
}
.nexante-job-single__dept {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #3b4eff;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 5px 12px;
    background: rgba(59, 78, 255, 0.08);
    border-radius: 3px;
}
.nexante-job-single__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin: 0 0 24px;
}
.nexante-job-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}
.nexante-job-single__meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--nex-muted);
}
.nexante-job-single__meta strong { color: var(--nex-navy-dark); font-weight: 600; }
.nexante-job-single__meta svg { color: #3b4eff; flex-shrink: 0; }
.nexante-job-single__meta-salary { color: var(--nex-navy-dark) !important; }
.nexante-job-single__meta-expired strong { color: #d63638; text-decoration: line-through; }
.nexante-job-single__cta-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.nexante-job-single__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #3b4eff;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 1;
}
.nexante-job-single__cta:hover {
    background: #2f3fd9;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(59, 78, 255, 0.35);
}
.nexante-job-single__cta svg { transition: transform 0.3s ease; }
.nexante-job-single__cta:hover svg { transform: translateX(4px); }
.nexante-job-single__back {
    color: var(--nex-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}
.nexante-job-single__back:hover { color: var(--nex-navy); }
.nexante-job-single__content {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}
.nexante-job-single__content h2,
.nexante-job-single__content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--nex-navy-dark);
    margin: 32px 0 14px;
    line-height: 1.25;
}
.nexante-job-single__content h2 { font-size: 24px; }
.nexante-job-single__content h3 { font-size: 20px; }
.nexante-job-single__content ul,
.nexante-job-single__content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}
.nexante-job-single__content ul li,
.nexante-job-single__content ol li { margin-bottom: 8px; }
.nexante-job-single__content ul li::marker { color: #3b4eff; }
.nexante-job-single__content p { margin: 0 0 18px; }
.nexante-job-single__content strong { color: var(--nex-navy-dark); }
.nexante-job-single__footer-cta {
    margin-top: 60px;
    padding: 40px 32px;
    background: linear-gradient(135deg, #f6f7fb 0%, #eef1fa 100%);
    border-radius: 6px;
    text-align: center;
}
.nexante-job-single__footer-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--nex-navy-dark);
    margin: 0 0 8px;
}
.nexante-job-single__footer-cta p {
    font-size: 15px;
    color: var(--nex-muted);
    margin: 0 0 22px;
}
.nexante-job-single__cta--footer { display: inline-flex; }
@media (max-width: 560px) {
    .nexante-job-single { padding: 44px 0 72px; }
    .nexante-job-single__container { padding: 0 20px; }
    .nexante-job-single__cta-wrap { flex-direction: column; align-items: stretch; }
    .nexante-job-single__cta { justify-content: center; }
    .nexante-job-single__footer-cta { padding: 30px 22px; }
}


/* ============================================================
 * LISTA USŁUG (nexante/services-list-block)
 * ============================================================ */
.nexante-services {
    padding: 100px 0 110px;
    background: linear-gradient(180deg, #161b2c 0%, #0e121f 100%);
    color: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    overflow: hidden;
}
.nexante-services.is-visible { opacity: 1; transform: translateY(0); }
.nexante-services__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-services__header {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
}
.nexante-services__accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}
.nexante-services__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0;
}
.nexante-services__intro {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 22px;
    max-width: 460px;
}
.nexante-services__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    background-color: #fff;
    color: var(--nex-navy-dark);
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nexante-services__cta:hover {
    background: var(--nex-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.3);
}
.nexante-services__cta svg { transition: transform 0.3s ease; }
.nexante-services__cta:hover svg { transform: translateX(3px); }
/* Lista usług - grid 2 w rzędzie */
.nexante-services__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Karta usługi - kompaktowa, pionowa (link z całą kartą) */
.nexante-services__item {
    display: flex;
    flex-direction: column;
    padding: 36px 36px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.nexante-services__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 78, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Górny rząd: ikona + numer */
.nexante-services__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.nexante-services__item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--nex-gold);
    transition: background 0.35s ease, transform 0.35s ease;
}
.nexante-services__item-icon svg {
    width: 30px;
    height: 30px;
}
.nexante-services__item:hover .nexante-services__item-icon {
    background: var(--nex-gold);
    color: var(--nex-navy-dark);
    transform: scale(1.05);
}

.nexante-services__item-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--nex-gold);
    letter-spacing: 0.02em;
}

.nexante-services__item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    font-weight: 700;
    color: inherit;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    line-height: 1.25;
}

.nexante-services__item-intro {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 22px;
    opacity: 0.82;
}

.nexante-services__item-features {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.nexante-services__item-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.nexante-services__item-features svg {
    color: #3b4eff;
    flex-shrink: 0;
    margin-top: 3px;
    padding: 2px;
    background: rgba(59, 78, 255, 0.12);
    border-radius: 3px;
    box-sizing: content-box;
}

/* CTA - dosunięty do dołu karty (równa wysokość kart) */
.nexante-services__item-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #0e121f;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    align-self: flex-start;
    white-space: nowrap;
    margin-top: auto;
}

.nexante-services__item:hover .nexante-services__item-cta {
    background: #3b4eff;
    transform: translateX(2px);
}

.nexante-services__item-cta svg {
    transition: transform 0.3s ease;
}

.nexante-services__item:hover .nexante-services__item-cta svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 960px) {
    .nexante-services { padding: 72px 0 80px; }
    .nexante-services__header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .nexante-services__item { padding: 30px 28px 28px; }
}

@media (max-width: 680px) {
    .nexante-services__list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .nexante-services { padding: 60px 0 72px; }
    .nexante-services__container { padding: 0 20px; }
    .nexante-services__item { padding: 26px 22px 26px; }
    .nexante-services__item-cta { align-self: stretch; justify-content: center; }
}

/* ============================================================
 * WIDOK POJEDYNCZEJ USŁUGI (single-nexante_service.php)
 * ============================================================ */
.nexante-service-single {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: #fff;
}
.nexante-service-single__hero {
    position: relative;
    background-color: var(--nex-navy-dark);
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
}
.nexante-service-single__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.7) 50%, rgba(10,15,30,0.4) 100%);
    pointer-events: none;
}
.nexante-service-single__hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 90px 32px 80px;
}
.nexante-service-single__hero-content { max-width: 720px; }
.nexante-service-single__hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--nex-gold);
    margin-bottom: 18px;
}
.nexante-service-single__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0 0 20px;
}
.nexante-service-single__subtitle {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 620px;
}
.nexante-service-single__body { padding: 80px 0 100px; }
.nexante-service-single__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-service-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 60px;
    align-items: start;
}
.nexante-service-single__content {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}
.nexante-service-single__content h2,
.nexante-service-single__content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--nex-navy-dark);
    line-height: 1.25;
    margin: 34px 0 14px;
}
.nexante-service-single__content h2 { font-size: 28px; }
.nexante-service-single__content h3 { font-size: 22px; }
.nexante-service-single__content p { margin: 0 0 16px; }
.nexante-service-single__content ul,
.nexante-service-single__content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}
.nexante-service-single__content ul li,
.nexante-service-single__content ol li { margin-bottom: 8px; }
.nexante-service-single__content ul li::marker { color: #3b4eff; }
.nexante-service-single__sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.nexante-service-single__features,
.nexante-service-single__cta-box {
    background: #f6f7fb;
    border-radius: 6px;
    padding: 28px;
    border: 1px solid rgba(39, 52, 139, 0.08);
}
.nexante-service-single__cta-box {
    background: linear-gradient(135deg, #1a2470 0%, #27348B 100%);
    color: #fff;
    border: 0;
}
.nexante-service-single__features h3,
.nexante-service-single__cta-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.25;
}
.nexante-service-single__features h3 { color: var(--nex-navy-dark); }
.nexante-service-single__cta-box h3  { color: #fff; }
.nexante-service-single__features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nexante-service-single__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--nex-text);
}
.nexante-service-single__features svg {
    color: #3b4eff;
    flex-shrink: 0;
    margin-top: 3px;
}
.nexante-service-single__cta-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin: 0 0 18px;
}
.nexante-service-single__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--nex-gold);
    color: var(--nex-navy-dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
}
.nexante-service-single__cta-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}
.nexante-service-single__cta-btn svg { transition: transform 0.3s ease; }
.nexante-service-single__cta-btn:hover svg { transform: translateX(3px); }
.nexante-service-single__team {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(39, 52, 139, 0.1);
}
.nexante-service-single__team-header {
    text-align: center;
    margin-bottom: 40px;
}
.nexante-service-single__team-accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.nexante-service-single__team-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.2;
    margin: 0 0 10px;
}
.nexante-service-single__team-header p {
    font-size: 15px;
    color: var(--nex-muted);
    margin: 0;
}
.nexante-service-single__team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.nexante-service-single__team-card {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    background: #e5e7ef;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.nexante-service-single__team-card:hover { transform: translateY(-4px); }
.nexante-service-single__team-photo { position: absolute; inset: 0; }
.nexante-service-single__team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.nexante-service-single__team-card:hover .nexante-service-single__team-photo img { transform: scale(1.04); }
.nexante-service-single__team-info {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.nexante-service-single__team-info strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    color: var(--nex-navy-dark);
    margin-bottom: 2px;
    line-height: 1.2;
}
.nexante-service-single__team-info span {
    display: block;
    font-size: 12px;
    color: var(--nex-muted);
}
.nexante-service-single__others {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(39, 52, 139, 0.1);
}
.nexante-service-single__others h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    text-align: center;
    margin: 0 0 36px;
}
.nexante-service-single__others-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.nexante-service-single__other {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(39, 52, 139, 0.06);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.nexante-service-single__other:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39, 52, 139, 0.12);
    border-color: rgba(59, 78, 255, 0.2);
}
.nexante-service-single__other-img {
    aspect-ratio: 16/10;
    background: #f4f5f8;
    overflow: hidden;
}
.nexante-service-single__other-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.nexante-service-single__other:hover .nexante-service-single__other-img img { transform: scale(1.05); }
.nexante-service-single__other-body {
    padding: 22px;
    position: relative;
}
.nexante-service-single__other-body strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: var(--nex-navy-dark);
    margin-bottom: 8px;
    line-height: 1.25;
    padding-right: 30px;
}
.nexante-service-single__other-body p {
    font-size: 13px;
    color: var(--nex-muted);
    line-height: 1.5;
    margin: 0;
}
.nexante-service-single__other-arrow {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #3b4eff;
    transition: transform 0.3s ease;
}
.nexante-service-single__other:hover .nexante-service-single__other-arrow { transform: translateX(4px); }
@media (max-width: 960px) {
    .nexante-service-single__hero-inner { padding: 60px 24px 50px; }
    .nexante-service-single__body { padding: 60px 0 80px; }
    .nexante-service-single__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nexante-service-single__sidebar { position: static; }
    .nexante-service-single__others-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .nexante-service-single__hero-inner { padding: 48px 20px 40px; }
    .nexante-service-single__container { padding: 0 20px; }
    .nexante-service-single__body { padding: 48px 0 64px; }
    .nexante-service-single__team-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
 * REZERWACJA KONSULTACJI (nexante/booking-block)
 * ============================================================ */
.nexante-booking {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1fa 100%);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

.nexante-booking__wrap {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

/* LEWA KOLUMNA - info */
.nexante-booking__info {
    background: linear-gradient(135deg, #27348B 0%, #1a2470 100%);
    color: #fff;
    padding: 36px 30px;
    border-radius: 12px;
    position: sticky;
    top: 120px;
    box-shadow: 0 12px 36px rgba(39, 52, 139, 0.2);
}

.nexante-booking__info-top { margin-bottom: 24px; }

.nexante-booking__logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 4px;
}

.nexante-booking__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.nexante-booking__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}

.nexante-booking__desc {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.nexante-booking__details,
.nexante-booking__organizer {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nexante-booking__details-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 14px;
}

.nexante-booking__details ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nexante-booking__details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.nexante-booking__details svg {
    color: var(--nex-gold);
    flex-shrink: 0;
}

.nexante-booking__details .nexante-booking__price {
    color: #fff;
    font-weight: 600;
    padding-top: 4px;
}

.nexante-booking__details .nexante-booking__price strong {
    font-size: 16px;
    color: var(--nex-gold);
}

.nexante-booking__organizer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.nexante-booking__organizer-info img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    box-sizing: border-box;
}

/* PRAWA KOLUMNA - kalendarz */
.nexante-booking__main {
    background: #fff;
    border-radius: 12px;
    padding: 30px 36px 36px;
    box-shadow: 0 10px 30px rgba(39, 52, 139, 0.08);
    min-height: 520px;
}

/* Tabs */
.nexante-booking__tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(39, 52, 139, 0.08);
}

.nexante-booking__tab {
    flex: 1;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    color: var(--nex-muted);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nexante-booking__tab:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.nexante-booking__tab-num { font-weight: 600; }

.nexante-booking__tab.is-active {
    color: var(--nex-navy);
    border-bottom-color: #3b4eff;
}

/* Step content */
.nexante-booking__step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--nex-navy-dark);
    margin: 0 0 6px;
    line-height: 1.2;
}

.nexante-booking__step-sub {
    font-size: 14px;
    color: var(--nex-muted);
    margin: 0 0 24px;
}

/* Month nav */
.nexante-booking__month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.nexante-booking__month-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--nex-navy-dark);
}

.nexante-booking__month-buttons {
    display: flex;
    gap: 6px;
}

.nexante-booking__nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f6fb;
    border: 1px solid rgba(39, 52, 139, 0.1);
    color: var(--nex-navy-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nexante-booking__nav-btn:hover:not(:disabled) {
    background: var(--nex-navy);
    color: #fff;
    border-color: var(--nex-navy);
}

.nexante-booking__nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Weekdays header */
.nexante-booking__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.nexante-booking__weekdays span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--nex-muted);
    text-transform: uppercase;
    padding: 6px 0;
}

/* Dni miesiąca */
.nexante-booking__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.nexante-booking__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--nex-navy-dark);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    padding: 0;
}

.nexante-booking__day--empty {
    cursor: default;
}

.nexante-booking__day--disabled {
    color: #c8cbd6;
    cursor: not-allowed;
}

.nexante-booking__day:not(.nexante-booking__day--disabled):not(.nexante-booking__day--empty):hover {
    background: #eef1fa;
    border-color: #3b4eff;
}

.nexante-booking__day--today {
    color: #3b4eff;
    position: relative;
}

.nexante-booking__day--today::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #3b4eff;
    border-radius: 50%;
}

.nexante-booking__day--selected {
    background: #3b4eff !important;
    color: #fff !important;
    border-color: #3b4eff !important;
}

.nexante-booking__day--selected.nexante-booking__day--today::after {
    background: #fff;
}

/* Sloty godzin */
.nexante-booking__slots {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(39, 52, 139, 0.08);
}

.nexante-booking__slots-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--nex-navy-dark);
    margin: 0 0 14px;
}

.nexante-booking__slots-title span {
    color: var(--nex-muted);
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
}

.nexante-booking__slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
}

.nexante-booking__slot {
    padding: 12px 10px;
    background: #fff;
    border: 1.5px solid rgba(39, 52, 139, 0.12);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--nex-navy-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.nexante-booking__slot:hover {
    border-color: #3b4eff;
    background: #f0f3ff;
}

.nexante-booking__slot.is-selected {
    background: #3b4eff;
    border-color: #3b4eff;
    color: #fff;
}

/* Step footer */
.nexante-booking__step-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(39, 52, 139, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nexante-booking__counter {
    font-size: 13px;
    color: var(--nex-muted);
}

.nexante-booking__counter [data-selected-count] {
    color: var(--nex-navy);
    font-weight: 600;
}

.nexante-booking__next-btn,
.nexante-booking__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #3b4eff;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nexante-booking__next-btn:hover:not(:disabled),
.nexante-booking__submit:hover:not(:disabled) {
    background: #2f3fd9;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(59, 78, 255, 0.35);
}

.nexante-booking__next-btn:disabled {
    background: #c8cbd6;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.nexante-booking__next-btn svg,
.nexante-booking__submit svg { transition: transform 0.3s ease; }
.nexante-booking__next-btn:hover:not(:disabled) svg { transform: translateX(3px); }

.nexante-booking__back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    background: transparent;
    color: var(--nex-muted);
    border: 1px solid rgba(39, 52, 139, 0.12);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nexante-booking__back-btn:hover {
    background: #f5f6fb;
    color: var(--nex-navy);
}

/* Formularz (step 2) */
.nexante-booking__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.nexante-booking__form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nexante-booking__form-field--full { grid-column: 1 / -1; }

.nexante-booking__form-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--nex-navy-dark);
}

.nexante-booking__form-field input[type="text"],
.nexante-booking__form-field input[type="email"],
.nexante-booking__form-field input[type="tel"],
.nexante-booking__form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(39, 52, 139, 0.12);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: var(--nex-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
    box-sizing: border-box;
}

.nexante-booking__form-field input:focus,
.nexante-booking__form-field textarea:focus {
    outline: none;
    border-color: #3b4eff;
    box-shadow: 0 0 0 3px rgba(59, 78, 255, 0.12);
}

.nexante-booking__form-field textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.nexante-booking__form-field--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: var(--nex-muted);
    cursor: pointer;
    line-height: 1.5;
}

.nexante-booking__form-field--checkbox input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.nexante-booking__form .nexante-booking__step-footer {
    grid-column: 1 / -1;
}

/* Submit loading */
.nexante-booking__submit-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: nexSpin 0.8s linear infinite;
}

.nexante-booking__submit.is-loading .nexante-booking__submit-label,
.nexante-booking__submit.is-loading > svg:not(.nexante-booking__submit-spinner) {
    opacity: 0;
}

.nexante-booking__submit.is-loading .nexante-booking__submit-spinner {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -8px 0 0 -8px;
}

/* Result messages */
.nexante-booking__result {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.nexante-booking__result--success {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.nexante-booking__result--error {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Komunikat sukcesu po wysłaniu rezerwacji - rozbudowany box */
.nexante-booking__success {
    margin: 20px 0 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 8px;
    color: var(--nex-navy-dark);
}
.nexante-booking__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    margin-bottom: 14px;
}
.nexante-booking__success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--nex-navy-dark);
}
.nexante-booking__success-lead {
    font-size: 15px;
    line-height: 1.55;
    color: var(--nex-text);
    margin: 0 0 18px;
}
.nexante-booking__success-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.6;
    color: var(--nex-muted);
}
.nexante-booking__success-steps li {
    position: relative;
    padding: 6px 0 6px 28px;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
}
.nexante-booking__success-steps li:first-child { border-top: none; }
.nexante-booking__success-steps li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
}
.nexante-booking__success-steps strong {
    color: var(--nex-navy-dark);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 860px) {
    .nexante-booking { padding: 60px 0 80px; }
    .nexante-booking__wrap {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .nexante-booking__info {
        position: static;
        padding: 28px 24px;
    }
    .nexante-booking__main { padding: 24px 22px 28px; }
    .nexante-booking__form { grid-template-columns: 1fr; }
    .nexante-booking__step-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .nexante-booking__next-btn,
    .nexante-booking__submit,
    .nexante-booking__back-btn { justify-content: center; }
}

@media (max-width: 480px) {
    .nexante-booking__day { font-size: 12px; }
    .nexante-booking__weekdays span { font-size: 10px; }
    .nexante-booking__title { font-size: 18px; }
}


/* ============================================================
 * FAQ (nexante/faq-block)
 * ============================================================ */
.nexante-faq {
    padding: 100px 0 110px;
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1fa 100%);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-faq.is-visible { opacity: 1; transform: translateY(0); }
.nexante-faq__container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-faq__header { text-align: center; margin-bottom: 50px; }
.nexante-faq__accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}
.nexante-faq__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 16px;
}
.nexante-faq__sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--nex-muted);
    margin: 0;
}
.nexante-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nexante-faq__item {
    background: #fff;
    border: 1px solid rgba(39, 52, 139, 0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.nexante-faq__item[open] {
    box-shadow: 0 8px 24px rgba(39, 52, 139, 0.1);
    border-color: rgba(59, 78, 255, 0.2);
}
.nexante-faq__question {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    cursor: pointer;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--nex-navy-dark);
    line-height: 1.35;
    transition: color 0.25s ease;
}
.nexante-faq__question::-webkit-details-marker { display: none; }
.nexante-faq__question:hover { color: #3b4eff; }
.nexante-faq__icon {
    color: #3b4eff;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nexante-faq__item[open] .nexante-faq__icon { transform: rotate(180deg); }
.nexante-faq__answer {
    padding: 0 28px 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--nex-text);
}
@media (max-width: 640px) {
    .nexante-faq { padding: 70px 0 80px; }
    .nexante-faq__container { padding: 0 20px; }
    .nexante-faq__question { padding: 18px 22px; font-size: 15px; }
    .nexante-faq__answer { padding: 0 22px 18px; font-size: 14px; }
}


/* ============================================================
 * TIMELINE (nexante/timeline-block)
 * ============================================================ */
.nexante-timeline {
    padding: 100px 0 110px;
    background: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-timeline.is-visible { opacity: 1; transform: translateY(0); }
.nexante-timeline__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-timeline__header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.nexante-timeline__accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}
.nexante-timeline__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 14px;
}
.nexante-timeline__sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--nex-muted);
    margin: 0;
}
.nexante-timeline__list {
    position: relative;
    /*max-width: 820px;*/
    margin: 0 auto;
    padding-left: 140px;
}
.nexante-timeline__list::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, #3b4eff, var(--nex-gold));
    border-radius: 1px;
}
.nexante-timeline__item {
    position: relative;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--nex-tl-delay, 0s);
}
.nexante-timeline.is-visible .nexante-timeline__item {
    opacity: 1;
    transform: translateX(0);
}
.nexante-timeline__item:last-child { margin-bottom: 0; }
.nexante-timeline__date {
    position: absolute;
    left: -140px;
    top: -4px;
    width: 100px;
    text-align: right;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #3b4eff;
    letter-spacing: -0.01em;
}
.nexante-timeline__dot {
    position: absolute;
    left: -27px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #3b4eff;
    box-shadow: 0 0 0 4px rgba(59, 78, 255, 0.12);
    transition: all 0.3s ease;
}
.nexante-timeline__item:hover .nexante-timeline__dot {
    background: #3b4eff;
    box-shadow: 0 0 0 6px rgba(59, 78, 255, 0.18);
}
.nexante-timeline__content {
    padding: 18px 26px;
    background: #f8f9fc;
    border-radius: 6px;
    border: 1px solid rgba(39, 52, 139, 0.05);
    transition: all 0.3s ease;
}
.nexante-timeline__item:hover .nexante-timeline__content {
    border-color: rgba(59, 78, 255, 0.2);
    box-shadow: 0 8px 22px rgba(39, 52, 139, 0.08);
}
.nexante-timeline__item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--nex-navy-dark);
    margin: 0 0 6px;
    line-height: 1.3;
}
.nexante-timeline__item-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--nex-muted);
    margin: 0;
}
@media (max-width: 740px) {
    .nexante-timeline { padding: 70px 0 80px; }
    .nexante-timeline__header { margin-bottom: 44px; }
    .nexante-timeline__list {
        padding-left: 40px;
    }
    .nexante-timeline__list::before {
        left: 20px;
    }
    .nexante-timeline__date {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 6px;
        font-size: 18px;
    }
    .nexante-timeline__dot {
        left: -27px;
    }
}


/* ============================================================
 * MANIFEST (nexante/manifest-block)
 * ============================================================ */
.nexante-manifest {
    position: relative;
    padding: 110px 0;
    background-color: var(--nex-navy-dark);
    background-size: cover;
    background-position: center;
    color: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.nexante-manifest.is-visible { opacity: 1; transform: translateY(0); }
.nexante-manifest__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 15, 30, var(--nex-manifest-opacity, 0.8)) 0%,
        rgba(26, 36, 112, calc(var(--nex-manifest-opacity, 0.8) * 0.9)) 100%);
    pointer-events: none;
}
.nexante-manifest__container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-manifest--align-left .nexante-manifest__container {
    text-align: left;
}
.nexante-manifest--align-center .nexante-manifest__container {
    text-align: center;
}
.nexante-manifest__accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}
.nexante-manifest__quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4.2vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0;
}
.nexante-manifest__footer {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 28px 0 0;
    line-height: 1.6;
}
@media (max-width: 640px) {
    .nexante-manifest { padding: 72px 0; }
    .nexante-manifest__container { padding: 0 22px; }
}


/* ============================================================
 * STATS (nexante/stats-block)
 * ============================================================ */
.nexante-stats {
    padding: 100px 0;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-stats.is-visible { opacity: 1; transform: translateY(0); }
.nexante-stats--dark {
    background: linear-gradient(135deg, #1a2470 0%, #27348B 100%);
    color: #fff;
}
.nexante-stats--light {
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1fa 100%);
    color: var(--nex-navy-dark);
}
.nexante-stats__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}
.nexante-stats__header { margin-bottom: 54px; }
.nexante-stats__accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}
.nexante-stats__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0;
    color: inherit;
}
.nexante-stats--dark .nexante-stats__title { color: #fff; }
.nexante-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}
.nexante-stats__item {
    padding: 10px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--nex-stat-delay, 0s);
}
.nexante-stats.is-visible .nexante-stats__item {
    opacity: 1;
    transform: translateY(0);
}
.nexante-stats__value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1;
    color: inherit;
    letter-spacing: -0.015em;
    font-variant-numeric: tabular-nums;
    margin-bottom: 12px;
}
.nexante-stats--dark .nexante-stats__value { color: #fff; }
.nexante-stats__label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.nexante-stats--light .nexante-stats__label { color: var(--nex-muted); }
@media (max-width: 640px) {
    .nexante-stats { padding: 70px 0; }
    .nexante-stats__container { padding: 0 22px; }
    .nexante-stats__grid { gap: 28px; }
}


/* ============================================================
 * MAP (nexante/map-block)
 * ============================================================ */
.nexante-map {
    padding: 90px 0 100px;
    background: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-map.is-visible { opacity: 1; transform: translateY(0); }
.nexante-map__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-map__header { text-align: center; margin-bottom: 40px; }
.nexante-map__accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.nexante-map__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    margin: 0;
    line-height: 1.2;
}
.nexante-map__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.nexante-map__frame {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #e5e7ef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(39, 52, 139, 0.1);
}
.nexante-map__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.nexante-map__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nex-muted);
    font-size: 14px;
}

/* Leaflet container */
.nexante-map__leaflet {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #e5e7ef;
    z-index: 1;
}

/* Custom marker neXante */
.nexante-map__marker {
    background: transparent !important;
    border: 0 !important;
}
.nexante-map__marker-inner {
    position: relative;
    z-index: 2;
    animation: nexMarkerDrop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes nexMarkerDrop {
    0%   { transform: translateY(-30px); opacity: 0; }
    60%  { transform: translateY(4px);   opacity: 1; }
    100% { transform: translateY(0);     opacity: 1; }
}

/* Pulsujący cień pod markerem */
.nexante-map__marker-pulse {
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 18px;
    height: 6px;
    background: rgba(59, 78, 255, 0.4);
    border-radius: 50%;
    transform: translateX(-50%);
    filter: blur(2px);
    animation: nexMarkerPulse 2.4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes nexMarkerPulse {
    0%, 100% { opacity: 0.45; transform: translateX(-50%) scale(1, 1); }
    50%      { opacity: 0.75; transform: translateX(-50%) scale(1.5, 1); }
}

/* Popup Leaflet - spójny z neXante */
.leaflet-popup-content-wrapper {
    background: #fff !important;
    color: var(--nex-navy-dark) !important;
    border-radius: 6px !important;
    box-shadow: 0 12px 30px rgba(39, 52, 139, 0.2) !important;
    padding: 2px !important;
}
.leaflet-popup-content {
    margin: 14px 18px !important;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}
.leaflet-popup-tip {
    background: #fff !important;
    box-shadow: 0 4px 10px rgba(39, 52, 139, 0.15) !important;
}
.nexante-map__popup strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    color: var(--nex-navy-dark);
    margin-bottom: 4px;
}
.nexante-map__popup-addr {
    font-size: 13px;
    color: var(--nex-muted);
    line-height: 1.5;
}

/* Kontrolki Leaflet - spójne z motywem */
.leaflet-bar {
    box-shadow: 0 4px 12px rgba(39, 52, 139, 0.12) !important;
    border: 0 !important;
}
.leaflet-bar a {
    background: #fff !important;
    color: var(--nex-navy-dark) !important;
    border-color: rgba(39, 52, 139, 0.1) !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}
.leaflet-bar a:hover {
    background: var(--nex-navy) !important;
    color: #fff !important;
    border-color: var(--nex-navy) !important;
}
.leaflet-bar a:first-child {
    border-top-left-radius: 4px !important;
    border-top-right-radius: 4px !important;
}
.leaflet-bar a:last-child {
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}
.leaflet-control-attribution {
    font-size: 10px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    padding: 3px 8px !important;
}
.leaflet-control-attribution a {
    color: var(--nex-navy) !important;
}

.nexante-map__info {
    background: linear-gradient(135deg, #1a2470 0%, #27348B 100%);
    color: #fff;
    padding: 36px 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nexante-map__icon {
    color: var(--nex-gold);
    margin-bottom: 16px;
}
.nexante-map__address {
    font-style: normal;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 18px;
}
.nexante-map__directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--nex-gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 2px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    transition: all 0.25s ease;
    align-self: flex-start;
}
.nexante-map__directions:hover {
    border-bottom-color: var(--nex-gold);
    gap: 10px;
}
@media (max-width: 860px) {
    .nexante-map__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .nexante-map { padding: 64px 0 72px; }
    .nexante-map__container { padding: 0 20px; }
    .nexante-map__info { padding: 28px 24px; }
}


/* ============================================================
 * HOURS (nexante/hours-block)
 * ============================================================ */
.nexante-hours {
    padding: 80px 0;
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1fa 100%);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-hours.is-visible { opacity: 1; transform: translateY(0); }
.nexante-hours__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-hours__card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 38px;
    box-shadow: 0 8px 28px rgba(39, 52, 139, 0.08);
    text-align: center;
}
.nexante-hours__accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}
.nexante-hours__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--nex-navy-dark);
    margin: 0 0 20px;
    line-height: 1.2;
}
.nexante-hours__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 26px;
}
.nexante-hours__status--open {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}
.nexante-hours__status--closed {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}
.nexante-hours__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: nexPulse 2s ease-in-out infinite;
}
@keyframes nexPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(1.3); }
}
.nexante-hours__list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
.nexante-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(39, 52, 139, 0.06);
    font-size: 15px;
}
.nexante-hours__row:last-child { border-bottom: 0; }
.nexante-hours__row--today {
    background: rgba(59, 78, 255, 0.05);
    margin: 0 -12px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 4px;
    border-bottom-color: transparent;
}
.nexante-hours__row--today .nexante-hours__day {
    color: #3b4eff;
    font-weight: 700;
}
.nexante-hours__day {
    color: var(--nex-navy-dark);
    font-weight: 500;
}
.nexante-hours__time {
    color: var(--nex-muted);
    font-variant-numeric: tabular-nums;
}
.nexante-hours__closed {
    color: #b91c1c;
    font-weight: 500;
}
@media (max-width: 560px) {
    .nexante-hours__container { padding: 0 20px; }
    .nexante-hours__card { padding: 32px 26px; }
}


/* ============================================================
 * COMPANY DATA (nexante/company-data-block - impressum)
 * ============================================================ */
.nexante-company-data {
    padding: 80px 0;
    background: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-company-data.is-visible { opacity: 1; transform: translateY(0); }
.nexante-company-data__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-company-data__header { margin-bottom: 30px; }
.nexante-company-data__accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}
.nexante-company-data__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    margin: 0;
    line-height: 1.2;
}
.nexante-company-data__table {
    width: 100%;
    border-collapse: collapse;
    background: #f8f9fc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(39, 52, 139, 0.04);
}
.nexante-company-data__table tr {
    border-bottom: 1px solid rgba(39, 52, 139, 0.06);
}
.nexante-company-data__table tr:last-child { border-bottom: 0; }
.nexante-company-data__table th,
.nexante-company-data__table td {
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
}
.nexante-company-data__table th {
    color: var(--nex-muted);
    font-weight: 500;
    width: 35%;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    vertical-align: top;
}
.nexante-company-data__table td {
    color: var(--nex-navy-dark);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
    .nexante-company-data { padding: 60px 0; }
    .nexante-company-data__container { padding: 0 20px; }
    .nexante-company-data__table th,
    .nexante-company-data__table td {
        padding: 12px 16px;
        display: block;
        width: 100%;
    }
    .nexante-company-data__table th {
        padding-bottom: 4px;
        font-size: 11px;
    }
    .nexante-company-data__table td {
        padding-top: 0;
        padding-bottom: 14px;
        font-size: 15px;
    }
}


/* ============================================================
 * GALLERY (nexante/gallery-block)
 * ============================================================ */
.nexante-gallery {
    padding: 100px 0 110px;
    background: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.nexante-gallery.is-visible { opacity: 1; transform: translateY(0); }
.nexante-gallery__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}
.nexante-gallery__header { text-align: center; margin-bottom: 40px; }
.nexante-gallery__accent {
    display: inline-block;
    color: var(--nex-gold);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}
.nexante-gallery__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    margin: 0 0 10px;
    line-height: 1.2;
}
.nexante-gallery__sub {
    font-size: 15px;
    color: var(--nex-muted);
    margin: 0;
}
.nexante-gallery__grid {
    display: grid;
    gap: 16px;
}
.nexante-gallery--cols-2 .nexante-gallery__grid { grid-template-columns: repeat(2, 1fr); }
.nexante-gallery--cols-3 .nexante-gallery__grid { grid-template-columns: repeat(3, 1fr); }
.nexante-gallery--cols-4 .nexante-gallery__grid { grid-template-columns: repeat(4, 1fr); }
.nexante-gallery__item {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
    background: #e5e7ef;
    cursor: zoom-in;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.nexante-gallery__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(39, 52, 139, 0.18);
}
.nexante-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nexante-gallery__item:hover img { transform: scale(1.06); }
.nexante-gallery__zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(59, 78, 255, 0.95);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.3s ease;
}
.nexante-gallery__item:hover .nexante-gallery__zoom {
    opacity: 1;
    transform: scale(1);
}
@media (max-width: 960px) {
    .nexante-gallery--cols-3 .nexante-gallery__grid,
    .nexante-gallery--cols-4 .nexante-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .nexante-gallery { padding: 70px 0 80px; }
    .nexante-gallery__container { padding: 0 20px; }
    .nexante-gallery--cols-2 .nexante-gallery__grid,
    .nexante-gallery--cols-3 .nexante-gallery__grid,
    .nexante-gallery--cols-4 .nexante-gallery__grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
 * BREADCRUMBS (okruszki) - auto-renderowane poza stroną główną
 * ============================================================ */
.nexante-breadcrumbs {
	margin-top: 145px;
    background: transparent;
    /*border-bottom: 1px solid rgba(39, 52, 139, 0.08);*/
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

.nexante-breadcrumbs__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 18px 32px;
}

.nexante-breadcrumbs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-size: 13px;
    color: var(--nex-muted);
}

.nexante-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.nexante-breadcrumbs__link {
    color: var(--nex-muted);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.nexante-breadcrumbs__link:hover {
    color: var(--nex-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nexante-breadcrumbs__item--current span {
    color: var(--nex-navy-dark);
    font-weight: 500;
}

.nexante-breadcrumbs__sep {
    color: rgba(39, 52, 139, 0.3);
    margin: 0 10px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 560px) {
    .nexante-breadcrumbs__container { padding: 14px 20px; }
    .nexante-breadcrumbs__list { font-size: 12px; }
    .nexante-breadcrumbs__sep { margin: 0 6px; }

    /* Na bardzo małych ekranach pokaż tylko ostatni i przedostatni element */
    .nexante-breadcrumbs__item:not(:nth-last-child(-n+2)) {
        display: none;
    }
    /* Dodaj "..." przed przedostatnim */
    .nexante-breadcrumbs__item:nth-last-child(2)::before {
        content: '... ';
        color: rgba(39, 52, 139, 0.4);
        margin-right: 8px;
    }
}

/* ============================================================
 * STOPKA neXante
 * ============================================================ */
.nexante-footer {
    position: relative;
    background-color: #f6f7fa;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--nex-text);
    padding: 90px 0 28px;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* Obraz tła - subtelne wygaszenie */
.nexante-footer--has-bg .nexante-footer__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(246, 247, 250, 0.85) 0%, rgba(246, 247, 250, 0.94) 100%);
    pointer-events: none;
}

.nexante-footer__container {
    position: relative;
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    z-index: 1;
}

/* Grid 4 kolumny */
.nexante-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 70px;
}

.nexante-footer__col-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nex-navy-dark);
    margin: 0 0 32px;
    padding-bottom: 14px;
    position: relative;
}

/* Złoty akcent pod tytułem kolumny (jak na referencji) */
.nexante-footer__col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #3b4eff;
    border-radius: 1px;
}

/* Menu w kolumnach */
.nexante-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nexante-footer__menu a {
    display: inline-block;
    color: var(--nex-text);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nexante-footer__menu a:hover {
    color: var(--nex-navy);
    transform: translateX(3px);
}

/* Adres */
.nexante-footer__address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.7;
    color: var(--nex-text);
    margin: 0 0 16px;
}

.nexante-footer__direction {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--nex-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.25s ease, color 0.2s ease;
}

.nexante-footer__direction:hover {
    color: var(--nex-navy-light);
    gap: 10px;
}

.nexante-footer__direction svg {
    transition: transform 0.25s ease;
}

/* Kontakt */
.nexante-footer__col--contact {
    display: flex;
    flex-direction: column;
}

.nexante-footer__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--nex-navy-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.2s ease;
    flex-wrap: wrap;
}

.nexante-footer__contact-item svg {
    color: var(--nex-navy);
    flex-shrink: 0;
}

.nexante-footer__contact-item:hover {
    color: var(--nex-navy);
}

/* Badge "Linia awaryjna 24/7" */
.nexante-footer__badge {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 10px;
    background: #3b4eff;
    color: #fff;
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 3px;
    white-space: nowrap;
}

.nexante-footer__contact-item--emergency {
    flex-wrap: wrap;
}

/* CTA "Umów konsultację" w stopce */
.nexante-footer__booking-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    margin-top: 16px;
    background: var(--nex-gold);
    color: var(--nex-navy-dark);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s ease, transform 0.2s ease;
    align-self: flex-start;
}
.nexante-footer__booking-cta:hover {
    background: #d4a73e;
    transform: translateY(-1px);
    color: var(--nex-navy-dark);
}
.nexante-footer__booking-cta svg { flex-shrink: 0; }

/* Social media */
.nexante-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.nexante-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(39, 52, 139, 0.08);
    color: var(--nex-navy-dark);
    text-decoration: none;
    transition: all 0.25s ease;
}

.nexante-footer__socials a:hover {
    background: var(--nex-navy);
    color: #fff;
    transform: translateY(-2px);
}

/* Separator */
.nexante-footer__divider {
    border: 0;
    height: 1px;
    background: rgba(39, 52, 139, 0.1);
    margin: 0 0 24px;
}

/* Dolny pasek */
.nexante-footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.nexante-footer__copyright {
    margin: 0;
    font-size: 13px;
    color: var(--nex-muted);
    flex: 1 1 auto;
}

.nexante-footer__bar-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: opacity 0.2s ease;
}

.nexante-footer__bar-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.nexante-footer__bar-logo:hover {
    opacity: 0.8;
}

/* Legal menu */
.nexante-footer__legal {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.nexante-footer__legal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.nexante-footer__legal-list a {
    color: var(--nex-muted);
    text-decoration: underline;
    text-decoration-color: rgba(107, 107, 123, 0.3);
    text-underline-offset: 3px;
    font-size: 13px;
    transition: color 0.2s ease;
}

.nexante-footer__legal-list a:hover {
    color: var(--nex-navy);
    text-decoration-color: var(--nex-navy);
}

/* Credit - Projekt i realizacja (Domuly) */
.nexante-footer__credit {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(39, 52, 139, 0.06);
    font-size: 12px;
    color: var(--nex-muted);
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.nexante-footer__credit:hover {
    opacity: 1;
}

.nexante-footer__credit a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.nexante-footer__credit-logo {
    height: 20px;
    width: auto;
    display: block;
    transition: transform 0.25s ease;
}

.nexante-footer__credit a:hover .nexante-footer__credit-logo {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 960px) {
    .nexante-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }
    .nexante-footer { padding: 64px 0 24px; }
}

/* ============================================================
 * SEKCJA KONTAKTOWA (nexante/contact-block)
 * Tło: kobaltowy granat, po lewej info, po prawej formularz
 * ============================================================ */
.nexante-contact {
    position: relative;
    background: var(--nex-navy);
    background-image: radial-gradient(ellipse at 20% 30%, rgba(59, 78, 255, 0.18) 0%, transparent 55%),
                      radial-gradient(ellipse at 80% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    color: #fff;
    padding: 110px 0;
    overflow: hidden;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.nexante-contact.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nexante-contact__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.nexante-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* LEWA: info */
.nexante-contact__info {
    padding-top: 10px;
}

.nexante-contact__accent {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--nex-gold);
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.nexante-contact__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin: 0 0 48px;
}

.nexante-contact__items {
    display: flex;
    flex-direction: column;
}

.nexante-contact__item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nexante-contact__item:last-child {
    border-bottom: 0;
}

.nexante-contact__item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.nexante-contact__item-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    color: var(--nex-gold);
    flex-shrink: 0;
}

.nexante-contact__item-icon svg {
    width: 100%;
    height: 100%;
}

.nexante-contact__item-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--nex-gold);
    text-transform: uppercase;
}

.nexante-contact__item-lines {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    padding-left: 34px;
    margin-bottom: 6px;
}

.nexante-contact__item-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    margin-left: 34px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
    line-height: 1.4;
}

.nexante-contact__item-link:hover {
    color: var(--nex-gold);
    border-bottom-color: var(--nex-gold);
    gap: 8px;
}

/* PRAWA: formularz */
.nexante-contact__form-wrap {
    position: relative;
}

.nexante-contact__form {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px 36px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: relative;
}

.nexante-contact__field {
    margin-bottom: 22px;
}

.nexante-contact__field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.nexante-contact__field input,
.nexante-contact__field select,
.nexante-contact__field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 14px 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.nexante-contact__field input::placeholder,
.nexante-contact__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.nexante-contact__field input:hover,
.nexante-contact__field select:hover,
.nexante-contact__field textarea:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.2);
}

.nexante-contact__field input:focus,
.nexante-contact__field select:focus,
.nexante-contact__field textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.13);
    border-color: var(--nex-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* Select - custom chevron */
.nexante-contact__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.6'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
}

.nexante-contact__field select option {
    background: var(--nex-navy-dark);
    color: #fff;
}

.nexante-contact__field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Submit button - żółty CTA */
.nexante-contact__submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 24px;
    background: var(--nex-gold);
    color: var(--nex-navy-dark);
    border: 0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nexante-contact__submit:hover {
    background: var(--nex-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.3);
}

.nexante-contact__submit:active {
    transform: translateY(0);
}

.nexante-contact__submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

.nexante-contact__submit svg {
    transition: transform 0.3s ease;
}

.nexante-contact__submit:hover svg {
    transform: translateX(4px);
}

/* Spinner podczas wysyłki */
.nexante-contact__spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid var(--nex-navy-dark);
    border-top-color: transparent;
    border-radius: 50%;
    animation: nexSpin 0.8s linear infinite;
}

.nexante-contact__submit.is-loading .nexante-contact__submit-label,
.nexante-contact__submit.is-loading svg:not(.nexante-contact__spinner) {
    opacity: 0;
}

.nexante-contact__submit.is-loading .nexante-contact__spinner {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -8px 0 0 -8px;
}

@keyframes nexSpin {
    to { transform: rotate(360deg); }
}

/* Komunikaty wyniku */
.nexante-contact__result {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.nexante-contact__result--success {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.nexante-contact__result--error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

/* Responsive */
@media (max-width: 960px) {
    .nexante-contact { padding: 80px 0; }
    .nexante-contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .nexante-contact__title { margin-bottom: 32px; }
    .nexante-contact__form { padding: 32px 26px; }
}

@media (max-width: 560px) {
    .nexante-contact { padding: 60px 0; }
    .nexante-contact__container { padding: 0 20px; }
    .nexante-contact__item-lines { font-size: 16px; }
    .nexante-contact__form { padding: 28px 22px; }
}

/* ============================================================
 * KARUZELA REFERENCJI (nexante/references-block)
 * ============================================================ */
.nexante-references {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1fa 100%);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

.nexante-references__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.nexante-references__header {
    text-align: center;
    margin-bottom: 60px;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.nexante-references__header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nexante-references__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 24px;
}

.nexante-references__badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.nexante-references__stars {
    display: inline-flex;
    gap: 3px;
    color: #f5a623;
}

.nexante-references__badge-text {
    font-size: 13px;
    color: var(--nex-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.nexante-references__badge-img {
    height: 32px;
    width: auto;
    display: block;
}

/* Karuzela */
.nexante-references__carousel {
    position: relative;
    /* negatywny margin pozwala kartom "wyjść" poza container na hover shadow */
    margin: 0 -12px;
}

.nexante-references__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 12px 40px;
    will-change: transform;
}

/* Karta referencji */
.nexante-references__card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    padding: 32px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(39, 52, 139, 0.08);
    color: var(--nex-text);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(39, 52, 139, 0.04);
    position: relative;
    overflow: hidden;
}

/* slidesPerView - szerokość karty */
.nexante-references[data-slides-per-view="1"] .nexante-references__card { width: calc(100% - 0px); }
.nexante-references[data-slides-per-view="2"] .nexante-references__card { width: calc((100% - 24px) / 2); }
.nexante-references[data-slides-per-view="3"] .nexante-references__card { width: calc((100% - 48px) / 3); }
.nexante-references[data-slides-per-view="4"] .nexante-references__card { width: calc((100% - 72px) / 4); }

.nexante-references__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b4eff, var(--nex-gold));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
}

.nexante-references__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(39, 52, 139, 0.14);
    border-color: rgba(59, 78, 255, 0.1);
}

.nexante-references__card:hover::before {
    transform: scaleX(1);
}

.nexante-references__quote-icon {
    color: rgba(59, 78, 255, 0.18);
    margin-bottom: 16px;
}

.nexante-references__quote {
    flex: 1;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin: 0 0 24px;
    font-style: italic;
    min-height: 120px;
}

.nexante-references__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(39, 52, 139, 0.06);
}

.nexante-references__logo {
    width: auto;
    max-width: 140px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nexante-references__logo img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.nexante-references__author-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nexante-references__author-name {
    font-size: 14px;
    color: var(--nex-navy-dark);
    font-weight: 700;
}

.nexante-references__author-role {
    font-size: 12px;
    color: var(--nex-muted);
}

.nexante-references__card-stars {
    display: inline-flex;
    gap: 2px;
    color: #f5a623;
    margin-top: 4px;
}

/* Strzałki nawigacji */
.nexante-references__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(39, 52, 139, 0.1);
    color: var(--nex-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(39, 52, 139, 0.1);
    transition: all 0.25s ease;
    z-index: 3;
}

.nexante-references__arrow:hover {
    background: var(--nex-navy);
    color: #fff;
    box-shadow: 0 6px 20px rgba(39, 52, 139, 0.25);
    transform: translateY(-50%) scale(1.08);
}

.nexante-references__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.nexante-references__arrow--prev { left: -10px; }
.nexante-references__arrow--next { right: -10px; }

/* Kropki nawigacji */
.nexante-references__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.nexante-references__dot {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    background: rgba(39, 52, 139, 0.2);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease;
}

.nexante-references__dot--active {
    background: var(--nex-navy);
    width: 36px;
}

.nexante-references__dot:hover {
    background: rgba(39, 52, 139, 0.5);
}

/* Responsive */
@media (max-width: 960px) {
    .nexante-references[data-slides-per-view="3"] .nexante-references__card,
    .nexante-references[data-slides-per-view="4"] .nexante-references__card {
        width: calc((100% - 24px) / 2);
    }
    .nexante-references__arrow { width: 40px; height: 40px; }
    .nexante-references__arrow--prev { left: -4px; }
    .nexante-references__arrow--next { right: -4px; }
}

@media (max-width: 640px) {
    .nexante-references { padding: 70px 0; }
    .nexante-references__container { padding: 0 20px; }
    .nexante-references__header { margin-bottom: 40px; }
    .nexante-references__carousel { margin: 0; padding-right: 20px; }
    .nexante-references[data-slides-per-view] .nexante-references__card { width: 100%; }
    .nexante-references__track { gap: 16px; padding-left: 0; padding-right: 20px; }
    .nexante-references__arrow { display: none; }
    .nexante-references__quote { min-height: 0; }
}

/* ============================================================
 * SEKCJA ZESPÓŁ (nexante/team-block + archive)
 * Karuzela na desktopie, wrap-grid na mobile
 * ============================================================ */
.nexante-team {
    position: relative;
    padding: 110px 0 120px;
    background: #fff;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

.nexante-team__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

/* Header sekcji (dwie kolumny: tytuł + podtytuł + strzałki) */
.nexante-team__header {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 60px;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.nexante-team__header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nexante-team__accent {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--nex-gold);
    margin-bottom: 14px;
}

.nexante-team__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin: 0;
}

.nexante-team__title p {
    margin: 0;
}

.nexante-team__subtitle {
    font-size: 16px;
    line-height: 1.55;
    color: var(--nex-muted);
    margin: 0 0 18px;
}

/* Strzałki - kwadratowe (dark navy + gold) */
.nexante-team__nav {
    display: inline-flex;
    gap: 8px;
}

.nexante-team__nav-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 2px;
    background: var(--nex-navy-dark);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.nexante-team__nav-btn--next {
    background: var(--nex-gold);
    color: var(--nex-navy-dark);
}

.nexante-team__nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nexante-team__nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Karuzela */
.nexante-team__carousel {
    position: relative;
    margin: 0 -10px;
}

.nexante-team__track {
    display: flex;
    gap: 24px;
    padding: 6px 10px 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Karta zespołu */
.nexante-team__card {
    flex: 0 0 auto;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e5e7ef;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    transition: transform 0.35s ease;
}

.nexante-team[data-slides-per-view="2"] .nexante-team__card { width: calc((100% - 24px) / 2); }
.nexante-team[data-slides-per-view="3"] .nexante-team__card { width: calc((100% - 48px) / 3); }
.nexante-team[data-slides-per-view="4"] .nexante-team__card { width: calc((100% - 72px) / 4); }

.nexante-team__photo {
    position: absolute;
    inset: 0;
}

.nexante-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexante-team__card:hover .nexante-team__photo img {
    transform: scale(1.04);
}

.nexante-team__info {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px 20px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.nexante-team__card:hover .nexante-team__info {
    transform: translateY(-3px);
}

.nexante-team__name {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.nexante-team__position {
    font-size: 13px;
    color: var(--nex-muted);
}

/* Kropki (mobile) */
.nexante-team__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.nexante-team__dot {
    width: 24px;
    height: 4px;
    border-radius: 2px;
    background: rgba(39, 52, 139, 0.2);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease;
}

.nexante-team__dot--active {
    background: var(--nex-gold);
    width: 36px;
}

/* ARCHIVE (/zespol) - grid zamiast karuzeli */
.nexante-team--archive {
    padding: 90px 0 110px;
}

.nexante-team--archive .nexante-team__header--archive {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

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

.nexante-team__card--archive {
    flex: unset;
    width: 100%;
}

.nexante-team__pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.nexante-team__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    margin: 0 3px;
    color: var(--nex-navy);
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.nexante-team__pagination .page-numbers:hover,
.nexante-team__pagination .page-numbers.current {
    background: var(--nex-navy);
    color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
    .nexante-team { padding: 80px 0 90px; }
    .nexante-team__header { grid-template-columns: 1fr; }
    .nexante-team__header--archive { grid-template-columns: 1fr; }
    .nexante-team[data-slides-per-view="3"] .nexante-team__card,
    .nexante-team[data-slides-per-view="4"] .nexante-team__card {
        width: calc((100% - 24px) / 2);
    }
    .nexante-team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .nexante-team { padding: 60px 0 72px; }
    .nexante-team__container { padding: 0 20px; }
    .nexante-team__header { margin-bottom: 36px; }
    .nexante-team[data-slides-per-view] .nexante-team__card {
        width: calc(100% - 40px);
    }
    .nexante-team__grid { grid-template-columns: 1fr; }
    .nexante-team__track { gap: 16px; }
    .nexante-team__nav { display: none; }
}

/* ============================================================
 * PROFIL POJEDYNCZEGO CZŁONKA (single-nexante_team_member.php)
 * Layout: ciemne tło full-bleed do 70% viewport + zdjęcie 30% po prawej,
 * content w max-width container (zawsze wyrównany ze stroną).
 * ============================================================ */
.nexante-team-profile {
    position: relative;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    overflow: hidden;
    background: #fff;
    min-height: calc(100vh - var(--nex-topbar-height) - var(--nex-nav-height));
}

/* Ciemne tło rozciągnięte full-bleed do 70% szerokości viewport */
.nexante-team-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70%;
    background: linear-gradient(135deg, #1a2033 0%, #0e121f 100%);
    z-index: 0;
}

/* Container z max-width - zawiera zawartość po lewej */
.nexante-team-profile__container {
    position: relative;
    z-index: 2;
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    min-height: inherit;
}

.nexante-team-profile__content {
    max-width: 620px;
    width: 100%;
    color: #fff;
}

.nexante-team-profile__quote-mark {
    color: var(--nex-gold);
    margin-bottom: 18px;
}

/* Imię i nazwisko jako nagłówek */
.nexante-team-profile__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.015em;
    margin: 0 0 10px;
}

/* Rola / stanowisko pod imieniem */
.nexante-team-profile__role {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--nex-gold);
    text-transform: uppercase;
    margin: 0 0 22px;
}

/* Badge powiązanych usług (na ciemnym tle profilu) */
.nexante-team-profile__services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 32px;
}
.nexante-team-profile__service-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.nexante-team-profile__service-badge:hover {
    background: var(--nex-gold);
    border-color: var(--nex-gold);
    color: var(--nex-navy-dark);
}

.nexante-team-profile__bio {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
}

.nexante-team-profile__bio p {
    margin: 0 0 14px;
}

/* Signature (script-like) */
.nexante-team-profile__signature {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 26px;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

/* Kontakty */
.nexante-team-profile__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.nexante-team-profile__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.nexante-team-profile__contact-link:hover {
    color: var(--nex-gold);
    border-color: var(--nex-gold);
}

/* Umów konsultację - CTA na profilu osoby */
.nexante-team-profile__booking { margin: 18px 0 28px; }
.nexante-team-profile__booking-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--nex-gold);
    color: var(--nex-navy-dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s ease, transform 0.2s ease;
}
.nexante-team-profile__booking-cta:hover {
    background: #d4a73e;
    transform: translateY(-1px);
    color: var(--nex-navy-dark);
}

/* Sloty zajęte / niedostępne */
.nexante-booking__slot.is-busy {
    opacity: 0.45;
    cursor: not-allowed;
    text-decoration: line-through;
    background: #f3f3f4;
    color: #999;
    pointer-events: none;
}

/* Prev / Next nav */
.nexante-team-profile__nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.nexante-team-profile__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 2px;
    background: #fff;
    color: var(--nex-navy-dark);
    text-decoration: none;
    transition: all 0.25s ease;
}

.nexante-team-profile__nav-btn:hover {
    background: var(--nex-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.nexante-team-profile__back {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s ease;
}

.nexante-team-profile__back:hover {
    color: var(--nex-gold);
}

/* PRAWA: zdjęcie + floating card - absolute 30% szerokości viewport */
.nexante-team-profile__right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    min-height: inherit;
    background: #e5e7ef;
    overflow: hidden;
    z-index: 1;
}

.nexante-team-profile__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    /* Tylko opacity - bez transform scale, bo scale pod kartą z backdrop-filter
       powoduje ciągłe re-rendery rozmycia i miganie */
    transition: opacity 0.45s ease;
    will-change: opacity;
}

.nexante-team-profile__photo.is-active {
    opacity: 1;
}

/* Toggle służbowe/prywatne */
.nexante-team-profile__toggle {
    position: relative;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 28px;
    gap: 0;
}

.nexante-team-profile__toggle-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nexante-team-profile__toggle-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nexante-team-profile__toggle-btn.is-active {
    color: var(--nex-navy-dark);
}

/* Animowany slider (żółte tło aktywnego przycisku) */
.nexante-team-profile__toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--nex-gold);
    border-radius: 50px;
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexante-team-profile__toggle[data-active="private"] .nexante-team-profile__toggle-slider {
    transform: translateX(100%);
}

/* Bio stack - crossfade przez CSS grid (oba bio w tej samej komórce) */
.nexante-team-profile__bio-stack {
    display: grid;
    /* Gdy tylko jedno bio (brak prywatnego) - normalny flow */
}

.nexante-team-profile__bio-stack.has-private {
    /* Grid z jedną komórką - oba bio nakładają się na siebie */
    grid-template-areas: "bio-stack";
}

.nexante-team-profile__bio-stack.has-private > .nexante-team-profile__bio {
    grid-area: bio-stack;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.4s ease, visibility 0s 0.35s;
    pointer-events: none;
}

.nexante-team-profile__bio-stack.has-private > .nexante-team-profile__bio.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.4s ease, visibility 0s 0s;
    pointer-events: auto;
}

.nexante-team-profile__card {
    /* Karta pokazywana tylko na mobile (≤960px).
       Na desktopie info jest już w lewym panelu - byłaby duplikacją */
    display: none;
    position: absolute;
    bottom: 40px;
    right: 24px;
    left: 24px;
    background: rgba(10, 15, 30, 0.82);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 30px;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    z-index: 3;
    isolation: isolate;
    transform: translateZ(0);
}

.nexante-team-profile__card-accent {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--nex-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.nexante-team-profile__card-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
    line-height: 1.15;
}

.nexante-team-profile__card-position {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px;
    font-weight: 500;
}

.nexante-team-profile__card-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    margin: 0;
}

/* Responsive profile */

/* Na szerokich ekranach - zdjęcie zajmuje nieco więcej miejsca */
@media (min-width: 1600px) {
    .nexante-team-profile::before { width: 72%; }
    .nexante-team-profile__right { width: 28%; }
}

/* Tablety - zdjęcie jako pełne tło na prawej połowie */
@media (max-width: 1100px) {
    .nexante-team-profile::before { width: 60%; }
    .nexante-team-profile__right { width: 40%; }
    .nexante-team-profile__content { max-width: 520px; }
}

/* Poniżej 960px - układ pionowy (content na górze, zdjęcie pod spodem) */
@media (max-width: 960px) {
    .nexante-team-profile {
        min-height: 0;
    }
    .nexante-team-profile::before {
        width: 100%;
        bottom: auto;
        height: auto;
        min-height: 100%;
    }
    .nexante-team-profile__container {
        padding: 60px 24px 80px;
        align-items: flex-start;
    }
    .nexante-team-profile__content {
        max-width: none;
    }
    .nexante-team-profile__right {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 480px;
        aspect-ratio: 4 / 5;
    }
    .nexante-team-profile__card {
        display: none;
    }
}

@media (max-width: 560px) {
    .nexante-team-profile__left { padding: 44px 22px; }
    .nexante-team-profile__right { min-height: 420px; }
    .nexante-team-profile__card { padding: 22px 24px; bottom: 16px; right: 16px; left: 16px; }
    .nexante-team-profile__card-name { font-size: 22px; }
}

/* ============================================================
 * WIDOK POJEDYNCZEJ REFERENCJI
 * ============================================================ */
.nexante-reference-single {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #f6f7fb 0%, #ffffff 40%);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    min-height: 60vh;
}

.nexante-reference-single__container {
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Layout - gdy są skany, rozbijamy na 2 kolumny */
.nexante-reference-single__layout {
    display: block;
    max-width: 880px;
    margin: 0 auto;
}

.nexante-reference-single--has-scans .nexante-reference-single__layout {
    max-width: none;
}

.nexante-reference-single--has-scans .nexante-reference-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
}

/* Galeria skanów (aside) */
.nexante-reference-single__scans {
    position: sticky;
    top: 120px;
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 6px 24px rgba(39, 52, 139, 0.08);
    border: 1px solid rgba(39, 52, 139, 0.05);
}

.nexante-reference-single__scans-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nex-navy-dark);
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(39, 52, 139, 0.08);
}

.nexante-reference-single__scans-title svg {
    color: #3b4eff;
}

.nexante-reference-single__scans-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nexante-reference-single__scan {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    background: #f4f5f8;
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 0;
}

.nexante-reference-single__scan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 52, 139, 0.18);
}

.nexante-reference-single__scan img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.nexante-reference-single__scan:hover img {
    transform: scale(1.02);
}

.nexante-reference-single__scan-zoom {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 78, 255, 0.9);
    color: #fff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.25s ease;
}

.nexante-reference-single__scan:hover .nexante-reference-single__scan-zoom {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 960px) {
    .nexante-reference-single--has-scans .nexante-reference-single__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .nexante-reference-single__scans {
        position: static;
        order: 2;
    }
}

/* ============================================================
 * LIGHTBOX - powiększenie skanów
 * ============================================================ */
.nexante-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 30, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.nexante-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s;
}

.nexante-lightbox__img-wrap {
    position: relative;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexante-lightbox__img {
    max-width: 92vw;
    max-height: 90vh;
    display: block;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexante-lightbox.is-open .nexante-lightbox__img {
    transform: scale(1);
}

.nexante-lightbox__close,
.nexante-lightbox__prev,
.nexante-lightbox__next {
    position: absolute;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.nexante-lightbox__close:hover,
.nexante-lightbox__prev:hover,
.nexante-lightbox__next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.nexante-lightbox__close {
    top: 20px;
    right: 20px;
    position: fixed;
}

.nexante-lightbox__prev { left: 20px; }
.nexante-lightbox__next { right: 20px; }

.nexante-lightbox__prev,
.nexante-lightbox__next {
    top: 50%;
    transform: translateY(-50%);
}

.nexante-lightbox__prev:hover,
.nexante-lightbox__next:hover {
    transform: translateY(-50%) scale(1.08);
}

.nexante-lightbox__counter {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

@media (max-width: 640px) {
    .nexante-lightbox__prev,
    .nexante-lightbox__next {
        width: 40px;
        height: 40px;
    }
    .nexante-lightbox__prev { left: 10px; }
    .nexante-lightbox__next { right: 10px; }
    .nexante-lightbox__close { top: 14px; right: 14px; }
}

/* Blokada scrolla strony gdy lightbox otwarty */
body.nexante-lightbox-open {
    overflow: hidden;
}

.nexante-reference-single__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--nex-navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 36px;
    transition: gap 0.25s ease;
}

.nexante-reference-single__back:hover {
    gap: 12px;
}

.nexante-reference-single__card {
    background: #fff;
    border-radius: 10px;
    padding: 60px 60px 70px;
    box-shadow: 0 10px 40px rgba(39, 52, 139, 0.08);
    position: relative;
    overflow: hidden;
}

.nexante-reference-single__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b4eff, var(--nex-gold));
}

.nexante-reference-single__header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 36px;
}

.nexante-reference-single__logo {
    max-width: 200px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nexante-reference-single__logo img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.nexante-reference-single__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    margin: 0 0 6px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.nexante-reference-single__role {
    font-size: 15px;
    color: var(--nex-muted);
    margin: 0 0 12px;
}

.nexante-reference-single__stars {
    display: inline-flex;
    gap: 3px;
    color: #f5a623;
}

.nexante-reference-single__quote-icon {
    color: rgba(59, 78, 255, 0.12);
    margin-bottom: 24px;
}

.nexante-reference-single__content {
    font-size: 17px;
    line-height: 1.75;
    color: #2c2c3a;
}

.nexante-reference-single__content p:first-child {
    font-size: 20px;
    font-weight: 500;
    color: var(--nex-navy-dark);
    line-height: 1.6;
}

.nexante-reference-single__content p {
    margin: 0 0 18px;
}

/* Inne referencje pod spodem */
.nexante-reference-single__others {
    margin-top: 80px;
}

.nexante-reference-single__others h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    text-align: center;
    margin: 0 0 36px;
}

.nexante-reference-single__others-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nexante-reference-single__other {
    display: block;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(39, 52, 139, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(39, 52, 139, 0.04);
}

.nexante-reference-single__other:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39, 52, 139, 0.14);
}

.nexante-reference-single__other p {
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    color: #555;
    margin: 0 0 16px;
}

.nexante-reference-single__other-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(39, 52, 139, 0.06);
}

.nexante-reference-single__other-author img {
    max-width: 90px;
    max-height: 36px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.nexante-reference-single__other-author strong {
    display: block;
    color: var(--nex-navy-dark);
    font-size: 13px;
}

.nexante-reference-single__other-author span {
    font-size: 11px;
    color: var(--nex-muted);
}

/* Responsive */
@media (max-width: 760px) {
    .nexante-reference-single { padding: 56px 0 72px; }
    .nexante-reference-single__container { padding: 0 20px; }
    .nexante-reference-single__card { padding: 36px 28px 42px; }
    .nexante-reference-single__header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .nexante-reference-single__logo { width: 64px; height: 64px; }
    .nexante-reference-single__others-grid { grid-template-columns: 1fr; }
}

/* ============================================================
 * SEKCJA WARTOŚCI z CTA (nexante/values-block)
 * ============================================================ */
.nexante-values {
    position: relative;
    background-color: var(--nex-navy-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    display: flex;
    align-items: center;
}

/* Overlay - lewa/prawa/cała sekcja */
.nexante-values__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nexante-values--overlay-left .nexante-values__overlay {
    background: linear-gradient(
        90deg,
        rgba(10, 19, 64, calc(var(--nex-values-opacity, 0.55) * 1.6)) 0%,
        rgba(10, 19, 64, var(--nex-values-opacity, 0.55)) 30%,
        rgba(10, 19, 64, calc(var(--nex-values-opacity, 0.55) * 0.3)) 70%,
        transparent 100%
    );
}

.nexante-values--overlay-right .nexante-values__overlay {
    background: linear-gradient(
        270deg,
        rgba(10, 19, 64, calc(var(--nex-values-opacity, 0.55) * 1.6)) 0%,
        rgba(10, 19, 64, var(--nex-values-opacity, 0.55)) 30%,
        rgba(10, 19, 64, calc(var(--nex-values-opacity, 0.55) * 0.3)) 70%,
        transparent 100%
    );
}

.nexante-values--overlay-full .nexante-values__overlay {
    background: rgba(10, 19, 64, var(--nex-values-opacity, 0.55));
}

.nexante-values__container {
    position: relative;
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    z-index: 1;
}

.nexante-values__content {
    max-width: 640px;

    /* Animation */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexante-values--align-center .nexante-values__content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.nexante-values--align-right .nexante-values__content {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.nexante-values__content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tytuł */
.nexante-values__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.015em;
    margin: 0 0 44px;
}

/* Lista wartości */
.nexante-values__list {
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nexante-values--align-center .nexante-values__list {
    align-items: center;
}

.nexante-values--align-right .nexante-values__list {
    align-items: flex-end;
}

.nexante-values__item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;

    /* Animation kaskadowa */
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: calc(var(--nex-val-delay, 0s) + 0.2s);
}

.nexante-values--align-right .nexante-values__item {
    transform: translateX(20px);
    flex-direction: row-reverse;
}

.nexante-values__content.is-visible .nexante-values__item {
    opacity: 1;
    transform: translateX(0);
}

/* Okrągły check */
.nexante-values__check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #3b4eff;
    color: #3b4eff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(59, 78, 255, 0.12);
    transition: all 0.3s ease;
}

.nexante-values__item:hover .nexante-values__check {
    background: #3b4eff;
    color: #fff;
    transform: scale(1.08);
}

.nexante-values__text {
    flex: 1;
}

/* CTA na dole (dziedziczy style z nexante-hero__cta, dodatkowe marginy) */
.nexante-values__cta {
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 860px) {
    .nexante-values {
        padding: 28px 0;
        background-position: right center;
        height: 400px !important;
        min-height: 400px !important;
    }
    .nexante-values__title {
        font-size: clamp(1.3rem, 5.5vw, 1.9rem);
        margin-bottom: 18px;
        word-wrap: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
    }
    .nexante-values__list { margin-bottom: 20px; gap: 10px; }
    .nexante-values__item { font-size: 14px; gap: 12px; }
    .nexante-values__check { width: 24px; height: 24px; }

    /* Na mobile overlay staje się full - żeby tekst był zawsze czytelny */
    .nexante-values--overlay-left .nexante-values__overlay,
    .nexante-values--overlay-right .nexante-values__overlay {
        background: linear-gradient(180deg,
            rgba(10, 19, 64, calc(var(--nex-values-opacity, 0.55) * 1.3)) 0%,
            rgba(10, 19, 64, calc(var(--nex-values-opacity, 0.55) * 0.85)) 100%);
    }

    .nexante-values--align-right .nexante-values__content {
        margin-left: 0;
        text-align: left;
    }
    .nexante-values--align-right .nexante-values__list {
        align-items: flex-start;
    }
    .nexante-values--align-right .nexante-values__item {
        flex-direction: row;
        transform: translateX(-20px);
    }
}

@media (max-width: 480px) {
    .nexante-values {
        padding: 22px 0;
    }
    .nexante-values__container { padding: 0 16px; }
    .nexante-values__title {
        font-size: 1.35rem;
        margin-bottom: 14px;
    }
    .nexante-values__list { margin-bottom: 16px; gap: 8px; }
    .nexante-values__item { font-size: 13px; gap: 10px; }
    .nexante-values__cta { padding: 12px 20px; font-size: 13px; }
}

/* ============================================================
 * SEKCJA OBSZARÓW PRAKTYKI (nexante/areas-block)
 * ============================================================ */
.nexante-areas {
    --nex-accent: #3b4eff;
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1fa 100%);
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

/* Dekoracyjny wzór w tle */
.nexante-areas::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 78, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.nexante-areas__container {
    position: relative;
    max-width: var(--nex-max-width);
    margin: 0 auto;
    padding: 0 32px;
    z-index: 1;
}

/* Header sekcji */
.nexante-areas__header {
    text-align: center;
    margin-bottom: 90px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;

    /* Animation - ukryte na start */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.nexante-areas__header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nexante-areas__title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0 0 18px;
}

.nexante-areas__subtitle {
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    color: #6b6b7b;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 640px;
}

/* Grid kart */
.nexante-areas__grid {
    display: grid;
    gap: 50px 48px;
    align-items: start;
}
.nexante-areas__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.nexante-areas__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.nexante-areas__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Karta obszaru */
.nexante-areas__card {
    position: relative;
    padding: 10px 20px 10px 0;

    /* Animation wejścia */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--nex-area-delay, 0s);
}

.nexante-areas__grid.is-visible .nexante-areas__card {
    opacity: 1;
    transform: translateY(0);
}

.nexante-areas__icon {
    width: 42px;
    height: 42px;
    color: var(--nex-navy);
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
}

.nexante-areas__icon svg {
    width: 100%;
    height: 100%;
}

.nexante-areas__card:hover .nexante-areas__icon {
    transform: scale(1.08) rotate(-3deg);
    color: var(--nex-accent);
}

.nexante-areas__card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    font-weight: 700;
    color: var(--nex-navy-dark);
    letter-spacing: -0.005em;
    line-height: 1.25;
    margin: 0 0 14px;
}

.nexante-areas__card-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #6b6b7b;
    margin: 0 0 18px;
}

/* Link-strzałka pod kartą */
.nexante-areas__card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--nex-accent);
    background: transparent;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nexante-areas__card-link:hover {
    background: var(--nex-accent);
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(59, 78, 255, 0.3);
}

.nexante-areas__card-link svg {
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 960px) {
    .nexante-areas { padding: 80px 0 90px; }
    .nexante-areas__header { margin-bottom: 60px; }
    .nexante-areas__grid--cols-3,
    .nexante-areas__grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .nexante-areas__grid { gap: 40px 32px; }
}

@media (max-width: 560px) {
    .nexante-areas { padding: 64px 0 72px; }
    .nexante-areas__container { padding: 0 20px; }
    .nexante-areas__grid--cols-2,
    .nexante-areas__grid--cols-3,
    .nexante-areas__grid--cols-4 {
        grid-template-columns: 1fr;
    }
    .nexante-areas__header { margin-bottom: 48px; }
    .nexante-areas__grid { gap: 36px; }
}

@media (max-width: 560px) {
    .nexante-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 40px;
    }
    .nexante-footer__container { padding: 0 20px; }
    .nexante-footer__bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .nexante-footer__legal {
        justify-content: flex-start;
    }
    .nexante-footer__legal-list {
        flex-wrap: wrap;
        gap: 16px;
    }
    .nexante-footer__credit {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }
}

/* ============================================================
   Domuly Kontener (.container/.row/.col) - fallback layoutu + typografia
   Bootstrap NIE jest ładowany w headerze neXante. Selektory oparte na
   klasie samego bloku (wp-block-domuly-container-block) - niezależne od body.
   Treść tekstowa: Polityka prywatności, Regulamin itp.
   ============================================================ */
.wp-block-domuly-container-block {
    padding: 60px 0;
    /* Główna czcionka motywu (jak w breadcrumbs / okruszkach) */
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}
.wp-block-domuly-container-block > .container {
    width: 100%;
    max-width: var(--nex-max-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.wp-block-table { margin: 0 }
.wp-block-domuly-container-block .row { display: block; }
.wp-block-domuly-container-block .col-md-12 { width: 100%; }

/* Typografia treści tekstowej w kontenerze */
.wp-block-domuly-container-block .col-md-12 h1,
.wp-block-domuly-container-block .col-md-12 h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--nex-navy-dark);
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 22px;
}
.wp-block-domuly-container-block .col-md-12 h1 { font-size: 34px; }
.wp-block-domuly-container-block .col-md-12 h2 { font-size: 26px; margin-top: 40px; }
.wp-block-domuly-container-block .col-md-12 h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--nex-navy-dark);
    margin: 30px 0 12px;
}
.wp-block-domuly-container-block .col-md-12 h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--nex-navy-dark);
    margin: 24px 0 10px;
}
.wp-block-domuly-container-block .col-md-12 p,
.wp-block-domuly-container-block .col-md-12 li {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--nex-text);
}
.wp-block-domuly-container-block .col-md-12 p { margin: 0 0 16px; }
.wp-block-domuly-container-block .col-md-12 ul,
.wp-block-domuly-container-block .col-md-12 ol {
    margin: 0 0 18px;
    padding-left: 24px;
}
.wp-block-domuly-container-block .col-md-12 li { margin-bottom: 8px; }
.wp-block-domuly-container-block .col-md-12 a {
    color: var(--nex-navy-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}
.wp-block-domuly-container-block .col-md-12 a:hover { color: var(--nex-gold); }
.wp-block-domuly-container-block .col-md-12 strong { color: var(--nex-navy-dark); font-weight: 600; }
.wp-block-domuly-container-block .col-md-12 hr {
    border: none;
    border-top: 1px solid rgba(26, 36, 112, 0.12);
    margin: 36px 0;
}

/* Tabele (Polityka prywatności - cele/podstawy prawne) */
.wp-block-domuly-container-block .col-md-12 table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
    font-size: 14.5px;
}
.wp-block-domuly-container-block .col-md-12 th,
.wp-block-domuly-container-block .col-md-12 td {
    border: 1px solid rgba(26, 36, 112, 0.15);
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
    color: var(--nex-text);
}
.wp-block-domuly-container-block .col-md-12 th {
    background: rgba(26, 36, 112, 0.05);
    font-weight: 600;
    color: var(--nex-navy-dark);
}

@media (max-width: 600px) {
    .wp-block-domuly-container-block { padding: 36px 0; }
    .wp-block-domuly-container-block .col-md-12 h1 { font-size: 27px; }
    .wp-block-domuly-container-block .col-md-12 h2 { font-size: 22px; }
    .wp-block-domuly-container-block .col-md-12 table { font-size: 13px; }
    .wp-block-domuly-container-block .col-md-12 th,
    .wp-block-domuly-container-block .col-md-12 td { padding: 8px 10px; }
}
