*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --forest: #053d2f; --forest-mid: #075240; --forest-light: #0a6b53;
    --gold: #c8991a; --gold-light: #e6b93a; --gold-pale: #fdf3d6;
    --cream: #faf8f2; --white: #ffffff; --ink: #111a14; --muted: #5a6b61;
    --border: rgba(5,61,47,0.1); --radius: 16px; --radius-sm: 10px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }

nav { position: sticky; top: 0; z-index: 100; background: var(--forest); border-bottom: 1px solid rgba(200,153,26,0.25); padding: 0 6vw; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo { width: 40px; height: 40px; border-radius: 8px; background: var(--gold-pale); display: grid; place-items: center; font-size: 18px; color: var(--forest); }
.nav-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--gold-light); letter-spacing: 0.05em; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { background: var(--gold) !important; color: var(--forest) !important; padding: 9px 22px; border-radius: 99px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

#home { background: var(--forest); min-height: 92vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 80px 8vw; position: relative; overflow: hidden; }
#home::before { content: ''; position: absolute; top: -120px; right: -80px; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(200,153,26,0.1); pointer-events: none; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,153,26,0.15); border: 1px solid rgba(200,153,26,0.3); color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 99px; margin-bottom: 22px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.15; color: var(--white); margin-bottom: 8px; animation: fadeUp 0.65s ease both; }
.hero-title .accent { color: var(--gold-light); }
.hero-subtitle { font-size: clamp(18px, 2.2vw, 26px); font-weight: 700; color: rgba(255,255,255,0.82); margin-bottom: 20px; }
.hero-desc { font-size: 15.5px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary { background: var(--gold); color: var(--forest); padding: 14px 30px; border-radius: 99px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.2s; box-shadow: 0 4px 20px rgba(200,153,26,0.35); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid rgba(200,153,26,0.5); color: var(--gold-light); padding: 13px 30px; border-radius: 99px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { background: rgba(200,153,26,0.1); }
.hero-stats { display: flex; gap: 28px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold-light); font-weight: 900; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.48); margin-top: 2px; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; animation: fadeUp 0.9s ease 0.15s both; }
.hero-image-frame { position: relative; z-index: 2; border-radius: 22px; overflow: hidden; border: 2px solid rgba(200,153,26,0.28); }
.hero-image-frame img { width: 100%; max-width: 480px; display: block; object-fit: cover; }
.hero-deco-ring { position: absolute; inset: -16px; border-radius: 30px; border: 1px solid rgba(200,153,26,0.16); z-index: 1; }
.hero-badge { position: absolute; bottom: 24px; left: -20px; z-index: 10; background: var(--gold); color: var(--forest); padding: 12px 18px; border-radius: 14px; font-weight: 700; font-size: 12px; line-height: 1.4; box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.hero-badge strong { display: block; font-size: 18px; font-weight: 900; margin-bottom: 2px; }

section { padding: 88px 8vw; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-label::before { content: ''; width: 22px; height: 2px; background: var(--gold); border-radius: 99px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 40px); color: var(--ink); line-height: 1.25; margin-bottom: 14px; }
.section-sub { font-size: 15.5px; color: var(--muted); line-height: 1.75; max-width: 560px; }

/* ABOUT */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-quote { background: var(--forest); border-radius: var(--radius); padding: 30px 34px; margin-top: 28px; position: relative; }
.about-quote::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 68px; color: var(--gold-light); position: absolute; top: -14px; left: 22px; line-height: 1; opacity: 0.55; }
.about-quote p { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); line-height: 1.65; font-style: italic; padding-top: 18px; }
.pillars-mini { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 36px; }
.pillar-mini { background: var(--cream); border-radius: var(--radius-sm); padding: 16px 8px; text-align: center; border: 1px solid var(--border); transition: all 0.2s; }
.pillar-mini:hover { border-color: rgba(200,153,26,0.3); transform: translateY(-2px); }
.pillar-mini i { font-size: 20px; color: var(--forest); display: block; margin-bottom: 7px; }
.pillar-mini b { font-size: 10px; font-weight: 800; color: var(--forest); letter-spacing: 0.04em; display: block; }
.pillar-mini small { font-size: 10px; color: var(--muted); margin-top: 3px; display: block; line-height: 1.35; }
.about-visual { position: relative; }
.about-img img { width: 100%; border-radius: 20px; display: block; object-fit: cover; height: 380px; }
.keunggulan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.kug-item { display: flex; align-items: center; gap: 10px; background: var(--cream); border-radius: var(--radius-sm); padding: 11px 14px; border: 1px solid var(--border); }
.kug-item i { color: var(--forest); font-size: 14px; flex-shrink: 0; }
.kug-item span { font-size: 12.5px; font-weight: 600; color: var(--ink); }

