/*
 * WordPress Migration CSS
 * Styles ported from kreator.legalgeek.pl (Elementor)
 * DO NOT merge into landing.css — this is a separate file for WP-migrated pages.
 */

/* ============================================
   ELEMENTOR DESIGN TOKENS (from Kit ID: 6)
   ============================================ */

:root {
    --wp-color-primary: #023353;
    --wp-color-secondary: #92979E;
    --wp-color-text: #222222;
    --wp-color-accent: #DA4167;
    --wp-color-white: #FFFFFF;
    --wp-color-light-bg: #F7F9FA;
    --wp-color-green: #36B86D;
    --wp-color-border: #E5EAEF;
    --wp-color-dark-red: #C91D48;
    --wp-color-yellow: #FFE500;

    --wp-font-primary: "Poppins", sans-serif;
    --wp-font-accent: "Roboto", sans-serif;
    --wp-font-archivo: "Archivo", sans-serif;

    --wp-container-max: 1480px;
    --wp-widget-spacing: 20px;
    --wp-btn-radius: 40px;
}

/* ============================================
   BASE TYPOGRAPHY (match WP global styles)
   ============================================ */

/* Body typography moved to _layout.scss (body.kreator) to avoid cascade conflicts */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wp-font-primary);
    color: var(--wp-color-primary);
    margin: 0;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 33px;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 33px;
}

p {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: var(--wp-color-text);
    margin: 0 0 15px;
}

a {
    color: var(--wp-color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================================
   WP SECTION LAYOUTS
   ============================================ */

.wp-section {
    padding: 60px 0;
}

.wp-section--light {
    background-color: var(--wp-color-light-bg);
}

.wp-section--dark {
    background-color: var(--wp-color-primary);
    color: var(--wp-color-white);
}

.wp-section--accent {
    background-color: var(--wp-color-accent);
    color: var(--wp-color-white);
}

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

/* ============================================
   WP TYPOGRAPHY
   ============================================ */

.wp-heading-hero {
    font-family: var(--wp-font-primary);
    font-size: 42px;
    font-weight: 700;
    line-height: 57px;
    color: var(--wp-color-primary);
}

.wp-heading-primary {
    font-family: var(--wp-font-primary);
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
    color: var(--wp-color-primary);
}

.wp-heading-secondary {
    font-family: var(--wp-font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 33px;
    color: var(--wp-color-primary);
}

.wp-text-body {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: var(--wp-color-text);
}

.wp-text-feature {
    font-family: var(--wp-font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--wp-color-primary);
}

.wp-text-small {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
}

/* ============================================
   WP BUTTONS (Elementor style)
   ============================================ */

.wp-btn {
    display: inline-block;
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 30px;
    border-radius: var(--wp-btn-radius);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.wp-btn--accent {
    background-color: var(--wp-color-accent);
    color: var(--wp-color-white);
}

.wp-btn--accent:hover {
    background-color: var(--wp-color-dark-red);
    color: var(--wp-color-white);
}

.wp-btn--primary {
    background-color: var(--wp-color-primary);
    color: var(--wp-color-white);
}

.wp-btn--primary:hover {
    background-color: #01243d;
    color: var(--wp-color-white);
}

.wp-btn--outline {
    background-color: transparent;
    color: var(--wp-color-accent);
    border: 2px solid var(--wp-color-accent);
}

.wp-btn--outline:hover {
    background-color: var(--wp-color-accent);
    color: var(--wp-color-white);
}

.wp-btn--green {
    background-color: var(--wp-color-green);
    color: var(--wp-color-white);
}

.wp-btn--green:hover {
    background-color: #2d9d5d;
    color: var(--wp-color-white);
}

/* ============================================
   WP HOMEPAGE CTA
   ============================================ */

.wp-home-cta {
    margin: 60px 0;
    padding: 60px 0;
    background: var(--wp-color-primary);
}

.wp-home-cta__inner {
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
}

.wp-home-cta__title {
    margin-bottom: 24px;
    color: var(--wp-color-white);
}

.wp-home-cta__body {
    max-width: 860px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.92);
}

.wp-home-cta__button:hover,
.wp-home-cta__button:focus-visible {
    text-decoration: none;
}

/* ============================================
   WP NAVBAR
   ============================================ */

#main-nav.wp-main-nav {
    min-height: 70px;
    border-bottom: 1px solid rgba(2, 51, 83, 0.06);
    box-shadow: 0 8px 24px rgba(2, 51, 83, 0.06);
}

.wp-main-nav a:hover,
.wp-main-nav button:hover {
    text-decoration: none;
}

.wp-main-nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    min-height: 70px;
    padding: 4px 40px;
}

.wp-main-nav__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    order: 1;
}

