/*
Theme Name: Pure Play
Author: Franek Zalewski
Version: 1.0
*/


@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* Globalny reset box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
}

body {
    background-color: #ffffff;
    padding: 0;
    overflow-x: hidden;
}

main {
    padding: 20px;
}

/* ========================================= */
/* Animacja pojawiania się przy scrollu      */
/* ========================================= */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out; 
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: white; 
    width: 100%;
    border-radius: 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

header .left-corner {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

header img {
    width: 240px;
    height: auto;
    max-width: 100%;
}

/* menu */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: inline-block;
    padding: 8px 14px;
    background-color: transparent; 
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    position: relative;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 4px;
    width: 0;
    height: 2px;
    background-color: #225490;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: calc(100% - 28px);
}

/* dropdown jezykowy */
.lang-dropdown {
    position: relative;
}

.lang-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.lang-toggle svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 150px;
    list-style: none;
    margin: 0;
    z-index: 1100;
}

.lang-dropdown:hover .lang-menu {
    display: flex;
}

.lang-menu li {
    margin: 0;
}

.lang-menu li a {
    display: block;
    padding: 8px 16px;
    border-radius: 0;
    white-space: nowrap;
}

/* w submenu pokazujemy te sama granatowa linie pod tekstem zamiast szarego tla */
.lang-menu li a::after {
    left: 16px;
    right: 16px;
    bottom: 4px;
}

.lang-menu li a:hover {
    background-color: transparent;
}

/* video */
.hero-banner {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    margin-top: 20px;
    border-radius: 20px;
    background-color: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
    pointer-events: none;
    user-select: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 25%,
        rgba(0, 0, 0, 0) 55%
    );
    z-index: 1;
} 

.hero-text-container {
    position: relative;
    z-index: 2;
    width: 90%;
    text-align: center;
    height: 60px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    position: absolute;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    width: 100%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* onas */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    margin-top: 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.about-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: block;
}

/* slider */
.black-slider-section {
    width: 100%;
    margin-top: 20px;
    border-radius: 20px;
    background-color: #111; 
    background-image: linear-gradient(-45deg, #111, #2a2a2a, #111, #2a2a2a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.slider-window {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%;
}

.slide {
    min-width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

/* Style dla list wypunktowanych wewnątrz slidera (np. do pliku kompetencje.php) */
.slide-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.slide-list li {
    color: #e0e0e0;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 3rem;
    color: #555;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    padding: 10px;
}

.arrow:hover {
    color: white;
    transform: translateY(-50%) scale(1.2);
}

.prev-slide { left: -60px; }
.next-slide { right: -60px; }

/* 3kolumny */
.pillars-section {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    align-items: flex-start;
    padding: 20px 0;
}

.pillar-container {
    flex: 1;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.pillar-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pillar-image img:hover {
    transform: scale(1.05);
}

.pillar-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
    padding: 0 10px;
}

.pillar-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    padding: 0 10px 10px 10px;
}

.pillar-1 { margin-top: 0; }
.pillar-2 { margin-top: 60px; }
.pillar-3 { margin-top: 120px; }

/* Przycisk używany w CTA i formularzu */
.btn-primary {
    display: inline-block;
    background-color: #255591;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(1, 42, 119, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2; 
}

.btn-primary:hover {
    background-color: #2d69b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(1, 42, 119, 0.3);
    color: white;
}

/* ============================================== */
/* ZMODYFIKOWANA SEKCJA CTA                       */
/* ============================================== */

.cta-section {
    background-color: #fff; 
    /* background-image: linear-gradient(-45deg, #111, #2a2a2a, #111, #2a2a2a); */
    background-size: 400% 400%;
    /* animation: gradientShift 15s ease infinite; */
    
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    padding: 40px 20px; 
    
    margin-top: 80px; 
    margin-bottom: 0;
    
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
}

.cta-content {
    position: relative;
    z-index: 2; 
}

.cta-content h2 {
    font-size: 2.8rem; 
    color: #000000;    
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    color: #255591;      
    margin-bottom: 35px;
}

/* ========================================= */
/* Formularz Kontaktowy                      */
/* ========================================= */

.contact-page-section {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 40px; 
    margin-top: 20px;
    max-width: 1000px; 
    margin-left: auto;
    margin-right: auto;
}

.contact-header-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-image-container {
    flex: 1;
    aspect-ratio: 1 / 1; 
}

.contact-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: block;
}

.contact-text-container {
    flex: 1;
}

.contact-text-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: left;
}

