@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,700;1,800&display=swap');

:root {
  --green: #2d7050;
  --green-dark: #1e4835;
  --green-light: #e8f3ed;
  --green-muted: #6b9e84;
  --teal: #1a7a6d;
  --teal-bg: #e6f4f2;
  --slate-50: #f7f8f9;
  --slate-100: #f1f3f5;
  --slate-200: #e5e7eb;
  --slate-400: #9ca3af;
  --slate-500: #6b7280;
  --slate-600: #4b5563;
  --slate-700: #374151;
  --slate-800: #1f2937;
  --slate-900: #111827;
  --radius: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--slate-700);
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.04);
  padding: 14px 0;
  transition: .3s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; color: var(--slate-900);
}
.nav-logo img { height: 34px; width: 34px; border-radius: 8px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-size: .85rem; font-weight: 500; color: var(--slate-500);
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: #fff;
  padding: 10px 24px; border-radius: 10px;
  font-size: .85rem; font-weight: 600;
  border: none; cursor: pointer; transition: .2s;
  font-family: inherit;
}
.nav-cta:hover { background: var(--green-dark); }
.nav-login-wrap { position: relative; }
.nav-login-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
  padding: 8px;
  min-width: 290px;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
  z-index: 200;
}
.nav-login-dropdown.show {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.login-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background .15s;
}
.login-item:hover { background: var(--slate-50); }
.login-ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.login-item strong { display: block; font-size: .85rem; color: var(--slate-800); }
.login-item small { font-size: .72rem; color: var(--slate-400); }
.btn-text {
  background: none; color: var(--slate-500);
  padding: 13px 8px;
  font-size: .85rem;
}
.btn-text:hover { color: var(--green); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--slate-700); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ─── HERO ─── */
.hero {
  padding: 130px 0 80px;
  background: #fff;
}
.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: .03em;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--green);
}
.hero p {
  font-size: .95rem;
  color: var(--slate-500);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline-dark {
  background: #fff; color: var(--slate-700);
  border: 1.5px solid var(--slate-200);
}
.btn-outline-dark:hover { border-color: var(--slate-400); }

.hero-img-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-float {
  position: absolute;
  bottom: -20px; right: -10px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero-float-num {
  width: 42px; height: 42px;
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-float-text h5 { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-400); font-weight: 600; margin-bottom: 2px; }
.hero-float-text p { font-size: .85rem; font-weight: 700; color: var(--slate-800); margin: 0; line-height: 1.3; }
.hero-float-text span { font-size: .72rem; color: var(--slate-400); }

/* ─── MODULE SECTION (MAGANG & PKS) ─── */
.modul-section { padding: 80px 0; }
.modul-section:nth-child(even) { background: var(--slate-50); }
.modul-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.modul-row.reverse .modul-text { order: 1; }
.modul-row.reverse .modul-media { order: 2; }
.modul-label {
  display: inline-block;
  background: var(--teal-bg);
  color: var(--teal);
  padding: 5px 14px;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.modul-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -.015em;
}
.modul-text > p {
  font-size: .9rem;
  color: var(--slate-500);
  margin-bottom: 28px;
  line-height: 1.75;
}
.modul-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.modul-features li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .87rem; color: var(--slate-600); line-height: 1.55;
}
.feat-ic {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: .85rem;
  margin-top: 1px;
}
.modul-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.modul-media { position: relative; }
.modul-float {
  position: absolute;
  bottom: -16px; right: -10px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 6px 28px rgba(0,0,0,.1);
  max-width: 280px;
  display: flex; align-items: flex-start; gap: 12px;
}
.modul-float-ic {
  width: 32px; height: 32px;
  background: #fef3c7;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
}
.modul-float h5 { font-size: .68rem; color: var(--slate-400); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.modul-float p { font-size: .8rem; font-weight: 600; color: var(--slate-800); margin: 2px 0 0; line-height: 1.3; }
.modul-float span { font-size: .7rem; color: var(--slate-400); }

/* ─── ALUR ─── */
.alur { padding: 80px 0; background: #fff; }
.alur-header { text-align: center; margin-bottom: 56px; }
.alur-label {
  display: inline-block;
  background: var(--teal-bg); color: var(--teal);
  padding: 5px 14px; border-radius: 8px;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 14px;
}
.alur h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--slate-900);
  margin-bottom: 10px;
}
.alur-header p { color: var(--slate-500); font-size: .9rem; max-width: 520px; margin: 0 auto; }
.alur-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.alur-step {
  text-align: center;
  padding: 28px 18px;
  background: var(--slate-50);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  transition: .3s;
  position: relative;
}
.alur-step:hover { border-color: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.05); }
.alur-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.alur-step h4 { font-size: .9rem; font-weight: 700; color: var(--slate-800); margin-bottom: 6px; }
.alur-step p { font-size: .78rem; color: var(--slate-500); line-height: 1.55; }

/* ─── KEUNGGULAN ─── */
.keunggulan { padding: 80px 0; background: var(--slate-50); }
.keunggulan-header { text-align: center; margin-bottom: 48px; }
.keunggulan h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--slate-900); margin-bottom: 10px; }
.keunggulan-header p { color: var(--slate-500); font-size: .9rem; max-width: 480px; margin: 0 auto; }
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.keunggulan-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: .3s;
}
.keunggulan-card:hover { border-color: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.05); }
.keunggulan-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--green);
}
.keunggulan-card h4 { font-size: .92rem; font-weight: 700; color: var(--slate-800); margin-bottom: 8px; }
.keunggulan-card p { font-size: .82rem; color: var(--slate-500); line-height: 1.6; }

/* ─── FAQ ─── */
.faq { padding: 80px 0; background: #fff; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--slate-900); margin-bottom: 10px; }
.faq-header p { color: var(--slate-500); font-size: .9rem; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 12px; overflow: hidden; transition: .2s; }
.faq-item.active { border-color: var(--green-light); background: #fff; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px; cursor: pointer;
  font-size: .88rem; font-weight: 600; color: var(--slate-700);
  background: none; border: none; width: 100%;
  text-align: left; font-family: inherit;
}
.faq-q:hover { color: var(--green); }
.faq-q .arr { font-size: .7rem; color: var(--slate-400); transition: transform .3s; }
.faq-item.active .faq-q .arr { transform: rotate(180deg); color: var(--green); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 16px; font-size: .84rem; color: var(--slate-500); line-height: 1.7; }

/* ─── FOOTER ─── */
.footer {
  background: var(--slate-900); color: rgba(255,255,255,.45);
  padding: 52px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 260px; margin-top: 12px; }
.footer h5 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { font-size: .82rem; transition: color .2s; }
.footer ul a:hover { color: #86efac; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: .75rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px 28px; gap: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    border-top: 1px solid var(--slate-200);
  }
  .hero-row, .modul-row { grid-template-columns: 1fr; gap: 36px; }
  .modul-row.reverse .modul-text { order: 2; }
  .modul-row.reverse .modul-media { order: 1; }
  .alur-steps { grid-template-columns: 1fr 1fr; }
  .keunggulan-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 110px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-float { position: static; margin-top: 20px; max-width: 100%; }
  .modul-float { position: static; margin-top: 16px; max-width: 100%; }
  .alur-steps { grid-template-columns: 1fr; }
  .keunggulan-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: all .65s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