.wp-main-nav__logo {
    width: 55px;
    height: auto;
    display: block;
}

.wp-main-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--wp-color-primary);
    cursor: pointer;
}

.wp-main-nav__toggle-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.wp-main-nav__panel {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 24px;
    order: 2;
}

.wp-main-nav__menu-wrap {
    flex: 1;
}

.wp-main-nav__menu {
    display: flex;
    align-items: center;
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wp-main-nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.wp-main-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #CC3366;
    cursor: pointer;
}

.wp-main-nav__link:hover,
.wp-main-nav__link:focus-visible {
    color: var(--wp-color-accent);
    outline: none;
}

.wp-main-nav__chevron {
    display: inline-flex;
    width: 12px;
    height: 8px;
    color: currentColor;
}

.wp-main-nav__dropdown {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    min-width: 420px;
    padding-top: 12px;
}

.wp-main-nav__dropdown[x-cloak],
.wp-main-nav__mobile-dropdown[x-cloak] {
    display: none !important;
}

.wp-main-nav__dropdown-grid,
.wp-main-nav__dropdown-list {
    background: #fff;
    border: 1px solid rgba(2, 51, 83, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 54px rgba(2, 51, 83, 0.14);
}

.wp-main-nav__dropdown-grid {
    display: grid;
    grid-template-columns: repeat(var(--wp-nav-columns, 1), minmax(220px, 1fr));
    gap: 18px;
    min-width: min(980px, calc(100vw - 80px));
    padding: 20px;
}

.wp-main-nav__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 100%;
    padding: 16px;
    border: 1px solid rgba(2, 51, 83, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #f9fbfc 100%);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wp-main-nav__card:hover,
.wp-main-nav__card:focus-visible {
    border-color: rgba(218, 65, 103, 0.28);
    box-shadow: 0 18px 38px rgba(2, 51, 83, 0.12);
    transform: translateY(-1px);
    outline: none;
}

.wp-main-nav__card-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 96px;
    padding: 12px;
    border-radius: 14px;
    background: #f7f9fa;
}

.wp-main-nav__card-image {
    display: block;
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
}

.wp-main-nav__card-title {
    font-family: var(--wp-font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--wp-color-primary);
}

.wp-main-nav__card-description {
    font-family: var(--wp-font-primary);
    font-size: 14px;
    font-weight: 300;
    line-height: 23px;
    color: var(--wp-color-text);
}

.wp-main-nav__card-cta {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    font-family: var(--wp-font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--wp-color-accent);
}

.wp-main-nav__dropdown-list {
    min-width: 280px;
    padding: 10px;
    list-style: none;
    margin: 0;
}

.wp-main-nav__dropdown-list li {
    margin: 0;
}

.wp-main-nav__dropdown-list-link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    font-family: var(--wp-font-primary);
    font-size: 15px;
    line-height: 22px;
    color: var(--wp-color-text);
}

.wp-main-nav__dropdown-list-link:hover,
.wp-main-nav__dropdown-list-link:focus-visible {
    background: #f7f9fa;
    color: var(--wp-color-accent);
    outline: none;
}

.wp-main-nav__dropdown-list-link--muted {
    color: var(--wp-color-secondary);
}

.wp-main-nav__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
    order: 3;
}

.wp-main-nav__action,
.wp-main-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 40px;
    font-family: var(--wp-font-accent);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
}

.wp-main-nav__action {
    color: var(--wp-color-accent);
    background: transparent;
}

.wp-main-nav__action:hover,
.wp-main-nav__action:focus-visible {
    color: var(--wp-color-dark-red);
    outline: none;
}

.wp-main-nav__cta {
    color: var(--wp-color-accent);
    background: rgba(218, 65, 103, 0.18);
    padding-inline: 24px;
}

.wp-main-nav__cta:hover,
.wp-main-nav__cta:focus-visible {
    background: rgba(218, 65, 103, 0.26);
    color: var(--wp-color-dark-red);
    outline: none;
}

.wp-main-nav__cart-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
}

.wp-main-nav__cart-icon svg {
    width: 14px;
    height: 14px;
}

.wp-main-nav__mobile-dropdown {
    display: none;
}