.contact-text-container p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.contact-details a {
    color: #941100;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #7a0e00;
    text-decoration: underline;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.form-row {
    display: flex;
    gap: 20px; 
}

.custom-form input, 
.custom-form textarea {
    flex: 1; 
    width: 100%;
    background-color: #f0f0f0; 
    border: 1px solid transparent;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #333;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.custom-form input:focus, 
.custom-form textarea:focus {
    outline: none;
    border-color: #ccc;
    background-color: #e9e9e9;
}

.custom-form textarea {
    resize: vertical;
}

.form-submit {
    display: flex;
    justify-content: flex-end; 
    margin-top: 10px;
}

/* ========================================= */
/* stopka                                    */
/* ========================================= */
footer {
    text-align: center;
    padding: 30px 20px; 
    background-color: #255591; 
    /* background-image: linear-gradient(-45deg, #111, #2a2a2a, #111, #2a2a2a); */
    background-size: 400% 400%;
    /* animation: gradientShift 15s ease infinite; */

    color: #ffffff; 
    font-size: 14px;
    border-radius: 0px;
    box-shadow: 0 35px 55px rgba(0,0,0,0.15); 
    position: relative;
    overflow: hidden;
    margin: 0; 
}

footer p { 
    margin: 0; 
    position: relative; 
    z-index: 2; 
}

/* ========================================= */
/* Sekcja Usługi i Standardy - Intro         */
/* ========================================= */

.services-intro-section {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 40px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-image-container {
    flex: 1;
    aspect-ratio: 16 / 9; 
}

.services-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.services-text-container {
    flex: 1.2;
}

.services-text-container p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.services-text-container p:last-child {
    margin-bottom: 0;
}

.sei-section {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 40px;
    margin-top: 20px; 
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.sei-banner {
    background-color: #255591;
    background-image: linear-gradient(-45deg, #255591, #3975be, #3077ce, #3975be, #255591);
    background-size: 400% 400%; 
    padding: 15px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    animation: gradientShift 15s ease infinite; 
}

.sei-banner h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.sei-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.sei-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.sei-column {
    flex: 1;
}

.sei-column h3 {
    color: #941100;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 800;
}

.sei-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sei-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: #fafafa;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sei-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background-color: white;
}

.sei-icon {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #555; 
    padding: 10px;
}

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

.sei-list span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

/* ========================================= */
/* TABELA - ZAKRES USŁUG                     */
/* ========================================= */

.scope-table-container {
    width: 100%;
    overflow-x: auto; 
    margin-top: 30px;
    padding-bottom: 10px; 
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    min-width: 900px; 
    background-color: white;
}

.scope-column {
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

.scope-column:last-child {
    border-right: none;
}

.scope-header {
    background-color: #fcfcfc;
    color: #941100;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 20px 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.scope-list {
    list-style: none;
    padding: 20px 15px;
    margin: 0;
    flex-grow: 1;
}

.scope-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

.scope-list li:last-child {
    margin-bottom: 0;
}

.scope-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: -1px;
    color: #555;
    font-size: 0.65rem;
}

/* ========================================= */
/* PROCES STRATEGICZNY - DIAGRAM KOŁOWY      */
/* ========================================= */

.process-diagram {
    position: relative;
    max-width: 800px;
    height: 600px;
    margin: 80px auto 40px auto; 
}

.process-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    border: 2px solid #ddd;
    border-radius: 50%;
    z-index: 1;
}

.process-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-center img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.process-node {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -30px; 
    z-index: 3;
}

.process-icon {
    width: 100%;
    height: 100%;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-icon:hover {
    transform: scale(1.1);
    border-color: #255591;
}

.process-icon svg {
    width: 26px;
    height: 26px;
    color: #555; 
}

.process-text {
    position: absolute;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.text-up { bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 15px; text-align: center; width: 160px; }
.text-down { top: 100%; left: 50%; transform: translateX(-50%); margin-top: 15px; text-align: center; width: 180px; }
.text-right { top: 50%; left: 100%; transform: translateY(-50%); margin-left: 20px; text-align: left; width: 200px; }
.text-left { top: 50%; right: 100%; transform: translateY(-50%); margin-right: 20px; text-align: right; width: 200px; }

/* ========================================= */
/* PROCES STRATEGICZNY - SZCZEGÓŁY           */
/* ========================================= */

.process-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-detail-item h4 {
    color: #255591;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-detail-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}

.process-summary {
    margin-top: 50px;
    background-color: #fafafa;
    border-left: 5px solid #255591;
    padding: 20px 40px; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.process-summary h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.process-summary p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

/* ========================================= */
/* SEKCJA STANDARDY - LISTA Z OPISEM         */
/* ========================================= */

.standards-list {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.standards-row {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #eaeaea;
}

.standards-row:last-child {
    border-bottom: none;
}

.standards-title {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #555; 
    margin: 0;
}

.standards-text {
    flex: 2.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.standards-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
    text-align: justify;
}

/* ========================================= */
/* MODEL OPERACYJNY 5C - DIAGRAM             */
/* ========================================= */

.model-5c-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0 60px 0;
}

.model-5c-diagram {
    position: relative;
    width: 600px; 
    height: 450px;
    background-color: transparent;
    border: none;
}

.center-node-5c {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px; 
    height: 90px;
    background-color: white;
    border: 2px solid #255591;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.center-node-5c span {
    font-size: 2.2rem;
    font-weight: 800;
    color: #255591;
}

.node-5c {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
}

.icon-5c-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-5c {
    width: 55px; 
    height: 55px;
    border: 2px solid #555;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.icon-5c:hover {
    transform: scale(1.1);
    border-color: #255591;
}

.icon-5c svg {
    width: 24px;
    height: 24px;
    color: #555;
}

/* PANCERNE POZYCJONOWANIE ETYKIET DLA DESKTOPU */
.label-5c {
    position: absolute !important;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    z-index: 1;
}

.label-top { bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 12px !important; }
.label-right { left: 100%; top: 50%; transform: translateY(-50%); margin-left: 15px !important; text-align: left; }
.label-left { right: 100%; top: 50%; transform: translateY(-50%); margin-right: 15px !important; text-align: right; }

/* PODWÓJNE STRZAŁKI - WSPÓLNE STYLE */
.arrow-5c {
    position: absolute;
    width: 2px;
    background-color: #aaa;
    z-index: 3;
}

.arrow-5c::before,
.arrow-5c::after {
    content: '';
    position: absolute;
    left: -4px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.arrow-5c::before {
    top: 0;
    border-bottom: 8px solid #aaa;
}

.arrow-5c::after {
    bottom: 0;
    border-top: 8px solid #aaa;
}

/* PANCERNE STRZAŁKI DLA DESKTOPU (wymuszające idealną geometrię i środek) */
@media (min-width: 1000px) {
    .model-5c-diagram .arrow-5c {
        left: 50% !important;
        top: 50% !important;
        margin: 0 !important;
        transform-origin: center bottom !important;
    }
    
    /* Precyzyjne pozycjonowanie kolejnych strzałek zignorowaniem styli z HTML */
    .model-5c-diagram .arrow-5c:nth-child(3) { height: 65px !important; transform: translate(-50%, -100%) rotate(0deg) translateY(-55px) !important; }
    .model-5c-diagram .arrow-5c:nth-child(5) { height: 70px !important; transform: translate(-50%, -100%) rotate(73deg) translateY(-55px) !important; }
    .model-5c-diagram .arrow-5c:nth-child(7) { height: 70px !important; transform: translate(-50%, -100%) rotate(142deg) translateY(-55px) !important; }
    .model-5c-diagram .arrow-5c:nth-child(9) { height: 70px !important; transform: translate(-50%, -100%) rotate(218deg) translateY(-55px) !important; }
    .model-5c-diagram .arrow-5c:nth-child(11){ height: 70px !important; transform: translate(-50%, -100%) rotate(287deg) translateY(-55px) !important; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========================================= */
/* RESPO                                     */
/* ========================================= */

.menu-icon {
    display: none;
    width: 30px;
    height: 30px;
    background-image: url('source/svg/menu.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

/* Desktop */
@media (min-width: 1150px) {
    header { flex-direction: row; }
    nav ul { gap: 8px; }

    /* dropdown jezykowy - stabilne, prawe wyrownanie pod Global na duzych ekranach */
    .lang-dropdown {
        position: relative;
    }

    .lang-menu {
        left: auto;
        right: 0;
        min-width: 160px;
    }
}

/* Tablet & Mobile Menu */
@media (max-width: 1149px) {
    header { padding: 10px 20px; }
    header img { width: 220px; } 
    .menu-icon { display: block; } 
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        margin-top: 0; 
        z-index: 999;
        border-top: 1px solid #f0f0f0;
    }

    nav.active ul { display: flex; animation: slideDown 0.3s ease; }
    nav ul li { margin: 10px 0; width: 100%; text-align: center; }
    nav ul li a { 
        background-color: transparent; 
        color: black; 
        width: 80%; 
        border-bottom: 1px solid #f9f9f9;
        border-radius: 0;
    }

    /* dropdown jezykowy w menu mobilnym - wpasowany w pionowa liste, bez wychodzenia poza ekran */
    .lang-dropdown {
        width: 100%;
        text-align: center;
    }

    .lang-toggle {
        justify-content: center;
        width: 80%;
        margin: 0 auto;
    }

    .lang-menu {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .lang-menu li {
        width: 100%;
        margin: 10px 0;
    }

    .lang-menu li a {
        display: inline-block;
        width: 80%;
        padding: 10px 20px;
    }

    .lang-menu li a::after {
        left: 20px;
        right: 20px;
    }
    
    .menu-icon.active { 
        background-image: url('source/svg/close.svg'); 
        background-size: 20px; 
        background-position: center;
    }

    .hero-text { font-size: 1.8rem; }
    .about-section { flex-direction: column; padding: 40px 20px; }
    .about-content, .about-image-container { width: 100%; text-align: center; }
    .about-content p { text-align: left; }
    .about-image-container { margin-top: 30px; }
    .prev-slide { left: -40px; }
    .next-slide { right: -40px; }
    .pillar-1, .pillar-2, .pillar-3 { margin-top: 0; }
    
    .cta-content h2 { font-size: 2.2rem; }
    .cta-section { margin-top: 60px; padding: 40px 20px; } 
    
    .contact-page-section { padding: 30px; } 
    .contact-header-layout { flex-direction: column; text-align: center; }
    .contact-image-container { width: 100%; max-width: 450px; margin: 0 auto; }
    .contact-text-container h2, .contact-text-container p { text-align: center; }
    
    .services-intro-section { flex-direction: column; padding: 30px; }
    .services-image-container { width: 100%; max-width: 500px; }
    .services-text-container p { font-size: 1.2rem; }
    .sei-section { padding: 30px; }
    .sei-grid { flex-direction: column; gap: 40px; }
    
    .scope-grid { min-width: 800px; } 

    .process-diagram {
        height: auto;
        margin: 40px auto 10px auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .process-lines { display: none; }

    .process-center {
        position: relative;
        top: 0; left: 0; transform: none;
        margin-bottom: 30px;
    }

    .process-node {
        position: relative;
        left: 0 !important; top: 0 !important; transform: none !important;
        margin: 0;
        width: 100%;
        max-width: 350px;
        display: flex;
        align-items: center;
        height: auto;
        gap: 20px;
        background: #fafafa;
        border: 1px solid #eee;
        padding: 15px 20px;
        border-radius: 12px;
    }

    .process-icon {
        width: 50px; height: 50px; flex-shrink: 0;
        border-color: #ddd;
    }

    .process-text {
        position: relative;
        top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
        transform: none !important;
        margin: 0 !important;
        width: auto !important;
        text-align: left !important;
    }
    
    .process-details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .standards-row {
        flex-direction: column;
        gap: 15px;
        padding: 30px 0;
    }

    .standards-title {
        font-size: 1.4rem;
        text-align: center;
    }

    /* Na tablecie model 5C zamieniamy na listę pionową */
    .model-5c-container {
        padding: 20px 0;
    }

    .model-5c-diagram {
        width: 100%;
        height: auto;
        border: none;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .arrow-5c { display: none !important; }

    .center-node-5c {
        position: relative;
        top: 0; left: 0; transform: none;
        margin-bottom: 20px;
    }

    .node-5c {
        position: relative !important;
        top: 0 !important; left: 0 !important; transform: none !important;
        width: 100%;
        max-width: 320px; 
        margin: 0 auto;
    }

    /* PANCERNE pozycjonowanie na mobile: zawsze układ poziomy (ikona z lewej, tekst z prawej) */
    .icon-5c-wrapper {
        position: relative !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important; /* Sztywny układ w jednym kierunku */
        justify-content: flex-start !important; 
        align-items: center !important;
        background: white;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 15px 20px !important; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }

    .icon-5c {
        position: relative !important;
        order: 1 !important; /* Siłowo przepycha ikonę na pierwszą pozycję po lewej */
        margin: 0 !important;
    }

    .label-5c {
        position: static !important; /* Kasujemy pozycjonowanie z widoku Desktop */
        top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
        transform: none !important;
        order: 2 !important; /* Zawsze za ikoną */
        margin: 0 0 0 20px !important;
        flex-grow: 1;
        text-align: left !important; /* Zawsze dosunięte do lewej strony */
        font-size: 1.1rem; 
    }
}

/* Mobile */
@media (max-width: 599px) {
    header { flex-direction: row; justify-content: space-between; align-items: center; padding: 10px 20px; }
    header img { width: 180px; }
    main { padding: 10px; }
    .hero-banner { height: 40vh; }
    .hero-text { font-size: 1.4rem; }
    .about-section { padding: 30px 15px; }
    .about-content h2 { font-size: 1.5rem; text-align: center; }
    .about-content p { font-size: 0.95rem; text-align: left; }
    .slide-content h3 { font-size: 1.8rem; }
    .slide-content p { font-size: 0.9rem; }
    .prev-slide { left: -10px; z-index: 20; color: rgba(255,255,255,0.5); }
    .next-slide { right: -10px; z-index: 20; color: rgba(255,255,255,0.5); }
    .slide { padding: 0 20px; }
    .pillars-section { flex-direction: column; align-items: center; gap: 30px; padding: 20px 0; width: 100%; }
    .pillar-container { width: 100%; margin-top: 0 !important; margin-left: 0; margin-right: 0; }
    
    .cta-section { padding: 30px 15px; margin-top: 50px; }
    .cta-content h2 { font-size: 1.8rem; }
    .cta-content p { font-size: 1rem; margin-bottom: 25px; }
    .btn-primary { padding: 12px 30px; font-size: 1rem; width: 100%; text-align: center;}
    
    .contact-page-section { padding: 20px 15px; }
    .contact-text-container h2 { font-size: 1.8rem; }
    .contact-text-container p { font-size: 0.95rem; }
    .form-row { flex-direction: column; gap: 20px; }
    .form-submit { justify-content: center; }
    
    footer { font-size: 12px; margin: 10px 10px 20px 10px; padding: 25px 15px; }
    
    .services-intro-section { padding: 20px 15px; }
    .services-text-container p { font-size: 1.05rem; }
    .sei-section { padding: 20px 15px; }
    .sei-banner { padding: 15px; }
    .sei-banner h2 { font-size: 1.4rem; text-align: center; }
    .sei-description p { font-size: 0.95rem; }
    .sei-list li { padding: 10px 15px; }
    
    .scope-table-container {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        border-radius: 0;
        padding: 0 15px 15px 15px;
    }
    
    .process-summary {
        padding: 15px 15px; 
        margin-top: 30px;
    }

    .standards-row {
        padding: 20px 0;
    }

    .model-5c-container {
        padding: 20px 0 10px 0;
    }

    .node-5c {
        max-width: 280px;
    }
    
    .slide-list li {
        font-size: 0.95rem;
        padding: 6px 15px;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* ========================================= */
/* SEKCJA BRANŻE                             */
/* ========================================= */

.industry-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 20px;
}

.industry-image {
    flex: 1;
    max-width: 250px;
    aspect-ratio: 1 / 1;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.industry-text {
    flex: 3;
    display: flex;
    align-items: center;
}

.industry-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    text-align: justify;
    margin: 0;
}

/* Responsywność dla sekcji Branże */
@media (max-width: 999px) {
    .industry-content {
        flex-direction: column;
        align-items: center;
    }
    
    .industry-image {
        max-width: 100%;
        width: 100%;
        max-width: 500px;
        aspect-ratio: 16 / 9; /* Na mniejszych ekranach lepszy będzie poziomy prostokąt */
    }
}

@media (max-width: 599px) {
    .industry-content {
        gap: 20px;
    }
    
    .industry-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* ========================================= */
/* PASEK Z KLIENTAMI - INFINITE SCROLL       */
/* ========================================= */

.clients-marquee-section {
    background-color: #111; 
    background-image: linear-gradient(-45deg, #111, #2a2a2a, #111, #2a2a2a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite; 
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    margin-top: 20px; 
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    /* Usunięto animację z rodzica - to stabilizuje działanie na Safari i szerokich ekranach */
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 50px;
    padding-right: 50px; /* Separator dopasowany do gapu */
    /* Płynna animacja na elementach podrzędnych */
    animation: scrollMarquee 40s linear infinite; 
}

.marquee-content img {
    height: 90px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    /* Blokada interakcji */
    pointer-events: none; 
    user-select: none;
    -webkit-user-drag: none;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Przesunięcie idealnie o długość jednego własnego bloku */
        transform: translateX(-100%);
    }
}

/* Responsywność paska na urządzenia mobilne */
@media (max-width: 599px) {
    .clients-marquee-section {
        padding: 30px 0;
    }
    .marquee-content {
        gap: 30px;
        padding-right: 30px;
    }
    .marquee-content img {
        height: 60px;
    }
}



/* ========================================= */
/* MAPA GOOGLE - STRONA KONTAKTOWA           */
/* ========================================= */

.map-section {
    /* Zmniejszony padding, aby mapa ładniej wypełniała panel */
    padding: 20px; 
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    /* Delikatny cień wewnętrzny/zewnętrzny dla samej mapy */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsywność dla mapy */
@media (max-width: 599px) {
    .map-container {
        height: 300px;
    }
}


/* ========================================= */
/* PULSUJĄCY PRZYCISK W SEKCJI CTA           */
/* ========================================= */

.btn-pulse {
    /* Animacja działa cały czas, bez przerw na hover */
    animation: subtlePulse 2s infinite ease-in-out;
}

/* Używamy niezależnej właściwości 'scale' zamiast 'transform', 
   aby nie blokować podnoszenia przycisku z klasy .btn-primary:hover */
@keyframes subtlePulse {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.06; /* Delikatne powiększenie */
    }
    100% {
        scale: 1;
    }
}

/* ========================================= */
/* DIAGRAM KOMPETENCJI (SVG)                 */
/* ========================================= */

.competence-diagram-container {
    width: 100%;
    max-width: 900px;
    margin: 60px auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.competence-diagram-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Dostosowanie na smartfony */
@media (max-width: 599px) {
    .competence-diagram-container {
        margin: 40px auto 10px auto;
        /* Pozwalamy wykresowi delikatnie wystawać poza krawędzie ekranu 
           aby tekst pozostał czytelny bez powiększania */
        transform: scale(1.1); 
    }
}

/* ========================================= */
/* LINKI W STOPCE                            */
/* ========================================= */

footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white; 
}

/* ========================================= */
/* MODYFIKACJA SZEROKOŚCI SLIDERA - KOMPETENCJE */
/* ========================================= */
.kompetencje-slider-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* ========================================= */
/* POŚWIATA BRANDX                           */
/* ========================================= */

.shiny-logo-wrapper {
  position: relative;
  display: inline-block; /* Ogranicza wielkość kontenera idealnie do wymiarów obrazka */
}

.shiny-logo-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.shiny-logo-wrapper::after {
  content: '';
  position: absolute;
  inset: 0; 
  
  /* Maska oparta na zmiennej definiowanej w HTML */
  -webkit-mask-image: var(--img-url);
  mask-image: var(--img-url);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  /* Gradient poświaty (możesz zmienić 0.6 na inną wartość, by zmienić jasność) */
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 80%
  );
  background-size: 250% 100%;

  /* Zachowanie oryginalnych kolorów pod poświatą */
  mix-blend-mode: overlay; 

  /* Definicja animacji: nazwa, czas trwania, nieskończoność, liniowe tempo */
  animation: logo-shine 9s infinite linear;
  
  /* Zapobiega blokowaniu kliknięć przez nałożoną warstwę */
  pointer-events: none; 
}

/* Klatki kluczowe ruchu świetlnej smugi */
@keyframes logo-shine {
  0% {
    background-position: 250% center;
  }
  100% {
    background-position: -250% center;
  }
}


/* ========================================= */
/* Nadpisanie stylów Contact Form 7          */
/* ========================================= */

/* Reset wrappera CF7, żeby zachowywał się jak Twój oryginalny <form> */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Usunięcie automatycznych <p> dodawanych przez CF7 */
.wpcf7-form p {
    margin: 0;
    padding: 0;
}

/* Wrapper pojedynczego pola - rozciągnij na całą szerokość kolumny flexa */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    flex: 1;
}

/* Wiersz formularza z dwoma polami obok siebie */
.wpcf7-form .form-row {
    display: flex;
    gap: 20px;
}

/* Stylowanie inputów i textarea wewnątrz CF7 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    background-color: #f0f0f0;
    border: 1px solid transparent;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #333;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #ccc;
    background-color: #e9e9e9;
}

.wpcf7-form textarea {
    resize: vertical;
}

/* Kontener przycisku Prześlij - mniejszy odstęp od textarea */
.wpcf7-form .form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: -170px; /* dociągnij bliżej textarea */
}

/* Stylowanie komunikatów CF7 (sukces/błąd) */
.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #d4edda;
    color: #155724;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    background-color: #f8d7da;
    color: #721c24;
}

/* Komunikat błędu pod konkretnym polem */
.wpcf7-not-valid-tip {
    color: #941100;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Pole z błędem - czerwona ramka */
.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
    border-color: #941100;
}

/* Spinner CF7 - całkowicie ukryty */
.wpcf7-spinner {
    display: none !important;
}

/* Ukrycie honeypotu (na wszelki wypadek) */
.wpcf7-form .wpcf7-honeypot {
    display: none !important;
}

/* =========================================  */
/* HERO PURE PLAY - sticky scroll             */
/* =========================================  */
.pp-hero {
    position: relative;
    height: 400vh;
    margin: -20px -20px 0;    
}

.pp-hero__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff; 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pp-hero__sticky::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #ffffff; /*ramka zakrywajaca */
    z-index: 1; 
    pointer-events: none; /* aby ramka nie blokowala klikniec na stronie */
}

.pp-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.02);
    transform-origin: center center;
    background-color: #ffffff; 
}

.pp-hero__texts {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.pp-hero__line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90%, 1100px);
    text-align: center;
    color: #255591;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0);
    opacity: 0;
    transform: translate(-50%, calc(-50% + 40px));   /* domyslnie: nizej i niewidoczny (czeka) */
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.pp-hero__line.is-active {
    opacity: 1;
    transform: translate(-50%, -50%);                /* aktywny: wysrodkowany, widoczny */
}

.pp-hero__line.is-past {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 40px));   /* przewiniety: znika do gory */
}

@media (max-width: 999px) {
    .pp-hero__line { font-size: 1.9rem; }
}

@media (max-width: 599px) {
    .pp-hero { margin: -10px -10px 0; }
    .pp-hero__line { font-size: 1.4rem; width: 88%; }
}

/* ========================================= */
/* VALUE PROPOSITION                         */
/* ========================================= */

.pp-vp {
    margin-top: 30px;
    padding: 0 0 20px;
}

.pp-vp__head {
    max-width: 1200px;
    margin: 0 auto 45px;
    padding: 0 20px;
}

.pp-vp__rule {
    display: block;
    width: 70px;
    height: 4px;
    background-color: #255591;
    border-radius: 2px;
    margin-bottom: 20px;
}

.pp-vp__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
}

.pp-vp__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pp-vp__card {
    min-height: 160px;
    border-radius: 30px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-vp__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(37,85,145,0.20);
}

/* karta biala */
.pp-vp__card--light {
    background-color: #e0e9ff;
    border: 1px solid #e6ecf4;
}

.pp-vp__card--light .pp-vp__num {
    color: #255591;
}

.pp-vp__card--light .pp-vp__text {
    color: #1a1a1a;
}

/* karta niebieska */
.pp-vp__card--blue {
    background-color: #255591;
}

.pp-vp__card--blue .pp-vp__num {
    color: rgba(255,255,255,0.55);
}

.pp-vp__card--blue .pp-vp__text {
    color: #ffffff;
}

.pp-vp__num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.pp-vp__text {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.45;
}

/* tablet - uklad 2x2 */
@media (max-width: 999px) {
    .pp-vp__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pp-vp__title { font-size: 2.2rem; }
    .pp-vp__card { min-height: 260px; }
}

/* telefon - jedna kolumna */
@media (max-width: 599px) {
    .pp-vp { margin-top: 20px; }
    .pp-vp__grid {
        grid-template-columns: 1fr;
    }
    .pp-vp__title { font-size: 1.8rem; }
    .pp-vp__card {
        min-height: auto;
        padding: 26px 24px;
    }
}

/* ========================================= */
/* HOW WE WORK - slider                      */
/* ========================================= */

.pp-hww {
    margin-top: 80px;
    padding: 20px 0;
}

.pp-hww__title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 45px;
    line-height: 1.1;
}

.pp-hww__slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* okno slidera - przycina tasme, ktora jedzie pod spodem w prawo */
.pp-hww__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    background-color: #ffffff;
}

/* tasma ze slajdami - rusza sie samym transformem, wiec bez przeliczania layoutu */
.pp-hww__track {
    display: flex;
    flex-wrap: nowrap;
    transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
}

/* jeden slajd = cala szerokosc okna, wiec krok tasmy to rowne 100% */
.pp-hww__slide {
    flex: 0 0 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
}

/* lewa polowa - zdjecie od krawedzi do srodka */
.pp-hww__media {
    position: relative;
    min-height: 100%;
}

.pp-hww__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* prawa polowa - tekst */
.pp-hww__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 50px 60px 62px;   /* z dolu zapas na kropki */
}

/* wskaznik slajdu - lezy poza tasma, wiec stoi w miejscu gdy slajdy jada */
.pp-hww__dots {
    position: absolute;
    right: 32px;
    bottom: 26px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;   /* to sam wskaznik, nie przycisk */
}

.pp-hww__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(37, 85, 145, 0.28);
    transition: background-color 0.4s ease;
}

.pp-hww__dot.is-active {
    background-color: #255591;
}

.pp-hww__text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1a1a1a;
}

/* tablet - zdjecie na gorze, tekst pod spodem */
@media (max-width: 999px) {
    .pp-hww__title { font-size: 2.2rem; }
    .pp-hww__slide {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .pp-hww__media {
        min-height: 260px;
    }
    .pp-hww__body {
        padding: 36px 40px 52px;
    }
    .pp-hww__dots {
        right: 26px;
        bottom: 22px;
        gap: 10px;
    }
    .pp-hww__text { font-size: 1.3rem; }
}

/* telefon */
@media (max-width: 599px) {
    .pp-hww { margin-top: 60px; }
    .pp-hww__title { font-size: 1.8rem; margin-bottom: 30px; }
    .pp-hww__media { min-height: 200px; }
    .pp-hww__body {
        padding: 28px 24px 42px;
        gap: 14px;
    }
    .pp-hww__dots {
        right: 18px;
        bottom: 15px;
        gap: 9px;
    }
    .pp-hww__dot {
        width: 8px;
        height: 8px;
    }
    .pp-hww__text { font-size: 1.15rem; }
}

/* --- szacunek dla ustawien systemowych - slider stoi na pierwszym slajdzie --- */
@media (prefers-reduced-motion: reduce) {
    .pp-hww__track,
    .pp-hww__dot {
        transition: none;
    }
}

/* ========================================= */
/* WHY IT WORKS                              */
/* ========================================= */

.pp-wiw {
    margin-top: 80px;
    padding: 20px 0;
}

.pp-wiw__list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.pp-wiw__item2 {
    font-size: 1.35rem;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 16px;
}

.pp-wiw__item {
    font-size: 1.35rem;
    font-weight: 300;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 16px;
}

.pp-wiw__item:last-child, .pp-wiw__item2:last-child {
    margin-bottom: 0;
}

/* telefon */
@media (max-width: 599px) {
    .pp-wiw { margin-top: 60px; }
    .pp-wiw__item { font-size: 1.1rem; }
    .pp-wiw__item2 { font-size: 1.1rem; }
}

/* ========================================= */
/* SITE FOOTER                               */
/* ========================================= */

.site-footer {
    background-color: #ffffff;
    padding: 60px 0 40px;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- gora: logo, pod nim linki --- */
.site-footer__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
}

.site-footer__brand img {
    width: 260px;
    max-width: 100%;
    height: auto;
}

/* dwie kolumny obok siebie, w kazdej pozycje pod soba */
.site-footer__nav {
    display: flex;
    gap: 70px;
}

.site-footer__col {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__col li {
    margin-bottom: 18px;
}

.site-footer__col li:last-child {
    margin-bottom: 0;
}

.site-footer__col a {
    position: relative;
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
}

.site-footer__col a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #225490;
    transition: width 0.3s ease;
}

.site-footer__col a:hover::after {
    width: 100%;
}

.site-footer__col a:hover {
    color: #000000;
}

/* --- linia --- */
.site-footer__rule {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 40px 0 30px;
}

/* --- dol --- */
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

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

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    transition: background-color 0.2s ease;
}

.site-footer__social a:hover {
    background-color: #000000;
}

.site-footer__social svg {
    width: 18px;
    height: 18px;
}

.site-footer__legal {
    text-align: right;
}

.site-footer__privacy {
    position: relative;
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.site-footer__privacy::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #225490;
    transition: width 0.3s ease;
}

.site-footer__privacy:hover::after {
    width: 100%;
}

.site-footer__privacy:hover {
    color: #000000;
}

.site-footer__copy {
    margin: 0;
    color: #555555;
    font-size: 0.9rem;
}

/* --- telefon --- */
@media (max-width: 599px) {
    .site-footer__nav { gap: 50px; }
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-footer__legal { text-align: left; }
}

/* ========================================= */
/* OUR PHILOSOPHY                            */
/* ========================================= */

.pp-phi {
    margin-top: 90px;
    padding: 90px 0;
    border-radius: 30px;
    background: linear-gradient(160deg, #16325a 0%, #0d1c33 100%);
}

.pp-phi__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pp-phi__head {
    margin-bottom: 50px;
}

.pp-phi__rule {
    display: block;
    width: 70px;
    height: 4px;
    background-color: #5b90d1;
    border-radius: 2px;
    margin-bottom: 20px;
}

.pp-phi__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    max-width: 720px;
}

.pp-phi__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pp-phi__item {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    transition: padding-left 0.35s ease;
}

.pp-phi__item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.pp-phi__num {
    flex-shrink: 0;
    min-width: 90px;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.18);
    transition: color 0.35s ease;
}

