/* ------------------------------------------------------------
   NAWIGACJA — białe tło od samego początku
   (tylko wspolpraca.php — plik ładowany wyłącznie tutaj)
   ------------------------------------------------------------ */
.mainnavigation {
    background-color: var(--Platonic);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(116, 113, 217, 0.2);
}

/* ============================================================
   STRONA WSPÓŁPRACA — SPONSORZY I PATRONI
   Prefiks klas: wsp-
   Wymaga: global.css (zmienne kolorów)
   ============================================================ */

.wsp-main {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--Napisy);
}

/* ------------------------------------------------------------
   PRZYCISKI WSPÓLNE
   ------------------------------------------------------------ */
.wsp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.wsp-btn-light {
    background-color: #FFFFFF;
    color: var(--CiemnyFioletowy1);
}

.wsp-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.wsp-btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.wsp-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    transform: translateY(-3px);
}

.wsp-btn-violet {
    background: linear-gradient(135deg, var(--Niebieski) 0%, var(--Fioletowy) 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(116, 113, 217, 0.35);
}

.wsp-btn-violet:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(116, 113, 217, 0.45);
}

.wsp-btn-ghost-dark {
    background-color: transparent;
    color: var(--Napisy);
    border: 2px solid var(--Ramka);
}

.wsp-btn-ghost-dark:hover {
    border-color: var(--Fioletowy);
    color: var(--FioletowyHover);
    transform: translateY(-3px);
}

/* ------------------------------------------------------------
   NAGŁÓWKI SEKCJI
   ------------------------------------------------------------ */
.wsp-section {
    width: 100%;
    padding: 90px 5%;
}

.wsp-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px auto;
}

.wsp-section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--Napisy);
}

.wsp-section-subtitle {
    margin-top: 14px;
    font-size: clamp(16px, 2vw, 19px);
    color: var(--SzaryTekst);
    line-height: 1.55;
}

.wsp-header-light .wsp-section-title,
.wsp-title-light {
    color: #FFFFFF;
}

.wsp-header-light .wsp-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.wsp-hero {
    position: relative;
    width: 100%;
    padding: 190px 5% 100px 5%;
    background: linear-gradient(135deg, var(--CiemnyNiebieski) 0%, var(--Niebieski) 42%, var(--Fioletowy) 100%);
    overflow: hidden;
}

.wsp-hero-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.wsp-hero-deco-1 { width: 420px; height: 420px; top: -140px; right: -110px; }
.wsp-hero-deco-2 { width: 260px; height: 260px; bottom: -90px;  left: -70px; background: rgba(255, 255, 255, 0.06); }
.wsp-hero-deco-3 { width: 130px; height: 130px; top: 40%; left: 12%; background: rgba(255, 255, 255, 0.05); }

.wsp-hero-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.wsp-hero-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.wsp-hero-title {
    margin-top: 26px;
    font-size: clamp(34px, 5.4vw, 60px);
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
}

.wsp-hero-title span {
    background: linear-gradient(90deg, #FDE68A, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.wsp-hero-subtitle {
    margin: 24px auto 0 auto;
    max-width: 760px;
    font-size: clamp(16px, 2.1vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.wsp-hero-btns {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.wsp-hero-login {
    margin-top: 20px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.78);
}

.wsp-hero-login a {
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    transition: text-decoration-color 0.25s ease;
}

.wsp-hero-login a:hover {
    text-decoration-color: #FFFFFF;
}

.wsp-hero-stats {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.wsp-hero-stat {
    padding: 24px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.wsp-hero-stat-num {
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.wsp-hero-stat-label {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
}

/* ------------------------------------------------------------
   DLACZEGO WARTO
   ------------------------------------------------------------ */
.wsp-why {
    background-color: var(--Platonic);
}

.wsp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1320px;
    margin: 0 auto;
}

.wsp-why-card {
    background-color: var(--MainContentBG);
    border: 1px solid var(--Ramka);
    border-radius: 18px;
    padding: 34px 28px;
    box-shadow: var(--shadow-crisp);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wsp-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.wsp-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.wsp-icon-blue {
    background-color: var(--JasnyNiebieski);
    color: var(--ContestNiebieski2);
}

.wsp-icon-violet {
    background-color: var(--ContestFioletJasny);
    color: var(--ContestFioletCiemny);
}

.wsp-why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--Napisy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.wsp-why-card p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--SzaryTekst);
}

/* ------------------------------------------------------------
   WIDOCZNOŚĆ SPONSORA — TOUCHPOINTY
   ------------------------------------------------------------ */
.wsp-visibility {
    background: linear-gradient(135deg, var(--CiemnyFioletowy1) 0%, var(--Fioletowy) 60%, var(--Niebieski) 100%);
}

.wsp-visibility-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.wsp-touchpoints {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1320px;
    margin: 0 auto;
}

.wsp-touchpoint {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    padding: 30px 24px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wsp-touchpoint:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.16);
}

.wsp-touchpoint-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: var(--CiemnyFioletowy1);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.wsp-touchpoint-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.wsp-touchpoint-body p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.wsp-touchpoint-line {
    width: 44px;
    min-width: 24px;
    align-self: center;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
}

/* ------------------------------------------------------------
   FORMY SPONSORINGU
   ------------------------------------------------------------ */
.wsp-packages {
    background-color: var(--Platonic);
}

.wsp-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.wsp-package {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--MainContentBG);
    border: 1px solid var(--Ramka);
    border-radius: 20px;
    padding: 34px 28px;
    box-shadow: var(--shadow-crisp);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wsp-package:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--Fioletowy);
}

.wsp-package-featured {
    border: 2px solid var(--Fioletowy);
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F4FF 100%);
}