@media (max-width: 1023px) {
    .wp-main-nav__container {
        padding: 12px 16px;
        min-height: 76px;
        flex-wrap: wrap;
    }

    .wp-main-nav__brand {
        order: 1;
    }

    .wp-main-nav__toggle {
        order: 2;
    }

    .wp-main-nav__actions {
        order: 3;
        flex-direction: row;
        gap: 4px;
    }

    .wp-main-nav__logo {
        width: 72px;
    }

    .wp-main-nav__panel {
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 8px 0 18px;
    }

    .wp-main-nav__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .wp-main-nav__item {
        display: block;
        border-bottom: 1px solid rgba(2, 51, 83, 0.08);
    }

    .wp-main-nav__link {
        width: 100%;
        justify-content: space-between;
        padding: 16px 0;
    }

    .wp-main-nav__dropdown {
        display: none !important;
    }

    .wp-main-nav__mobile-dropdown {
        display: block;
        padding: 0 0 14px;
    }

    .wp-main-nav__mobile-cards,
    .wp-main-nav__mobile-list {
        display: grid;
        gap: 12px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .wp-main-nav__mobile-card,
    .wp-main-nav__mobile-list-link {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 14px 16px;
        border: 1px solid rgba(2, 51, 83, 0.08);
        border-radius: 16px;
        background: #fff;
    }

    .wp-main-nav__mobile-card-title {
        font-family: var(--wp-font-primary);
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        color: var(--wp-color-primary);
    }

    .wp-main-nav__mobile-card-description {
        font-family: var(--wp-font-primary);
        font-size: 14px;
        font-weight: 300;
        line-height: 22px;
        color: var(--wp-color-text);
    }
}

@media (max-width: 639px) {
    .wp-main-nav__container {
        padding: 0;
        min-height: auto;
        gap: 0;
    }

    /* Top row: actions take full width, forcing a new flex line */
    .wp-main-nav__actions {
        order: 1;
        width: 100%;
        flex-direction: row;
        justify-content: flex-end;
        gap: 4px;
        padding: 6px 16px;
        border-bottom: 1px solid rgba(2, 51, 83, 0.06);
    }

    /* Hide CTA on mobile */
    .wp-main-nav__cta {
        display: none;
    }

    /* Smaller action buttons on mobile */
    .wp-main-nav__action {
        font-size: 12px;
        min-height: 32px;
        padding: 4px 10px;
    }

    /* Second row: hamburger left, logo centered */
    .wp-main-nav__toggle {
        order: 2;
        margin-left: 16px;
    }

    .wp-main-nav__brand {
        order: 3;
        flex: 1;
        justify-content: center;
    }

    .wp-main-nav__logo {
        width: 48px;
    }

    /* Panel below both rows */
    .wp-main-nav__panel {
        order: 4;
        width: 100%;
        padding: 8px 16px 18px;
    }
}

/* ============================================
   WP FOOTER
   ============================================ */

.wp-footer {
    background: #053555;
    color: #fff;
    padding: 70px 0 0;
}

.wp-footer__container {
    font-family: var(--wp-font-primary);
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
}

.wp-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.wp-footer__column {
    min-width: 0;
}

.wp-footer__heading,
.wp-footer__social-heading {
    margin: 0 0 20px;
    font-family: var(--wp-font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: #fff;
}

.wp-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wp-footer__list li + li {
    margin-top: 8px;
}

.wp-footer__list--address {
    margin-top: 24px;
}

.wp-footer__list--legal {
    margin-top: 24px;
}

.wp-footer__list a,
.wp-footer__list li {
    color: rgba(255, 255, 255, 0.92);
}

.wp-footer__list a:hover,
.wp-footer__list a:focus-visible {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.wp-footer__social-copy {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.92);
}

.wp-footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wp-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
}

.wp-footer__socials svg {
    width: 44px;
    height: 44px;
    fill: currentColor;
}

.wp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 54px;
    padding: 20px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.wp-footer__copyright,
.wp-footer__made-with {
    font-size: 12px;
    font-weight: 300;
    line-height: 21px;
    color: #adadad;
}

.wp-footer__made-with {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wp-footer__made-with-icons {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.wp-footer__made-with-icon {
    font-size: 11px;
    line-height: 1;
}

@media (max-width: 1023px) {
    .wp-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }
}

@media (max-width: 639px) {
    .wp-footer {
        padding-top: 56px;
    }

    .wp-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wp-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================
   WP PRICING CARDS
   ============================================ */

.wp-pricing-card {
    background: var(--wp-color-white);
    border-radius: 12px;
    border: 1px solid var(--wp-color-border);
    padding: 30px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.wp-pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wp-pricing-card__header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--wp-color-border);
    margin-bottom: 20px;
}

.wp-pricing-card__name {
    font-family: var(--wp-font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--wp-color-primary);
    margin-bottom: 10px;
}

.wp-pricing-card__price {
    font-family: var(--wp-font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--wp-color-accent);
}

.wp-pricing-card__period {
    font-size: 14px;
    font-weight: 300;
    color: var(--wp-color-secondary);
}

.wp-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.wp-pricing-card__features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--wp-color-text);
    border-bottom: 1px solid var(--wp-color-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wp-pricing-card__features li:last-child {
    border-bottom: none;
}

.wp-pricing-card__features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--wp-color-green);
    font-size: 12px;
}

