/* Szlak Web Developer → Data Engineer — landing page */

:root {
    --wdde-bg: #0B1020;
    --wdde-bg-alt: #111827;
    --wdde-surface: rgba(255, 255, 255, 0.04);
    --wdde-border: rgba(255, 255, 255, 0.08);
    --wdde-text: #e5e7eb;
    --wdde-heading: #f9fafb;
    --wdde-muted: #9ca3af;
    --wdde-cyan: #22d3ee;
    --wdde-blue: #3b82f6;
    --wdde-violet: #a78bfa;
    --wdde-gradient: linear-gradient(135deg, var(--wdde-cyan), var(--wdde-blue) 50%, var(--wdde-violet));
    --wdde-max: 1280px;
    --wdde-radius: 16px;
    --wdde-nav-h: 72px;
}

/* Reset BuddyBoss interference on landing */
body.abd-wdde-landing {
    background: var(--wdde-bg) !important;
    color: var(--wdde-text);
}

body.abd-wdde-landing #page,
body.abd-wdde-landing .site-content,
body.abd-wdde-landing .content-area,
body.abd-wdde-landing #primary,
body.abd-wdde-landing #main,
body.abd-wdde-landing .bb-grid,
body.abd-wdde-landing .container {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

body.abd-wdde-landing .site-header,
body.abd-wdde-landing .bb-header,
body.abd-wdde-landing #masthead,
body.abd-wdde-landing .footer-wrap,
body.abd-wdde-landing footer.site-footer,
body.abd-wdde-landing .bb-footer,
body.abd-wdde-landing .sidebar,
body.abd-wdde-landing .bb-sidebar,
body.abd-wdde-landing .bp-nouveau-activity-form,
body.abd-wdde-landing .bb-mobile-header-wrapper {
    display: none !important;
}

.wdde-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--wdde-text);
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(167, 139, 250, 0.08), transparent),
        var(--wdde-bg);
}

/* Nadpisanie ciemnych nagłówków z motywu BuddyBoss */
body.abd-wdde-landing .wdde-page h1,
body.abd-wdde-landing .wdde-page h2,
body.abd-wdde-landing .wdde-page h3,
body.abd-wdde-landing .wdde-page h4,
body.abd-wdde-landing .wdde-page h5,
body.abd-wdde-landing .wdde-page h6 {
    color: var(--wdde-heading) !important;
    -webkit-text-fill-color: var(--wdde-heading);
}

.wdde-container {
    max-width: var(--wdde-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Nav */
.wdde-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--wdde-nav-h);
    background: rgba(11, 16, 32, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--wdde-border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.wdde-nav.is-scrolled {
    background: rgba(11, 16, 32, 0.92);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.wdde-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.wdde-logo {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--wdde-text);
    text-decoration: none;
    white-space: nowrap;
}

.wdde-nav__links {
    display: none;
    gap: 28px;
}

.wdde-nav__links a {
    color: var(--wdde-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.wdde-nav__links a:hover {
    color: var(--wdde-text);
}

.wdde-nav__cta {
    font-size: 0.8125rem;
    padding: 10px 18px;
}

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

/* Buttons */
.wdde-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.wdde-btn--primary {
    background: var(--wdde-gradient);
    color: #0B1020;
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.2);
}

.wdde-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.35);
    color: #0B1020;
}

.wdde-btn--ghost {
    background: transparent;
    color: var(--wdde-text);
    border: 1px solid var(--wdde-border);
}

.wdde-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: var(--wdde-text);
}

.wdde-btn--large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* Sections */
.wdde-section {
    padding: 96px 0;
}

.wdde-section--alt {
    background: var(--wdde-bg-alt);
}

.wdde-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.wdde-section-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    line-height: 1.2;
}

.wdde-section-head p {
    color: var(--wdde-muted);
    margin: 0;
    font-size: 1.0625rem;
}

.wdde-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wdde-cyan);
    margin-bottom: 20px;
}

