/* ----- RESET & VARIABLES ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Link tanpa text-decoration */
a {
  text-decoration: none;
}

:root {
  --bg-page: #f3f6f3;
  --text-primary: #1a1a2e;
  --text-secondary: #2f3d3a;
  --brand-sage: #4a7c59;
  --brand-sage-dark: #2f5a3d;
  --brand-sage-light: #6b9a7a;
  --brand-sage-pale: #e2eee6;
  --border-light: #d0ded4;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  width: 100%;
  overflow-x: hidden;
}
body {
  width: 100%;
  min-height: 100%;
  background: var(--bg-page);
  font-family: var(--font-display);
  color: var(--text-primary);
}

/* ----- PAGE CONTENT ----- */
.page-content {
  width: 100%;
}
.section {
  display: flex;
  flex-direction: column;
  padding: 60px 50px;
  position: relative;
}

/* ----- SCROLL-REVEAL (GSAP-like) ----- */
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .section-reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- SLIDE CONTENT ----- */
.slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

/* ----- SLIDE 1: HERO ----- */
.slide-hero {
  background: linear-gradient(180deg, #eaf1ea 0%, var(--bg-page) 100%);
  padding-top: 120px;
  min-height: 100vh;
}
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.slide-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}
.slide-hero .slide-content {
  justify-content: flex-start;
}
.slide-hero .hero-screenshot {
  max-width: 1040px;
  margin: 0 auto;
}
.slide-hero .hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.slide-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-sage-pale);
  color: var(--brand-sage-dark);
  padding: 6px 18px 6px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  animation: badge-pulse 3s infinite ease-in-out;
}
.slide-hero .hero-badge:hover {
  animation-play-state: paused;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.82; }
}
.slide-hero .hero-badge i {
  font-size: 0.7rem;
  color: #3c9e6d;
}
.slide-hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.slide-hero h1 .highlight {
  color: var(--brand-sage);
}
.slide-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
}
.slide-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ----- TRUST / PROOF STRIP ----- */
.section.trust-strip {
  padding: 28px 0;
  background: transparent;
}
.trust-strip .trust-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  width: min(calc(100% - 32px), 1200px);
  margin: 0 auto;
  padding: 4px 30px;
  background: #ffffff;
  border: 1px solid rgba(30, 45, 26, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(30, 45, 26, 0.07);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--text-secondary);
  text-align: left;
}
.trust-item + .trust-item {
  border-left: 1px solid var(--border-light);
}
.trust-item i {
  font-size: 1.15rem;
  color: var(--brand-sage);
  flex-shrink: 0;
}
.trust-item strong {
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 992px) {
  .section.trust-strip { padding: 22px 0; }
  .trust-strip .trust-content {
    grid-template-columns: 1fr;
    padding: 4px 26px;
  }
  .trust-item {
    justify-content: flex-start;
    text-align: left;
    padding: 12px 2px;
  }
  .trust-item + .trust-item {
    border-left: none;
  }
}