.wsp-package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 6px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--Fioletowy) 0%, var(--Niebieski) 100%);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.wsp-package-head {
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--Ramka);
}

.wsp-package-name {
    font-size: 21px;
    font-weight: 800;
    color: var(--Napisy);
}

.wsp-package-price {
    margin-top: 8px;
    font-size: 16px;
    color: var(--SzaryTekst);
}

.wsp-package-price strong {
    font-size: 26px;
    color: var(--FioletowyHover);
    font-weight: 800;
}

.wsp-package-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wsp-package-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--CiemnySzaryTekst);
}

.wsp-package-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--JasnyNiebieski);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.wsp-packages-note {
    max-width: 900px;
    margin: 44px auto 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.65;
    color: var(--SzaryTekst);
    background-color: var(--MainContentBG);
    border: 1px dashed var(--Fioletowy);
    border-radius: 14px;
    padding: 22px 30px;
}

.wsp-packages-note strong {
    color: var(--Napisy);
}

/* ------------------------------------------------------------
   PROFIL SPONSORA
   ------------------------------------------------------------ */
.wsp-profile {
    background-color: #FFFFFF;
}

.wsp-profile-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    max-width: 1320px;
    margin: 0 auto;
    align-items: center;
}

.wsp-profile-left .wsp-section-title {
    text-align: left;
}

.wsp-profile-text {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--SzaryTekst);
}

.wsp-profile-steps {
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.wsp-profile-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wsp-profile-step-num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--Niebieski) 0%, var(--Fioletowy) 100%);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 800;
}

.wsp-profile-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--Napisy);
    margin-bottom: 6px;
}

.wsp-profile-step p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--SzaryTekst);
}

.wsp-profile-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

/* Mockup panelu sponsora */
.wsp-profile-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--Ramka);
    background-color: #FFFFFF;
    transform: rotate(1.5deg);
    transition: transform 0.4s ease;
}

.wsp-profile-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.wsp-profile-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(90deg, var(--CiemnyFioletowy1), var(--Fioletowy));
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.wsp-profile-card-header span {
    margin-left: 8px;
}

.wsp-profile-card-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
}

.wsp-profile-card-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wsp-profile-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--Ramka);
    flex-wrap: wrap;
}

.wsp-profile-card-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--SzaryTekst);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.wsp-profile-card-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--Napisy);
    text-align: right;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wsp-chip {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background-color: var(--JasnyNiebieski);
    color: var(--CiemnyNiebieski);
    font-size: 13px;
    font-weight: 600;
}

.wsp-profile-card-status {
    padding: 6px 14px;
    border-radius: 999px;
    background-color: var(--JasnyZielony);
    color: var(--CiemnyZielony);
    font-size: 13.5px;
    font-weight: 700;
}

.wsp-profile-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wsp-profile-card-btn {
    padding: 11px 20px;
    border-radius: 9px;
    font-size: 14.5px;
    font-weight: 600;
    border: 1px solid var(--Ramka);
    color: var(--CiemnySzaryTekst);
    background-color: var(--JasnyBiały);
}

.wsp-profile-card-btn-primary {
    background: linear-gradient(135deg, var(--Niebieski) 0%, var(--Fioletowy) 100%);
    color: #FFFFFF;
    border: none;
}

/* ------------------------------------------------------------
   EDYCJA 0 — PILOTAŻ
   ------------------------------------------------------------ */
.wsp-pilot {
    background-color: var(--Platonic);
}

.wsp-pilot-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 34px;
    max-width: 1320px;
    margin: 0 auto;
    align-items: start;
}