/* Glass */
.wdde-glass {
    background: var(--wdde-surface);
    border: 1px solid var(--wdde-border);
    border-radius: var(--wdde-radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Hero */
.wdde-hero {
    padding-top: 64px;
    padding-bottom: 72px;
    min-height: auto;
    display: flex;
    align-items: center;
}

.wdde-hero__grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.wdde-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.wdde-lead {
    font-size: 1.125rem;
    color: var(--wdde-muted);
    margin: 0 0 20px;
    max-width: 540px;
}

.wdde-hero__points {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.wdde-hero__points li {
    color: var(--wdde-muted);
    font-size: 0.9375rem;
    padding: 4px 0;
}

.wdde-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Path map */
.wdde-path-card {
    padding: 32px;
}

.wdde-path-card__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wdde-muted);
    margin: 0 0 24px;
}

.wdde-path-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wdde-path-list__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    position: relative;
    opacity: 0.68;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wdde-path-list__item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 36px;
    width: 2px;
    height: calc(100% - 8px);
    background: var(--wdde-border);
}

.wdde-path-list__item.is-active {
    opacity: 1;
    transform: translateX(4px);
}

.wdde-path-list__item.is-active .wdde-path-list__dot {
    background: var(--wdde-gradient);
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.5);
}

.wdde-path-list__item.is-active .wdde-path-list__label {
    color: #fff;
}

.wdde-path-list__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(148, 163, 184, 0.72);
    background: rgba(15, 23, 42, 0.7);
    flex-shrink: 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.wdde-path-list__label {
    font-size: 0.9375rem;
    color: #cbd5e1;
    transition: color 0.3s;
}

@media (min-width: 960px) {
    .wdde-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* Webinar */
.wdde-webinar-section {
    padding-top: 24px;
    padding-bottom: 72px;
}

.wdde-webinar {
    display: grid;
    gap: 28px;
    padding: 20px;
    align-items: center;
    border-color: rgba(34, 211, 238, 0.16);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.wdde-webinar__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wdde-webinar__media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.wdde-webinar__copy {
    padding: 8px;
}

.wdde-webinar__copy .wdde-kicker {
    margin-bottom: 14px;
}

.wdde-webinar__copy h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    margin: 0 0 14px;
}

.wdde-webinar__copy p {
    margin: 0 0 18px;
    color: var(--wdde-muted);
    line-height: 1.65;
}

.wdde-webinar__points {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.wdde-webinar__points li {
    position: relative;
    padding: 7px 0 7px 22px;
    color: var(--wdde-muted);
    font-size: 0.9375rem;
}

.wdde-webinar__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wdde-gradient);
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.4);
}

@media (min-width: 900px) {
    .wdde-webinar {
        grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
        padding: 24px;
        gap: 36px;
    }

    .wdde-webinar__copy {
        padding: 16px 18px 16px 0;
    }
}