/* PROGRAM PILAR */
#program { background: var(--cream); }
.pillars-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pillar-card { background: var(--white); border-radius: var(--radius); padding: 26px 18px; border: 1px solid var(--border); text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.pillar-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(5,61,47,0.1); border-color: rgba(200,153,26,0.22); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-icon { width: 54px; height: 54px; border-radius: 13px; background: var(--forest); margin: 0 auto 16px; display: grid; place-items: center; font-size: 21px; color: var(--gold-light); }
.pillar-card h3 { font-size: 12px; font-weight: 800; color: var(--forest); letter-spacing: 0.06em; margin-bottom: 10px; }
.pillar-card ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.pillar-card ul li { font-size: 11.5px; color: var(--muted); display: flex; align-items: flex-start; gap: 5px; text-align: left; line-height: 1.45; }
.pillar-card ul li::before { content: '•'; color: var(--gold); flex-shrink: 0; }

/* SISTEM BELAJAR */
#sistem { background: var(--white); }
.sistem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sistem-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sc { background: var(--cream); border-radius: var(--radius); padding: 26px 22px; border: 1px solid var(--border); transition: all 0.25s; }
.sc:hover { border-color: rgba(200,153,26,0.28); transform: translateY(-3px); }
.sc-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px; display: grid; place-items: center; font-size: 21px; }
.ic-teal { background: #e1f5ee; color: #0a6b53; } .ic-gold { background: var(--gold-pale); color: #7a5700; }
.ic-blue { background: #e6f1fb; color: #185fa5; } .ic-orange { background: #fef0e7; color: #c05800; }
.sc .badge-pill { display: inline-block; background: var(--forest); color: var(--gold-light); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px; margin-bottom: 8px; }
.sc h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.sc p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.sistem-visual { background: var(--forest); border-radius: 22px; padding: 44px 36px; position: relative; overflow: hidden; }
.sistem-visual::before { content: ''; position: absolute; top: -50px; right: -50px; width: 220px; height: 220px; border-radius: 50%; border: 1px solid rgba(200,153,26,0.13); }
.sistem-visual h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--white); line-height: 1.4; margin-bottom: 28px; }
.sistem-visual h3 span { color: var(--gold-light); }
.prog-1thn { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.prog-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(200,153,26,0.18); border-radius: 12px; padding: 18px; text-align: center; }
.prog-item i { font-size: 24px; color: var(--gold-light); display: block; margin-bottom: 9px; }
.prog-item h5 { font-size: 12.5px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.prog-item p { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.sistem-tagline { margin-top: 24px; padding: 18px 22px; background: rgba(200,153,26,0.1); border: 1px solid rgba(200,153,26,0.22); border-radius: 12px; font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.65; font-style: italic; }

/* PRICING */
#biaya { background: var(--forest); }
.pricing-header { text-align: center; margin-bottom: 52px; }
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-title { color: var(--white); }
.pricing-header .section-sub { color: rgba(255,255,255,0.58); margin: 0 auto; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.price-card { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s; }
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { background: var(--gold-pale); border: 2px solid var(--gold); transform: scale(1.04); }
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-hd { padding: 24px 24px 18px; }
.price-pop { display: inline-block; background: var(--gold); color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 99px; text-transform: uppercase; margin-bottom: 10px; }
.price-ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; font-size: 19px; margin-bottom: 12px; }
.pi-b { background: rgba(255,255,255,0.09); color: var(--gold-light); }
.pi-s { background: var(--forest); color: var(--gold-light); }
.pi-e { background: rgba(24,95,165,0.18); color: #85b7eb; }
.pi-l { background: rgba(192,88,0,0.18); color: #ef9f27; }
.price-name { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.price-card.featured .price-name { color: var(--forest); }
.price-tagline { font-size: 11.5px; color: rgba(255,255,255,0.48); margin-bottom: 12px; }
.price-card.featured .price-tagline { color: var(--muted); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold-light); font-weight: 900; }
.price-card.featured .price-amount { color: var(--forest); }
.price-period { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.price-card.featured .price-period { color: var(--muted); }
.price-div { height: 1px; background: rgba(255,255,255,0.07); margin: 0 24px; }
.price-card.featured .price-div { background: rgba(5,61,47,0.1); }
.price-body { padding: 18px 24px 14px; flex: 1; }
.price-body h5 { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 12px; }
.price-card.featured .price-body h5 { color: var(--muted); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.price-features li { font-size: 12px; color: rgba(255,255,255,0.76); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.price-card.featured .price-features li { color: var(--ink); }
.price-features li i { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; font-size: 10px; }
.price-card.featured .price-features li i { color: var(--forest-light); }
.price-features li.hi { font-weight: 700; }
.price-ft { padding: 0 24px 24px; }
.price-meta { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.pm-tag { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 99px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.09); }
.price-card.featured .pm-tag { background: rgba(5,61,47,0.07); color: var(--muted); border-color: rgba(5,61,47,0.1); }
.price-btn { display: block; text-align: center; text-decoration: none; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 13.5px; transition: all 0.2s; border: 1.5px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.82); }
.price-btn:hover { background: rgba(255,255,255,0.09); color: var(--white); }
.price-card.featured .price-btn { background: var(--forest); color: var(--white); border-color: var(--forest); }
.price-card.featured .price-btn:hover { background: var(--forest-mid); }

.pay-info { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pay-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius); padding: 22px 26px; display: flex; align-items: flex-start; gap: 14px; }
.pay-card i { font-size: 26px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.pay-card h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pay-card p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.65; }

/* KONTAK */
#kontak { background: var(--cream); }
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.kontak-list { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.kont-item { display: flex; align-items: flex-start; gap: 14px; }
.kont-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--forest); display: grid; place-items: center; font-size: 17px; color: var(--gold-light); flex-shrink: 0; }
.kont-item h4 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.kont-item p, .kont-item a { font-size: 14px; color: var(--muted); text-decoration: none; display: block; line-height: 1.6; }
.kont-item a:hover { color: var(--forest); }
.cta-box { background: var(--forest); border-radius: 20px; padding: 44px 36px; text-align: center; }
.cta-box h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--white); line-height: 1.4; margin-bottom: 12px; }
.cta-box p { font-size: 14.5px; color: rgba(255,255,255,0.62); margin-bottom: 30px; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-wa { background: #25D366; color: var(--white); padding: 13px 26px; border-radius: 99px; font-weight: 700; font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.cta-wa:hover { background: #20b857; transform: translateY(-2px); }
.cta-web { border: 1.5px solid rgba(200,153,26,0.45); color: var(--gold-light); padding: 12px 26px; border-radius: 99px; font-weight: 600; font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.cta-web:hover { background: rgba(200,153,26,0.1); }

footer { background: var(--forest-mid); border-top: 1px solid rgba(200,153,26,0.18); padding: 60px 8vw 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--gold-light); margin-bottom: 12px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.48); line-height: 1.75; max-width: 290px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: grid; place-items: center; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: all 0.2s; }
.footer-social a:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
footer h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
footer ul li a { font-size: 13.5px; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s; }
footer ul li a:hover { color: var(--gold-light); }
footer address { font-style: normal; font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.75; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.28); }

.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: white; display: grid; place-items: center; font-size: 26px; box-shadow: 0 6px 24px rgba(37,211,102,0.42); text-decoration: none; transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

@media (max-width: 1100px) {
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .price-card.featured { transform: none; }
    .pay-info { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    #home { grid-template-columns: 1fr; min-height: auto; padding: 60px 6vw; }
    .hero-image-wrap { display: none; }
    .about-grid, .sistem-grid, .kontak-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .nav-links { display: none; }
    .pillars-mini { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    section { padding: 56px 5vw; }
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .sistem-cards { grid-template-columns: 1fr; }
    .keunggulan-grid { grid-template-columns: 1fr; }
    .prog-1thn { grid-template-columns: 1fr 1fr; }
    .founder-grid { grid-template-columns: 1fr; }
    .kepakaran-list { grid-template-columns: 1fr; }
}

/* ── FOUNDER ── */
#founder { background: var(--forest); }
.founder-grid { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: center; }
.founder-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(200,153,26,0.25); border-radius: 24px; padding: 38px 28px; text-align: center; position: relative; overflow: hidden; }
.founder-card::before { content: ''; position: absolute; top: -60px; left: -60px; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(200,153,26,0.1); }
.founder-avatar { width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--forest-light) 100%); margin: 0 auto 18px; display: grid; place-items: center; font-size: 42px; color: var(--white); border: 3px solid rgba(200,153,26,0.4); position: relative; z-index: 1; }
.founder-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 900; color: var(--white); line-height: 1.35; margin-bottom: 5px; }
.founder-title { font-size: 13px; color: var(--gold-light); font-weight: 600; margin-bottom: 18px; }
.founder-divider { height: 1px; background: rgba(200,153,26,0.2); margin: 18px 0; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.exp-tag { background: rgba(200,153,26,0.12); border: 1px solid rgba(200,153,26,0.28); color: var(--gold-light); font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 99px; }
.founder-content .section-title { color: var(--white); }
.founder-content .section-sub { color: rgba(255,255,255,0.6); max-width: 100%; }
.founder-bio { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.bio-item { display: flex; gap: 13px; align-items: flex-start; }
.bio-ico { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,0.07); border: 1px solid rgba(200,153,26,0.18); display: grid; place-items: center; font-size: 17px; color: var(--gold-light); flex-shrink: 0; }
.bio-item h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.bio-item p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.6; }
.founder-kepakaran { margin-top: 28px; padding: 22px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(200,153,26,0.18); border-radius: var(--radius); }
.founder-kepakaran h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.kepakaran-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.kep-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,153,26,0.14); border-radius: 12px; padding: 16px 12px; text-align: center; transition: all 0.2s; }
.kep-item:hover { border-color: rgba(200,153,26,0.32); background: rgba(200,153,26,0.08); }
.kep-item i { font-size: 21px; color: var(--gold-light); display: block; margin-bottom: 8px; }
.kep-item span { font-size: 12px; font-weight: 700; color: var(--white); display: block; }
.kep-item small { font-size: 10px; color: rgba(255,255,255,0.48); margin-top: 3px; display: block; line-height: 1.4; }

