/* ─── RESET & ZMIENNE ───────────────────────────── */
:root {
    --k2-dark: #0a1628;
    --k2-mid: #0d3a6e;
    --k2-main: #0e5fb5;
    --k2-bright: #1a85e8;
    --k2-cyan: #00c8f0;
    --k2-white: #ffffff;
    --k2-gray-bg: #f0f4fa;
    --k2-gray-tx: #8ca0b8;
    --k2-text: #1a2840;
    --k2-pad: 10vw;
    --k2-darker: #014cae;
    --k2-darker1: #002c82;
    --font-body:    'Montserrat', sans-serif;


}
.k2-landing {
    font-family: var(--font-body);
}
.k2-landing *,
.k2-landing *::before,
.k2-landing *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.k2-landing {
    font-family: 'Barlow', sans-serif;
    color: var(--k2-text);
    background: var(--k2-white);
    overflow-x: hidden;
}

#header {
    display: none;
}

/* ─── NAV ───────────────────────────────────────── */
.k2-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: #fff
}

.k2-nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.k2-nav__logo-k2 {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 28px;
    color: var(--k2-white);
    letter-spacing: 2px;
}

.k2-nav__logo-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--k2-cyan);
    text-transform: uppercase;
}

.k2-nav__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.k2-nav__phone {
    color: var(--k2-cyan);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.k2-nav__links {
    display: flex;
    gap: 8px;
}

.k2-nav__links a {
    color: var(--k2-darker1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s;
}

.k2-nav__links a:hover {
    background: var(--k2-main);
    border-color: var(--k2-main);
    color: var(--k2-white);
}

/* ─── HERO ──────────────────────────────────────── */
.k2-hero {
    min-height: 20vh;
    background: linear-gradient(135deg, var(--k2-cyan) 0%, var(--k2-darker) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px var(--k2-pad) 80px;
    position: relative;
    overflow: hidden;
}

.k2-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 133, 232, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.k2-hero::after {
    content: 'K2';
    position: absolute;
    right: -40px;
    bottom: -60px;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 520px;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.k2-hero__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--k2-cyan);
    margin-bottom: 16px;
    opacity: 0;
    animation: k2FadeUp 0.6s 0.2s ease forwards;
}

.k2-hero__title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(52px, 6vw, 100px);
    line-height: 0.95;
    color: var(--k2-white);
    text-transform: uppercase;
    letter-spacing: -1px;
    opacity: 0;
    animation: k2FadeUp 0.6s 0.35s ease forwards;
    margin-bottom: 1rem;
}

.k2-hero__title span {
    display: block;
    font-size: clamp(1.3rem, 4vw, 35px);
    text-transform: none;
    /*  color: var(--k2-cyan);*/
}
p{font-family: var(--font-body);}
.k2-hero__desc {
    max-width: 430px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.7;
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    animation: k2FadeUp 0.6s 0.5s ease forwards;
}

.k2-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    opacity: 0;
    animation: k2FadeUp 0.6s 0.65s ease forwards;
}

@keyframes k2FadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── PRZYCISKI ─────────────────────────────────── */
.k2-btn {
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-family: var(--font-body);
}

.k2-btn--primary {
    background: var(--k2-cyan);
    color: var(--k2-dark);
}

.k2-btn--secondary {
    background: var(--k2-dark);
    color: var(--k2-white);
}

.k2-btn--primary:hover {
    background: var(--k2-white);
    color: var(--k2-dark);
}

.k2-btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--k2-white);
}

.k2-btn--outline:hover {
    border-color: var(--k2-white);
    background: rgba(255, 255, 255, 0.08);
}

/* ─── STATYSTYKI ────────────────────────────────── */
.k2-stats {
    background: var(--k2-white);
    padding: 80px var(--k2-pad);
}

.k2-stats__title {
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--k2-gray-tx);
    margin-bottom: 56px;
}

.k2-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
}

.k2-stat {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid #e8edf5;
    transition: background 0.2s;
}

.k2-stat:last-child {
    border-right: none;
}

.k2-stat:hover {
    background: var(--k2-gray-bg);
}