.wp-pricing-card__features li.wp-feature--disabled::before {
    content: "\f00d";
    color: var(--wp-color-secondary);
}

/* Badges */
.wp-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
}

.wp-badge--bestseller {
    background-color: green;
    color: #fff;
}

.wp-badge--price {
    background-color: #fff;
    color: var(--wp-color-accent);
    border: 1px solid var(--wp-color-accent);
}

.wp-badge--new {
    background-color: var(--wp-color-yellow);
    color: var(--wp-color-primary);
}

/* Ribbon */
.wp-ribbon {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: var(--wp-color-accent);
    color: white;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
}

/* ============================================
   WP FAQ ACCORDION
   ============================================ */

.wp-faq-item {
    border: 1px solid var(--wp-color-border);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.wp-faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--wp-color-primary);
    background: var(--wp-color-white);
    transition: background-color 0.2s;
}

.wp-faq-item__question:hover {
    background-color: var(--wp-color-light-bg);
}

.wp-faq-item__question::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: transform 0.3s;
    color: var(--wp-color-accent);
}

.wp-faq-item.is-open .wp-faq-item__question::after {
    transform: rotate(180deg);
}

.wp-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.wp-faq-item.is-open .wp-faq-item__answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.wp-faq-item__answer p {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: var(--wp-color-text);
    margin-bottom: 10px;
}

/* ============================================
   WP PRODUCT PAGE
   ============================================ */

.wp-product-hero {
    padding: 60px 0;
    background-color: var(--wp-color-light-bg);
}

.wp-product-feature-list {
    list-style: none;
    padding: 0;
}

.wp-product-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: var(--wp-color-text);
}

.wp-product-feature-list li .wp-icon {
    color: var(--wp-color-green);
    font-size: 16px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* ============================================
   WP ICON BOX (used in How It Works, Features)
   ============================================ */

.wp-icon-box {
    text-align: center;
    padding: 20px;
}

.wp-icon-box__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-icon-box__icon img {
    max-width: 100%;
    max-height: 100%;
}

.wp-icon-box__title {
    font-family: var(--wp-font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--wp-color-primary);
    margin-bottom: 10px;
}

.wp-icon-box__desc {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: var(--wp-color-text);
}

/* ============================================
   WP LEGAL PAGE (Terms, Privacy, etc.)
   ============================================ */

.wp-legal {
    padding: 40px 0 80px;
}

.wp-legal h2 {
    font-family: var(--wp-font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 33px;
    color: var(--wp-color-primary);
    margin: 30px 0 15px;
}

.wp-legal h3 {
    font-family: var(--wp-font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--wp-color-primary);
    margin: 20px 0 10px;
}

.wp-legal h4 {
    font-family: var(--wp-font-primary);
    font-size: 17px;
    font-weight: 600;
    color: var(--wp-color-primary);
    margin: 25px 0 10px;
}

.wp-legal p {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: var(--wp-color-text);
    margin-bottom: 15px;
}

.wp-legal ol, .wp-legal ul {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: var(--wp-color-text);
    padding-left: 30px;
    margin-bottom: 15px;
}

.wp-legal ol li, .wp-legal ul li {
    margin-bottom: 5px;
}

.wp-legal a {
    color: var(--wp-color-accent);
    text-decoration: none;
}

.wp-legal a:hover {
    text-decoration: underline;
}

.wp-legal table {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: var(--wp-color-text);
}

.wp-legal table strong {
    font-weight: 600;
}

/* ============================================
   WP TIMELINE (Update History — jet-timeline style)
   ============================================ */

.wp-timeline {
    position: relative;
    padding-left: 40px;
}

.wp-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--wp-color-border);
}

