/* ── Hero ──────────────────────────────────────────────── */
.ptr-hero {
    padding: 72px 0 56px;
    background: linear-gradient(180deg, #f8f8fa 0%, #fff 100%);
}

.ptr-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ptr-hero-desc {
    font-size: .95rem;
    color: #6b7080;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.ptr-hero-desc strong { color: #1a1a2e; }

.ptr-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.ptr-stat {
    display: flex;
    flex-direction: column;
}

.ptr-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #5f498e;
    letter-spacing: -.03em;
    line-height: 1;
}

.ptr-stat-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #6b7080;
    margin-top: 4px;
}

.ptr-hero-visual {
    width: 100%;
    aspect-ratio: 1;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(135deg, #3d2a63 0%, #5f498e 50%, #7b5fbf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ptr-hero-visual-dots {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 24px 24px;
}

.ptr-hero-visual-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.ptr-hero-visual-icon i {
    font-size: 3.2rem;
    color: rgba(255,255,255,.4);
}

/* ── Benefit cards ─────────────────────────────────────── */
.ptr-benefit-card {
    border: 1px solid rgba(95,73,142,.1);
    border-radius: 16px;
    background: #fff;
    padding: 28px 24px;
    height: 100%;
    transition: transform .15s, box-shadow .2s;
}

.ptr-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(95,73,142,.1);
}

.ptr-benefit-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.ptr-benefit-card p {
    font-size: .85rem;
    color: #6b7080;
    line-height: 1.55;
    margin: 0;
}

.ptr-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ptr-benefit-icon i { font-size: 1.3rem; }

.ptr-benefit-icon--purple {
    background: rgba(95,73,142,.06);
    border: 1px solid rgba(95,73,142,.14);
}
.ptr-benefit-icon--purple i { color: #5f498e; }

.ptr-benefit-icon--green {
    background: rgba(26,135,84,.06);
    border: 1px solid rgba(26,135,84,.14);
}
.ptr-benefit-icon--green i { color: #1a8754; }

.ptr-benefit-icon--blue {
    background: rgba(59,113,202,.06);
    border: 1px solid rgba(59,113,202,.14);
}
.ptr-benefit-icon--blue i { color: #3b71ca; }

/* ── Map ───────────────────────────────────────────────── */
.ptr-map-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.ptr-map-wrap svg {
    width: 100%;
    height: auto;
}

.voiv {
    transition: opacity .12s, filter .12s, stroke-width .12s;
    stroke: rgba(95,73,142,.25);
    stroke-width: 1;
    cursor: default;
}

.voiv.zero {
    opacity: .22;
    fill: #e8e4f0 !important;
}

.voiv.has {
    opacity: 1;
    fill: #c8b8e8 !important;
    cursor: pointer;
}

.voiv.has:hover {
    filter: brightness(1.1);
    stroke: #5f498e;
    stroke-width: 2;
}

.ptr-legend {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: .78rem;
    color: #6b7080;
}

.ptr-legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    margin-right: 6px;
    vertical-align: middle;
}

.ptr-legend-dot--active { background: #c8b8e8; border: 1px solid #5f498e; }
.ptr-legend-dot--empty  { background: #e8e4f0; opacity: .4; border: 1px solid rgba(95,73,142,.2); }

.ptr-tooltip {
    position: fixed;
    z-index: 9999;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(26,26,46,.92);
    color: #fff;
    font-size: .78rem;
    line-height: 1.35;
    pointer-events: none;
    transform: translate(12px, 12px);
    display: none;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ── Partner cards ─────────────────────────────────────── */
.ptr-partner-card {
    border: 1px solid rgba(95,73,142,.1);
    border-radius: 16px;
    background: #fff;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .15s, box-shadow .2s;
}

.ptr-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(95,73,142,.1);
}

.ptr-partner-top {
    display: flex;
    gap: 14px;
    align-items: center;
}

.ptr-partner-logo {
    width: 72px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fafafa;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ptr-partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.ptr-partner-name {
    font-size: .95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 2px;
    line-height: 1.25;
}

.ptr-partner-sub {
    font-size: .78rem;
    color: #6b7080;
    margin: 0;
}

.ptr-partner-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: #5f498e;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid rgba(95,73,142,.15);
    background: rgba(95,73,142,.03);
    transition: background .12s, border-color .12s;
    width: fit-content;
    margin-top: auto;
}

.ptr-partner-link:hover {
    background: rgba(95,73,142,.08);
    border-color: rgba(95,73,142,.3);
    color: #5f498e;
}

.ptr-partner-link i { font-size: .7rem; }

/* ── CTA — biały card z lawendowym akcentem, kontrastuje z GoToOffer (fioletowy gradient) pod spodem ── */
.ptr-cta-section {
    padding: 0 0 72px;
}

.ptr-cta-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--doko-surface);
    border: 1px solid var(--doko-border);
    border-left: 4px solid var(--doko-primary);
    border-radius: var(--doko-radius-lg);
    padding: 48px;
    box-shadow: var(--doko-shadow-md);
    position: relative;
    overflow: hidden;
}

/* Subtelna kropkowana tekstura tła (lawendowa) — daje głębię bez krzykliwego gradientu */
.ptr-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: radial-gradient(circle, var(--doko-primary-soft) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.ptr-cta-visual {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--doko-primary-soft);
    border-radius: var(--doko-radius-lg);
    color: var(--doko-primary);
    position: relative;
    z-index: 1;
}

.ptr-cta-visual i[data-lucide] {
    width: 56px;
    height: 56px;
    stroke-width: 1.5;
}

.ptr-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ptr-cta-kicker {
    display: inline-block;
    background: var(--doko-primary-soft);
    color: var(--doko-primary);
    padding: 4px 12px;
    border-radius: var(--doko-radius-pill);
    font-size: 0.75rem;
    font-weight: var(--doko-weight-semibold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ptr-cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--doko-weight-bold);
    color: var(--doko-ink);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.ptr-cta-content p {
    font-size: 1rem;
    color: var(--doko-ink-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 560px;
}

.ptr-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ptr-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-weight: var(--doko-weight-semibold);
}

.ptr-cta-actions .btn i[data-lucide] {
    width: 18px;
    height: 18px;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .ptr-hero { padding: 48px 0 40px; }
    .ptr-hero-stats { gap: 24px; }
}

@media (max-width: 767.98px) {
    .ptr-hero { padding: 36px 0 32px; }
    .ptr-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 24px;
    }
    .ptr-cta-visual {
        width: 80px;
        height: 80px;
    }
    .ptr-cta-visual i[data-lucide] {
        width: 40px;
        height: 40px;
    }
    .ptr-benefit-card { padding: 22px 18px; }
}
