 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green-1: #00943e;
    --green-2: #00885d;
    --green-3: #007970;
    --green-4: #006974;
    --green-5: #00586c;
    --green-6: #2f4858;
    --gold: #c1e41b;
    --yellow: #fffb00;
    --white: #ffffff;
    --light-bg: #f4f9f4;
    --card-bg: #ffffff;
    --text-dark: #1a2e1a;
    --text-mid: #2f4858;
    --text-muted: #5a7a6a;
    --border: #d0e8d8;
    --gradient-v: linear-gradient(to right bottom, #136d1b, #0c742e, #047b3e, #00814e, #00885d);
    --gradient-h: linear-gradient(to right, #136d1b, #0c742e, #047b3e, #00814e, #00885d);
    --shadow: 0 4px 20px rgba(0,100,60,0.12);
    --shadow-sm: 0 2px 8px rgba(0,100,60,0.08);
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; background: var(--light-bg); color: var(--text-dark); font-size: 14px; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

  /* ═══════════════════════════════════════
     SECTION 1 — TOP BAR
  ═══════════════════════════════════════ */
  #topbar {
    background: var(--gradient-h);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
  }
  #topbar .inner { display: flex; justify-content: space-between; align-items: center; }
  #topbar .date-info { color: var(--white); display: flex; align-items: center; gap: 6px; }
  #topbar .date-info ion-icon { font-size: 14px; }
  #topbar .right-actions { display: flex; align-items: center; gap: 12px; }
  .social-links { display: flex; gap: 8px; }
  .social-links a {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center;
    color: var(--white); text-decoration: none; transition: background .2s;
  }
  .social-links a:hover { background: rgba(0,0,0,0.3); }
  .social-links ion-icon { font-size: 13px; }
  .lang-flags { display: flex; gap: 6px; }
  .lang-btn {
    cursor: pointer; border: 2px solid transparent; border-radius: 4px;
    overflow: hidden; transition: border-color .2s; font-size: 18px; line-height: 1;
    padding: 1px; background: none;
  }
  .lang-btn:hover, .lang-btn.active { border-color: var(--white); }
  .topbar-divider { width: 1px; height: 18px; background: rgba(0,0,0,0.2); }

  /* ═══════════════════════════════════════
     SECTION 2 — HEADER (STICKY)
  ═══════════════════════════════════════ */
  #header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky; top: 0; z-index: 1000;
  }
  #header .inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
  .logo-area { display: flex; align-items: center; gap: 12px; }
  .logo-emblem {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; font-weight: 800; box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .logo-text { line-height: 1.2; }
  .logo-text .main { font-size: 16px; font-weight: 700; color: var(--green-1); }
  .logo-text .sub { font-size: 11px; color: var(--text-muted); font-weight: 400; }
  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    font-size: 13px; font-weight: 500; color: var(--text-mid);
    text-decoration: none; padding: 8px 12px; border-radius: 6px;
    transition: all .2s; position: relative;
  }
  nav a:hover { color: var(--green-1); background: rgba(0,148,62,0.06); }
  nav a.active { color: var(--green-1); }
  nav a.has-dropdown::after {font-size: 10px; margin-left: 4px; }
  .login-btn {
    background: var(--gradient-h); color: #fff; border: none;
    padding: 9px 20px; border-radius: 20px; font-family: 'Poppins', sans-serif;
    font-size: 13px; font-weight: 600; cursor: pointer; margin-left: 12px;
    transition: opacity .2s; display: flex; align-items: center; gap: 6px;
  }
  .login-btn:hover { opacity: .88; }
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

  /* ═══════════════════════════════════════
     SECTION 3 — HERO SLIDER
  ═══════════════════════════════════════ */
  #slider {
    position: relative; overflow: hidden; height: 440px;
    background: var(--green-6);
  }
  .slide {
    position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
    background-size: cover; background-position: center;
  }
  .slide.active { opacity: 1; }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,50,30,.8) 0%, rgba(0,150,80,.3) 60%, transparent 100%);
  }
  .slide-content {
    position: absolute; bottom: 60px; left: 0; right: 0;
  }
  .slide-content .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  .slide-cat {
    display: inline-block; background: var(--gold); color: var(--text-dark);
    font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
  }
  .slide-title { font-size: 28px; font-weight: 700; color: #fff; max-width: 560px; line-height: 1.3; margin-bottom: 10px; }
  .slide-meta { font-size: 12px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 16px; }
  .slide-nav {
    position: absolute; bottom: 20px; right: 20px; display: flex; gap: 6px;
  }
  .slide-dot {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4);
    cursor: pointer; transition: all .3s; border: none;
  }
  .slide-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
  .slide-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 16px; pointer-events: none; }
  .slide-arrow {
    pointer-events: all; background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.3); color: #fff; width: 40px; height: 40px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
  }
  .slide-arrow:hover { background: rgba(255,255,255,.35); }
  /* Fake slide backgrounds */
  .slide:nth-child(1) { background-color: #006940; }
  .slide:nth-child(2) { background-color: #005870; }
  .slide:nth-child(3) { background-color: #2f4858; }
  .slide-bg-pattern {
    position: absolute; inset: 0; opacity: .08;
    background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
  }

  /* ═══════════════════════════════════════
     SECTION 4 — ICON MENU
  ═══════════════════════════════════════ */
  #icon-menu { background: #fff; box-shadow: var(--shadow); }
  #icon-menu .inner { display: flex; justify-content: center; }
  .icon-menu-item {
    flex: 1; max-width: 200px; display: flex; flex-direction: column;
    align-items: center; padding: 22px 16px; cursor: pointer;
    border-right: 1px solid var(--border); text-decoration: none;
    transition: all .25s; position: relative; overflow: hidden;
  }
  .icon-menu-item:last-child { border-right: none; }
  .icon-menu-item::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-h); transform: scaleX(0); transition: transform .3s;
  }
  .icon-menu-item:hover::before { transform: scaleX(1); }
  .icon-menu-item:hover { background: rgba(0,148,62,.04); }
  .icon-menu-item:hover .icon-wrap { background: var(--gradient-h); color: #fff; }
  .icon-wrap {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--light-bg); display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--green-1); margin-bottom: 10px;
    transition: all .25s; border: 1px solid var(--border);
  }
  .icon-menu-item span { font-size: 13px; font-weight: 600; color: var(--text-mid); text-align: center; }

  /* ═══════════════════════════════════════
     SECTION 5 — KABAR PERHIMPUNAN
  ═══════════════════════════════════════ */
  #kabar-perhimpunan { padding: 48px 0; }
  .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
  .section-title { font-size: 20px; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 10px; }
  .section-title::before { content: ''; display: block; width: 4px; height: 22px; background: var(--gradient-v); border-radius: 2px; }
  .view-all {
    font-size: 12px; font-weight: 600; color: var(--green-1);
    text-decoration: none; padding: 6px 16px; border: 1.5px solid var(--green-1);
    border-radius: 20px; transition: all .2s;
  }
  .view-all:hover { background: var(--green-1); color: #fff; }
  .main-grid { display: grid; grid-template-columns: 60% 40%; gap: 28px; }
  .left-col { display: flex; flex-direction: column; gap: 20px; }
  .right-col { display: flex; flex-direction: column; gap: 20px; }

  /* Post Grid */
  .post-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .post-card {
    background: var(--card-bg); border-radius: 12px;
    border: 1px solid var(--border); overflow: hidden;
    transition: all .25s; cursor: pointer; text-decoration: none; color: inherit;
  }
  .post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .post-img {
    width: 100%; height: 140px; object-fit: cover;
    background: var(--gradient-h); display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: rgba(255,255,255,.5);
  }
  .post-body { padding: 12px; }
  .post-cat { font-size: 10px; font-weight: 700; color: var(--green-1); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
  .post-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--text-dark); margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .post-meta { font-size: 11px; color: var(--text-muted); display: flex; gap: 10px; }

  /* Banner */
  .banner-block {
    border-radius: 12px; overflow: hidden; position: relative;
    background: var(--gradient-v); height: 100px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .banner-block .banner-text { color: #fff; font-weight: 700; font-size: 16px; text-align: center; text-shadow: 0 1px 4px rgba(0,0,0,.3); }

  /* Gallery */
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .gallery-item {
    aspect-ratio: 1; border-radius: 8px; overflow: hidden; cursor: pointer;
    background: var(--gradient-h); display: flex; align-items: center;
    justify-content: center; font-size: 22px; color: rgba(255,255,255,.5);
    transition: transform .2s;
  }
  .gallery-item:hover { transform: scale(1.04); }

  /* Prayer Times Widget */
  .widget-card {
    background: var(--card-bg); border-radius: 14px;
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .widget-header {
    background: var(--gradient-h); padding: 14px 16px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .widget-header h3 { font-size: 14px; font-weight: 700; color: var(--white); }
  .widget-header .hijri { font-size: 11px; color: var(--white); font-weight: 500; }
  .prayer-list { padding: 4px 0; }
  .prayer-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 16px; border-bottom: 1px solid var(--border); transition: background .2s;
  }
  .prayer-item:last-child { border-bottom: none; }
  .prayer-item:hover { background: rgba(0,148,62,.04); }
  .prayer-item.active-prayer { background: rgba(0,148,62,.08); }
  .prayer-name { font-size: 13px; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }
  .prayer-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
  .prayer-item.active-prayer .prayer-dot { background: var(--green-1); }
  .prayer-time { font-size: 13px; font-weight: 700; color: var(--green-1); }

  /* Popular News */
  .news-list { padding: 12px 16px; }
  .news-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: opacity .2s; }
  .news-item:last-child { border-bottom: none; }
  .news-item:hover { opacity: .8; }
  .news-rank { font-size: 20px; font-weight: 800; color: var(--border); min-width: 24px; line-height: 1; }
  .news-info .news-title { font-size: 12px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 3px; }
  .news-info .news-meta { font-size: 10px; color: var(--text-muted); }

  /* Fatwa */
  .fatwa-list { padding: 12px 16px; }
  .fatwa-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
  .fatwa-item:last-child { border-bottom: none; }
  .fatwa-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--green-1); }
  .fatwa-title { font-size: 12px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
  .fatwa-date { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

  /* Video embed */
  .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 0 0 12px 12px; }
  .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
  .video-placeholder {
    position: absolute; inset: 0; background: var(--green-6);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); gap: 8px; cursor: pointer;
  }
  .video-placeholder ion-icon { font-size: 48px; color: var(--gold); }
  .video-placeholder p { font-size: 12px; }

  /* ═══════════════════════════════════════
     SECTION 6 — KABAR ARSYINA
  ═══════════════════════════════════════ */
  #kabar-arsyina { padding: 48px 0; background: #fff; }
  .arsyina-header {
    background: var(--gradient-h); padding: 20px;
    border-radius: 12px; margin-bottom: 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .arsyina-header h2 { font-size: 20px; font-weight: 800; color: var(--white); }
  .arsyina-header .tagline { font-size: 12px; color: var(--white); font-weight: 500; }
  .arsyina-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .arsyina-card {
    border-radius: 12px; overflow: hidden; cursor: pointer;
    border: 1px solid var(--border); transition: all .25s; text-decoration: none; color: inherit;
  }
  .arsyina-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .arsyina-img {
    height: 180px; width: 100%; background: var(--gradient-h);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; color: rgba(255,255,255,.4); position: relative; overflow: hidden;
  }
  .arsyina-img .img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
  }
  .arsyina-img .gallery-count {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(0,0,0,.5); color: #fff; font-size: 10px; font-weight: 600;
    padding: 3px 8px; border-radius: 10px; display: flex; align-items: center; gap: 4px;
  }
  .arsyina-body { padding: 12px; background: var(--card-bg); }
  .arsyina-body .post-cat { font-size: 10px; }
  .arsyina-body .post-title { font-size: 13px; }

  /* ═══════════════════════════════════════
     SECTION 7 — FOOTER
  ═══════════════════════════════════════ */
  #footer { background: var(--gradient-v); padding: 40px 0 0; }
  .footer-row1 { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(0,0,0,.1); }
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .footer-logo .emblem { width: 58px; height: 58px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 800; }
  .footer-logo .name .main { font-size: 15px; font-weight: 700; color: var(--white); }
  .footer-logo .name .sub { font-size: 11px; color: var(--white); }
  .footer-desc { font-size: 12px; color: var(--white); line-height: 1.7; max-width: 260px; }
  .footer-social { display: flex; gap: 8px; margin-top: 14px; }
  .footer-social a {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(0,0,0,.15); display: flex; align-items: center;
    justify-content: center; color: var(--white); text-decoration: none;
    font-size: 15px; transition: background .2s;
  }
  .footer-social a:hover { background: rgba(0,0,0,.3); }

  .footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid rgba(0,0,0,.15); }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { font-size: 12px; color: var(--white); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 6px; }
  .footer-col ul li a::before { content: '›'; color: var(--white); font-weight: 700; }
  .footer-col ul li a:hover { color: var(--gold); }

  .footer-row2 { padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,.1); }
  .footer-row2 h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .related-sites { display: flex; flex-wrap: wrap; gap: 8px; }
  .related-site {
    background: rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.15);
    padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600;
    color: var(--white); text-decoration: none; transition: background .2s;
  }
  .related-site:hover { background: rgba(0,0,0,.2); }

  /* ═══════════════════════════════════════
     SECTION 8 — BOTTOM BAR
  ═══════════════════════════════════════ */
  #bottombar {
    background: var(--green-6); padding: 14px 0;
    text-align: center;
  }
  #bottombar .inner { display: flex; justify-content: space-between; align-items: center; }
  #bottombar p { font-size: 12px; color: rgba(255,255,255,.7); }
  #bottombar a { color: var(--gold); text-decoration: none; }

  /* ═══════════════════════════════════════
     WIDGET — WA FLOAT BUTTON
  ═══════════════════════════════════════ */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  }
  .wa-main-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: transform .2s, box-shadow .2s;
    color: #fff; font-size: 28px;
  }
  .wa-main-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  .wa-options {
    position: absolute; bottom: 70px; right: 0;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; pointer-events: none; transform: translateY(10px);
    transition: all .25s;
  }
  .wa-options.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .wa-option {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border-radius: 30px; padding: 8px 16px 8px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.12); cursor: pointer;
    text-decoration: none; color: var(--text-dark);
    transition: transform .2s; white-space: nowrap;
  }
  .wa-option:hover { transform: translateX(-4px); }
  .wa-option .wa-icon { width: 36px; height: 36px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; }
  .wa-option .wa-label { font-size: 12px; }
  .wa-option .wa-label .wa-name { font-weight: 700; font-size: 13px; }

  /* Responsive */
  @media (max-width: 1024px) {
    .main-grid { grid-template-columns: 1fr 340px; }
    .post-grid { grid-template-columns: 1fr 1fr; }
    .arsyina-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .main-grid { grid-template-columns: 1fr; }
    nav { display: none; }
    .hamburger { display: flex; }
    #slider { height: 300px; }
    .slide-title { font-size: 20px; }
    .icon-menu-item span { font-size: 11px; }
    .arsyina-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-row1 { flex-direction: column; }
  }
  @media (max-width: 480px) {
    .post-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .arsyina-grid { grid-template-columns: 1fr; }
  }

  /* ══════════════════════════════════════════
   HERO PROFIL — CINEMATIC
══════════════════════════════════════════ */
#profile-hero {
  position: relative; min-height: 520px; overflow: hidden;
  background: linear-gradient(160deg, #061a0a 0%, #0c3d18 30%, #0a4e2e 60%, #0d5a40 80%, #006974 100%);
  display: flex; align-items: center;
}
.hero-geo {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-geo::before {
  content: ''; position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  top: -300px; right: -200px;
}
.hero-geo::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(193,228,27,.07);
  bottom: -200px; left: -100px;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-arabic-bg {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  font-family: 'Amiri', serif; font-size: 280px; line-height: 1;
  color: rgba(255,255,255,.035); user-select: none; letter-spacing: 8px;
  text-align: right;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,148,62,.18) 0%, transparent 70%);
  top: -100px; left: -100px; pointer-events: none;
}
.hero-content-wrap { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 20px; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-eyebrow .line { width: 40px; height: 2px; background: var(--gold); border-radius: 1px; }
.hero-eyebrow span { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
.hero-org-name {
  font-family: 'Amiri', serif; font-size: 20px; color: rgba(255,255,255,.55);
  margin-bottom: 10px; letter-spacing: 3px; text-transform: uppercase;
}
.hero-main-title {
  font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 24px; max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-main-title em { font-style: italic; color: var(--gold); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.8; max-width: 580px; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 24px; font-size: 12px; font-weight: 700; border: 1px solid; transition: all .2s; cursor: default; }
.hero-badge.gold { background: rgba(193,228,27,.12); border-color: rgba(193,228,27,.4); color: var(--gold); }
.hero-badge.white { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.85); }
.hero-badge ion-icon { font-size: 15px; }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; animation: bounce 2.5s infinite; }
.hero-scroll-hint ion-icon { font-size: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ══════════════════════════════════════════
   PAGE TABS NAV
══════════════════════════════════════════ */
#page-tabs { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 74px; z-index: 900; }
#page-tabs .inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; overflow-x: auto; scrollbar-width: none; }
#page-tabs::-webkit-scrollbar { display: none; }
.tab-link { font-size: 13px; font-weight: 500; color: var(--text-muted); padding: 16px 20px; border-bottom: 3px solid transparent; white-space: nowrap; text-decoration: none; transition: all .2s; display: flex; align-items: center; gap: 7px; }
.tab-link ion-icon { font-size: 15px; }
.tab-link:hover { color: var(--green-1); }
.tab-link.active { color: var(--green-1); border-bottom-color: var(--green-1); font-weight: 700; }

/* ══════════════════════════════════════════
   CONTAINER
══════════════════════════════════════════ */
.page-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ══════════════════════════════════════════
   SECTION SYSTEM
══════════════════════════════════════════ */
.profile-section { padding: 72px 0; }
.profile-section:nth-child(even) { background: #fff; }
.profile-section:nth-child(odd) { background: var(--light-bg); }

.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.section-eyebrow span { font-size: 11px; font-weight: 700; color: var(--green-1); text-transform: uppercase; letter-spacing: 1.5px; }
.section-eyebrow::before { content: ''; display: block; width: 30px; height: 2px; background: var(--gradient-h); border-radius: 1px; }
.section-heading { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; color: var(--text-dark); line-height: 1.25; margin-bottom: 16px; }
.section-heading em { font-style: italic; color: var(--green-2); }
.section-lead { font-size: 16px; color: var(--text-muted); line-height: 1.8; max-width: 700px; margin-bottom: 40px; }

/* ══════════════════════════════════════════
   SECTION 1 — SEJARAH SINGKAT
══════════════════════════════════════════ */
#sejarah .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
#sejarah .prose { font-size: 15px; line-height: 1.9; color: #2a3a2a; }
#sejarah .prose p { margin-bottom: 18px; }
#sejarah .prose p:last-child { margin-bottom: 0; }
#sejarah .prose strong { font-weight: 700; color: var(--text-dark); }
#sejarah .prose a { color: var(--green-2); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 3px; }

/* Blockquote — sejarah */
#sejarah .prose blockquote {
  margin: 28px 0; padding: 0;
  border-left: none; background: none;
  position: relative;
}
#sejarah .prose blockquote .bq-wrap {
  background: linear-gradient(135deg, rgba(0,148,62,.06), rgba(0,121,112,.08));
  border-left: 5px solid var(--green-1);
  border-radius: 0 14px 14px 0;
  padding: 22px 26px 22px 30px;
  position: relative; overflow: hidden;
}
#sejarah .prose blockquote .bq-wrap::before {
  content: '\201C'; position: absolute; top: -12px; left: 14px;
  font-family: 'Playfair Display', serif; font-size: 110px; line-height: 1;
  color: rgba(0,148,62,.1); user-select: none;
}
#sejarah .prose blockquote p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 17px; color: var(--text-dark); font-weight: 600;
  margin-bottom: 10px; position: relative; z-index: 1;
}
#sejarah .prose blockquote cite {
  font-size: 12px; font-style: normal; color: var(--text-muted);
  font-weight: 700; display: flex; align-items: center; gap: 8px;
}
#sejarah .prose blockquote cite::before { content: ''; display: block; width: 22px; height: 2px; background: var(--green-1); border-radius: 1px; }