.wsp-pilot-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wsp-pilot-stat {
    background-color: var(--MainContentBG);
    border: 1px solid var(--Ramka);
    border-radius: 18px;
    padding: 30px 22px;
    box-shadow: var(--shadow-crisp);
    text-align: center;
}

.wsp-pilot-stat-num {
    font-size: clamp(34px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--Niebieski) 0%, var(--Fioletowy) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.wsp-pilot-stat-label {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.45;
    color: var(--SzaryTekst);
}

.wsp-pilot-chart {
    background-color: var(--MainContentBG);
    border: 1px solid var(--Ramka);
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: var(--shadow-crisp);
}

.wsp-pilot-chart-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--Napisy);
    margin-bottom: 26px;
}

.wsp-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wsp-chart-row {
    display: grid;
    grid-template-columns: 130px 1fr 44px;
    align-items: center;
    gap: 14px;
}

.wsp-chart-label {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--CiemnySzaryTekst);
    text-align: right;
}

.wsp-chart-bar-track {
    height: 16px;
    border-radius: 999px;
    background-color: var(--ContestSzaryJasny);
    overflow: hidden;
}

.wsp-chart-bar {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--Niebieski) 0%, var(--Fioletowy) 100%);
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.wsp-chart-value {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--Napisy);
}

.wsp-pilot-chart-note {
    margin-top: 24px;
    font-size: 13.5px;
    color: var(--SzaryTekst);
    line-height: 1.5;
}

/* ------------------------------------------------------------
   IZBY I KLUBY GOSPODARCZE
   ------------------------------------------------------------ */
.wsp-chambers {
    background: linear-gradient(135deg, var(--Napisy) 0%, var(--CiemnyFioletowy1) 55%, var(--CiemnyNiebieski) 100%);
}

.wsp-chambers-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    max-width: 1320px;
    margin: 0 auto;
    align-items: center;
}

.wsp-chambers-tag {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.wsp-chambers-content .wsp-section-title {
    text-align: left;
}

.wsp-chambers-text {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

.wsp-chambers-list {
    margin-top: 30px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wsp-chambers-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.wsp-chambers-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #A7F3D0;
}

.wsp-chambers-card {
    display: flex;
    justify-content: center;
}

.wsp-cert {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    padding: 44px 38px;
    text-align: center;
    backdrop-filter: blur(8px);
    max-width: 420px;
}

.wsp-cert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--Pomaranczowy), #FBBF24);
    color: #FFFFFF;
    margin-bottom: 24px;
}