.k2-stat__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.k2-stat__icon img {
    width: 100%
}

.k2-stat__number {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 42px;
    line-height: 1;
    color: var(--k2-dark);
    letter-spacing: -1px;
}

.k2-stat__label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--k2-dark);
    margin-top: 6px;
    font-family: var(--font-body);
}

/* ─── SEKCJE – wspólne ──────────────────────────── */
.k2-section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--k2-cyan);
    margin-bottom: 8px;
}

.k2-section-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(36px, 4vw, 52px);
    text-transform: uppercase;
    text-align: center;
    color: var(--k2-darker1);
    line-height: 1.05;
    margin-bottom: 48px;
    margin-top: .5rem;
}

/* ─── OFERTA ────────────────────────────────────── */
.k2-offer {

    padding: 80px var(--k2-pad);
}

.k2-offer__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}

.k2-offer__card {
    background: linear-gradient(145deg, var(--k2-cyan) 0%, var(--k2-darker) 100%);
    padding: 90px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.k2-offer__card:hover {
    transform: translateY(-4px);
}

.k2-offer__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--k2-cyan);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.k2-offer__card:hover::before {
    transform: scaleX(1);
}

.k2-offer__card-num {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}

.k2-offer__card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    color: var(--k2-white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.k2-offer__card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ─── O FIRMIE ──────────────────────────────────── */
.k2-about {
    padding: 100px var(--k2-pad);
}

.k2-section-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
* {
    box-sizing: border-box;
}
.left{
    text-align: left!important;
}
.k2-about__visual {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.k2-about__img-wrap {
}

.k2-about__img {
     width: 100%;
    height: auto;
}

.k2-about__card {
    position: absolute;
    background: linear-gradient(135deg, var(--k2-main), var(--k2-dark));
    color: white;
    padding: 28px 32px;
}

.k2-about__card--main {
    top: 0;
    left: 0;
    right: 60px;
    bottom: 60px;
    display: flex;
    align-items: flex-end;
}

.k2-about__card--main p {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

.k2-about__card--accent {
    bottom: 0;
    right: 0;
    width: 200px;
    height: 160px;
    background: var(--k2-cyan);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.k2-about__years {
    font-family: var(--font-body);
    font-size: 52px;
    font-weight: 900;
    color: var(--k2-dark);
    line-height: 1;
    display: block;
}

.k2-about__card--accent small {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--k2-dark);
    opacity: 0.7;
}

/* ─── KLIENCI ───────────────────────────────────── */
.k2-clients {
    padding: 64px var(--k2-pad);
}

.k2-clients__title {
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
}

.k2-clients__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.k2-client img {
    max-height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    transition: opacity 0.2s;
}

.k2-client img:hover {
    opacity: 0.9;
}

.k2-client__text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.k2-client a {
    text-decoration: none;
}

.k2-client a:hover .k2-client__text {
    color: var(--k2-cyan);
}

/* ─── KONTAKT ───────────────────────────────────── */
.k2-contact {
    background: linear-gradient(135deg, var(--k2-dark) 0%, var(--k2-mid) 100%);
    padding: 100px var(--k2-pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.k2-contact .k2-section-label {
    color: rgba(255, 255, 255, 0.5);
}

.k2-contact .k2-section-title {
    color: var(--k2-white);
    margin-bottom: 32px;
    text-align: center
}

.k2-contact__detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.k2-contact__icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.k2-contact__icon svg {
    width: 18px;
    height: 18px;
    fill: var(--k2-cyan);
}

.k2-contact__detail a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 500;
    transition: color 0.2s;
}

.k2-contact__detail a:hover {
    color: var(--k2-cyan);
}

.k2-contact__address {
    margin-top: 32px;
    padding-top: 32px;
  /*  border-top: 1px solid rgba(255, 255, 255, 0.1);*/
    font-size: 13px;
    color:#fff;
    line-height: 1.8;
}

/* ─── FORMULARZ ─────────────────────────────────── */
.k2-contact__form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.k2-form__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--k2-white);
    margin-bottom: 28px;
}

.k2-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.k2-form__group {
    margin-bottom: 12px;
}

.k2-form__group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--font-body);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.k2-form__group input,
.k2-form__group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
    appearance: none;
}