.sejarah-visual { position: relative; }
.founding-card {
  background: var(--gradient-v); border-radius: 20px; padding: 36px;
  color: #fff; position: relative; overflow: hidden; margin-bottom: 20px;
}
.founding-card::before { content: ''; position: absolute; width: 250px; height: 250px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); top: -80px; right: -60px; }
.founding-card::after { content: ''; position: absolute; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.04); bottom: -60px; left: -40px; }
.founding-year { font-family: 'Playfair Display', serif; font-size: 88px; font-weight: 800; line-height: 1; color: rgba(255,255,255,.15); margin-bottom: -10px; }
.founding-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.founding-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 8px; }
.founding-sub { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }
.founding-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; background: rgba(193,228,27,.2); border: 1px solid rgba(193,228,27,.4); color: var(--gold); font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px; }

.milestone-list { display: flex; flex-direction: column; gap: 0; }
.milestone {
  display: flex; gap: 18px; padding: 16px 0;
  border-bottom: 1px solid var(--border); position: relative;
}
.milestone:last-child { border-bottom: none; }
.milestone-year { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 800; color: var(--green-1); min-width: 52px; padding-top: 2px; }
.milestone-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-1); margin-top: 6px; flex-shrink: 0; }
.milestone-text { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.milestone-text strong { color: var(--text-dark); }

/* ══════════════════════════════════════════
   SECTION 2 — VISI MISI
══════════════════════════════════════════ */
#visi-misi { background: var(--green-6) !important; }
#visi-misi .section-heading { color: #fff; }
#visi-misi .section-lead { color: rgba(255,255,255,.65); }
#visi-misi .section-eyebrow span { color: var(--gold); }
#visi-misi .section-eyebrow::before { background: var(--gold); }

.vm-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* Visi card */
.visi-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 36px; position: relative; overflow: hidden;
}
.visi-card::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(193,228,27,.08) 0%, transparent 70%); top: -100px; right: -80px; pointer-events: none; }
.vm-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(193,228,27,.15); border: 1px solid rgba(193,228,27,.3); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--gold); margin-bottom: 20px; }
.vm-label { font-size: 10px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.vm-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 14px; }
.vm-text { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.8; }

