/**
 * APB CTA Pro — Styles
 */
.apb-cta { font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }
.apb-cta * { box-sizing: border-box; margin: 0; padding: 0; }

.apb-cta__card {
    border-radius: 20px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.apb-cta__card::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 450px; height: 450px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.apb-cta__card::after {
    content: '';
    position: absolute;
    bottom: -35%; left: 15%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}

.apb-cta__content { position: relative; z-index: 1; }

.apb-cta__label {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: #E6892A;
    margin-bottom: 14px;
}
.apb-cta__title {
    font-size: 32px; font-weight: 800;
    color: #fff; line-height: 1.2;
    margin-bottom: 14px;
}
.apb-cta__desc {
    font-size: 16px; color: rgba(255,255,255,.75);
    line-height: 1.7; margin-bottom: 28px;
    max-width: 460px;
}

.apb-cta__list { margin-bottom: 28px; list-style: none; }
.apb-cta__list li {
    color: rgba(255,255,255,.88);
    font-size: 15px; padding: 5px 0;
    display: flex; align-items: center; gap: 10px;
}
.apb-cta__check {
    width: 22px; height: 22px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.apb-cta__check svg {
    width: 12px; height: 12px;
    stroke: #E6892A; stroke-width: 3;
    fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.apb-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.apb-cta__btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 16px; font-weight: 700;
    padding: 16px 32px; border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer; text-decoration: none;
    min-height: 52px; transition: all .2s;
    font-family: inherit; white-space: nowrap;
}
.apb-cta__btn--primary {
    background: #B45309; color: #fff;  /* WCAG AA 4.68:1 avec blanc */
    box-shadow: 0 4px 12px rgba(180,83,9,.3);
}
.apb-cta__btn--primary:hover { background: #92400E; transform: translateY(-1px); }
.apb-cta__btn--outline {
    background: transparent; color: #fff;
    border-color: rgba(255,255,255,.35);
}
.apb-cta__btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.apb-cta__visual { position: relative; z-index: 1; }
.apb-cta__image {
    width: 100%; height: 300px;
    object-fit: cover; border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
}

@media (max-width: 1024px) {
    .apb-cta__card { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
    .apb-cta__desc { margin-left: auto; margin-right: auto; }
    .apb-cta__list { display: inline-block; text-align: left; }
    .apb-cta__actions { justify-content: center; }
    .apb-cta__visual { display: none; }
}