.k2-form__group input:focus,
.k2-form__group textarea:focus {
    border-color: var(--k2-cyan);
    background: rgba(255, 255, 255, 0.1);
}

.k2-form__group input::placeholder,
.k2-form__group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.k2-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
}

.k2-form__consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--k2-cyan);
    flex-shrink: 0;
}

.k2-form__consent label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    cursor: pointer;
}

.k2-btn-submit {
    width: 100%;
    background: var(--k2-cyan);
    color: var(--k2-dark);
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.k2-btn-submit:hover {
    background: var(--k2-white);
}

.k2-form__success {
    background: rgba(0, 200, 240, 0.15);
    border: 1px solid var(--k2-cyan);
    color: var(--k2-cyan);
    padding: 20px;
    font-weight: 600;
    text-align: center;
}

.k2-form__error {
    background: rgba(220, 50, 50, 0.15);
    border: 1px solid #e05050;
    color: #ff8080;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
}

.wpcf7-response-output{
    color:#fff;
   
}
.wpcf7-response-output, .wpcf7-not-valid-tip{
 font-size: .85rem
}
/* ─── FOOTER ────────────────────────────────────── */
.k2-footer {
    background: var(--k2-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px var(--k2-pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.k2-footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.k2-footer a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.k2-footer a:hover {
    color: var(--k2-cyan);
}
@media (max-width: 1800px) {
.k2-offer__grid {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
}
/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
    .k2-offer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .k2-hero__btns {
        justify-content: center;
    }

    :root {
        --k2-pad: 24px;
    }

    .k2-nav {
        padding: 14px 20px;
    }

    .k2-nav__links {
        display: none;
    }

    .k2-hero {
        padding: 100px 24px 60px;
    }

    .k2-about {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
    }

   .k2-contact {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 24px;
    }

    .k2-form__row {
        grid-template-columns: 1fr;
    }

    .k2-stats {
        padding: 60px 24px;
    }

    .k2-offer {
        padding: 60px 24px;
    }

    .k2-clients {
        padding: 48px 24px;
    }
}

@media (max-width: 600px) {
.k2-about__visual{
    height: auto;
}
    .k2-clients__logos {
        gap: 28px;
    }

    .k2-contact__form {
        padding: 24px;
    }

    .k2-footer {
        flex-direction: column;
        text-align: center;
    }

    .k2-about__card--accent {
        width: 160px;
        height: 130px;
    }

    .k2-about__years {
        font-size: 40px;
    }
}
@media (max-width: 480px) {
    .k2-offer__card {
        padding: 12px 8px;
        aspect-ratio: 1;
        vertical-align: middle;
        display: flex
;
        justify-content: center;
        align-items: center;
    }
    .k2-offer__card h3 {
        font-size: 1rem;
    }
}
/* ── Hamburger ── */
.k2-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.k2-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--k2-dark);
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

/* Animacja X */
.k2-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.k2-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.k2-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu ── */
.k2-mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

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

.k2-mobile-menu__phone {
    color: var(--k2-cyan);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
}

.k2-mobile-menu__link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 0;
    transition: color 0.2s;
}

.k2-mobile-menu__link:hover {
    color: var(--k2-cyan);
}

@media (min-width: 901px) {
    .k2-nav__links {
        display: flex;
    }

    .k2-hamburger {
        display: none !important;
    }

    .k2-mobile-menu {
        display: none !important;
    }
}

/* ── Topbar ── */
.k2-topbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: 60px;
}

.k2-topbar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--k2-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.k2-topbar__phone:hover {
    color: var(--k2-cyan);
}

.k2-topbar__phone svg {
    width: 14px;
    height: 14px;
    fill: var(--k2-white);
    flex-shrink: 0;
}

.k2-topbar__social {
    display: flex;
    align-items: center;
    gap: 4px;
}

.k2-topbar__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
}
.k2-topbar__social a img{
    height: 100%;
}
.k2-topbar__social a:hover {
    border-color: var(--k2-white);
    background: rgba(255, 255, 255, 0.08);
}