.pp-phi__text {
    position: relative;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
    color: #e8eef6;
}

.pp-phi__text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background-color: #5b90d1;
    transition: width 0.35s ease;
}

/* hover: numer rozswietla sie, wjezdza linia, rzad lekko sie przesuwa */
.pp-phi__item:hover {
    padding-left: 16px;
}

.pp-phi__item:hover .pp-phi__num {
    color: #5b90d1;
}

.pp-phi__item:hover .pp-phi__text::after {
    width: 100%;
}

/* tablet */
@media (max-width: 999px) {
    .pp-phi__title { font-size: 2.2rem; }
}

/* telefon */
@media (max-width: 599px) {
    .pp-phi { margin-top: 60px; padding: 60px 0; }
    .pp-phi__title { font-size: 1.8rem; }
    .pp-phi__item {
        gap: 18px;
        align-items: flex-start;
        padding: 22px 0;
    }
    .pp-phi__num { font-size: 2.2rem; min-width: 56px; }
    .pp-phi__text { font-size: 1.1rem; }
}

/* ========================================= */
/* BLOKADA ZAZNACZANIA + KURSOR              */
/* ========================================= */

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

/* linki i przyciski niech maja lapke */
a,
button,
[role="button"],
.menu-icon {
    cursor: pointer;
}