/* Compare */
.wdde-compare {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

.wdde-compare__col {
    padding: 32px;
}

.wdde-compare__col h3 {
    font-size: 1rem;
    margin: 0 0 24px;
    font-weight: 600;
}

.wdde-compare__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wdde-compare__col li {
    padding: 10px 0;
    border-bottom: 1px solid var(--wdde-border);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wdde-compare__col--muted {
    opacity: 0.7;
}

.wdde-compare__col--highlight {
    border-color: rgba(34, 211, 238, 0.25);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.06);
}

.wdde-x {
    color: #ef4444;
    font-weight: 600;
}

.wdde-check {
    color: var(--wdde-cyan);
    font-weight: 600;
}

.wdde-quote {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 40px;
    border-left: none;
}

.wdde-quote p {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    color: var(--wdde-text);
}

@media (min-width: 768px) {
    .wdde-compare {
        grid-template-columns: 1fr 1fr;
    }
}

/* Jak działa Szlak */
.wdde-mechanics {
    display: grid;
    gap: 20px;
    margin-bottom: 48px;
}

.wdde-mechanic {
    padding: 28px 32px;
}

.wdde-mechanic__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(34, 211, 238, 0.12);
    color: var(--wdde-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.wdde-mechanic h3 {
    font-size: 1.0625rem;
    margin: 0 0 10px;
}

.wdde-mechanic p {
    margin: 0;
    color: var(--wdde-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.wdde-mechanic strong {
    color: var(--wdde-text);
    font-weight: 500;
}

@media (min-width: 900px) {
    .wdde-mechanics {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wdde-trail-preview {
    display: grid;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
}

.wdde-trail-preview__copy h3 {
    font-size: 1.25rem;
    margin: 0 0 12px;
}

.wdde-trail-preview__copy > p {
    color: var(--wdde-muted);
    margin: 0 0 20px;
    line-height: 1.65;
}

.wdde-trail-preview__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wdde-trail-preview__list li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 0.9375rem;
    color: var(--wdde-muted);
}

.wdde-trail-preview__list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--wdde-cyan);
}

/* Mock UI Akademii (dashboard + sidebar) */
.wdde-ui-mocks {
    --wdde-trail-color: #3b82f6;
    display: grid;
    gap: 20px;
    align-content: start;
}

.wdde-ui-mock {
    margin: 0;
}

.wdde-ui-mock figcaption {
    margin-top: 10px;
    font-size: 0.8125rem;
    color: var(--wdde-muted);
    text-align: center;
}

.wdde-ui-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fafafa;
    border-radius: 12px;
    padding: 18px 18px 18px 44px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.wdde-ui-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 100%;
    background: linear-gradient(
        to right,
        #fff 0%,
        #fff 28%,
        var(--wdde-trail-color) 28%,
        var(--wdde-trail-color) 72%,
        #fff 72%,
        #fff 100%
    );
    border-right: 1px solid #e5e7eb;
}

.wdde-ui-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f4f6fb;
    border: 2px solid var(--wdde-trail-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.wdde-ui-card__body h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #111827 !important;
    -webkit-text-fill-color: #111827;
}

.wdde-ui-card__body > p {
    margin: 0;
    font-size: 0.875rem;
    color: #4b5563;
}

.wdde-ui-card__body em {
    font-style: italic;
    color: #374151;
}

.wdde-ui-progress {
    background: #e5e7eb;
    border-radius: 6px;
    height: 8px;
    overflow: hidden;
    margin: 12px 0 8px;
}

.wdde-ui-progress--thin {
    height: 6px;
    margin: 10px 0 6px;
}

.wdde-ui-progress div {
    height: 100%;
    background: var(--wdde-trail-color);
    border-radius: 6px;
}

.wdde-ui-meta {
    margin: 0;
    font-size: 0.8125rem;
    color: #6b7280;
}

.wdde-ui-trail-map {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}

.wdde-ui-node {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #d1d5db;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wdde-ui-node--done {
    background: var(--wdde-trail-color);
    color: #fff;
}

.wdde-ui-node--current {
    outline: 2px solid var(--wdde-trail-color);
    outline-offset: 2px;
    background: #fff;
    color: var(--wdde-trail-color);
}

.wdde-ui-sidebar {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.wdde-ui-sidebar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: var(--wdde-trail-color);
}

.wdde-ui-sidebar__inner {
    padding: 16px 14px 18px 20px;
}

.wdde-ui-sidebar__kicker {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px;
}

.wdde-ui-sidebar__title {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.wdde-ui-sidebar__section {
    margin-top: 14px;
}

.wdde-ui-sidebar__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 5px;
}

.wdde-ui-sidebar__section > p {
    margin: 0;
    font-size: 0.875rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

.wdde-ui-sidebar__step {
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
}

.wdde-ui-sidebar__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.wdde-ui-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.wdde-ui-badge--type {
    background: color-mix(in srgb, var(--wdde-trail-color) 12%, white);
    color: var(--wdde-trail-color);
    border-color: color-mix(in srgb, var(--wdde-trail-color) 32%, white);
}

.wdde-ui-sidebar__btn {
    display: block;
    margin-top: 16px;
    padding: 11px 12px;
    border-radius: 10px;
    background: var(--wdde-trail-color);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    width: 80%;
}

.wdde-ui-mock--sidebar {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 900px) {
    .wdde-trail-preview {
        grid-template-columns: 1fr 1.05fr;
        align-items: start;
    }

    .wdde-ui-mock--sidebar {
        max-width: 280px;
        margin-left: auto;
        margin-right: 0;
    }
}

.wdde-onboarding-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 32px;
    max-width: 800px;
    margin: 0 auto;
}

.wdde-onboarding-block__badge {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(34, 211, 238, 0.15);
    color: var(--wdde-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.wdde-onboarding-block h3 {
    font-size: 1.0625rem;
    margin: 0 0 8px;
}

.wdde-onboarding-block p {
    margin: 0;
    color: var(--wdde-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* Cards 3 */
.wdde-cards-3 {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

.wdde-card {
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s;
}

.wdde-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.wdde-card h3 {
    font-size: 1.125rem;
    margin: 0 0 12px;
}

.wdde-card p {
    color: var(--wdde-muted);
    margin: 0;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .wdde-cards-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Diagram */
.wdde-diagram {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.wdde-diagram__step {
    padding: 16px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 500;
}

.wdde-diagram__step--accent {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--wdde-cyan);
}

.wdde-diagram__arrow {
    padding: 8px 0;
    color: var(--wdde-muted);
    font-size: 1.25rem;
}

.wdde-diagram__note {
    margin: 24px 0 0;
    font-size: 0.875rem;
    color: var(--wdde-muted);
}

/* Fazy Szlaku */
.wdde-phases {
    display: grid;
    gap: 20px;
}

.wdde-phase {
    padding: 28px 32px;
    position: relative;
    transition: border-color 0.3s;
}

.wdde-phase:hover {
    border-color: rgba(59, 130, 246, 0.25);
}

.wdde-phase__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.wdde-phase__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.12);
    color: var(--wdde-cyan);
    font-size: 0.8125rem;
    font-weight: 600;
}

.wdde-phase__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wdde-muted);
}

.wdde-phase h3 {
    font-size: 1.125rem;
    margin: 0 0 10px;
    color: var(--wdde-cyan) !important;
    -webkit-text-fill-color: var(--wdde-cyan);
}

.wdde-phase > p {
    margin: 0 0 16px;
    color: var(--wdde-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.wdde-phase__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wdde-phase__topics span {
    font-size: 0.75rem;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--wdde-muted);
}

@media (min-width: 768px) {
    .wdde-phases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .wdde-phases {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Obawy / oferta */
.wdde-offer-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.wdde-offer-legend__item {
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--wdde-border);
}

.wdde-offer-legend__item--oferta {
    border-color: rgba(34, 211, 238, 0.3);
    color: var(--wdde-cyan);
}

.wdde-offer-legend__item--zachecajacy {
    border-color: rgba(167, 139, 250, 0.3);
    color: var(--wdde-violet);
}

.wdde-offers {
    display: grid;
    gap: 24px;
}

.wdde-offer {
    padding: 28px 32px;
    border-left-width: 3px;
    border-left-style: solid;
}

.wdde-offer--oferta {
    border-left-color: var(--wdde-cyan);
}

.wdde-offer--zachecajacy {
    border-left-color: var(--wdde-violet);
}

.wdde-offer__badge {
    display: inline-block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    opacity: 0.8;
}

.wdde-offer--oferta .wdde-offer__badge {
    color: var(--wdde-cyan);
}

.wdde-offer--zachecajacy .wdde-offer__badge {
    color: var(--wdde-violet);
}

.wdde-offer__obawa {
    margin: 0;
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
    line-height: 1.35;
    color: #fb7185;
    font-weight: 700;
}

.wdde-offer__arrow {
    color: rgba(251, 113, 133, 0.78);
    font-size: 1.25rem;
    padding: 10px 0;
    opacity: 0.85;
}

.wdde-offer__pakiet {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 16px;
}

.wdde-offer__punkty {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: none;
}

.wdde-offer__punkty li {
    position: relative;
    padding: 6px 0 6px 16px;
    font-size: 0.875rem;
    color: var(--wdde-muted);
    line-height: 1.55;
}

.wdde-offer__punkty li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--wdde-cyan);
    font-weight: 700;
}

.wdde-offer--zachecajacy .wdde-offer__punkty li::before {
    color: var(--wdde-violet);
}

@media (min-width: 900px) {
    .wdde-offers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .wdde-offers {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cennik */
.wdde-pricing {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.wdde-pricing__card {
    padding: 32px;
    text-align: center;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.wdde-pricing__card--featured {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.06);
}

.wdde-pricing__card:hover,
.wdde-pricing__card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.5);
}

.wdde-pricing__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    color: var(--wdde-cyan);
    margin-bottom: 16px;
}

.wdde-pricing__tag--muted {
    background: rgba(255, 255, 255, 0.06);
    color: var(--wdde-muted);
}

.wdde-pricing__card h3 {
    font-size: 1.125rem;
    margin: 0 0 12px;
}

.wdde-pricing__price {
    margin: 0 0 16px;
    font-size: 1rem;
    color: var(--wdde-muted);
}

.wdde-pricing__price strong {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wdde-heading);
    letter-spacing: -0.02em;
}

.wdde-pricing__desc {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--wdde-muted);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .wdde-pricing {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
}

.wdde-pricing-extra {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
}

.wdde-pricing-extra h3 {
    font-size: 1.0625rem;
    margin: 0 0 12px;
}

.wdde-pricing-extra > p {
    margin: 0;
    color: var(--wdde-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.wdde-pricing-extra strong {
    color: var(--wdde-text);
}

.wdde-pricing-summary {
    max-width: 720px;
    margin: 20px auto 0;
    padding: 28px 32px;
}

.wdde-pricing-summary__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wdde-pricing-summary__list li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 0.875rem;
    color: var(--wdde-muted);
}

.wdde-pricing-summary__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wdde-cyan);
    font-weight: 600;
}

/* Transform */
.wdde-transform {
    display: grid;
    gap: 24px;
    align-items: center;
}

.wdde-transform__card {
    padding: 32px;
}

.wdde-transform__card h3 {
    margin: 0 0 20px;
    font-size: 1.125rem;
}

.wdde-transform__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wdde-transform__card li {
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--wdde-muted);
    border-bottom: 1px solid var(--wdde-border);
}

.wdde-transform__card--target li {
    color: var(--wdde-text);
}

.wdde-transform__card--target {
    border-color: rgba(34, 211, 238, 0.25);
}

.wdde-transform__bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 60px;
    font-size: 1.5rem;
    color: var(--wdde-cyan);
}

