*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-950: #071a0f;
  --green-900: #0d2818;
  --green-800: #123a24;
  --green-700: #1a4a2c;
  --gold-500:  #c9a84c;
  --gold-400:  #e8c96a;
  --mint:      #7ed6a0;
  --white:     #ffffff;
  --container: min(1100px, calc(100% - 40px));
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(160deg, #071a0f 0%, #0d2818 45%, #0a1f12 100%);
  color: var(--white);
  position: relative; overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2.5px solid var(--gold-400); outline-offset: 3px; border-radius: 4px;
}

.orb { position: fixed; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; will-change: transform; }
.orb-1 { width: 350px; height: 350px; background: var(--green-700); top: -80px; left: -80px; opacity: 0.35; animation: orbDrift1 19s ease-in-out infinite; }
.orb-2 { width: 250px; height: 250px; background: #a07828; bottom: -60px; right: -60px; opacity: 0.18; animation: orbDrift2 24s ease-in-out infinite; }

/* Gerakan hidup di latar, terpisah dari properti "transform" supaya tidak
   bentrok dengan parallax scroll (yang mengatur transform lewat JS) */
@keyframes orbDrift1 {
  0%, 100% { translate: 0 0; scale: 1; }
  50% { translate: 45px 55px; scale: 1.12; }
}
@keyframes orbDrift2 {
  0%, 100% { translate: 0 0; scale: 1; }
  50% { translate: -35px -40px; scale: 1.15; }
}

.container { width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.container-narrow { width: min(680px, calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 1; }

/* === SCROLL REVEAL (only active once JS confirms + tags <html class="js">) === */
.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal-stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.js .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.js .reveal-stagger.is-visible > *:nth-child(1){ transition-delay: 0.02s; }
.js .reveal-stagger.is-visible > *:nth-child(2){ transition-delay: 0.09s; }
.js .reveal-stagger.is-visible > *:nth-child(3){ transition-delay: 0.16s; }
.js .reveal-stagger.is-visible > *:nth-child(4){ transition-delay: 0.23s; }
.js .reveal-stagger.is-visible > *:nth-child(5){ transition-delay: 0.3s; }
.js .reveal-stagger.is-visible > *:nth-child(6){ transition-delay: 0.37s; }
.js .reveal-stagger.is-visible > *:nth-child(7){ transition-delay: 0.44s; }

.section-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-500);
  margin-bottom: 14px;
}
.section-label::before { content: ''; width: 22px; height: 2px; background: linear-gradient(90deg, var(--mint), var(--gold-400)); border-radius: 2px; }
.section-heading.center { text-align: center; }
.section-heading.center .section-label { justify-content: center; }
.section-heading.center .section-label::before { display: none; }

/* === NAVBAR === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,26,15,0.75);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.navbar {
  padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: contain; }
.navbar-brand b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: -0.01em; line-height: 1.2; }
.navbar-brand span { display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a:not(.nav-cta) {
  position: relative; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s; padding-bottom: 2px;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: linear-gradient(90deg, var(--mint), var(--gold-400));
  transition: right 0.25s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: var(--green-950);
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500));
  padding: 10px 18px; border-radius: 30px;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(201,168,76,0.18);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(201,168,76,0.28); }

.menu-toggle {
  display: none; width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25); border-radius: 10px;
  background: rgba(255,255,255,0.04); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--white); transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute; left: 20px; right: 20px; top: calc(100% + 8px);
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(9,31,20,0.98); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px; padding: 10px; box-shadow: 0 20px 44px rgba(0,0,0,0.4);
    backdrop-filter: blur(16px);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a:not(.nav-cta) {
    display: block; padding: 12px 14px; border-radius: 10px;
  }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-links a:not(.nav-cta):hover { background: rgba(255,255,255,0.05); }
  .nav-cta { justify-content: center; margin-top: 6px; }
}

/* === BUTTONS (shared) === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 13px 22px; border-radius: 14px;
  text-decoration: none; font-size: 13.5px; font-weight: 700;
  border: 1px solid transparent; transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  position: relative; overflow: hidden;
  color: var(--green-950);
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 14px 30px rgba(201,168,76,0.22);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); transition: left 0.55s cubic-bezier(0.22,1,0.36,1);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(201,168,76,0.3); }
.btn-primary:hover::before { left: 130%; }
.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* === HERO === */
.hero { position: relative; z-index: 1; padding: 84px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 8px; border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.3); background: rgba(255,255,255,0.04);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-400);
}
.hero-badge img { width: 22px; height: 22px; border-radius: 50%; object-fit: contain; }
.hero h1 {
  font-family: 'Amiri', 'Plus Jakarta Sans', serif;
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 54px); line-height: 1.18; letter-spacing: -0.005em;
  color: var(--white); margin: 20px 0 18px; max-width: 620px;
}
.hero-lead { max-width: 540px; font-size: 15.5px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.hero-lead strong { color: rgba(255,255,255,0.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 26px 0 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); }
.hero-points svg { width: 15px; height: 15px; color: var(--mint); flex-shrink: 0; }

/* --- hero mockup visual (3D tilt tracks the cursor) --- */
.hero-visual { perspective: 1400px; }
.mockup {
  position: relative; border: 1px solid rgba(201,168,76,0.22); border-radius: 24px;
  padding: 8px; background: rgba(255,255,255,0.035); backdrop-filter: blur(16px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5), 0 10px 24px rgba(0,0,0,0.3);
  animation: slideUpFade 1s cubic-bezier(0.22,1,0.36,1) 0.15s both;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
  will-change: transform;
}
.mockup-inner {
  border: 1px solid rgba(201,168,76,0.16); border-radius: 18px; overflow: hidden;
  background: var(--green-950); transform: translateZ(0);
}
.mockup-status {
  display: inline-flex; align-items: center; gap: 5px; margin-left: 8px;
  font-size: 9px; font-weight: 700; color: var(--mint); text-transform: none; letter-spacing: normal;
}
.mockup-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(126,214,160,0.15); }
.mockup-body { padding: 18px; }
.mockup-welcome {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px; border-radius: 16px; margin-bottom: 12px;
  background: linear-gradient(120deg, var(--green-800), var(--green-700));
}
.mockup-welcome small { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.52); }
.mockup-welcome b { display: block; margin-top: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; color: var(--white); }
.mockup-welcome-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.mockup-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.mockup-stat { padding: 12px; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; background: rgba(255,255,255,0.02); }
.mockup-stat i { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(126,214,160,0.14); margin-bottom: 8px; }
.mockup-stat b { display: block; font-size: 10.5px; color: rgba(255,255,255,0.85); }
.mockup-stat span { display: block; margin-top: 2px; font-size: 12px; font-weight: 800; color: var(--mint); }
.mockup-list { border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }
.mockup-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mockup-row:last-child { border-bottom: none; }
.mockup-row i { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,0.06); flex-shrink: 0; }
.mockup-row span { flex: 1; font-size: 11px; color: rgba(255,255,255,0.6); }
.mockup-row b { font-size: 11px; font-weight: 800; }
.mockup-row b.pos { color: var(--mint); }
.mockup-row b.neg { color: #e8a87c; }

.float-card {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border: 1px solid rgba(201,168,76,0.25); border-radius: 14px;
  background: rgba(13,40,24,0.92); box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px); animation: float 5s ease-in-out infinite;
}
.float-card svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; }
.float-card b { display: block; font-size: 10.5px; color: var(--white); }
.float-card span { display: block; font-size: 9px; color: rgba(255,255,255,0.52); margin-top: 1px; }
.float-one { left: -18px; bottom: -18px; }

