.pt-cta-wrap {
    background: #1b2d42;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pt-cta {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.pt-cta__title {
    font-family: 'Lora', serif !important;
    font-weight: 600 !important;
    font-size: 38px;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.pt-cta__text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    letter-spacing: 0.01em !important;
    font-weight: 400 !important;
    color: #cdd7e2;
    margin-top: 24px;
}

.pt-cta__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.pt-cta__buttons .pt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.35s cubic-bezier(.16, 1, .3, 1);
    background: #ffffff;
    color: #1b2d42;
}

.pt-cta__buttons .pt-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pt-cta__buttons .pt-btn.outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.pt-cta__buttons .pt-btn.outline:hover {
    background: #ffffff;
    color: #1b2d42;
    transform: translateY(-2px);
}

.pt-cta-wrap.theme-light {
    background: #f4f6f8;
}

.pt-cta-wrap.theme-light .pt-cta__title {
    color: #1b2d42;
}

.pt-cta-wrap.theme-light .pt-cta__text {
    color: #2c3e50;
    opacity: 0.9;
}

.pt-cta-wrap.theme-light .pt-btn {
    background: #1b2d42;
    color: #ffffff;
    border-color: #1b2d42;
}

.pt-cta-wrap.theme-light .pt-btn:hover {
    background: #101d2a;
    border-color: #101d2a;
    box-shadow: 0 10px 20px rgba(27, 45, 66, 0.1);
}

.pt-cta-wrap.theme-light .pt-btn.outline {
    background: transparent;
    border: 2px solid #1b2d42;
    color: #1b2d42;
}

.pt-cta-wrap.theme-light .pt-btn.outline:hover {
    background: #1b2d42;
    color: #ffffff;
}

.pt-cta__quote {
    font-family: 'Lora', serif !important;
    font-weight: 400 !important;
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    color: #eee;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.pt-cta__quote::before {
    content: "“";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    line-height: 1;
    opacity: 0.12;
}

.pt-cta__quote-author {
    display: block;
    margin-top: 32px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    text-align: center;
    color: #ffffff;
}

.pt-cta-wrap.mode-quote .pt-cta__buttons {
    display: none;
}

@media (max-width: 992px) {
    .pt-cta-wrap {
        padding: 60px 0;
    }

    .pt-cta__title {
        font-size: 30px !important;
        text-align: left;
    }

    .pt-cta__text {
        font-size: 15.5px !important;
        line-height: 1.6 !important;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .pt-cta__quote {
        font-size: 20px !important;
        line-height: 1.5 !important;
    }

    .pt-cta__quote::before {
        font-size: 90px;
        top: -40px;
    }

    .pt-cta__quote-author {
        font-size: 12px !important;
        margin-top: 24px;
    }

    .pt-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .pt-cta__buttons .pt-btn {
        width: 100%;
        box-sizing: border-box;
    }
}