.k2-topbar__social svg {
    width: 15px;
    height: 15px;
    fill: var(--k2-white);
}

.k2-nav__logo-img {
    max-height: 80px;
}

/* Przesuń nav w dół o wysokość topbara */
.k2-nav {
    top: 40px;
}

/* ─── REFERENCJE ────────────────────────────────── */
.k2-references {
    padding: 80px var(--k2-pad);
    background: var(--k2-white);
}
/* ================================================================
   K2 SWIPER – dorzuć do k2-landing.css
   ================================================================ */

/* ─── Referencje – sekcja ───────────────────────── */
.k2-references {
    padding: 80px var(--k2-pad);
    background: var(--k2-white);
}

/* ─── Slajd referencji ──────────────────────────── */
.k2-ref-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.k2-ref-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    padding: 24px;
    display: block;
}

/* ─── Swiper arrows – referencje ───────────────── */
#k2-slider-references .swiper-button-prev,
#k2-slider-references .swiper-button-next {
    width: 44px; height: 44px;
    background: var(--k2-white);
    border: 1px solid #e0e8f0;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
    top: 44%;
}
#k2-slider-references .swiper-button-prev:hover,
#k2-slider-references .swiper-button-next:hover {
    background: var(--k2-main);
    border-color: var(--k2-main);
}
#k2-slider-references .swiper-button-prev::after,
#k2-slider-references .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
    color: var(--k2-main);
}
#k2-slider-references .swiper-button-prev:hover::after,
#k2-slider-references .swiper-button-next:hover::after {
    color: white;
}

/* ─── Swiper pagination ─────────────────────────── */
#k2-slider-references .swiper-pagination {
    position: relative;
    margin-top: 20px;
}
#k2-slider-references .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: #c8d8e8;
    opacity: 1;
    transition: all 0.2s;
}
#k2-slider-references .swiper-pagination-bullet-active {
    background: var(--k2-main);
    transform: scale(1.3);
}

/* ─── Klienci – sekcja ──────────────────────────── */
.k2-clients {
    padding: 64px var(--k2-pad);
}
.k2-clients__title {
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 40px;
}

/* ─── Slajd logo ────────────────────────────────── */
.k2-logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.k2-logo-slide img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.k2-logo-slide img:hover { opacity: 0.9; }
.k2-logo-slide a { display: block; }
.k2-client__text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 900px) {
    .k2-references { padding: 60px 24px; }
    .k2-clients    { padding: 48px 24px; }
    .k2-ref-slide img { padding: 16px; }
    .k2-logo-slide img { max-height: 36px; }
    .k2-section-text {
            grid-template-columns:1fr;
            gap:1rem
    }
}
.k2-mobile-menu ul{
    height: 200px;
}
.k2-nav__links ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
}

.k2-nav__links li {
    margin: 0;
    padding: 0;
}

.k2-nav__links li a {
    color:var(--k2-darker1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
    display: block;
    font-family: var(--font-body);
    white-space: nowrap;
    display: inline-block;
}

.k2-nav__links li a:hover,
.k2-nav__links li.current-menu-item a {
    background: var(--k2-main);
    border-color: var(--k2-main);
    color: var(--k2-white);
}

/* ── Mobile menu – baza ── */
.k2-mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; /* wysokość topbara */
    left: 0;
    width: 100%;
    right: 0;
    height: 100%;
    /* background: rgba(10, 22, 40, 0.98); */
    backdrop-filter: blur(8px);
    padding: 2em;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.k2-mobile-menu.is-active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

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

.k2-mobile-menu__list li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.k2-mobile-menu__list li a:hover {
    color: var(--k2-cyan);
}
body.customize-support {
    font-family: var(--font-body);
}
body{
    padding: 0;
    margin: 0;
}
.hero-img{
        position: absolute;
    height: 100%;
    left: 50%;

}
.k2-mobile-menu__phone {
    display: block;
    color: var(--k2-cyan);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .hero-img {display:none}
    .k2-hamburger {
        display: flex !important;
    }
}

nav a.active {
  color: #e63946;          /* zmień na swój kolor akcentu */
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}