@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════════════
   WEBINAR STARTER - KOMPLETNY CSS
   ═══════════════════════════════════════════════════════════════ */

:root {
    --ws-primary: #a78bfa;
    --ws-accent: #f472b6;
    --ws-red: #f87171;
    --ws-green: #34d399;
    --ws-text: #ffffff;
    --ws-text-dim: #94a3b8;
    --ws-border: rgba(167, 139, 250, 0.25);
    --ws-glow: rgba(167, 139, 250, 0.15);
    --ws-font: 'Catamaran', -apple-system, BlinkMacSystemFont, sans-serif;
    --ws-radius: 12px;
    --ws-max-w: 900px;
}

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE
   ═══════════════════════════════════════════════════════════════ */

.webinar-landing {
    font-family: var(--ws-font);
    color: var(--ws-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.webinar-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.webinar-landing .et_pb_row,
.webinar-landing .et_pb_column,
.webinar-landing .et_pb_module,
.webinar-landing .et_pb_text_inner {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
}

.wl-wrap {
    max-width: var(--ws-max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo */
.wl-logo {
    text-align: center;
    padding: 2rem 0 1rem;
}

.wl-logo img {
    max-width: 320px;
    height: auto;
    filter: invert(1) brightness(2);
}

/* Hero */
.wl-hero {
    text-align: center;
    padding: 2rem 0;
}

.wl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(248, 113, 113, 0.5);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ws-red);
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(248, 113, 113, 0.2);
}

.wl-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--ws-red);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--ws-red);
    animation: ws-pulse 1.5s infinite;
}

@keyframes ws-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.wl-title {
    font-family: var(--ws-font);
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 20%, var(--ws-primary) 60%, var(--ws-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(167, 139, 250, 0.3));
}

.wl-subtitle {
    font-family: var(--ws-font);
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: var(--ws-accent);
    margin-bottom: 24px;
}

/* Data i godzina */
.wl-datetime {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.wl-datetime-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(244, 114, 182, 0.06));
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    transition: all 0.2s;
}

.wl-datetime-item:hover {
    transform: translateY(-3px);
    border-color: var(--ws-primary);
    box-shadow: 0 10px 30px var(--ws-glow);
}

.wl-datetime-icon {
    font-size: 28px;
    line-height: 1;
}

.wl-datetime-content {
    text-align: left;
}

.wl-datetime-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ws-primary);
    margin-bottom: 4px;
}

.wl-datetime-value {
    font-family: var(--ws-font);
    font-size: 22px;
    font-weight: 800;
    color: var(--ws-text);
}

/* Tagi */
.wl-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.wl-tag {
    padding: 8px 18px;
    border: 1px solid var(--ws-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ws-primary);
    transition: all 0.2s;
}

.wl-tag:hover {
    border-color: var(--ws-primary);
    background: rgba(167, 139, 250, 0.1);
    transform: translateY(-2px);
}

/* Intro */
.wl-intro {
    max-width: 640px;
    margin: 0 auto;
    padding: 24px 28px;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    position: relative;
    overflow: hidden;
}

.wl-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ws-primary), var(--ws-accent), transparent);
}

.wl-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ws-text-dim);
    margin-bottom: 12px;
}

.wl-intro p:last-child {
    margin-bottom: 0;
}

.wl-intro strong {
    color: var(--ws-text);
    font-weight: 700;
}

.wl-intro em {
    color: var(--ws-primary);
    font-style: normal;
    font-weight: 700;
}

/* Argumenty */
.wl-arguments {
    padding: 2.5rem 0;
}

.wl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wl-card {
    padding: 22px 24px;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    transition: all 0.25s;
    position: relative;
}

.wl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--ws-radius);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(244, 114, 182, 0.04));
    opacity: 0;
    transition: opacity 0.25s;
}

.wl-card:hover {
    border-color: var(--ws-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--ws-glow);
}

.wl-card:hover::before {
    opacity: 1;
}

.wl-card-title {
    position: relative;
    font-family: var(--ws-font);
    font-size: 16px;
    font-weight: 800;
    color: var(--ws-text);
    margin-bottom: 10px;
    line-height: 1.35;
}

.wl-card-text {
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ws-text-dim);
}

.wl-card-text b {
    color: var(--ws-accent);
    font-weight: 700;
}

/* Tematy */
.wl-topics {
    padding: 2.5rem 0;
}

.wl-section-title {
    font-family: var(--ws-font);
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 8px;
    color: var(--ws-text);
}