/* Misi with styled ul */
.misi-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 36px; }
.misi-card .vm-icon { background: rgba(0,148,62,.2); border-color: rgba(0,148,62,.4); color: #4de89a; }
.misi-card .vm-label { color: #4de89a; }

.misi-ul {
  list-style: none; margin-top: 16px;
}
.misi-ul li {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6;
  align-items: flex-start;
}
.misi-ul li:last-child { border-bottom: none; }
.misi-num {
  min-width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,148,62,.25); border: 1px solid rgba(0,148,62,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #4de89a; flex-shrink: 0;
}

/* Value pills row */
.nilai-row { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.nilai-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 20px 16px; text-align: center; transition: all .3s; cursor: default; }
.nilai-item:hover { background: rgba(193,228,27,.1); border-color: rgba(193,228,27,.3); transform: translateY(-3px); }
.nilai-icon { font-size: 28px; color: var(--gold); margin-bottom: 8px; display: block; }
.nilai-label { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.nilai-sub { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.4; }

/* ══════════════════════════════════════════
   SECTION 3 — STRUKTUR ORGANISASI
══════════════════════════════════════════ */
#struktur {}
.struktur-top { margin-bottom: 40px; }

/* org prose styling */
.org-prose { font-size: 15px; line-height: 1.9; color: #2a3a2a; max-width: 820px; margin-bottom: 36px; }
.org-prose p { margin-bottom: 16px; }
.org-prose strong { font-weight: 700; color: var(--text-dark); }

/* Styled ol */
.org-prose ol {
  list-style: none; counter-reset: ol-counter;
  margin: 20px 0 20px 0;
}
.org-prose ol li {
  counter-increment: ol-counter; display: flex; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-mid); align-items: flex-start;
}
.org-prose ol li:last-child { border-bottom: none; }
.org-prose ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  display: flex; align-items: center; justify-content: center;
  min-width: 30px; height: 30px; border-radius: 50%;
  background: var(--gradient-h); color: #fff;
  font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* Styled ul */
.org-prose ul {
  list-style: none; margin: 20px 0;
}
.org-prose ul li {
  display: flex; gap: 12px; padding: 8px 0;
  font-size: 14px; color: var(--text-mid); align-items: flex-start; line-height: 1.6;
}
.org-prose ul li::before {
  content: ''; display: block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gradient-h); margin-top: 7px; flex-shrink: 0;
}

/* DPP Chart */
.dpp-chart { display: flex; flex-direction: column; align-items: center; gap: 0; }
.dpp-level { display: flex; flex-direction: column; align-items: center; width: 100%; }
.dpp-box-wrap { display: flex; justify-content: center; gap: 14px; width: 100%; margin-bottom: 0; }
.dpp-box {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 20px; text-align: center;
  position: relative; transition: all .25s; cursor: default;
  box-shadow: var(--shadow-sm); min-width: 140px;
}
.dpp-box:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.dpp-box.top { background: var(--gradient-h); border: none; min-width: 220px; }
.dpp-box.top .db-label { color: rgba(255,255,255,.75); }
.dpp-box.top .db-title { color: #fff; }
.dpp-box.top .db-sub { color: rgba(255,255,255,.6); }
.dpp-box.mid { border-top: 3px solid var(--green-1); }
.dpp-box.bot { border-top: 3px solid var(--green-3); }
.db-label { font-size: 9px; font-weight: 800; color: var(--green-1); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.db-title { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 3px; }
.db-sub { font-size: 11px; color: var(--text-muted); }
.dpp-connector { width: 2px; height: 28px; background: var(--border); }
.dpp-row-connectors { display: flex; justify-content: center; gap: 14px; width: 100%; }
.dpp-row-connectors .c { width: 2px; height: 28px; background: var(--border); flex: 1; max-width: 2px; }
.dpp-hline { width: 60%; height: 1px; background: var(--border); margin: 0; }

/* Stats row */
.stats-band { background: var(--gradient-h); border-radius: 20px; padding: 36px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-num sup { font-size: 22px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; line-height: 1.4; }

/* ══════════════════════════════════════════
   SECTION 4 — PROGRAM UNGGULAN
══════════════════════════════════════════ */
#program { background: #fff !important; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--border);
  transition: all .3s; cursor: default; background: var(--card-bg);
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pc-header { padding: 28px; position: relative; overflow: hidden; min-height: 130px; display: flex; flex-direction: column; justify-content: flex-end; }
.program-card:nth-child(1) .pc-header { background: linear-gradient(135deg, #0c742e, #047b3e); }
.program-card:nth-child(2) .pc-header { background: linear-gradient(135deg, #006974, #007970); }
.program-card:nth-child(3) .pc-header { background: linear-gradient(135deg, #2f4858, #006974); }
.program-card:nth-child(4) .pc-header { background: linear-gradient(135deg, #136d1b, #00885d); }
.program-card:nth-child(5) .pc-header { background: linear-gradient(135deg, #00885d, #007970); }
.program-card:nth-child(6) .pc-header { background: linear-gradient(135deg, #047b3e, #2f4858); }
.pc-header::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.pc-icon { font-size: 32px; color: rgba(255,255,255,.3); margin-bottom: 8px; position: relative; z-index: 1; }
.pc-title { font-size: 16px; font-weight: 800; color: #fff; position: relative; z-index: 1; }
.pc-body { padding: 20px 24px; }
.pc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }

/* Styled ul inside program card */
.pc-ul { list-style: none; }
.pc-ul li { font-size: 12px; color: var(--text-mid); padding: 6px 0; border-bottom: 1px dashed var(--border); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.pc-ul li:last-child { border-bottom: none; }
.pc-ul li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--green-1); margin-top: 6px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SECTION 5 — TOKOH PENDIRI
══════════════════════════════════════════ */
#tokoh { background: var(--light-bg) !important; }
.tokoh-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 56px; align-items: start; }
.tokoh-prose { font-size: 15px; line-height: 1.9; color: #2a3a2a; }
.tokoh-prose p { margin-bottom: 16px; }

/* special blockquote arabic style */
.tokoh-quote {
  background: linear-gradient(135deg, rgba(0,148,62,.05), rgba(0,105,116,.07));
  border: 1px solid var(--border); border-radius: 16px;
  padding: 30px 28px; position: relative;
}
.tokoh-quote .arabic-verse {
  font-family: 'Amiri', serif; font-size: 22px; color: var(--green-2);
  text-align: center; line-height: 2; margin-bottom: 14px; direction: rtl;
}
.tokoh-quote .verse-trans { font-family: 'Playfair Display', serif; font-style: italic; font-size: 14px; color: var(--text-mid); text-align: center; line-height: 1.7; margin-bottom: 10px; }
.tokoh-quote .verse-source { text-align: center; font-size: 11px; color: var(--text-muted); font-weight: 700; }

.founders-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.founder-card { background: var(--card-bg); border-radius: 16px; border: 1px solid var(--border); padding: 24px; text-align: center; transition: all .25s; }
.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.founder-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--gradient-v); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Amiri', serif; font-size: 22px; border: 3px solid var(--border); }
.founder-name { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; line-height: 1.3; }
.founder-role { font-size: 11px; color: var(--green-2); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; }
.founder-bio { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   SECTION 6 — LANDASAN HUKUM
══════════════════════════════════════════ */
#landasan { background: #fff !important; }
.landasan-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.lh-card { background: var(--light-bg); border-radius: 16px; border: 1px solid var(--border); padding: 28px; }
.lh-top { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.lh-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: var(--gradient-h); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; flex-shrink: 0; }
.lh-head { }
.lh-label { font-size: 10px; font-weight: 800; color: var(--green-1); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 3px; }
.lh-title { font-size: 14px; font-weight: 700; color: var(--text-dark); }

/* table in landasan */
.lh-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.lh-table tr { border-bottom: 1px solid var(--border); }
.lh-table tr:last-child { border-bottom: none; }
.lh-table td { padding: 8px 4px; vertical-align: top; line-height: 1.5; }
.lh-table td:first-child { color: var(--text-muted); font-weight: 600; white-space: nowrap; width: 40%; padding-right: 10px; }
.lh-table td:last-child { color: var(--text-mid); }

/* dl definition list style */
.lh-dl { }
.lh-dl dt { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-top: 12px; margin-bottom: 3px; display: flex; align-items: center; gap: 7px; }
.lh-dl dt::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--green-1); flex-shrink: 0; }
.lh-dl dd { font-size: 12px; color: var(--text-muted); line-height: 1.6; padding-left: 12px; }
.lh-dl dt:first-child { margin-top: 0; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
#cta-section {
  background: var(--green-6) !important;
  padding: 80px 0;
}
.cta-inner { text-align: center; }
.cta-arabic { font-family: 'Amiri', serif; font-size: 32px; color: rgba(255,255,255,.3); margin-bottom: 12px; direction: rtl; }
.cta-heading { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 16px; }
.cta-heading em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto 32px; line-height: 1.75; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-btn-primary { display: flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 30px; background: var(--gradient-h); color: #fff; font-weight: 700; font-size: 14px; text-decoration: none; border: 2px solid rgba(255,255,255,.2); transition: all .25s; }
.cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,148,62,.4); }
.cta-btn-outline { display: flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 30px; background: transparent; color: rgba(255,255,255,.85); font-weight: 700; font-size: 14px; text-decoration: none; border: 2px solid rgba(255,255,255,.25); transition: all .25s; }
.cta-btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════
     SECTION 8 — BOTTOM BAR
  ═══════════════════════════════════════ */
  #bottombar {
    background: var(--green-6); padding: 14px 0;
    text-align: center;
  }
  #bottombar .inner { display: flex; justify-content: space-between; align-items: center; }
  #bottombar p { font-size: 12px; color: rgba(255,255,255,.7); }
  #bottombar a { color: var(--gold); text-decoration: none; }
 
  /* ═══════════════════════════════════════
     WIDGET — WA FLOAT BUTTON
  ═══════════════════════════════════════ */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  }
  .wa-main-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: transform .2s, box-shadow .2s;
    color: #fff; font-size: 28px;
  }
  .wa-main-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  .wa-options {
    position: absolute; bottom: 70px; right: 0;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; pointer-events: none; transform: translateY(10px);
    transition: all .25s;
  }
  .wa-options.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .wa-option {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border-radius: 30px; padding: 8px 16px 8px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.12); cursor: pointer;
    text-decoration: none; color: var(--text-dark);
    transition: transform .2s; white-space: nowrap;
  }
  .wa-option:hover { transform: translateX(-4px); }
  .wa-option .wa-icon { width: 36px; height: 36px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; }
  .wa-option .wa-label { font-size: 12px; }
  .wa-option .wa-label .wa-name { font-weight: 700; font-size: 13px; }

/* Responsive */
@media (max-width: 1024px) {
  .vm-layout { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .landasan-cols { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-band .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 20px; }
  .stats-band .stat-item:nth-child(2n) { border-bottom: none; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hero-main-title { font-size: 36px; }
  #sejarah .content-grid { grid-template-columns: 1fr; }
  .tokoh-intro { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .landasan-cols { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .nilai-row { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}