.pt-trust-section {
    background: #1b2d42;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pt-trust-header {
    margin: 0;
    position: relative;
    z-index: 2;
}

.pt-trust-header h2 {
    font-family: 'Lora', serif !important;
    font-weight: 600 !important;
    font-size: 38px;
    line-height: 1.25;
    margin: 0;
    text-align: center;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.pt-trust-lead {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    letter-spacing: 0.01em !important;
    font-weight: 400 !important;
    margin: 28px auto 0 auto;
    color: #cdd7e2;
    position: relative;
    z-index: 2;
}

.pt-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 64px auto 0 auto !important;
    position: relative;
    z-index: 2;
}

.pt-trust-card {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.005)
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 45px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(.16, 1, .3, 1),
                box-shadow 0.4s cubic-bezier(.16, 1, .3, 1),
                border-color 0.4s ease;
}

.pt-trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px -15px rgba(0, 10, 25, 0.4);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
}

.pt-trust-card h3 {
    font-family: 'Lora', serif !important;
    font-weight: 600 !important;
    font-size: 22px;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
    color: #ffffff;
    display: block;
    width: 100%;
    text-align: left;
}

.pt-trust-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%);
    transition: background 0.5s ease;
}

.pt-trust-card:hover h3::after {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
}

.pt-trust-card__text {
    font-family: 'Montserrat', sans-serif !important;
    color: #cdd7e2;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    margin-top: 24px;
    text-align: left;
    font-weight: 400 !important;
}

.pt-trust-card__text p {
    margin: 0 0 16px 0;
}

.pt-trust-card__text p:last-child {
    margin-bottom: 0;
}

.pt-trust-card__text strong {
    font-weight: 600;
    color: #ffffff;
}

.pt-trust-card__text em {
    font-style: italic;
}

.pt-trust-card__text ul,
.pt-trust-card__text ol {
    margin: 20px 0 0 0;
    padding: 0 !important;
    list-style: none !important;
    text-align: left;
}

.pt-trust-card__text li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 22px;
    line-height: 1.6;
    list-style: none !important;
}

.pt-trust-card__text li:last-child {
    margin-bottom: 0;
}

/* Widoczne kropki dla list wewnątrz kart */
.pt-trust-card__text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    display: inline-block;
    transition: background 0.3s ease;
}

.pt-trust-card:hover .pt-trust-card__text li::before {
    background: rgba(255, 255, 255, 0.9);
}

/* ======================================================
   THEME LIGHT
  ==================================================== */
.pt-trust-section.theme-light {
    background: #fafbfc;
}

.pt-trust-section.theme-light h2,
.pt-trust-section.theme-light .pt-trust-lead {
    color: #1b2d42;
}

.pt-trust-section.theme-light .pt-trust-lead {
    color: #5b6b7c;
}

.pt-trust-section.theme-light .pt-trust-card {
    background: #ffffff;
    border: 1px solid rgba(27, 45, 66, 0.06);
    box-shadow: 0 10px 30px -10px rgba(27, 45, 66, 0.05);
}

.pt-trust-section.theme-light .pt-trust-card:hover {
    border-color: rgba(27, 45, 66, 0.12);
    box-shadow: 0 20px 40px -15px rgba(27, 45, 66, 0.1);
    background: #ffffff;
}

.pt-trust-section.theme-light .pt-trust-card h3 {
    color: #1b2d42;
}

.pt-trust-section.theme-light .pt-trust-card h3::after {
    background: linear-gradient(90deg, rgba(27,45,66,0) 0%, rgba(27,45,66,0.12) 50%, rgba(27,45,66,0) 100%);
}

.pt-trust-section.theme-light .pt-trust-card:hover h3::after {
    background: linear-gradient(90deg, rgba(27,45,66,0) 0%, rgba(27,45,66,0.35) 50%, rgba(27,45,66,0) 100%);
}

.pt-trust-section.theme-light .pt-trust-card__text {
    color: #64748b;
}

.pt-trust-section.theme-light .pt-trust-card__text a{
    color: #64748b;
	text-decoration: underline;
	font-weight:500;
}

.pt-trust-section.theme-light .pt-trust-card__text strong {
    color: #1b2d42;
}

/* Kropki w trybie jasnym */
.pt-trust-section.theme-light .pt-trust-card__text li::before {
    background: rgba(27, 45, 66, 0.45);
}

.pt-trust-section.theme-light .pt-trust-card:hover .pt-trust-card__text li::before {
    background: rgba(27, 45, 66, 0.8);
}

/* ======================================================
   RESPONSIVE
  ==================================================== */
@media (max-width: 992px) {
    .pt-trust-section {
        padding: 70px 0;
    }
    .pt-trust-grid {
        gap: 24px;
        margin-top: 48px !important;
    }
    .pt-trust-card {
        padding: 35px 24px;
    }
}

@media (max-width: 768px) {
    .pt-trust-section {
        padding: 60px 0;
    }

    .pt-trust-header h2 {
        font-size: 30px !important;
        text-align: left;
    }

    .pt-trust-lead {
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: left;
        margin-top: 16px;
    }

    .pt-trust-grid {
        margin-top: 36px !important;
    }

    .pt-trust-card {
        padding: 30px 20px;
    }
    
    .pt-trust-card__text {
        text-align: left;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
}