/* ── PILLAR DETAIL ── */
.pillar-detail-section { padding: 0 8vw 88px; background: var(--cream); }
.pd-block {
    border-radius: 24px; overflow: hidden; margin-bottom: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(5,61,47,0.06);
}
.pd-block:last-child { margin-bottom: 0; }
.pd-header {
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 20px;
    background: var(--forest); padding: 28px 36px;
    cursor: pointer; user-select: none;
}
.pd-header:hover { background: var(--forest-mid); }
.pd-header-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(200,153,26,0.3);
    display: grid; place-items: center; font-size: 22px; color: var(--gold-light);
    flex-shrink: 0;
}
.pd-header-text h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 4px; }
.pd-header-text p { font-size: 13px; color: rgba(255,255,255,0.58); }
.pd-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(200,153,26,0.25);
    display: grid; place-items: center; color: var(--gold-light); font-size: 14px;
    transition: transform 0.35s, background 0.2s; flex-shrink: 0;
}
.pd-block.open .pd-toggle { transform: rotate(180deg); background: rgba(200,153,26,0.2); }
.pd-body {
    background: var(--white); max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.pd-block.open .pd-body { max-height: 1200px; }
.pd-inner { padding: 40px 36px; }

/* sub-grid inside detail */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.pd-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pd-col h4::before { content: ''; width: 18px; height: 2px; background: var(--gold); border-radius: 99px; }
.pd-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pd-list li { font-size: 13.5px; color: var(--ink); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; padding: 10px 14px; background: var(--cream); border-radius: 9px; border-left: 3px solid var(--gold); }
.pd-list li i { color: var(--forest); font-size: 12px; margin-top: 2px; flex-shrink: 0; }

.pd-outcomes { background: var(--forest); border-radius: 16px; padding: 28px 32px; }
.pd-outcomes h4 { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.pd-outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.outcome-item { background: rgba(255,255,255,0.07); border: 1px solid rgba(200,153,26,0.18); border-radius: 12px; padding: 16px 14px; text-align: center; }
.outcome-item i { font-size: 20px; color: var(--gold-light); display: block; margin-bottom: 8px; }
.outcome-item span { font-size: 12px; font-weight: 700; color: var(--white); display: block; }
.outcome-item small { font-size: 10.5px; color: rgba(255,255,255,0.5); margin-top: 3px; display: block; line-height: 1.4; }

.pd-method { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.method-tag { background: var(--gold-pale); border: 1px solid rgba(200,153,26,0.25); border-radius: 10px; padding: 14px 12px; text-align: center; }
.method-tag i { font-size: 18px; color: var(--forest); display: block; margin-bottom: 6px; }
.method-tag span { font-size: 11.5px; font-weight: 700; color: var(--forest); display: block; }

@media (max-width: 900px) {
    .pd-grid { grid-template-columns: 1fr; gap: 20px; }
    .pd-outcomes-grid { grid-template-columns: 1fr 1fr; }
    .pd-method { grid-template-columns: 1fr 1fr; }
    .pd-header { padding: 22px 24px; }
    .pd-inner { padding: 28px 24px; }
}
@media (max-width: 600px) {
    .pillar-detail-section { padding: 0 5vw 60px; }
    .pd-outcomes-grid { grid-template-columns: 1fr; }
    .pd-method { grid-template-columns: 1fr 1fr; }
}

/* ── MODAL ── */
.pillar-card { cursor: pointer; }
.pillar-card .pc-hint { font-size: 10.5px; color: var(--gold); margin-top: 12px; font-weight: 700; letter-spacing: 0.04em; display: flex; align-items: center; justify-content: center; gap: 5px; opacity: 0; transition: opacity 0.2s; }
.pillar-card:hover .pc-hint { opacity: 1; }

.modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(5,30,20,0.72); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--white); border-radius: 24px;
    width: 100%; max-width: 860px; max-height: 88vh;
    overflow: hidden; display: flex; flex-direction: column;
    transform: translateY(28px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34,1.26,0.64,1);
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-head {
    background: var(--forest); padding: 28px 36px;
    display: flex; align-items: center; gap: 20px; flex-shrink: 0;
    position: relative;
}
.modal-head-icon {
    width: 58px; height: 58px; border-radius: 16px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(200,153,26,0.35);
    display: grid; place-items: center; font-size: 26px; color: var(--gold-light); flex-shrink: 0;
}
.modal-head-text { flex: 1; }
.modal-head-text h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); margin-bottom: 4px; }
.modal-head-text p { font-size: 13px; color: rgba(255,255,255,0.6); }
.modal-close {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    display: grid; place-items: center; cursor: pointer;
    color: rgba(255,255,255,0.7); font-size: 16px; flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); color: var(--white); }