.wp-timeline-item {
    position: relative;
    padding: 0 0 40px 0;
}

.wp-timeline-item:last-child {
    padding-bottom: 0;
}

.wp-timeline-item__point {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--wp-color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp-color-white);
    font-size: 12px;
    z-index: 1;
}

.wp-timeline-item__meta {
    font-family: var(--wp-font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--wp-color-accent);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.wp-timeline-item__card {
    background: var(--wp-color-white);
    border: 1px solid var(--wp-color-border);
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.wp-timeline-item__card::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--wp-color-white);
    border-left: 1px solid var(--wp-color-border);
    border-bottom: 1px solid var(--wp-color-border);
    transform: rotate(45deg);
}

.wp-timeline-item__title {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--wp-color-primary);
    margin-bottom: 8px;
}

.wp-timeline-item__desc {
    font-family: var(--wp-font-primary);
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
    color: var(--wp-color-text);
}

.wp-timeline-item__desc p {
    margin-bottom: 8px;
}

.wp-timeline-item__desc p:last-child {
    margin-bottom: 0;
}

/* ============================================
   WP HELP LIST (Baza wiedzy)
   ============================================ */

.wp-help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-help-list__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-family: var(--wp-font-primary);
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    color: var(--wp-color-text);
    cursor: pointer;
    transition: color 0.2s;
}

.wp-help-list__item:hover {
    color: var(--wp-color-accent);
}

.wp-help-list__icon {
    font-size: 6px;
    color: var(--wp-color-accent);
    margin-top: 8px;
    flex-shrink: 0;
}

.wp-help-list__item a {
    color: inherit;
    text-decoration: none;
}

.wp-help-list__item a:hover {
    text-decoration: underline;
}

/* ============================================
   WP COMPARISON TABLE (Zmiany w prawie)
   ============================================ */

.wp-comparison-table {
    border-collapse: collapse;
    font-family: var(--wp-font-primary);
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.wp-comparison-table thead th {
    background-color: var(--wp-color-primary);
    color: var(--wp-color-white);
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
}

.wp-comparison-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.wp-comparison-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.wp-comparison-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--wp-color-border);
    vertical-align: top;
    color: var(--wp-color-text);
}

.wp-comparison-table tbody tr:nth-child(even) td {
    background-color: var(--wp-color-light-bg);
}

.wp-comparison-table tbody td:first-child {
    font-weight: 500;
    color: var(--wp-color-primary);
}

/* ============================================
   WP FORM STYLES
   ============================================ */

.wp-form-group {
    margin-bottom: 20px;
}

.wp-form-label {
    display: block;
    font-family: var(--wp-font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--wp-color-primary);
    margin-bottom: 8px;
}

.wp-form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 300;
    color: var(--wp-color-text);
    border: 1px solid var(--wp-color-border);
    border-radius: 8px;
    background: var(--wp-color-white);
    transition: border-color 0.2s;
}

.wp-form-input:focus {
    outline: none;
    border-color: var(--wp-color-accent);
    box-shadow: 0 0 0 3px rgba(218, 65, 103, 0.1);
}

.wp-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   WP DOCUMENTS GRID
   ============================================ */

.wp-documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 767px) {
    .wp-documents-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   WP PARTNER LOGOS
   ============================================ */

.wp-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.wp-partners-grid img {
    max-height: 50px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.wp-partners-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   WP PASSWORD STUB
   ============================================ */

.wp-password-stub {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.wp-password-stub__icon {
    font-size: 48px;
    color: var(--wp-color-secondary);
    margin-bottom: 20px;
}

.wp-password-stub__title {
    font-family: var(--wp-font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--wp-color-primary);
    margin-bottom: 10px;
}

.wp-password-stub__desc {
    font-family: var(--wp-font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: var(--wp-color-text);
    margin-bottom: 20px;
}

/* ============================================
   WP RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .wp-heading-hero {
        font-size: 36px;
        line-height: 50px;
    }

    .wp-heading-primary {
        font-size: 24px;
        line-height: 36px;
    }

    .wp-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .wp-section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .wp-heading-hero {
        font-size: 28px;
        line-height: 40px;
    }

    .wp-heading-primary {
        font-size: 22px;
        line-height: 33px;
    }

    .wp-heading-secondary {
        font-size: 18px;
        line-height: 28px;
    }

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

    .wp-section {
        padding: 30px 0;
    }

    .wp-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