@keyframes float { 0%, 100% { transform: translateZ(60px) translateY(0); } 50% { transform: translateZ(60px) translateY(-8px); } }
@keyframes slideDownFade { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* === SHORTCUT ORANG TUA === */
.parent-shortcut {
  display: flex; align-items: center; gap: 18px;
  margin: 0 0 28px; padding: 22px 24px; border-radius: 20px;
  background: linear-gradient(120deg, rgba(201,168,76,0.14), rgba(126,214,160,0.08));
  border: 1.5px solid rgba(201,168,76,0.4);
  text-decoration: none; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.parent-shortcut:hover {
  transform: translateY(-3px); border-color: rgba(201,168,76,0.65);
  box-shadow: 0 16px 36px rgba(201,168,76,0.16);
}
.parent-shortcut-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; background: rgba(255,255,255,0.08);
}
.parent-shortcut-text { flex: 1; min-width: 0; }
.parent-shortcut-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.parent-shortcut-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }
.parent-shortcut-cta {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 800; color: var(--green-950);
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500));
  padding: 13px 20px; border-radius: 14px; white-space: nowrap;
}
.parent-shortcut-note {
  margin: -14px 0 28px; font-size: 12px; color: rgba(255,255,255,0.52);
  line-height: 1.6; text-align: center;
}
.parent-shortcut-note strong { color: rgba(255,255,255,0.65); font-weight: 700; }
@media (max-width: 640px) {
  .parent-shortcut { flex-wrap: wrap; text-align: center; justify-content: center; padding: 22px 18px; }
  .parent-shortcut-text { flex-basis: 100%; }
  .parent-shortcut-cta { flex-basis: 100%; justify-content: center; }
}