.modal-tabs {
    display: flex; border-bottom: 1px solid var(--border);
    background: var(--white); flex-shrink: 0; overflow-x: auto;
    scrollbar-width: none;
}
.modal-tabs::-webkit-scrollbar { display: none; }
.mtab {
    padding: 14px 22px; font-size: 13px; font-weight: 700;
    color: var(--muted); cursor: pointer; white-space: nowrap;
    border-bottom: 3px solid transparent; transition: all 0.2s;
}
.mtab:hover { color: var(--forest); }
.mtab.active { color: var(--forest); border-bottom-color: var(--gold); }

.modal-content { overflow-y: auto; flex: 1; padding: 32px 36px; }
.modal-panel { display: none; }
.modal-panel.active { display: block; }

/* panel content styles */
.mp-intro { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; padding: 18px 22px; background: var(--gold-pale); border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0; }
.mp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.mp-col-title { font-size: 12px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--forest); margin-bottom: 12px; display: flex; align-items: center; gap: 7px; }
.mp-col-title i { color: var(--gold); font-size: 13px; }
.mp-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mp-list li { font-size: 13px; color: var(--ink); line-height: 1.6; padding: 10px 14px; background: var(--cream); border-radius: 9px; border-left: 3px solid var(--gold); display: flex; gap: 9px; align-items: flex-start; }
.mp-list li i { color: var(--forest); font-size: 11px; margin-top: 3px; flex-shrink: 0; }
.mp-outcomes { background: var(--forest); border-radius: 16px; padding: 24px 28px; margin-bottom: 20px; }
.mp-outcomes-title { font-size: 12px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.mp-outcomes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mp-oc-item { background: rgba(255,255,255,0.07); border: 1px solid rgba(200,153,26,0.18); border-radius: 11px; padding: 14px 10px; text-align: center; }
.mp-oc-item i { font-size: 20px; color: var(--gold-light); display: block; margin-bottom: 7px; }
.mp-oc-item span { font-size: 11.5px; font-weight: 700; color: var(--white); display: block; }
.mp-oc-item small { font-size: 10px; color: rgba(255,255,255,0.5); display: block; margin-top: 3px; line-height: 1.4; }
.mp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mp-tag { background: var(--gold-pale); border: 1px solid rgba(200,153,26,0.25); color: var(--forest); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 99px; display: flex; align-items: center; gap: 6px; }
.mp-timeline { display: flex; flex-direction: column; gap: 0; }
.mp-tl-item { display: flex; gap: 18px; padding-bottom: 24px; position: relative; }
.mp-tl-item:last-child { padding-bottom: 0; }
.mp-tl-left { display: flex; flex-direction: column; align-items: center; gap: 0; flex-shrink: 0; }
.mp-tl-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--forest); border: 2px solid var(--gold); display: grid; place-items: center; font-size: 13px; color: var(--gold-light); flex-shrink: 0; }
.mp-tl-line { width: 2px; flex: 1; background: linear-gradient(to bottom, var(--gold), rgba(200,153,26,0.1)); min-height: 24px; }
.mp-tl-item:last-child .mp-tl-line { display: none; }
.mp-tl-body { padding-top: 6px; }
.mp-tl-body h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.mp-tl-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.mp-evaluate { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mp-ev-item { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.mp-ev-item i { font-size: 18px; color: var(--forest); margin-bottom: 8px; display: block; }
.mp-ev-item h5 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.mp-ev-item p { font-size: 12px; color: var(--muted); line-height: 1.55; }

.modal-footer { padding: 18px 36px; border-top: 1px solid var(--border); background: var(--cream); flex-shrink: 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.modal-footer p { font-size: 13px; color: var(--muted); }
.modal-footer a { background: var(--gold); color: var(--forest); padding: 11px 24px; border-radius: 99px; font-weight: 700; font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: background 0.2s; }
.modal-footer a:hover { background: var(--gold-light); }

@media (max-width: 700px) {
    .modal-content { padding: 22px 20px; }
    .modal-head { padding: 22px 20px; }
    .modal-footer { padding: 14px 20px; }
    .mp-grid { grid-template-columns: 1fr; gap: 16px; }
    .mp-outcomes-grid { grid-template-columns: 1fr 1fr; }
    .mp-evaluate { grid-template-columns: 1fr; }
}

/* ═══ SECTION PENDIDIK ═══ */
#pendidik { background: var(--cream); }
.pendidik-header { text-align: center; margin-bottom: 56px; }
.pendidik-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pendidik-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pendidik-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--gold));
}
.pendidik-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(5,61,47,0.13);
}
.pendidik-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest), var(--forest-light));
    display: grid; place-items: center;
    margin: 0 auto 18px;
    font-size: 32px;
    color: var(--gold-light);
    border: 3px solid var(--gold-pale);
    box-shadow: 0 4px 16px rgba(5,61,47,0.18);
}
.pendidik-avatar.female {
    background: linear-gradient(135deg, #2d6a4f, #52b788);
}
.pendidik-nama {
    font-family: 'Playfair Display', serif;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 6px;
    line-height: 1.3;
}
.pendidik-gelar {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.pendidik-peran {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.pendidik-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}
.pendidik-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 99px;
    background: rgba(5,61,47,0.08);
    color: var(--forest);
}
.pendidik-badge.gold {
    background: var(--gold-pale);
    color: #7a4e00;
}
/* ═══ FORM PENDAFTARAN ═══ */
#form-daftar {
    background: linear-gradient(135deg, var(--forest) 0%, #075240 100%);
    position: relative;
    overflow: hidden;
}
#form-daftar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8991a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.form-wrap {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.form-header { text-align: center; margin-bottom: 40px; }
.form-header .section-label { justify-content: center; color: var(--gold-light); }
.form-header .section-label::before { background: var(--gold-light); }
.form-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 38px); color: #fff; margin-bottom: 10px; }
.form-header p { font-size: 15px; color: rgba(255,255,255,0.65); }
.form-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.form-group label span { color: var(--gold-light); }
.form-input {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.13);
}
.form-input option { background: #053d2f; color: #fff; }
select.form-input { cursor: pointer; }
textarea.form-input { resize: none; min-height: 90px; }
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 22px;
    cursor: pointer;
}
.form-consent input[type="checkbox"] {
    width: 17px; height: 17px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gold);
}
.form-consent p { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--forest);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15.5px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(200,153,26,0.35);
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(200,153,26,0.45);
}
.form-submit:active { transform: translateY(0); }
.form-success {
    display: none;
    text-align: center;
    padding: 32px 0;
}
.form-success .success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(200,153,26,0.18);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 34px;
}
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}
.form-success p { font-size: 14px; color: rgba(255,255,255,0.65); max-width: 380px; margin: 0 auto; }
/* Responsive */
@media (max-width: 900px) {
    .pendidik-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 22px; }
}
@media (max-width: 540px) {
    .pendidik-grid { grid-template-columns: 1fr; }
}