.wl-section-sub {
    font-size: 16px;
    color: var(--ws-text-dim);
    text-align: center;
    margin-bottom: 28px;
}

.wl-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wl-list-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    transition: all 0.2s;
}

.wl-list-item:hover {
    border-color: var(--ws-primary);
    background: rgba(167, 139, 250, 0.05);
}

.wl-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

.wl-list-content {
    flex: 1;
    text-align: left;
}

.wl-list-title {
    font-family: var(--ws-font);
    font-size: 16px;
    font-weight: 800;
    color: var(--ws-text);
    line-height: 1.4;
    margin-bottom: 4px;
    text-align: left;
}

.wl-list-text {
    font-size: 14px;
    color: var(--ws-text-dim);
    line-height: 1.55;
    text-align: left;
}

/* CTA Box */
.wl-cta {
    padding: 3.5rem 0;
}

.wl-cta-box {
    max-width: 780px;
    margin: 0 auto;
    padding: 56px 72px 64px;
    background: linear-gradient(170deg, #ffffff 0%, #faf8ff 35%, #f8f4ff 60%, #fdf2f8 100%);
    border-radius: 28px;
    position: relative;
    box-shadow: 0 40px 120px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.06);
    overflow: hidden;
}

.wl-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8b5cf6, #d946ef, #ec4899, #8b5cf6);
    background-size: 300% 100%;
    animation: ws-gradient 4s linear infinite;
}

@keyframes ws-gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.wl-cta-header {
    text-align: center;
    margin-bottom: 28px;
}

.wl-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    background: linear-gradient(145deg, #f3e8ff, #fce7f3);
    border-radius: 24px;
    font-size: 44px;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
}

.wl-cta-title {
    font-family: var(--ws-font);
    font-size: 42px;
    font-weight: 900;
    color: #1e1b4b;
    margin-bottom: 14px;
    line-height: 1.1;
}

.wl-cta-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* Meta */
.wl-cta-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 28px 0 32px;
    flex-wrap: wrap;
}

.wl-cta-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
    border: 1px solid #e9d5ff;
    border-radius: 12px;
    transition: all 0.2s;
    text-align: left;
}

.wl-cta-meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15);
}

.wl-cta-meta-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.wl-cta-meta-text {
    font-size: 15px;
    font-weight: 700;
    color: #4c1d95;
    text-align: left;
}

/* Features */
.wl-cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.wl-cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #374151;
    font-weight: 600;
}

.wl-cta-feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Prowadzący */
.wl-instructor {
    padding: 2.5rem 0 4rem;
}

.wl-instructor-header {
    text-align: center;
    margin-bottom: 28px;
}

.wl-instructor-header h2 {
    font-family: var(--ws-font);
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, var(--ws-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.wl-instructor-header p {
    font-size: 16px;
    color: var(--ws-text-dim);
}

.wl-instructor-card {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--ws-border);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(167, 139, 250, 0.08), rgba(244, 114, 182, 0.04));
    display: grid;
    grid-template-columns: 260px 1fr;
    transition: all 0.3s;
}

.wl-instructor-card:hover {
    border-color: var(--ws-primary);
    box-shadow: 0 25px 80px var(--ws-glow);
    transform: translateY(-4px);
}

.wl-instructor-photo {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
}

.wl-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--ws-primary);
    overflow: hidden;
    box-shadow: 0 0 0 8px rgba(167, 139, 250, 0.15), 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.wl-instructor-card:hover .wl-avatar {
    transform: scale(1.05);
}

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