/* === PROOF STRIP === */
.proof-strip { position: relative; z-index: 1; padding: 0 0 8px; }
.proof-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border: 1px solid rgba(201,168,76,0.18); border-radius: 18px;
  overflow: hidden; background: rgba(255,255,255,0.03);
}
.proof-item {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  border-right: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: background 0.25s ease;
}
.proof-item:hover { background: rgba(255,255,255,0.03); }
.proof-item:hover .icon-wrap { transform: scale(1.08); }
.proof-item b { display: block; font-size: 12.5px; color: var(--white); }
.proof-item span { display: block; margin-top: 2px; font-size: 10.5px; color: rgba(255,255,255,0.52); }

/* === SECTION SPACING === */
.section { padding: 88px 0; position: relative; z-index: 1; }
.section-title {
  font-family: 'Amiri', 'Plus Jakarta Sans', serif;
  font-size: clamp(26px, 3.2vw, 34px); font-weight: 700; letter-spacing: 0;
  color: var(--white); max-width: 620px;
}
.section-lead { font-size: 13.5px; color: rgba(255,255,255,0.56); max-width: 480px; margin-top: 12px; line-height: 1.7; }
.section-heading.center .section-title, .section-heading.center .section-lead { margin-inline: auto; }

/* === WORKFLOW / CARA KERJA (alur terhubung, bukan 3 kotak seragam) === */
.flow-row { display: flex; align-items: flex-start; gap: 6px; margin-top: 44px; }
.flow-step { flex: 1; min-width: 0; }
.flow-icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2);
}
.flow-step h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; color: var(--white); margin-bottom: 8px; }
.flow-step p { font-size: 12.5px; color: rgba(255,255,255,0.56); line-height: 1.65; }
.flow-arrow { flex-shrink: 0; margin-top: 10px; color: rgba(201,168,76,0.35); }
.flow-step:first-child { flex: 1.15; }
.flow-step:first-child .flow-icon { background: rgba(45,138,74,0.14); }