/* ----- SITE NAVBAR (hero) ----- */
.site-nav {
  position: fixed;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(calc(100% - 32px), 1200px);
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(30, 45, 26, 0.08);
  box-shadow: 0 10px 30px rgba(30, 45, 26, 0.07);
  will-change: transform, opacity;
}
.nav-util {
  background: var(--brand-sage);
  border-radius: 15px 15px 0 0;
  border-bottom: 1px solid rgba(30, 45, 26, 0.08);
}
.nav-util-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-lang > i { font-size: 0.85rem; color: #fff; }
.nav-lang-btn {
  background: none;
  border: none;
  padding: 2px 4px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s ease;
}
.nav-lang-btn:hover { color: #fff; }
.nav-lang-btn.active { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.nav-lang-sep { color: rgba(255, 255, 255, 0.4); }
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-login:hover { color: #fff; background: rgba(255, 255, 255, 0.15); }
.nav-inner {
  height: 66px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 100%;
  object-fit: contain;
}
/* Logo navbar utama (baris bawah) sedikit lebih besar agar tajam */
.nav-inner .nav-logo-img {
  height: 46px;
}
@media (max-width: 768px) {
  .nav-logo-img { height: 27px; }
  .nav-inner .nav-logo-img { height: 34px; }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--brand-sage); background: var(--brand-sage-pale); }
.nav-toggle i { font-size: 0.7rem; opacity: 0.55; transition: transform 0.25s ease; }
.nav-item.open .nav-toggle i { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(30, 45, 26, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 60;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.18s ease;
}
.nav-dropdown a:hover { background: var(--brand-sage-pale); }
.nav-dropdown a > i {
  margin-top: 3px;
  width: 20px;
  text-align: center;
  color: var(--brand-sage);
  font-size: 0.95rem;
}
.nav-dropdown a strong { display: block; font-size: 0.9rem; font-weight: 700; }
.nav-dropdown a em { display: block; font-style: normal; font-size: 0.78rem; color: var(--text-secondary); margin-top: 1px; }
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 920px) {
  .nav-hamburger { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 12px 18px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 18px 30px rgba(30, 45, 26, 0.1);
  }
  .nav-menu.open { display: flex; }
  .nav-item .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 4px 0 4px 12px;
    display: none;
    transition: none;
  }
  .nav-item.open .nav-dropdown { display: block; }
}

/* ----- HERO SCREENSHOT - DASHBOARD MOCKUP (FULL) ----- */
/* Mengikuti layout & palet aplikasi React (referensi):
   primary #4a5c3e · mint #4a7c5c · text-dark #1e2d1a · border #edf4e7 */
.hero-screenshot {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ----- OVERLAY CTA mockup dashboard (sage transparan, ringan tanpa GPU) ----- */
.mockup-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: rgba(74, 124, 89, 0.55); /* sage transparan — mockup tetap terlihat */
  opacity: 1;
  visibility: visible;
  pointer-events: none; /* area di luar kartu tetap tembus ke mockup */
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
/* Setelah tombol demo diklik: overlay lenyap → mockup tampil penuh */
.mockup-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Kartu konten dengan background sendiri */
.mockup-overlay-inner {
  max-width: 480px;
  width: 100%;
  pointer-events: auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px 26px;
  box-shadow: 0 18px 40px rgba(30, 45, 26, 0.22);
  color: var(--text-primary);
}
.mo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--brand-sage);
  color: #fff;
  font-size: 1rem;
  padding-left: 3px;
  box-shadow: 0 6px 14px rgba(74, 124, 89, 0.28);
}
.mo-title {
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--brand-sage-dark);
  margin: 0 0 10px;
}
.mo-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto 20px;
}
.mo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--brand-sage);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.mo-btn i {
  color: rgba(255, 255, 255, 0.9);
}
.mo-btn:hover {
  background: var(--brand-sage-dark);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .mockup-overlay { padding: 16px; }
  .mockup-overlay-inner { padding: 22px 18px; border-radius: 14px; }
  .mo-badge { width: 44px; height: 44px; font-size: 0.85rem; margin-bottom: 12px; }
  .mo-sub { font-size: 0.9rem; margin-bottom: 16px; }
  .mo-btn { padding: 11px 18px; font-size: 0.88rem; }
}
.dashboard-mockup {
  display: flex;
  height: 760px;
  background: #fafbf9;
  font-family: var(--font-display);
  text-align: left;
  overflow: hidden;
}

/* ----- SIDEBAR ----- */
.mock-sidebar {
  width: 200px;
  background: #ffffff;
  border-right: 1px solid #e8efe4;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mock-sidebar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 12px;
  flex-shrink: 0;
}
.mock-sidebar .logo .logo-box {
  width: 20px;
  height: 20px;
  background: #4a5c3e;
  transform: rotate(45deg);
  border-radius: 5px;
  flex-shrink: 0;
}
.mock-sidebar .logo .logo-text {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: #1e2d1a;
}
.mock-sidebar .menu-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 14px;
}
.mock-sidebar .menu-scroll::-webkit-scrollbar { width: 3px; }
.mock-sidebar .menu-scroll::-webkit-scrollbar-thumb { background: transparent; border-radius: 10px; }
.mock-sidebar .menu-scroll:hover::-webkit-scrollbar-thumb { background: var(--border-light); }
.mock-sidebar .menu-section { margin-bottom: 16px; }
.mock-sidebar .menu-section .section-title {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #728264;
  padding: 0 8px;
  margin-bottom: 6px;
}
.mock-sidebar .menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-sidebar .menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #4a5d3f;
  border-radius: 8px;
  cursor: default;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.mock-sidebar .menu-item i { width: 16px; font-size: 13px; text-align: center; opacity: 0.7; flex-shrink: 0; }