.wsp-cert-title {
    font-size: 21px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.wsp-cert-text {
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

/* ------------------------------------------------------------
   ZOSTAŃ SPONSOREM — KONTO
   ------------------------------------------------------------ */
.wsp-account {
    background-color: #FFFFFF;
}

.wsp-account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.wsp-account-card {
    display: flex;
    flex-direction: column;
    padding: 40px 36px;
    border-radius: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wsp-account-card:hover {
    transform: translateY(-6px);
}

.wsp-account-primary {
    background: linear-gradient(150deg, var(--CiemnyFioletowy1) 0%, var(--Fioletowy) 60%, var(--Niebieski) 100%);
    color: #FFFFFF;
    box-shadow: 0 18px 46px rgba(116, 113, 217, 0.35);
}

.wsp-account-primary:hover {
    box-shadow: 0 24px 56px rgba(116, 113, 217, 0.45);
}

.wsp-account-secondary {
    background-color: var(--MainContentBG);
    border: 1.5px solid var(--Ramka);
    box-shadow: var(--shadow-crisp);
    color: var(--Napisy);
}

.wsp-account-secondary:hover {
    border-color: var(--Fioletowy);
    box-shadow: var(--shadow-xl);
}

.wsp-account-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    margin-bottom: 22px;
}

.wsp-account-icon-outline {
    background-color: var(--ContestFioletJasny);
    border: none;
    color: var(--ContestFioletCiemny);
}

.wsp-account-card h3 {
    font-size: 23px;
    font-weight: 800;
    line-height: 1.25;
}

.wsp-account-primary h3 { color: #FFFFFF; }
.wsp-account-secondary h3 { color: var(--Napisy); }

.wsp-account-card > p {
    margin-top: 14px;
    font-size: 15.5px;
    line-height: 1.65;
}

.wsp-account-primary > p { color: rgba(255, 255, 255, 0.88); }
.wsp-account-secondary > p { color: var(--SzaryTekst); }

.wsp-account-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 22px 0 30px 0;
}

.wsp-account-list li {
    position: relative;
    padding-left: 28px;
    font-size: 14.5px;
    line-height: 1.5;
}

.wsp-account-primary .wsp-account-list li { color: rgba(255, 255, 255, 0.92); }
.wsp-account-secondary .wsp-account-list li { color: var(--CiemnySzaryTekst); }

.wsp-account-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
}

.wsp-account-primary .wsp-account-list li::before {
    background-color: rgba(255, 255, 255, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.wsp-account-secondary .wsp-account-list li::before {
    background-color: var(--ContestFioletJasny);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B21A8' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.wsp-account-btn {
    margin-top: auto;
    align-self: flex-start;
    gap: 10px;
}

.wsp-account-secondary .wsp-btn-outline {
    color: var(--FioletowyHover);
    border-color: var(--Fioletowy);
}

.wsp-account-secondary .wsp-btn-outline:hover {
    background-color: var(--ContestFioletJasny);
    border-color: var(--FioletowyHover);
}

.wsp-account-note {
    max-width: 700px;
    margin: 36px auto 0 auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: var(--SzaryTekst);
}

.wsp-account-note a {
    color: var(--FioletowyHover);
    font-weight: 700;
    text-decoration: none;
}

.wsp-account-note a:hover {
    text-decoration: underline;
}

/* ------------------------------------------------------------
   CTA / KONTAKT
   ------------------------------------------------------------ */
.wsp-cta {
    background-color: var(--Platonic);
}

.wsp-cta-card {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 76px 8%;
    border-radius: 28px;
    text-align: center;
    background: linear-gradient(135deg, var(--Niebieski) 0%, var(--Fioletowy) 100%);
    box-shadow: 0 20px 60px rgba(116, 113, 217, 0.35);
    overflow: hidden;
}

.wsp-cta-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    pointer-events: none;
}

.wsp-cta-deco-1 { width: 300px; height: 300px; top: -110px; left: -90px; }
.wsp-cta-deco-2 { width: 220px; height: 220px; bottom: -80px; right: -60px; }

.wsp-cta-title {
    position: relative;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #FFFFFF;
}

.wsp-cta-text {
    position: relative;
    margin: 20px auto 0 auto;
    max-width: 640px;
    font-size: 17.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.wsp-cta-btns {
    position: relative;
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.wsp-cta-mail {
    position: relative;
    margin-top: 26px;
    font-size: 15.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.4px;
}

/* ------------------------------------------------------------
   ANIMACJE WEJŚCIA (klasa dodawana przez JS)
   ------------------------------------------------------------ */
.wsp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.wsp-reveal.wsp-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .wsp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .wsp-chart-bar {
        transition: none;
    }
    .wsp-why-card,
    .wsp-touchpoint,
    .wsp-package,
    .wsp-profile-card,
    .wsp-btn {
        transition: none;
    }
}

/* ------------------------------------------------------------
   RESPONSYWNOŚĆ
   ------------------------------------------------------------ */
@media (max-width: 1200px) {
    .wsp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wsp-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wsp-touchpoints {
        flex-wrap: wrap;
        gap: 20px;
    }

    .wsp-touchpoint {
        flex: 1 1 calc(50% - 20px);
        min-width: 260px;
    }

    .wsp-touchpoint-line {
        display: none;
    }
}

@media (max-width: 1000px) {
    .wsp-profile-inner,
    .wsp-chambers-inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .wsp-pilot-grid {
        grid-template-columns: 1fr;
    }

    .wsp-profile-card {
        transform: none;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .wsp-account-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .wsp-section {
        padding: 64px 5%;
    }

    .wsp-account-card {
        padding: 30px 26px;
    }

    .wsp-account-btn {
        align-self: stretch;
        width: 100%;
    }

    .wsp-profile-actions .wsp-btn {
        flex: 1 1 100%;
    }

    .wsp-hero {
        padding: 150px 5% 70px 5%;
    }

    .wsp-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wsp-why-grid {
        grid-template-columns: 1fr;
    }

    .wsp-packages-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .wsp-touchpoint {
        flex: 1 1 100%;
    }

    .wsp-chart-row {
        grid-template-columns: 104px 1fr 40px;
        gap: 10px;
    }

    .wsp-chart-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wsp-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .wsp-hero-stat {
        padding: 18px 10px;
    }

    .wsp-pilot-stats {
        grid-template-columns: 1fr;
    }

    .wsp-btn {
        width: 100%;
    }

    .wsp-pilot-chart {
        padding: 26px 18px;
    }

    .wsp-chart-row {
        grid-template-columns: 92px 1fr 36px;
    }

    .wsp-cta-card {
        padding: 56px 6%;
        border-radius: 20px;
    }
}