.wl-instructor-info {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wl-instructor-name {
    font-family: var(--ws-font);
    font-size: 28px;
    font-weight: 900;
    color: var(--ws-text);
    margin-bottom: 6px;
    line-height: 1.1;
}

.wl-instructor-role {
    font-size: 14px;
    color: var(--ws-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}

.wl-instructor-bio {
    font-size: 15px;
    color: var(--ws-text-dim);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   FORMULARZ - PREMIUM DESIGN
   ═══════════════════════════════════════════════════════════════ */

.wf-container {
    max-width: 520px;
    margin: 0 auto;
}

.wf-form {
    padding: 8px;
}

.wf-field {
    position: relative;
    margin-bottom: 24px;
}

.wf-field-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wf-input {
    width: 100%;
    padding: 22px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #1e293b;
    font-family: var(--ws-font);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
}

.wf-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.wf-input:hover {
    border-color: #c4b5fd;
}

.wf-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Checkboxy - Premium Style */
.wf-consents {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wf-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    margin-bottom: 0;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.wf-checkbox:hover {
    border-color: #c4b5fd;
    background: #faf8ff;
}

.wf-checkbox input {
    display: none;
}

.wf-checkmark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.wf-checkmark svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.wf-checkbox:hover .wf-checkmark {
    border-color: #a78bfa;
}

.wf-checkbox input:checked + .wf-checkmark {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.wf-checkbox input:checked + .wf-checkmark svg {
    opacity: 1;
    transform: scale(1);
}

.wf-checkbox-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    font-weight: 500;
    text-align: left;
}

.wf-checkbox-text a {
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
}

.wf-checkbox-text a:hover {
    text-decoration: underline;
}

/* Przycisk - Premium Style */
.wf-submit {
    display: block;
    width: 100%;
    padding: 24px 36px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 40%, #db2777 100%);
    color: #fff;
    font-family: var(--ws-font);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35), 0 4px 12px rgba(219, 39, 119, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.wf-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.wf-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 40%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wf-submit:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.45), 0 8px 20px rgba(219, 39, 119, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.wf-submit:hover::before {
    left: 100%;
}

.wf-submit:hover::after {
    opacity: 1;
}

.wf-submit:active {
    transform: translateY(-2px) scale(0.99);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4), 0 4px 10px rgba(219, 39, 119, 0.2);
}

.wf-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.wf-submit:disabled:hover {
    transform: none;
}

.wf-submit:disabled:hover::before {
    left: -100%;
}

.wf-submit-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wf-loader {
    display: none;
    width: 26px;
    height: 26px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ws-spin 0.7s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -13px 0 0 -13px;
    z-index: 3;
}

@keyframes ws-spin {
    to { transform: rotate(360deg); }
}

.wf-submit.wf-loading .wf-submit-text {
    opacity: 0;
}

.wf-submit.wf-loading .wf-loader {
    display: block;
}

.wf-submit.wf-loading::before,
.wf-submit.wf-loading::after {
    display: none;
}

/* Komunikaty */
.wf-message {
    display: none;
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.wf-message.wf-success {
    display: block;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.wf-message.wf-error {
    display: block;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 2px solid #f87171;
}

/* Stany błędów */
.wf-input-error {
    border-color: #f87171 !important;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2) !important;
}

.wf-checkbox-error {
    border-color: #f87171 !important;
    background: #fef2f2 !important;
}

/* Animacja shake */
@keyframes ws-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}

.wf-shake {
    animation: ws-shake 0.5s ease-in-out;
}

/* ═══════════════════════════════════════════════════════════════
   STRONA PODZIĘKOWANIA
   ═══════════════════════════════════════════════════════════════ */

.webinar-thanks {
    font-family: var(--ws-font);
    color: var(--ws-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.webinar-thanks * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wt-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wt-logo {
    text-align: center;
    padding: 2rem 0 1rem;
}

.wt-logo img {
    max-width: 280px;
    height: auto;
}

.wt-hero {
    text-align: center;
    padding: 3rem 0;
}

.wt-success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #34d399, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #fff;
    box-shadow: 0 0 0 12px rgba(52, 211, 153, 0.15), 0 20px 60px rgba(52, 211, 153, 0.3);
    animation: ws-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes ws-pop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.wt-title {
    font-family: var(--ws-font);
    font-size: clamp(32px, 7vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 20%, var(--ws-green) 60%, var(--ws-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wt-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    color: var(--ws-text-dim);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Info box */
.wt-info-box {
    max-width: 560px;
    margin: 0 auto 48px;
    padding: 40px 48px;
    background: linear-gradient(170deg, #ffffff 0%, #faf8ff 40%, #f0fdf4 100%);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(139, 92, 246, 0.06);
    position: relative;
    overflow: hidden;
}

.wt-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #34d399, #8b5cf6, #ec4899);
}

.wt-info-title {
    font-family: var(--ws-font);
    font-size: 24px;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 24px;
    text-align: center;
}

.wt-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.wt-info-item:last-child {
    border-bottom: none;
}

.wt-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f3e8ff, #d1fae5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.wt-info-content {
    flex: 1;
}

.wt-info-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7c3aed;
    margin-bottom: 4px;
}

.wt-info-value {
    font-size: 18px;
    font-weight: 800;
    color: #1e1b4b;
}

/* Steps */
.wt-steps {
    padding: 0 0 3rem;
}

.wt-steps-title {
    font-family: var(--ws-font);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
    color: var(--ws-text);
}

.wt-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.wt-step {
    padding: 28px 24px;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    text-align: center;
    transition: all 0.25s;
}

.wt-step:hover {
    border-color: var(--ws-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px var(--ws-glow);
}

.wt-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--ws-primary), var(--ws-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.4);
}

.wt-step-title {
    font-family: var(--ws-font);
    font-size: 16px;
    font-weight: 800;
    color: var(--ws-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.wt-step-text {
    font-size: 14px;
    color: var(--ws-text-dim);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 860px) {
    .wl-grid { grid-template-columns: repeat(2, 1fr); }
    .wl-instructor-card { grid-template-columns: 1fr; }
    .wl-instructor-photo { padding: 32px; }
    .wl-avatar { width: 140px; height: 140px; }
    .wl-instructor-info { padding: 32px; text-align: center; }
    .wl-cta-meta { gap: 12px; }
    .wl-cta-features { gap: 20px; }
}

@media (max-width: 700px) {
    .wt-steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .wt-info-box { padding: 32px 28px; }
    .wt-success-icon { width: 100px; height: 100px; font-size: 48px; }
    .wl-cta-meta { flex-direction: column; align-items: center; }
    .wl-cta-meta-item { width: 100%; max-width: 280px; justify-content: center; }
    .wl-cta-features { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 580px) {
    .wl-wrap, .wt-wrap { padding: 0 1rem; }
    .wl-title { font-size: 28px; }
    .wl-subtitle { font-size: 18px; }
    .wl-datetime { flex-direction: column; align-items: center; gap: 12px; }
    .wl-datetime-item { width: 100%; max-width: 280px; justify-content: center; padding: 14px 20px; }
    .wl-datetime-value { font-size: 18px; }
    .wl-tags { gap: 8px; }
    .wl-tag { padding: 6px 14px; font-size: 12px; }
    .wl-grid { grid-template-columns: 1fr; gap: 12px; }
    .wl-card { padding: 18px 20px; }
    .wl-card-title { font-size: 15px; }
    .wl-card-text { font-size: 13px; }
    .wl-list-item { padding: 16px 18px; gap: 14px; }
    .wl-check { width: 28px; height: 28px; font-size: 12px; }
    .wl-list-title { font-size: 15px; }
    .wl-list-text { font-size: 13px; }
    .wl-cta-box { padding: 32px 20px 36px; border-radius: 20px; }
    .wl-cta-icon { width: 70px; height: 70px; font-size: 36px; border-radius: 18px; margin-bottom: 20px; }
    .wl-cta-title { font-size: 26px; }
    .wl-cta-subtitle { font-size: 15px; }
    .wl-logo img, .wt-logo img { max-width: 200px; }
    .wl-intro { padding: 20px; }
    .wl-intro p { font-size: 15px; }

    /* Formularz mobile */
    .wf-container { padding: 0; }
    .wf-form { padding: 4px; }
    .wf-field { margin-bottom: 20px; }
    .wf-input { padding: 18px 18px; font-size: 16px; border-radius: 10px; }
    .wf-consents { gap: 10px; margin-bottom: 24px; }
    .wf-checkbox { padding: 14px 16px; gap: 12px; border-radius: 10px; }
    .wf-checkmark { width: 22px; height: 22px; min-width: 22px; border-radius: 5px; }
    .wf-checkmark svg { width: 12px; height: 12px; }
    .wf-checkbox-text { font-size: 13px; line-height: 1.4; }
    .wf-submit { padding: 20px 24px; font-size: 16px; border-radius: 12px; letter-spacing: 0.08em; }

    /* Prowadzący mobile */
    .wl-instructor-card { border-radius: 18px; }
    .wl-instructor-photo { padding: 24px; }
    .wl-avatar { width: 120px; height: 120px; }
    .wl-instructor-info { padding: 24px; }
    .wl-instructor-name { font-size: 22px; }
    .wl-instructor-role { font-size: 12px; }
    .wl-instructor-bio { font-size: 14px; }
}

@media (max-width: 400px) {
    .wl-title { font-size: 24px; }
    .wl-cta-title { font-size: 22px; }
    .wl-cta-box { padding: 28px 16px 32px; }
    .wf-input { padding: 16px 16px; }
    .wf-checkbox { padding: 12px 14px; }
    .wf-submit { padding: 18px 20px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    .webinar-landing *, .webinar-thanks * {
        animation: none !important;
        transition: none !important;
    }
}
