/* ── HOW IT WORKS ──────────────────────── */
.section-alt {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* ── PAYMENT METHODS — Compact Strip ──── */
.payments-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.payments-strip__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payments-strip__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.payments-strip__logos img {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.payments-strip__logos img:hover {
    opacity: 1;
}

.payments-strip__secure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--fg-tertiary);
}

.payments-strip__secure i { color: var(--accent); }

@media (max-width: 640px) {
    .payments-strip__logos { gap: 10px; }
    .payments-strip__logos img { height: 20px; }
}

/* ── DUO: "Untuk Siapa" (kiri) + FAQ (kanan) berdampingan ── */
.duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.duo-col { min-width: 0; }
.duo-head { margin-bottom: 28px; }
.duo-head .section-label { margin-bottom: 14px; }
.duo-title {
    font-family: var(--font-sans);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 10px;
    color: var(--fg-primary);
}
.duo-sub { font-size: 15px; color: var(--fg-secondary); line-height: 1.6; }
.role-list { display: flex; flex-direction: column; gap: 14px; }
.role-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: var(--radius-md);
    background: var(--bg-section-alt);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s var(--ease-out);
}
.role-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.role-card .feature-icon { margin-bottom: 0; flex-shrink: 0; }
.role-card-body { min-width: 0; }
.role-card .feature-title { margin-bottom: 4px; }
@media (max-width: 900px) {
    .duo-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── SOCIAL PROOF / TESTIMONIALS ─────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 14px;
    background: var(--bg-paper);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--accent);
    line-height: 1;
}

.testimonial-stars span { display: inline-block; }

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--fg-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--fg-primary);
}

.testimonial-role {
    font-size: 13px;
    color: var(--fg-tertiary);
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 32px 0 0;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 40px;
    position: relative;
}

.trust-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: var(--border-subtle);
}

.trust-stat-value {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.trust-stat-label {
    font-size: 14px;
    color: var(--fg-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-stats { flex-direction: column; gap: 20px; }
    .trust-stat { padding: 0; }
    .trust-stat:not(:last-child)::after { display: none; }
}

@media (max-width: 480px) {
}