/**
 * ATIKASS Form — Right Sidebar: CTA card, Trust badges, Testimonial
 */

/* ── CTA Card ─────────────────────────────── */
.atkf-cta-card {
    background: var(--atkf-white);
    border-radius: var(--atkf-radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--atkf-shadow-sm);
    border: 1px solid var(--atkf-border);
    position: relative;
    overflow: hidden;
}
.atkf-cta-card--primary {
    background: var(--atkf-gradient);
    border: none;
    color: #fff;
}
.atkf-cta-card--primary::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.atkf-cta-card__badge {
    display: inline-block;
    padding: 3px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 20px;
    margin-bottom: 16px;
}
.atkf-cta-card__icon { margin-bottom: 12px; opacity: 0.9; }
.atkf-cta-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.atkf-cta-card__desc { font-size: 0.8rem; opacity: 0.8; margin-bottom: 20px; line-height: 1.5; }

.atkf-btn--cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #fff !important;
    color: var(--atkf-navy) !important;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: var(--atkf-radius-sm);
    cursor: pointer;
    text-decoration: none !important;
    transition: var(--atkf-transition);
}
.atkf-btn--cta:hover,
.atkf-btn--cta:focus,
.atkf-btn--cta:active,
.atkf-btn--cta:visited {
    color: var(--atkf-navy) !important;
    text-decoration: none !important;
}
.atkf-btn--cta:hover {
    background: var(--atkf-primary-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ── Trust Card ───────────────────────────── */
.atkf-trust-card {
    background: var(--atkf-white);
    border-radius: var(--atkf-radius-lg);
    padding: 24px;
    box-shadow: var(--atkf-shadow-sm);
    border: 1px solid var(--atkf-border);
}
.atkf-trust-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--atkf-text);
    margin-bottom: 16px;
}
.atkf-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.atkf-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.atkf-trust-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.atkf-trust-item__icon--green  { background: #ecfdf5; color: #10b981; }
.atkf-trust-item__icon--blue   { background: #eff6ff; color: #3b82f6; }
.atkf-trust-item__icon--purple { background: var(--atkf-primary-light); color: var(--atkf-primary); }
.atkf-trust-item__icon--orange { background: #fff7ed; color: #f97316; }
.atkf-trust-item__icon img {
    max-width: 20px;
    max-height: 20px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.atkf-trust-item strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--atkf-text); }
.atkf-trust-item span   { font-size: 0.7rem; color: var(--atkf-text-muted); }
