/* ═══════════════════════════════════════════
   RL Trust Section
   ═══════════════════════════════════════════ */

.rl-trust-section {
    padding: 120px 0;
    overflow: hidden;
}

.rl-trust-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

/* ── Left: Cards ── */
.rl-trust-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.rl-trust-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.rl-trust-card-title {
    font-family: 'Inter Display', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* Card 1: Onboarded */
.rl-trust-card-onboarded {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 35px;
    border-top: 3px solid #D4C9FB;
}

.rl-trust-card-avatars-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rl-trust-card-avatars {
    display: flex;
}

.rl-trust-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-right: -15px;
    overflow: hidden;
    background: #eee;
}

.rl-trust-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rl-trust-card-extra {
    font-family: 'Inter Display', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-left: 15px;
}

/* Card 2: Payments */
.rl-trust-card-payments {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rl-trust-card-bg-media {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -45%);
    opacity: 0.25;
    pointer-events: none;
    width: 110%;
    height: 110%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rl-trust-card-bg-media svg,
.rl-trust-card-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rl-trust-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rl-trust-card-flags {
    display: flex;
    gap: 8px;
}

.rl-trust-card-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.rl-trust-card-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rl-trust-card-payments-title {
    font-family: 'Inter Display', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.rl-trust-card-progress {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin-bottom: 25px;
}

.rl-trust-card-progress-fill {
    height: 100%;
    background: #000;
    border-radius: 3px;
}

.rl-trust-card-amount-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rl-trust-card-amount {
    font-family: 'Inter Display', sans-serif;
    font-size: 40px;
    font-weight: 800;
}

.rl-trust-card-status {
    font-family: 'Inter Display', sans-serif;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
}

/* ── Right: Content ── */
.rl-trust-content {
    flex: 1;
    max-width: 400px;
}

.rl-trust-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.rl-trust-headline {
    font-family: 'Inter Display', sans-serif ;
    font-size: 48px ;
    font-weight: 600 ;
    line-height: 1.1;
    margin-bottom: 50px;
    color: #000;
    letter-spacing: -0.02em;
}

.rl-trust-cta {
    width: fit-content;
    display: inline-flex !important;
    align-items: center;
    gap: 40px;
    padding: 18px 20px 18px 35px;
    background: #000 !important;
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none !important;
    font-family: 'Inter Display', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.rl-trust-cta:hover {
    background: #1a1a1a !important;
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #fff !important;
}

.rl-trust-cta .rl-cta-arrow {
    background: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rl-trust-cta .rl-cta-arrow svg {
    color: #000;
    fill: #000;
}

/* Responsive */
@media (max-width: 1100px) {
    .rl-trust-container { flex-direction: column; gap: 60px; text-align: center; }
    .rl-trust-cards { margin: 0 auto; width: 100%; }
    .rl-trust-stars { justify-content: center; }
    .rl-trust-cta { margin: 0 auto; }
}

@media (max-width: 768px) {
    .rl-trust-headline { font-size: 48px ; }
    .rl-trust-card-amount { font-size: 32px; }
}