/* === FEATURES (1 unggulan besar + daftar, bukan 4 kartu sejajar) === */
.feature-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; margin-top: 40px; align-items: stretch; }
.feature-featured {
  background: linear-gradient(150deg, rgba(45,138,74,0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(126,214,160,0.28); border-radius: 20px;
  padding: 32px 28px; backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
}
.icon-wrap-lg {
  width: 56px; height: 56px; border-radius: 15px; margin-bottom: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(45,138,74,0.25); border: 1px solid rgba(126,214,160,0.35);
}
.feature-title-lg { font-family: 'Amiri', serif; font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.feature-desc-lg { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 340px; }

.feature-list {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.16); border-radius: 20px;
  padding: 6px 22px;
}
.feature-row {
  display: flex; align-items: flex-start; gap: 14px; text-align: left;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.feature-row:last-child { border-bottom: none; }
.feature-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.feature-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.55; }
.icon-wrap { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

@media (max-width: 800px) {
  .feature-layout { grid-template-columns: 1fr; }
}

/* === ABOUT === */
.about-text { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-top: 16px; }

/* === FAQ === */
.faq-list { display: grid; gap: 10px; margin-top: 32px; }
.faq-item { border: 1px solid rgba(201,168,76,0.18); border-radius: 14px; background: rgba(255,255,255,0.03); overflow: hidden; transition: border-color 0.2s ease; }
.faq-item:hover { border-color: rgba(201,168,76,0.32); }
.faq-item summary { transition: color 0.2s ease; }
.faq-item summary:hover { color: var(--gold-400); }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 44px 16px 18px; position: relative; font-size: 13px; font-weight: 700; color: var(--white); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--gold-400); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 18px 16px; font-size: 12.5px; color: rgba(255,255,255,0.56); line-height: 1.65; }

/* === FOOTER GLOBAL === */
.site-footer {
  position: relative; z-index: 1; overflow: hidden;
  background: #030603;
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: 0 0 22px;
}
.motif-footer {
  position: absolute; top: -20%; left: -10%; right: auto; width: min(420px, 70vw); height: min(420px, 70vw);
  transform: none; opacity: 0.05;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 34px 0 28px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 40px;
}
.footer-top p { font-family: 'Amiri', 'Plus Jakarta Sans', serif; font-size: 18px; font-weight: 700; color: var(--white); }
.footer-top span { display: block; margin-top: 4px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.52); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 32px; height: 32px; border-radius: 50%; object-fit: contain; }
.footer-brand b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; color: var(--white); }
.footer-brand span { display: block; font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.footer-desc { font-size: 11.5px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 14px; max-width: 300px; }
.footer-col h4 { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.48); margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 10px; color: rgba(255,255,255,0.56);
}

/* === MOTIF GEOMETRIS (elemen ciri khas, dipakai di landing page & halaman Pilih Aplikasi) === */
.motif {
  position: fixed; top: 50%; left: 50%; width: min(900px, 140vw); height: min(900px, 140vw);
  transform: translate(-50%, -50%); opacity: 0.07; pointer-events: none; z-index: 0;
}
.motif-hero {
  position: absolute; top: 50%; right: -8%; left: auto; width: min(680px, 90vw); height: min(680px, 90vw);
  transform: translateY(-50%); opacity: 0.05;
}
.motif-ring { transform-origin: 200px 200px; }
.motif-ring-a { animation: motifSpin 120s linear infinite; }
.motif-ring-b { animation: motifSpin 90s linear infinite reverse; }
@keyframes motifSpin { to { transform: rotate(360deg); } }

/* === ACCESS PAGE (Pilih Aplikasi) === */
.access-page { min-height: 100vh; display: flex; flex-direction: column; }
.access-hero {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 16px; position: relative; z-index: 1;
}
.back-link {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 30px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.56); text-decoration: none;
}
.back-link:hover { color: var(--gold-400); }
.back-link svg { width: 14px; height: 14px; }

.logo-section { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 28px; animation: slideDownFade 1s cubic-bezier(0.22,1,0.36,1) both; text-align: center; }
.logo-ring {
  position: relative; width: 96px; height: 96px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  border: 2px solid rgba(201,168,76,0.35);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.06), 0 8px 32px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
}
.logo-ring::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  animation: logoBreathe 3.6s ease-in-out infinite;
}
@keyframes logoBreathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 0; }
}
.logo-ring img { width: 82px; height: 82px; border-radius: 50%; object-fit: contain; padding: 4px; }
.logo-sub { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 5px; }
.logo-title { font-family: 'Amiri', 'Plus Jakarta Sans', serif; font-size: 21px; font-weight: 700; color: var(--white); line-height: 1.25; letter-spacing: 0; }
.logo-subtitle { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.56); margin-top: 2px; }

.card {
  width: 100%; max-width: 720px;
  background: rgba(255,255,255,0.045); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 22px; overflow: hidden; backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); position: relative;
  animation: slideUpFade 1s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
.card::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1.5px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.card-body { padding: 26px 22px 22px; }
.card-body > .section-label { display: flex; justify-content: center; margin-bottom: 18px; }
.card-body > .section-label::before { display: none; }