.mock-sidebar .menu-item:hover { background: #a2ba91; color: #fff; }
.mock-sidebar .menu-item.active { background: #a2ba91; color: #fff; font-weight: 600; }
.mock-sidebar .menu-item .chevron { margin-left: auto; font-size: 9px; opacity: 0.5; color: #5d6b53; transition: color 0.2s ease; }
.mock-sidebar .menu-item:hover .chevron { color: #fff; opacity: 1; }
.mock-sidebar .menu-item.sub { padding: 6px 10px 6px 26px; font-size: 11px; }
.mock-sidebar .menu-item.sub::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #b7caa3;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-sidebar .menu-item.sub.active::before { background: #fff; }

/* ----- MAIN ----- */
.mock-main {
  flex: 1;
  background: #fafbf9;
  overflow-y: auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.mock-main::-webkit-scrollbar { width: 4px; }
.mock-main::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 10px; }

/* ----- HEADER ----- */
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 24px;
  border-bottom: 1px solid #e8efe4;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.mock-header .left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.mock-header .left .hamburger {
  font-size: 17px;
  color: #4a5d3f;
  cursor: pointer;
  padding: 5px;
  border-radius: 6px;
  background: transparent;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.mock-header .left .hamburger:hover { background: #f4f8f0; color: #1e2d1a; }
.mock-header .left .search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #dee9d5;
  border-radius: 8px;
  padding: 6px 12px;
  flex: 1;
  max-width: 320px;
  transition: border-color 0.3s ease;
}
.mock-header .left .search-wrap:hover { border-color: #4a5c3e; }
.mock-header .left .search-wrap i { font-size: 13px; color: #728264; }
.mock-header .left .search-wrap input {
  border: none;
  outline: none;
  font-size: 13px;
  padding: 0;
  font-family: var(--font-display);
  background: transparent;
  width: 100%;
  color: #313f27;
}
.mock-header .left .search-wrap input::placeholder { color: #c3d6b3; }
.mock-header .left .account-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #dee9d5;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  color: #1e2d1a;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.mock-header .left .account-btn:hover { border-color: #4a5c3e; }
.mock-header .left .account-btn .acct-avatar {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #e8f5ee;
  color: #4a7c5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.mock-header .left .account-btn .acct-name {
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-header .left .account-btn .dot { width: 6px; height: 6px; border-radius: 50%; background: #4a7c5c; flex-shrink: 0; }
.mock-header .left .account-btn > i { font-size: 8px; opacity: 0.5; color: #5d6b53; }

/* Akun switcher dropdown */
.acct-wrap { position: relative; flex-shrink: 0; }
.acct-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #edf4e7;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 60;
  overflow: hidden;
  display: none;
}
.acct-wrap.open .acct-dropdown { display: block; }
.acct-dd-head { padding: 12px 14px; border-bottom: 1px solid #f4f8f0; }
.acct-dd-head strong { display: block; font-size: 12px; color: #1e2d1a; }
.acct-dd-head div { font-size: 10px; color: #728264; margin-top: 1px; }
.acct-dd-list { max-height: 250px; overflow-y: auto; }
.acct-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-left: 3px solid transparent;
  cursor: default;
  transition: background 0.2s ease;
}
.acct-dd-item:hover { background: #f9fcf7; }
.acct-dd-item.active { background: #edf4e7; border-left-color: #4a5c3e; }
.acct-dd-item .dd-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e8f5ee;
  color: #4a7c5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.acct-dd-item .dd-info { flex: 1; min-width: 0; }
.acct-dd-item .dd-name { font-size: 12px; font-weight: 600; color: #1e2d1a; }
.acct-dd-item .dd-meta { font-size: 10px; color: #728264; margin-top: 1px; }
.acct-dd-item .dd-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.acct-dd-item .dd-dot.green { background: #4a7c5c; }
.acct-dd-item .dd-dot.yellow { background: #b88a3a; }
.acct-dd-foot { padding: 10px 14px; border-top: 1px solid #f4f8f0; text-align: center; }
.acct-dd-foot a { font-size: 12px; font-weight: 600; color: #4a5c3e; }

.mock-header .right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.mock-header .right .icon-btn {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #e8efe4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7a61;
  font-size: 14px;
  cursor: default;
  position: relative;
  transition: background 0.2s ease;
}
.mock-header .right .icon-btn:hover { background: #f4f8f0; }
.mock-header .right .icon-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #c44;
  color: #fff;
  font-size: 10px;
  border-radius: 9px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0 4px;
  border: 2px solid #fff;
}

/* ----- DASHBOARD HEADER ----- */
.mock-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 24px 9px;
  flex-shrink: 0;
}
.mock-dashboard-header h3 { font-size: 15px; font-weight: 700; color: #1e2d1a; }
.mock-dashboard-header h3 small { font-weight: 400; font-size: 12px; color: #5d6b53; margin-left: 6px; }
.mock-dashboard-header .filter-group { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.mock-dashboard-header .filter-btn {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid #dee9d5;
  background: #fff;
  font-size: 11px;
  font-weight: 500;
  color: #4d5a45;
  cursor: default;
  transition: all 0.2s ease;
}
.mock-dashboard-header .filter-btn.active { background: #4a5c3e; color: #fff; border-color: #4a5c3e; }
.mock-dashboard-header .refresh-btn {
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid #dee9d5;
  background: #fff;
  font-size: 11px;
  color: #4d5a45;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ----- BODY ----- */
.mock-body {
  padding: 6px 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ----- STAT CARDS ----- */
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mock-stats .stat-box {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #edf4e7;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s ease;
}
.mock-stats .stat-box:hover { border-color: #dee9d5; }
.mock-stats .stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #edf4e7;
  color: #4a5c3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.mock-stats .stat-body { flex: 1; min-width: 0; }
.mock-stats .stat-label {
  font-size: 10px;
  font-weight: 600;
  color: #5d6b53;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-stats .stat-value {
  font-size: 19px;
  font-weight: 700;
  color: #1e2d1a;
  line-height: 1;
  margin-bottom: 3px;
}
.mock-stats .stat-sub {
  font-size: 11px;
  color: #728264;
}
.mock-stats .stat-sub.trend { color: #4a5c3e; font-weight: 500; }
.mock-stats .stat-sub i { margin-right: 3px; }
.mock-stats .stat-sub .badge-green {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4a7c5c;
  border-radius: 50%;
  margin-right: 3px;
}

/* ----- LINE CHART ----- */
.mock-chart {
  background: #fff;
  border-radius: 10px;
  padding: 13px 16px;
  border: 1px solid #edf4e7;
}
.mock-chart .chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mock-chart .chart-title { font-size: 13px; font-weight: 600; color: #5d6b53; }
.mock-chart .chart-title span { font-weight: 400; color: #728264; }
.chart-plot {
  position: relative;
  height: 72px;
  margin-left: 22px;
}
.chart-plot .chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.chart-plot .chart-svg .grid line {
  stroke: #e9eee4;
  stroke-width: 1;
  stroke-dasharray: 3 3;
}
.chart-plot .chart-svg .line {
  fill: none;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.chart-plot .chart-svg .line.sales { stroke: #4a5c3e; }
.chart-plot .chart-svg .line.support { stroke: #6b9a7a; }
.chart-plot .chart-svg .line.marketing { stroke: #a2ba91; }
.chart-yaxis {
  position: absolute;
  left: -22px;
  top: 0;
  bottom: 0;
  width: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 9px;
  color: #728264;
  text-align: right;
}
.chart-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #728264;
  margin: 4px 0 0 22px;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  font-size: 10px;
  color: #4d5a45;
}
.chart-legend span { display: inline-flex; align-items: center; gap: 5px; }
.chart-legend .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.chart-legend .dot.sales { background: #4a5c3e; }
.chart-legend .dot.support { background: #6b9a7a; }
.chart-legend .dot.marketing { background: #a2ba91; }

/* ----- CARDS ROW (3 kolom) ----- */
.mock-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.mock-card {
  background: #fff;
  border-radius: 10px;
  padding: 13px;
  border: 1px solid #edf4e7;
  min-width: 0;
}
.mock-card .card-title { font-size: 12px; font-weight: 600; color: #5d6b53; margin-bottom: 8px; }
.mock-card .card-title span { font-weight: 400; color: #728264; }
.mock-card .card-title a { color: #4a5c3e; font-weight: 600; }

/* Distribusi Kanal (donut) */
.donut-wrap { display: flex; align-items: center; gap: 16px; }
.donut {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: conic-gradient(#4a5c3e 0 51%, #6b9a7a 51% 81%, #a2ba91 81% 100%);
}
.donut .donut-center {
  position: absolute;
  inset: 11px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #1e2d1a;
  text-align: center;
  line-height: 1.2;
}
.donut-legend { list-style: none; flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.donut-legend li { display: flex; align-items: center; gap: 6px; font-size: 10px; color: #4d5a45; }
.donut-legend li .d-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.donut-legend li .d-dot.sales { background: #4a5c3e; }
.donut-legend li .d-dot.support { background: #6b9a7a; }
.donut-legend li .d-dot.marketing { background: #a2ba91; }
.donut-legend li span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.donut-legend li b { font-weight: 600; color: #1e2d1a; }

/* Tipe Pesan */
.type-list { display: flex; flex-direction: column; gap: 7px; }
.type-row .type-head { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: #4d5a45; margin-bottom: 3px; }
.type-row .type-nums { color: #728264; }
.type-row .type-bar { height: 6px; background: #eef3ea; border-radius: 4px; overflow: hidden; }
.type-row .type-bar i { display: block; height: 100%; background: #6b9a7a; border-radius: 4px; }

/* Statistik Template */
.tpl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tpl-grid .tpl-item { background: #fafbf9; border-radius: 8px; padding: 6px 8px; display: flex; flex-direction: column; gap: 2px; }
.tpl-grid .tpl-item .num { font-size: 16px; font-weight: 700; color: #1e2d1a; line-height: 1; }
.tpl-grid .tpl-item .lbl { font-size: 9px; color: #728264; }
.tpl-grid .tpl-item .num.green { color: #4a7c5c; }
.tpl-grid .tpl-item .num.warn { color: #b88a3a; }
.tpl-grid .tpl-item .num.danger { color: #c44; }

/* Akun WhatsApp */
.acct-item { padding: 5px 0; }
.acct-item .acct-line { font-size: 11px; font-weight: 500; color: #1e2d1a; display: flex; align-items: center; }
.acct-item .acct-meta { font-size: 9px; color: #728264; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-card .status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-right: 5px; }
.mock-card .status-dot.green { background: #4a7c5c; }
.mock-card .status-dot.yellow { background: #b88a3a; }

/* Aktivitas Hari Ini */
.mock-activity { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-activity .act-item { text-align: center; background: #fafbf9; border-radius: 8px; padding: 6px 2px; }
.mock-activity .act-item .num { font-weight: 700; font-size: 12px; color: #1e2d1a; }
.mock-activity .act-item .lbl { font-size: 8px; color: #728264; }

/* Penggunaan Kuota */
.quota-item { padding: 5px 0; }
.quota-item .quota-head { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: #4d5a45; }
.quota-item .quota-head .quota-val { color: #1e2d1a; font-weight: 600; }
.quota-item .quota-bar { height: 5px; background: #eef3ea; border-radius: 4px; margin: 3px 0; overflow: hidden; }
.quota-item .quota-bar i { display: block; height: 100%; background: #4a7c5c; border-radius: 4px; }
.quota-item .quota-note { font-size: 9px; color: #728264; }
.quota-item .quota-note .warn { color: #b88a3a; }
.quota-item .quota-note .safe { color: #4a7c5c; }

/* ----- ANIMASI KONTEN SLIDE (saat card aktif) ----- */
@keyframes pptFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-card.active .section-header,
.slide-card.active .cap-card,
.slide-card.active .feat-item,
.slide-card.active .step,
.slide-card.active .start-cta-wrap {
  animation: pptFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.slide-card.active .cap-card:nth-child(2),
.slide-card.active .feat-item:nth-child(2),
.slide-card.active .step:nth-child(2) { animation-delay: 0.1s; }
.slide-card.active .cap-card:nth-child(3),
.slide-card.active .feat-item:nth-child(3),
.slide-card.active .step:nth-child(3) { animation-delay: 0.2s; }
.slide-card.active .feat-item:nth-child(4) { animation-delay: 0.3s; }

/* ----- SLIDE 2: CAPABILITIES ----- */
.slide-capabilities .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  column-gap: 0;
}
.slide-capabilities .cap-card {
  display: flex;
  flex-direction: column;
  padding: 0 34px 0 0;
  text-align: left;
}
.slide-capabilities .cap-card + .cap-card {
  border-left: 1px solid var(--border-light);
  padding-left: 34px;
}
.slide-capabilities .cap-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.slide-capabilities .cap-head .icon-wrap {
  display: inline-flex;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-sage-pale);
  color: var(--brand-sage-dark);
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 0 0 8px rgba(74, 124, 89, 0.06);
}
.slide-capabilities .cap-head h3 {
  font-size: 1.2rem;
  letter-spacing: -0.3px;
  margin: 0;
}
.slide-capabilities .cap-card .feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin: 0;
}
.slide-capabilities .cap-card .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.slide-capabilities .cap-card .feature-list li > i {
  color: var(--brand-sage);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.slide-capabilities .cap-card .feature-list li strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.slide-capabilities .cap-card .feature-list li span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8rem;
}
.slide-capabilities .cap-card .cap-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--brand-sage);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.slide-capabilities .cap-card .cap-link:hover {
  background: var(--brand-sage-dark);
}
.slide-capabilities .section-header {
  margin-bottom: 24px;
}
.slide-capabilities .section-header .section-sub {
  margin-bottom: 0;
}

/* ----- SLIDE 4: TESTIMONIAL ----- */
.slide-testimonial .testi-slider-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
}
.slide-testimonial .testi-slider {
  display: flex;
  transition: transform 0.5s ease;
}
.slide-testimonial .testi-slide {
  min-width: 100%;
  padding: 0 4px;
}
.slide-testimonial .testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
  position: relative;
}
.slide-testimonial .testi-card:hover {
  border-color: var(--brand-sage-light);
}
.slide-testimonial .testi-card::before {
  content: '\201C';
  position: absolute;
  font-size: 5rem;
  color: var(--brand-sage-pale);
  top: 8px;
  left: 28px;
  line-height: 1;
  font-family: serif;
}
.slide-testimonial .testi-quote {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  padding-left: 8px;
}
.slide-testimonial .testi-quote mark {
  background: var(--brand-sage-pale);
  color: var(--brand-sage-dark);
  padding: 0 6px;
  font-weight: 600;
}
.slide-testimonial .testi-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.slide-testimonial .testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-sage-dark);
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.slide-testimonial .testi-card:hover .testi-avatar {
  background: var(--brand-sage);
  color: #fff;
}
.slide-testimonial .testi-name {
  font-weight: 700;
}
.slide-testimonial .testi-role {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.slide-testimonial .testi-logo {
  margin-left: auto;
  font-weight: 700;
  color: var(--brand-sage);
  letter-spacing: 0.5px;
}
.slide-testimonial .testi-logo i {
  margin-right: 6px;
}
.slide-testimonial .testi-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.slide-testimonial .testi-meta span i {
  margin-right: 6px;
  color: var(--brand-sage);
}
.slide-testimonial .testi-meta .fa-star {
  color: #f5b342;
}
.slide-testimonial .slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.slide-testimonial .slider-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.slide-testimonial .slider-controls button:hover {
  background: var(--brand-sage-pale);
  border-color: var(--brand-sage);
  color: var(--brand-sage-dark);
}
.slide-testimonial .slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slide-testimonial .slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slide-testimonial .slider-dots span.active {
  background: var(--brand-sage);
  width: 28px;
  border-radius: 6px;
}
.slide-testimonial .slider-dots span:hover {
  background: var(--brand-sage-light);
}

/* ----- SLIDE 6: PRICING ----- */
.slide-pricing .pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.slide-pricing .pricing-toggle span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.slide-pricing .pricing-toggle .toggle-btn {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 4px;
  display: flex;
  gap: 4px;
}
.slide-pricing .pricing-toggle .toggle-btn button {
  padding: 6px 20px;
  border: none;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text-secondary);
}
.slide-pricing .pricing-toggle .toggle-btn button.active {
  background: var(--brand-sage);
  color: #fff;
}
.slide-pricing .pricing-toggle .toggle-btn button:hover:not(.active) {
  background: var(--brand-sage-pale);
}
.slide-pricing .pricing-toggle .save-badge {
  background: #fef3c7;
  color: #92400e;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 20px;
}
.slide-pricing .pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: #fff;
}
.slide-pricing .pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.slide-pricing .pricing-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-page);
}
.slide-pricing .pricing-table th:not(:first-child) { text-align: center; }
.slide-pricing .pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f4f0;
  color: var(--text-secondary);
}
.slide-pricing .pricing-table td:not(:first-child) { text-align: center; }
.slide-pricing .pricing-table td:first-child { font-weight: 500; color: var(--text-primary); }
.slide-pricing .pricing-table tr:last-child td { border-bottom: none; }
.slide-pricing .pricing-table tr:hover td { background: #fafff8; }
.slide-pricing .pricing-table .price-cell {
  font-weight: 700;
  color: var(--brand-sage-dark);
  font-size: 1.1rem;
}
.slide-pricing .pricing-table .price-cell small {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-secondary);
}
.slide-pricing .pricing-table .check { color: var(--brand-sage); font-size: 1.1rem; }
.slide-pricing .pricing-table .check.na { color: #d0d9d2; }
.slide-pricing .pricing-table .btn-cell .btn {
  padding: 6px 20px;
  font-size: 0.8rem;
  border-radius: 30px;
  width: 100%;
  max-width: 140px;
}
.slide-pricing .pricing-table .popular-badge {
  display: inline-block;
  background: var(--brand-sage);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 12px;
  border-radius: 12px;
  margin-left: 6px;
}
.slide-pricing .pricing-table .plan-label {
  font-weight: 400;
  color: var(--text-secondary);
}

/* ----- SLIDE 7: FAQ ----- */
.slide-faq .faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slide-faq .faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.slide-faq .faq-item:hover {
  border-color: var(--brand-sage-light);
}
.slide-faq .faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: color 0.3s ease;
}
.slide-faq .faq-question:hover {
  color: var(--brand-sage-dark);
}
.slide-faq .faq-question i {
  transition: transform 0.3s ease;
  color: var(--brand-sage);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-left: 16px;
}
.slide-faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.slide-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.slide-faq .faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}
.slide-faq .faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .section { padding: 40px 30px; }
  .slide-hero .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .slide-hero h1 { font-size: 2.2rem; }
  .slide-capabilities .card-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 26px; }
  .slide-capabilities .cap-card { padding: 0; }
  .slide-capabilities .cap-card + .cap-card { border-left: none; padding-left: 0; }
  .slide-pricing .pricing-table-wrap { font-size: 0.8rem; }
  .slide-pricing .pricing-table th, .slide-pricing .pricing-table td { padding: 12px 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .start-steps { flex-direction: column; gap: 12px; }
  .dashboard-mockup { height: 800px; }
}

@media (max-width: 768px) {
  .section { padding: 32px 16px; }
  .slide-hero h1 { font-size: 1.8rem; }
  .slide-hero .hero-grid { gap: 24px; }
  .slide-capabilities .card-grid { grid-template-columns: 1fr; gap: 26px; }
  .slide-capabilities .cap-card { padding: 0; }
  .slide-capabilities .cap-card + .cap-card { border-left: none; padding-left: 0; }
  .slide-pricing .pricing-table-wrap { font-size: 0.7rem; }
  .slide-pricing .pricing-table th, .slide-pricing .pricing-table td { padding: 8px 10px; }
  .slide-testimonial .testi-card { padding: 24px 20px; }
  .slide-testimonial .testi-quote { font-size: 1.05rem; }
  .dashboard-mockup { height: auto; flex-direction: column; }
  .mock-main { overflow: visible; }
  .mock-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; height: auto; max-height: 42px; overflow: hidden; align-items: center; border-bottom: 1px solid #e8efe4; border-right: none; }
  .mock-sidebar .logo { padding: 6px 10px; flex-shrink: 0; }
  .mock-sidebar .logo .logo-box { width: 14px; height: 14px; }
  .mock-sidebar .logo .logo-text { font-size: 13px; }
  .mock-sidebar .menu-scroll { display: flex; flex-wrap: wrap; gap: 2px; padding: 0 8px; overflow: visible; flex: none; }
  .mock-sidebar .menu-section { display: contents; margin: 0; }
  .mock-sidebar .menu-section .section-title { display: none; }
  .mock-sidebar .menu-list { display: contents; }
  .mock-sidebar .menu-item { font-size: 9px; padding: 2px 5px; gap: 4px; }
  .mock-sidebar .menu-item i { font-size: 8px; width: 9px; }
  .mock-sidebar .menu-item .chevron { display: none; }
  .mock-sidebar .menu-item.sub { padding: 2px 5px; font-size: 9px; }
  .mock-sidebar .menu-item.sub::before { display: none; }
  .mock-header { padding: 6px 10px; gap: 6px; }
  .mock-header .left { gap: 6px; }
  .mock-header .left .search-wrap { max-width: 130px; padding: 4px 8px; }
  .mock-header .left .account-btn .acct-name { display: none; }
  .acct-dropdown { width: 280px; left: auto; right: 0; }
  .mock-header .right { gap: 6px; }
  .mock-dashboard-header { padding: 8px 10px 6px; }
  .mock-dashboard-header h3 { font-size: 13px; }
  .mock-dashboard-header h3 small { display: none; }
  .mock-body { padding: 6px 10px 14px; gap: 8px; }
  .mock-stats { grid-template-columns: 1fr 1fr; gap: 6px; }
  .mock-stats .stat-box { padding: 8px; gap: 8px; }
  .mock-stats .stat-icon { width: 28px; height: 28px; font-size: 13px; border-radius: 8px; }
  .mock-stats .stat-label { font-size: 9px; }
  .mock-stats .stat-value { font-size: 17px; }
  .mock-stats .stat-sub { font-size: 9px; }
  .mock-chart { padding: 10px; }
  .chart-plot { height: 70px; }
  .mock-row { grid-template-columns: 1fr; gap: 8px; }
  .mock-card { padding: 10px; }
  .donut { width: 76px; height: 76px; }
  .donut .donut-center { inset: 11px; font-size: 8px; }
  .chart-legend { gap: 10px; }
}

/* ----- UTILITY ----- */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  background: var(--brand-sage);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-sage-dark);
}
.btn-sm {
  padding: 6px 16px;
  font-size: 0.8rem;
}

/* ----- POWERPOINT STAGE (timer-based) ----- */
.ppt-stage {
  /* Slide hampir memenuhi seluruh viewport (navbar disembunyikan selama stage);
     JS menyetel ulang nilainya dalam px agar sinkron dengan .ppt-cards */
  --ppt-slide: calc(100dvh - 96px);
}
.ppt-cards {
  position: relative;
  height: calc(var(--ppt-slide) * 3); /* diset ulang otomatis oleh JS sesuai jumlah kartu */
}
.ppt-viewport {
  position: sticky;
  top: 10px;
  height: var(--ppt-slide);
  overflow: hidden;
}
.slide-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.slide-card.active {
  pointer-events: auto;
  z-index: 10;
}
.slide-card .section {
  min-height: 0;
  height: 100%;
  width: 100%;
  padding: 30px 50px;
  max-height: calc(var(--ppt-slide) - 60px);
  overflow: hidden; /* tanpa scrollbar ganda: isi di-fit-kan otomatis oleh JS */
  justify-content: center;
}
.slide-card .section .slide-content {
  flex: 0 0 auto; /* jangan stretch agar mudah diukur & diskalakan saat tidak muat */
  will-change: transform;
}
.slide-card .section-header { margin-bottom: 20px; }

/* ----- SLIDE TRACKER (progress di dalam pill) ----- */
.slide-tracker {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 10px 8px;
  border-radius: 40px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  max-width: 95vw;
  overflow: hidden;
}
.slide-tracker.visible {
  opacity: 1;
  pointer-events: auto;
}
.tracker-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--brand-sage), var(--brand-sage-light));
  border-radius: 0 0 40px 40px;
  will-change: transform;
}
.tracker-item {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  padding: 6px 10px;
  border: none;
  background: none;
  font-family: var(--font-display);
  white-space: nowrap;
  position: relative;
}
.tracker-item::after {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--border-light);
  margin: 0 2px 0 8px;
  flex-shrink: 0;
}
.tracker-item:last-child::after { display: none; }
.tracker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-light);
  flex-shrink: 0;
  margin-right: 7px;
  transition: all 0.18s ease;
}
.tracker-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.1px;
  transition: color 0.18s ease;
}
.tracker-item.active .tracker-dot {
  background: var(--brand-sage);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
}
.tracker-item.active .tracker-label {
  color: var(--brand-sage-dark);
}
.tracker-item:hover .tracker-label { color: var(--brand-sage); }

/* Hide tracker labels on small screens */
@media (max-width: 700px) {
  .tracker-label { display: none; }
  .tracker-item { padding: 6px 4px; }
  .tracker-dot { margin-right: 0; width: 9px; height: 9px; }
  .tracker-item::after { width: 10px; }
}

/* ----- LAYOUT PPT: Kenapa Memilih Cakrawa ----- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 46px;
  max-width: 880px;
  margin: 0 auto;
}
.feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}
.feat-item > i {
  margin-top: 2px;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--brand-sage-pale);
  color: var(--brand-sage-dark);
  box-shadow: 0 0 0 6px rgba(74, 124, 89, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.feat-item strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
}
.feat-item span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.55;
}

/* ----- LAYOUT PPT: Siap Memulai ----- */
.start-steps {
  display: flex;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
  position: relative;
}
.start-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-sage-pale), var(--brand-sage), var(--brand-sage-pale));
  opacity: 0.5;
}
.step {
  flex: 1;
  padding: 0 8px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-sage), var(--brand-sage-light));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(74, 124, 89, 0.25);
}
.step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.start-cta-wrap {
  text-align: center;
}
.start-cta-wrap .btn {
  padding: 12px 32px;
  font-size: 1rem;
}

/* ----- SITE FOOTER (matching navbar) ----- */
.site-footer {
  margin: 20px auto;
  width: min(calc(100% - 32px), 1200px);
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(30, 45, 26, 0.08);
  box-shadow: 0 10px 30px rgba(30, 45, 26, 0.07);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 28px 26px 22px;
}
.footer-about {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 280px;
  margin: 12px 0 16px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-sage-pale);
  color: var(--brand-sage-dark);
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-socials a:hover {
  background: var(--brand-sage);
  color: #fff;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-primary);
  margin: 0 0 10px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--brand-sage); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 14px;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover { color: var(--brand-sage); }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* ----- PREFERS REDUCED MOTION ----- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
