/* === GOTO/TOKOPEDIA DESIGN SYSTEM - VISI MISI === */
:root {
    --vm-bg-white: #ffffff;
    --vm-bg-light: #fef7ff; /* Warna abu-abu/hijau super pucat khas GoTo */
    --vm-text-dark: #0f172a;
    --vm-text-muted: #64748b;
    --vm-border: #e2e8f0;
    --vm-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    --vm-shadow-hover: 0 12px 30px rgba(126, 16, 156, 0.1);
}

.visimisi-page-wrapper {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--vm-text-dark);
    background: var(--vm-bg-white);
    overflow-x: hidden;
}

.vm-section {
    padding: 5rem 2rem;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bg-white { background: var(--vm-bg-white); }
.bg-light-alt { background: var(--vm-bg-light); border-top: 1px solid var(--vm-border); border-bottom: 1px solid var(--vm-border); }

/* --- HEADER --- */
.vm-header-section {
    text-align: center;
    padding: 6rem 2rem 3rem 2rem;
}

.badge-pill {
    display: inline-block; padding: 6px 16px; background: rgba(126, 16, 156, 0.1);
    color: var(--primary); border-radius: 50px; font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.5rem;
}

.vm-main-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem); 
    color: var(--vm-text-dark);
    font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.vm-text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.vm-subtitle { 
    color: var(--vm-text-muted); font-size: 1.2rem; 
    max-width: 600px; margin: 0 auto; line-height: 1.6; 
}

/* --- SECTION TITLES --- */
.vm-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--vm-text-dark);
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}
.text-center { text-align: center; }

/* --- GRIDS --- */
.vm-grid { display: grid; gap: 1.5rem; }
.vm-grid-4 { grid-template-columns: repeat(4, 1fr); }
.vm-grid-3 { grid-template-columns: repeat(3, 1fr); }
.vm-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 4rem; }

/* --- CARD STYLE 1: NUMBERED CARDS (Gaya GoTo Misi) --- */
.vm-visi-block { margin-bottom: 5rem; }

.vm-grand-card {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary);
    font-weight: 500;
    padding: 2.5rem;
    background: var(--vm-bg-white);
    border-radius: 24px;
    border: 1px solid var(--vm-border);
    box-shadow: var(--vm-shadow);
    border-left: 6px solid var(--primary);
}

.vm-num-card {
    background: var(--vm-bg-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--vm-shadow);
    border: 1px solid var(--vm-border);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-num-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--vm-shadow-hover);
}

.num-indicator {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Garis bawah angka khas GoTo */
.num-indicator::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.vm-num-card p {
    margin: 0;
    color: var(--vm-text-dark);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}
.vm-num-card em { color: var(--primary); font-style: normal; font-weight: 600; }

/* --- CARD STYLE 2: CENTERED ICON CARDS (Gaya GoTo Nilai Dasar) --- */
.vm-icon-card {
    background: var(--vm-bg-white);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--vm-shadow);
    border: 1px solid var(--vm-border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--vm-shadow-hover);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px; /* Bentuk Squircle modern */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg { width: 30px; height: 30px; }

/* Warna pastel untuk latar ikon, ikon memakai warna solid */
.icon-blue { background: rgba(0, 119, 255, 0.1); color: #0077ff; }
.icon-purple { background: rgba(126, 16, 156, 0.1); color: var(--primary); }
.icon-teal { background: rgba(0, 168, 142, 0.1); color: #c202a2; }
.icon-orange { background: rgba(255, 115, 0, 0.1); color: #ff7300; }
.icon-pink { background: rgba(225, 29, 116, 0.1); color: #e11d74; }

.vm-icon-card h3 { 
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem; 
    color: var(--vm-text-dark); 
    margin-bottom: 0.8rem; 
}

.vm-icon-card p { 
    font-size: 0.95rem; 
    color: var(--vm-text-muted); 
    line-height: 1.5; 
    margin: 0; 
}

/* --- PRODI ACCORDION & PIMPINAN --- */
.stripe-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.prodi-detail { border-bottom: 1px solid var(--vm-border); }
.prodi-detail:last-child { border-bottom: none; }
.prodi-detail summary {
    padding: 1.2rem 0; font-weight: 600; color: var(--vm-text-dark); cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.prodi-detail summary::-webkit-details-marker { display: none; }
.prodi-detail .chevron {
    display: block; width: 10px; height: 10px; border-right: 2px solid var(--vm-text-muted);
    border-bottom: 2px solid var(--vm-text-muted); transform: rotate(45deg); transition: transform 0.3s;
}
.prodi-detail[open] .chevron { transform: rotate(-135deg); border-color: var(--primary); }
.prodi-detail .detail-content {
    padding-bottom: 1.5rem; color: var(--vm-text-muted); line-height: 1.6; font-size: 0.95rem;
    animation: vmReveal 0.3s ease-out;
}
@keyframes vmReveal { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Org List */
.org-list { display: flex; flex-direction: column; gap: 0.8rem; }
.org-row { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem; background: var(--vm-bg-light); border-radius: 12px; border: 1px solid var(--vm-border);}
.org-row span { color: var(--vm-text-muted); font-size: 0.9rem; }
.org-row strong { color: var(--vm-text-dark); font-size: 0.95rem; text-align: right; }

/* --- ANIMATION (TIDAK BERUBAH AGAR JS AMAN) --- */
.animate-stripe { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.21, 1.02, 0.73, 1), transform 0.8s cubic-bezier(0.21, 1.02, 0.73, 1); }
.animate-stripe.is-visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .vm-grid-4, .vm-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .vm-grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .vm-section { padding: 3rem 1.2rem; }
    .vm-header-section { padding-top: 4rem; }
    .vm-grid-4, .vm-grid-3 { grid-template-columns: 1fr; }
    .vm-grand-card { font-size: 1.2rem; padding: 1.5rem; }
    .org-row { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
    .org-row strong { text-align: left; }
}