.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.role-card {
  display: flex; flex-direction: column; text-align: left;
  padding: 26px 22px; border-radius: 18px; text-decoration: none;
  border: 1px solid transparent; transition: all 0.2s ease; position: relative;
  animation: slideUpFade 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.role-grid > .role-card:nth-child(1){ animation-delay: 0.3s; }
.role-grid > .role-card:nth-child(2){ animation-delay: 0.42s; }
.role-card:active { transform: scale(0.98); }
.role-card .icon-wrap {
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 18px; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.role-card .icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.role-card:hover .icon-wrap { transform: scale(1.08) rotate(-3deg); }
.role-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.role-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.role-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; padding: 13px 16px; border-radius: 12px;
  font-size: 13.5px; font-weight: 800; text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.role-cta svg { width: 15px; height: 15px; transition: transform 0.2s; flex-shrink: 0; }
.role-card:hover .role-cta { transform: translateY(-1px); }
.role-card:hover .role-cta svg { transform: translateX(3px); }

.card-santri { background: rgba(26,74,44,0.45); border-color: rgba(45,138,74,0.25); }
.card-santri:hover { background: rgba(26,74,44,0.65); border-color: rgba(45,138,74,0.5); box-shadow: 0 10px 28px rgba(26,74,44,0.3); transform: translateY(-3px); }
.card-santri .icon-wrap { border: 1px solid rgba(45,138,74,0.35); }
.card-santri .role-cta { color: var(--green-950); background: linear-gradient(120deg, var(--mint), #58c288); box-shadow: 0 8px 20px rgba(45,138,74,0.25); }
.card-santri:hover .role-cta { box-shadow: 0 10px 24px rgba(45,138,74,0.4); }

.card-bendahara { background: rgba(100,75,20,0.35); border-color: rgba(201,168,76,0.22); }
.card-bendahara:hover { background: rgba(120,90,25,0.5); border-color: rgba(201,168,76,0.5); box-shadow: 0 10px 28px rgba(100,75,20,0.3); transform: translateY(-3px); }
.card-bendahara .icon-wrap { border: 1px solid rgba(201,168,76,0.3); }
.card-bendahara .role-cta { color: var(--green-950); background: linear-gradient(120deg, var(--gold-400), var(--gold-500)); box-shadow: 0 8px 20px rgba(201,168,76,0.25); }
.card-bendahara:hover .role-cta { box-shadow: 0 10px 24px rgba(201,168,76,0.4); }

.badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; align-self: flex-start; }
.badge-green { background: rgba(45,138,74,0.18); color: var(--mint); border: 1px solid rgba(45,138,74,0.3); }
.badge-gold { background: rgba(201,168,76,0.12); color: var(--gold-400); border: 1px solid rgba(201,168,76,0.28); }

@media (max-width: 640px) {
  .role-grid { grid-template-columns: 1fr; }
}

.trust-badge { font-size: 11.5px; color: rgba(255,255,255,0.52); text-align: center; margin-top: 14px; line-height: 1.6; }
.trust-badge strong { color: rgba(255,255,255,0.7); font-weight: 700; }
.access-lead { text-align: center; font-size: 14px; color: rgba(255,255,255,0.55); margin: -6px 0 22px; line-height: 1.6; }
.divider { height: 1px; margin: 18px 0 16px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent); }
.card-footer { display: flex; align-items: center; justify-content: center; gap: 6px; }
.powered-by { font-size: 9px; color: rgba(255,255,255,0.54); letter-spacing: 0.1em; text-transform: uppercase; }
.jadid-mark { height: 14px; width: auto; vertical-align: middle; display: inline-block; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-lead, .hero h1 { max-width: 100%; }
  .float-card { display: none; }
}
@media (max-width: 700px) {
  .flow-row { flex-direction: column; align-items: stretch; gap: 22px; }
  .flow-step:first-child { flex: 1; }
  .flow-arrow { transform: rotate(90deg); margin: -6px 0; align-self: center; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 50px; }
  .hero-actions .btn { width: 100%; }
  .proof-item { border-right: none !important; }
  .cta-band { flex-direction: column; text-align: center; padding: 34px 22px; }
  .cta-band .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}