/* pola formularzy musza dzialac normalnie */
input,
textarea,
select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

/* ========================================= */
/* SERVICE MODEL - style dopasowane do FP    */
/* ========================================= */

/* --- 3 PILLARS --- */
.pp-3p {
    margin-top: 80px;
    padding: 20px 0;
}

.pp-3p__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pp-3p__card {
    border-radius: 30px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-3p__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(37,85,145,0.20);
}

.pp-3p__card--light {
    background-color: #ffffff;
    border: 1px solid #e6ecf4;
}

.pp-3p__card--blue {
    background-color: #e0e9ff;
}

/* miejsce na zdjecie 1:1 */
.pp-3p__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background-color: #e6ecf4;
}

.pp-3p__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pp-3p__name {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.pp-3p__text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
}

.pp-3p__list {
    margin: 10px 0 0;
    padding: 0 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
}

.pp-3p__card--light .pp-3p__name { color: #255591; }
.pp-3p__card--light .pp-3p__text,
.pp-3p__card--light .pp-3p__list { color: #1a1a1a; }

.pp-3p__card--blue .pp-3p__name { color: #255591; }
.pp-3p__card--blue .pp-3p__text,
.pp-3p__card--blue .pp-3p__list { color: #1a1a1a; }

/* --- 5C: kafelki szczegolowe --- */
.pp-5c__details {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pp-5c__card {
    border-radius: 30px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-5c__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(37,85,145,0.20);
}

.pp-5c__card--light {
    background-color: #ffffff;
    border: 1px solid #e6ecf4;
}

.pp-5c__card--blue {
    background-color: #e0e9ff;
}

.pp-5c__card-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.pp-5c__card-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
}

.pp-5c__card--light .pp-5c__card-title { color: #255591; }
.pp-5c__card--light .pp-5c__card-text { color: #1a1a1a; }
.pp-5c__card--blue .pp-5c__card-title { color: #255591; }
.pp-5c__card--blue .pp-5c__card-text { color: #1a1a1a; }

/* --- 5C: podsumowanie w stylu Our Philosophy --- */
.pp-5c__summary {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 50px 60px;
    border-radius: 30px;
    background: linear-gradient(160deg, #16325a 0%, #0d1c33 100%);
}

.pp-5c__summary-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 18px;
}

.pp-5c__summary-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: #e8eef6;
    line-height: 1.6;
    margin: 0;
}

/* --- tablet --- */
@media (max-width: 999px) {
    .pp-3p__grid { grid-template-columns: 1fr; }
    .pp-5c__details { grid-template-columns: 1fr; }
    .pp-5c__summary { padding: 40px; }
}

/* --- telefon --- */
@media (max-width: 599px) {
    .pp-3p { margin-top: 60px; }
    .pp-3p__card { padding: 22px; }
    .pp-3p__name { font-size: 1.35rem; }
    .pp-5c__details { margin-top: 40px; }
    .pp-5c__card { padding: 26px 24px; }
    .pp-5c__summary {
        margin-top: 40px;
        padding: 30px 24px;
    }
    .pp-5c__summary-title { font-size: 1.4rem; }
    .pp-5c__summary-text { font-size: 1.05rem; }
}

/* ========================================= */
/* PIERWSZA SEKCJA POD BANEREM HERO          */
/* ========================================= */

.hero-banner + section {
    margin-top: 30px;
    padding-top: 0;
}

/* ========================================= */
/* CONTACT US - intro                        */
/* ========================================= */

.pp-contact {
    margin-top: 30px;
    padding: 0 0 20px;
}

.pp-contact__intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.pp-contact__media {
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pp-contact__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pp-contact__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pp-contact__lead {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0;
}

.pp-contact__details {
    list-style: none;
    margin: 22px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid #e6ecf4;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pp-contact__details li {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-size: 1.05rem;
    color: #1a1a1a;
}

.pp-contact__label {
    min-width: 90px;
    font-weight: 700;
    color: #255591;
}

.pp-contact__details a {
    position: relative;
    color: #1a1a1a;
    text-decoration: none;
}

.pp-contact__details a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #225490;
    transition: width 0.3s ease;
}

.pp-contact__details a:hover::after {
    width: 100%;
}

/* ========================================= */
/* CONTACT US - formularz (CF7)              */
/* ========================================= */

.pp-form {
    margin-top: 60px;
    padding: 20px 0;
}

.pp-form__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pp-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pp-form .form-row {
    display: flex;
    gap: 24px;
}

.pp-form .wpcf7-form-control-wrap {
    display: block;
    flex: 1;
    width: 100%;
}

.pp-form input[type="text"],
.pp-form input[type="email"],
.pp-form input[type="tel"],
.pp-form textarea {
    width: 100%;
    background-color: #f0f0f0;
    border: 1px solid transparent;
    border-bottom: 2px solid #c9d3df;
    border-radius: 12px 12px 0 0;
    padding: 18px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.pp-form input::placeholder,
.pp-form textarea::placeholder {
    color: #7a7a7a;
    opacity: 1;
}

.pp-form input[type="text"]:focus,
.pp-form input[type="email"]:focus,
.pp-form input[type="tel"]:focus,
.pp-form textarea:focus {
    outline: none;
    background-color: #e9edf2;
    border-bottom-color: #255591;
}

.pp-form textarea {
    min-height: 220px;
    resize: vertical;
}

.pp-form__consent {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555555;
}

.pp-form .wpcf7-list-item {
    margin: 0;
}

/* nadpisanie starego hacka .wpcf7-form .form-submit z margin-top: -170px */
.pp-form .form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 0 !important;
}

/* ========================================= */
/* CONTACT US - mapa                         */
/* ========================================= */

.pp-map {
    margin-top: 60px;
    padding: 20px 0;
}

.pp-map__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- tablet --- */
@media (max-width: 999px) {
    .pp-contact__intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pp-contact__media {
        width: 100%;
        max-width: 420px;
    }
}

/* --- telefon --- */
@media (max-width: 599px) {
    .pp-contact__lead { font-size: 1.1rem; }
    .pp-contact__details li {
        flex-direction: column;
        gap: 4px;
    }
    .pp-form { margin-top: 40px; }
    .pp-form .form-row {
        flex-direction: column;
        gap: 24px;
    }
    .pp-form textarea { min-height: 170px; }
    .pp-form .form-submit { justify-content: stretch; }
    .pp-map { margin-top: 40px; }
}


/* ========================================= */
/* CLIENT LOGOS - siatka z animacja          */
/* ========================================= */

.pp-logos {
    margin-top: 80px;
    padding: 20px 0;
}

.pp-logos__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.pp-logos__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.5s ease, transform 0.35s ease,
                box-shadow 0.35s ease, border-color 0.35s ease;
}

/* wejscie kaskadowe - odpalane klasa .is-visible z scripts.js */
.pp-logos.is-visible .pp-logos__item {
    opacity: 1;
    transform: translateY(0);
}

.pp-logos.is-visible .pp-logos__item:nth-child(1)  { transition-delay: 0.05s; }
.pp-logos.is-visible .pp-logos__item:nth-child(2)  { transition-delay: 0.15s; }
.pp-logos.is-visible .pp-logos__item:nth-child(3)  { transition-delay: 0.25s; }
.pp-logos.is-visible .pp-logos__item:nth-child(4)  { transition-delay: 0.35s; }
.pp-logos.is-visible .pp-logos__item:nth-child(5)  { transition-delay: 0.45s; }
.pp-logos.is-visible .pp-logos__item:nth-child(6)  { transition-delay: 0.55s; }
.pp-logos.is-visible .pp-logos__item:nth-child(7)  { transition-delay: 0.65s; }
.pp-logos.is-visible .pp-logos__item:nth-child(8)  { transition-delay: 0.70s; }
.pp-logos.is-visible .pp-logos__item:nth-child(9)  { transition-delay: 0.75s; }
.pp-logos.is-visible .pp-logos__item:nth-child(10) { transition-delay: 0.80s; }
.pp-logos.is-visible .pp-logos__item:nth-child(n+11) { transition-delay: 0.85s; }

/* hover kafelka - jeden spokojny ruch */
.pp-logos.is-visible .pp-logos__item:hover {
    transform: translateY(-4px);
    border-color: #cfdcec;
    box-shadow: 0 14px 28px rgba(37,85,145,0.14);
}

/* logotyp - pelny kolor od razu, bez odszarzania */
.pp-logos__item img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.35s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.pp-logos__note {
    max-width: 1200px;
    margin: 28px auto 0;
    padding: 0 20px;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: #555555;
}

/* --- tablet --- */
@media (max-width: 999px) {
    .pp-logos__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .pp-logos__item { min-height: 160px; }
    .pp-logos__item img { max-height: 120px; }
}

/* --- telefon --- */
@media (max-width: 599px) {
    .pp-logos { margin-top: 60px; }
    .pp-logos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .pp-logos__item {
        min-height: 130px;
        padding: 20px;
        border-radius: 22px;
    }
    .pp-logos__item img { max-height: 105px; }
    .pp-logos__note { font-size: 1rem; }
}

/* --- szacunek dla ustawien systemowych --- */
@media (prefers-reduced-motion: reduce) {
    .pp-logos__item,
    .pp-logos__item img {
        transition: none;
        transform: none;
    }
    .pp-logos__item { opacity: 1; }
}

/* ========================================= */
/* CLIENT VALUE - value creation flow        */
/* ========================================= */

.pp-vcc {
    margin-top: 80px;
    padding: 20px 0;
}

.pp-vcc__lead {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.55;
    color: #1a1a1a;
}

.pp-vcc__flow {
    max-width: 1200px;
    margin: 45px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pp-vcc__step {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 30px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-vcc__step:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(37,85,145,0.20);
}

/* chevron w przerwie miedzy kafelkami */
.pp-vcc__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -19px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #b9cbe1;
    border-right: 2px solid #b9cbe1;
    transform: translateY(-50%) rotate(45deg);
}

.pp-vcc__step-num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: #c9d8ea;
}

.pp-vcc__step-name {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #255591;
    margin: 0;
}

.pp-vcc__step-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
    color: #1a1a1a;
    margin: 0;
}

/* ========================================= */
/* CLIENT VALUE - our expertise              */
/* ========================================= */

.pp-exp {
    margin-top: 80px;
    padding: 20px 0;
}

.pp-exp__list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
}

.pp-exp__item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 34px;
    align-items: start;
    padding: 30px 0;
    border-top: 1px solid #e6ecf4;
    transition: padding-left 0.35s ease;
}

.pp-exp__item:last-child {
    border-bottom: 1px solid #e6ecf4;
}

.pp-exp__num {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: #c9d8ea;
    transition: color 0.35s ease;
}

.pp-exp__name {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.pp-exp__name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #255591;
    transition: width 0.35s ease;
}

.pp-exp__text {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.pp-exp__item:hover {
    padding-left: 16px;
}

.pp-exp__item:hover .pp-exp__num {
    color: #255591;
}

.pp-exp__item:hover .pp-exp__name::after {
    width: 100%;
}

/* ========================================= */
/* CLIENT VALUE - client benefits            */
/* ========================================= */

.pp-ben {
    margin-top: 80px;
    padding: 20px 0;
}

.pp-ben__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pp-ben__card {
    border-radius: 30px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-ben__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(37,85,145,0.20);
}

.pp-ben__card--light {
    background-color: #ffffff;
    border: 1px solid #e6ecf4;
}

.pp-ben__card--blue {
    background-color: #e0e9ff;
}

.pp-ben__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pp-ben__card:hover .pp-ben__icon {
    transform: scale(1.06);
}

.pp-ben__icon svg {
    width: 26px;
    height: 26px;
}

.pp-ben__card--light .pp-ben__icon {
    border-color: #255591;
    background-color: #f4f8fc;
    color: #255591;
}

.pp-ben__card--blue .pp-ben__icon {
    border-color: #255591;
    background-color: rgb(255, 255, 255);
    color: #255591;
}

.pp-ben__name {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.pp-ben__text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
}

.pp-ben__card--light .pp-ben__name { color: #255591; }
.pp-ben__card--light .pp-ben__text { color: #1a1a1a; }
.pp-ben__card--blue .pp-ben__name { color: #255591; }
.pp-ben__card--blue .pp-ben__text { color: #1a1a1a; }

/* ========================================= */
/* CLIENT VALUE - client results             */
/* ========================================= */

.pp-res {
    margin-top: 90px;
    padding: 90px 0;
    border-radius: 30px;
    background: linear-gradient(160deg, #16325a 0%, #0d1c33 100%);
}

.pp-res__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pp-res__head {
    margin-bottom: 50px;
}

.pp-res__rule {
    display: block;
    width: 70px;
    height: 4px;
    background-color: #5b90d1;
    border-radius: 2px;
    margin-bottom: 20px;
}

.pp-res__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.pp-res__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pp-res__card {
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.pp-res__card:hover {
    background-color: rgba(255,255,255,0.08);
    border-color: rgba(91,144,209,0.55);
    transform: translateY(-6px);
}

.pp-res__num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.18);
    transition: color 0.35s ease;
}

.pp-res__card:hover .pp-res__num {
    color: #5b90d1;
}

.pp-res__name {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.pp-res__text {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: #e8eef6;
    margin: 0;
}

/* --- tablet --- */
@media (max-width: 999px) {
    .pp-vcc__flow { grid-template-columns: 1fr; }
    .pp-vcc__step:not(:last-child)::after { display: none; }
    .pp-ben__grid { grid-template-columns: repeat(2, 1fr); }
    .pp-res__title { font-size: 2.2rem; }
    .pp-res__grid { grid-template-columns: 1fr; }
}

/* --- telefon --- */
@media (max-width: 599px) {
    .pp-vcc { margin-top: 60px; }
    .pp-vcc__lead { font-size: 1.1rem; }
    .pp-vcc__step { padding: 26px 24px; }
    .pp-vcc__step-name { font-size: 1.35rem; }

    .pp-exp { margin-top: 60px; }
    .pp-exp__item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 0;
    }
    .pp-exp__num { font-size: 2.1rem; }
    .pp-exp__name { font-size: 1.25rem; }
    .pp-exp__text { font-size: 1rem; }

    .pp-ben { margin-top: 60px; }
    .pp-ben__grid { grid-template-columns: 1fr; }
    .pp-ben__card { padding: 26px 24px; }
    .pp-ben__name { font-size: 1.2rem; }

    .pp-res {
        margin-top: 60px;
        padding: 60px 0;
    }
    .pp-res__title { font-size: 1.8rem; }
    .pp-res__head { margin-bottom: 32px; }
    .pp-res__card { padding: 26px 24px; }
    .pp-res__name { font-size: 1.2rem; }
    .pp-res__text { font-size: 1rem; }
}

/* ========================================= */
/* KEY MEDIA COMPETENCES - wykres warstw     */
/* ========================================= */

.pp-kmc {
    margin-top: 80px;
    padding: 20px 0;
}

.pp-vcc__lead--tight {
    margin-top: 18px;
}

.pp-kmc__wrap {
    max-width: 1200px;
    margin: 45px auto 0;
    padding: 0 20px;
}

.pp-kmc__chart {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
}

.pp-kmc__chart svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* paleta warstw: stan spoczynku i stan wyrozniony */
.pp-kmc__node--channels    { --kmc-idle: #d5e2f2; --kmc-on: #5b90d1; }
.pp-kmc__node--platforms   { --kmc-idle: #a8c2e2; --kmc-on: #255591; }
.pp-kmc__node--measurement { --kmc-idle: #7c9cc4; --kmc-on: #16325a; }

.pp-kmc__node {
    cursor: pointer;
}

.pp-kmc__node:focus-visible {
    outline: 2px solid #255591;
    outline-offset: 6px;
    border-radius: 8px;
}

/* pelne kola - biala obwodka tworzy rowny odstep miedzy warstwami */
.pp-kmc__disc {
    fill: var(--kmc-idle);
    stroke: #ffffff;
    stroke-width: 8;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

/* stan aktywny - samo wypelnienie */
.pp-kmc__node.is-active .pp-kmc__disc {
    fill: var(--kmc-on);
}

/* hover - wypelnienie plus kolorowa obwodka, wiec reakcja jest widoczna
   takze wtedy, gdy warstwa jest juz aktywna */
.pp-kmc__node:hover .pp-kmc__disc {
    fill: var(--kmc-on);
    stroke: var(--kmc-on);
}

/* biala otoczka pod linia - linia czytelna tam, gdzie przecina kola */
.pp-kmc__halo {
    fill: none;
    stroke: #ffffff;
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

/* linie i kropki sa dekoracja - kursor lapie tylko kola i etykiety */
.pp-kmc__leader,
.pp-kmc__anchor {
    pointer-events: none;
}

.pp-kmc__leader {
    fill: none;
    stroke: #c3d2e4;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.pp-kmc__node:hover .pp-kmc__leader,
.pp-kmc__node.is-active .pp-kmc__leader {
    stroke: var(--kmc-on);
    stroke-width: 3;
}

/* punkt zaczepienia linii na krawedzi warstwy */
.pp-kmc__anchor {
    fill: #c3d2e4;
    transition: fill 0.3s ease, r 0.3s ease;
}

.pp-kmc__node.is-active .pp-kmc__anchor {
    fill: var(--kmc-on);
}

.pp-kmc__node:hover .pp-kmc__anchor {
    fill: var(--kmc-on);
    r: 6;
}

.pp-kmc__label {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    fill: #8a97a5;
    transition: fill 0.3s ease;
}

.pp-kmc__node:hover .pp-kmc__label,
.pp-kmc__node.is-active .pp-kmc__label {
    fill: var(--kmc-on);
}

/* pigulki - tylko na tablecie i telefonie */
.pp-kmc__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.pp-kmc__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    border: 1px solid #e6ecf4;
    border-radius: 50px;
    background-color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.pp-kmc__chip:hover {
    border-color: #cfdcec;
}

.pp-kmc__chip.is-active {
    border-color: #255591;
    color: #255591;
    box-shadow: 0 6px 16px rgba(37,85,145,0.15);
}

.pp-kmc__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pp-kmc__dot--channels    { background-color: #5b90d1; }
.pp-kmc__dot--platforms   { background-color: #255591; }
.pp-kmc__dot--measurement { background-color: #16325a; }

/* panel opisu pod wykresem */
.pp-kmc__panels {
    margin-top: 40px;
}

.pp-kmc__panel {
    display: none;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(160deg, #16325a 0%, #0d1c33 100%);
}

.pp-kmc__panel.is-active {
    display: block;
    animation: pp-kmc-in 0.35s ease;
}

@keyframes pp-kmc-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pp-kmc__panel-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5b90d1;
    margin-bottom: 14px;
}

.pp-kmc__panel-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px;
}

.pp-kmc__panel-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.65;
    color: #e8eef6;
    margin: 0;
}

/* na duzym ekranie etykiety siedza w SVG, pigulki niepotrzebne */
@media (min-width: 1000px) {
    .pp-kmc__legend { display: none; }
}

/* ========================================= */
/* PLATFORMS & TECH STACK                    */
/* ========================================= */

.pp-stack {
    margin-top: 80px;
    padding: 20px 0;
}

.pp-stack__intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pp-stack__lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

.pp-stack__grid {
    max-width: 1200px;
    margin: 45px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pp-stack__card {
    background-color: #ffffff;
    border: 1px solid #e6ecf4;
    border-radius: 30px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-stack__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(37,85,145,0.20);
}

.pp-stack__num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: #c9d8ea;
}

.pp-stack__name {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #255591;
    margin: 0;
}

.pp-stack__text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
    color: #1a1a1a;
    margin: 0;
}

.pp-stack__tags {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pp-stack__tags li {
    padding: 7px 16px;
    border: 1px solid #dbe5f0;
    border-radius: 50px;
    background-color: #f4f8fc;
    font-size: 0.9rem;
    font-weight: 600;
    color: #255591;
}

/* ========================================= */
/* AKAPIT DOMYKAJACY SEKCJE                  */
/* ========================================= */

.pp-close-note {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 22px 28px;
    border-left: 4px solid #255591;
    background-color: #f7fafd;
    border-radius: 0 16px 16px 0;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.65;
    color: #1a1a1a;
}

/* --- tablet --- */
@media (max-width: 999px) {
    .pp-kmc__halo,
    .pp-kmc__leader,
    .pp-kmc__anchor,
    .pp-kmc__label { display: none; }
    .pp-kmc__chart { max-width: 340px; }
    .pp-kmc__panel { padding: 32px 28px; }
    .pp-kmc__panel-title { font-size: 1.5rem; }
    .pp-stack__grid { grid-template-columns: 1fr; }
}

/* --- telefon --- */
@media (max-width: 599px) {
    .pp-kmc { margin-top: 60px; }
    .pp-kmc__chart { max-width: 260px; }
    .pp-kmc__legend {
        flex-direction: column;
        align-items: stretch;
        margin-top: 22px;
    }
    .pp-kmc__chip { justify-content: flex-start; }
    .pp-kmc__panels { margin-top: 30px; }
    .pp-kmc__panel { padding: 26px 24px; }
    .pp-kmc__panel-title { font-size: 1.35rem; }
    .pp-kmc__panel-text { font-size: 1rem; }

    .pp-stack { margin-top: 60px; }
    .pp-stack__lead { font-size: 1.05rem; }
    .pp-stack__card { padding: 26px 24px; }
    .pp-stack__name { font-size: 1.2rem; }

    .pp-close-note {
        margin-top: 28px;
        padding: 18px 20px;
        font-size: 1rem;
    }
}

/* --- ograniczenie ruchu --- */
@media (prefers-reduced-motion: reduce) {
    .pp-kmc__panel.is-active { animation: none; }
    .pp-stack__card:hover { transform: none; }
}