/* =========================================
   SECTION KOMUNITAS (LILAC TO WHITE)
   ========================================= */
.tp-komunitas {
    padding: 120px 0;
    /* Transisi mulus: Dari putih (Harga) turun perlahan ke Lilac Pudar */
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F1FB 100%);
    position: relative;
    margin-top: -1px;
}

.komunitas-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* KONTEN KIRI */
.komunitas-content h2 { 
    font-size: 42px; font-weight: 800; color: var(--tp-text-main); margin-bottom: 20px; line-height: 1.2; 
}
.komunitas-content h2 span { 
    background: var(--tp-green); /* Background Lilac */
    color: var(--tp-light); /* Teks Biru Elektrik */
    padding: 2px 10px; border-radius: 8px; 
}
.komunitas-content p { 
    font-size: 17px; color: var(--tp-text-muted); margin-bottom: 40px; max-width: 500px; line-height: 1.7;
}

/* Stats Mini */
.komunitas-stats { display: flex; gap: 40px; margin-bottom: 40px; }
.k-stat-item h4 { font-size: 32px; font-weight: 900; color: var(--tp-light); margin-bottom: 0; } /* Biru Elektrik */
.k-stat-item span { font-size: 14px; font-weight: 700; color: var(--tp-text-muted); text-transform: uppercase; }

/* Styling ulang khusus tombol di dalam bagian ini */
.komunitas-cta .btn-pass-primary {
    display: inline-flex; width: auto; padding: 14px 28px;
    box-shadow: 0 10px 20px rgba(226, 211, 244, 0.8);
}
.cta-note { font-size: 12px; color: var(--tp-text-muted); margin-top: 15px; font-weight: 600; font-style: italic;}


/* VISUAL KANAN: CHAT CARD */
.komunitas-visual { position: relative; }

.community-card {
    background: #FFFFFF; border-radius: 24px; padding: 30px;
    box-shadow: 0 30px 60px rgba(1, 61, 196, 0.05); /* Shadow biru tipis */
    border: 1px solid rgba(226, 211, 244, 0.8); /* Border Lilac */
}

/* Header Kartu Komunitas */
.c-card-header { margin-bottom: 30px; display: flex; justify-content: space-between; align-items: center;}
.c-card-title { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; color: var(--tp-text-main);}

.user-stack { display: flex; align-items: center; }
.user-stack img { width: 35px; height: 35px; border-radius: 50%; border: 3px solid #fff; margin-left: -12px; }
.user-stack img:first-child { margin-left: 0; }
.more-users { 
    width: 35px; height: 35px; border-radius: 50%; background: var(--tp-green); /* Lingkaran sisa Lilac */
    border: 3px solid #fff; margin-left: -12px; display: flex; align-items: center; 
    justify-content: center; font-size: 10px; font-weight: 800; color: var(--tp-light); /* Teks Biru */
}

/* Balon Chat */
.c-card-body { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.chat-bubble { 
    padding: 12px 16px; border-radius: 16px; font-size: 13px; max-width: 85%;
    font-weight: 600; line-height: 1.5;
}
.chat-bubble.left { 
    background: #FDFBFF; color: var(--tp-text-main); align-self: flex-start; 
    border-bottom-left-radius: 4px; border: 1px solid rgba(226, 211, 244, 0.6);
}
.chat-bubble.right { 
    background: var(--tp-light); color: #fff; align-self: flex-end; /* Chat kamu warna Biru Elektrik */
    border-bottom-right-radius: 4px; box-shadow: 0 5px 15px rgba(1, 61, 196, 0.2);
}

.c-card-footer { 
    border-top: 1px dashed rgba(226, 211, 244, 0.8); 
    padding-top: 15px; font-size: 12px; color: var(--tp-light); font-weight: 700; 
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .komunitas-wrapper { grid-template-columns: 1fr; text-align: center; }
    .komunitas-stats { justify-content: center; }
    .komunitas-content p { margin-left: auto; margin-right: auto; }
    .c-card-header { flex-direction: column; gap: 15px;}
}