.wdde-transform__pulse {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(34, 211, 238, 0.4);
    animation: wdde-pulse 2s ease-in-out infinite;
}

@keyframes wdde-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.4; }
}

@media (min-width: 768px) {
    .wdde-transform {
        grid-template-columns: 1fr auto 1fr;
    }

    .wdde-transform__bridge {
        height: auto;
    }
}

/* Academy grid */
.wdde-academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.wdde-academy-item {
    padding: 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.wdde-academy-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Masonry testimonials */
.wdde-masonry {
    columns: 1;
    column-gap: 24px;
}

.wdde-testimonial {
    break-inside: avoid;
    margin-bottom: 24px;
    padding: 28px;
    color: var(--wdde-text);
}

.wdde-testimonial p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 20px;
    color: #d1d5db !important;
}

.wdde-testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wdde-testimonial footer strong {
    font-size: 0.875rem;
    color: var(--wdde-heading) !important;
    font-weight: 600;
}

.wdde-testimonial footer span {
    font-size: 0.8125rem;
    color: var(--wdde-muted) !important;
}

@media (min-width: 640px) {
    .wdde-masonry {
        columns: 2;
    }
}

@media (min-width: 960px) {
    .wdde-masonry {
        columns: 3;
    }
}

/* CTA */
.wdde-cta {
    background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(34, 211, 238, 0.12), transparent),
        var(--wdde-bg-alt);
    border-top: 1px solid var(--wdde-border);
}

.wdde-cta__inner {
    text-align: center;
    max-width: 640px;
}

.wdde-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 32px;
}

.wdde-cta__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
    display: inline-block;
}

.wdde-cta__list li {
    padding: 8px 0;
    font-size: 1rem;
    position: relative;
    padding-left: 28px;
}

.wdde-cta__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wdde-cyan);
    font-weight: 600;
}

.wdde-cta__price-note {
    color: var(--wdde-muted);
    margin: 0 0 32px;
    font-size: 0.9375rem;
}

/* Footer */
.wdde-footer {
    padding: 40px 0;
    border-top: 1px solid var(--wdde-border);
}

.wdde-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--wdde-muted);
}

.wdde-footer a {
    color: var(--wdde-muted);
    text-decoration: none;
}

.wdde-footer a:hover {
    color: var(--wdde-text);
}

/* Scroll reveal */
.wdde-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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