#splash-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8faf8;
  z-index: 99999;
  overflow: hidden;
}

.sp-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,158,82,.14) 0%, transparent 65%);
  filter: blur(80px);
  top: 50%; left: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.5);
  animation: spGlowIn 1.4s cubic-bezier(.16,1,.3,1) .2s forwards;
}

@keyframes spGlowIn {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.sp-collab {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.sp-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.sp-jaten { animation: spLogoIn .9s cubic-bezier(.22,1,.36,1) .5s forwards; }
.sp-ieco  { animation: spLogoIn .9s cubic-bezier(.22,1,.36,1) .75s forwards; }

@keyframes spLogoIn {
  from { opacity: 0; transform: translateY(22px) scale(.86); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

.sp-img {
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #fff;
  width: 118px;
  height: 118px;
}

.sp-jaten .sp-img {
  box-shadow:
    0 0 0 1px rgba(0,0,0,.06),
    0 4px 14px rgba(0,0,0,.09),
    0 20px 48px rgba(61,158,82,.2);
}

.sp-ieco .sp-img {
  box-shadow:
    0 0 0 1px rgba(0,0,0,.06),
    0 4px 14px rgba(0,0,0,.09),
    0 20px 48px rgba(20,120,200,.13);
}

.sp-x {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 22px;
  opacity: 0;
  animation: spFadeUp .65s ease 1.1s forwards;
}

.sp-x svg { width: 14px; height: 14px; }

.sp-label {
  margin-top: 11px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #90a4ae;
}

.sp-wordmark {
  margin-top: 36px;
  text-align: center;
  opacity: 0;
  animation: spFadeUp .8s cubic-bezier(.16,1,.3,1) 1.3s forwards;
}

.sp-wordmark h2 {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #1a2420;
  line-height: 1;
  margin: 0;
}

.sp-wordmark h2 span { color: #3d9e52; }

.sp-wordmark p {
  margin-top: 7px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #90a4ae;
}

@keyframes spExit {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.main {
  padding: 64px 0 0 0;
  opacity: 0;
  transform: translateY(14px);
  animation: mainReveal .5s cubic-bezier(.16,1,.3,1) 2.6s forwards;
}

@keyframes mainReveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .sp-glow, .sp-jaten, .sp-ieco, .sp-x,
  .sp-wordmark, .main {
    animation-duration: .01ms !important;
    animation-delay:    .01ms !important;
  }
}

.hero {
  position: relative;
  min-height: 68vh;
  padding: 0;
  display: block;
  background: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  z-index: 1;
}

/* ─── Slide foto: desktop pakai bg-tim.jpg ─── */
.foto-bg {
  background-image: url('../img/bg-tim.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, white 0%, rgba(255,255,255,.96) 35%, rgba(255,255,255,.2) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 28px;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 68vh;
}

.hs-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 64px 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s cubic-bezier(.4,0,.2,1);
}

.hs-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hs-slide--foto {
  padding: 0;
  display: block;
}

.hs-slide--foto .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.158);
  color: var(--accent);
  font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  transition: background .2s, color .2s;
}

.hs-arrow:hover { background: var(--accent); color: #fff; }
.hs-prev { left: 16px; }
.hs-next { right: 16px; }

.hs-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}

.hs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.hs-dot.active { background: var(--accent); transform: scale(1.3); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 20px 0;
}

.f-card {
  padding: 35px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #edf2f7;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.f-card i  { flex-shrink: 0; margin-bottom: 18px; font-size: 22px; color: var(--accent); }
.f-card h3 { margin-bottom: 10px; font-size: 1.19rem; }
.f-card p  { font-size: 1.0rem; line-height: 1.6; color: var(--text-2); }

.site-footer {
  padding: 40px 40px 24px;
  margin: 16px 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid #edf2f7;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 36px;
}

.footer-col { max-width: 300px; }

.footer-col h4 {
  margin-bottom: 16px;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .875rem;
  text-decoration: none;
  color: var(--text-2);
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-links i { margin-right: 8px; }

.bottom { padding: 0 16px; }

.hero-content .btn-primary {
  padding: 12px 24px; /* Angka pertama untuk tinggi, angka kedua untuk lebar tombol */
  font-size: 16px;    /* Memperbesar ukuran teks */
}

.hero-content .btn-primary i {
  font-size: 18px;    /* Memperbesar ukuran ikon buku agar seimbang dengan teks */
}
/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */

@media (max-width: 900px) {
  .main { padding-top: 0; }
  .hero { min-height: auto; }
  .hs-slide { padding: 80px 24px 48px; min-height: 60vh; }
  .hs-slide--foto { padding: 0; }
  .hs-slide--foto .hero-bg { opacity: 1; }
  .hero-bg { opacity: .25; }
  .hero-title { font-size: 2rem; }
  .hero-desc  { font-size: .875rem; }
  .features-grid { grid-template-columns: 1fr; }
  .f-card { padding: 28px 20px; }
  .site-footer { padding: 28px 20px 16px; }
}

@media (max-width: 600px) {
  .time { display: none; }
  .hs-slide { padding: 72px 20px 48px; }
  .hs-slide--foto { padding: 0; }
  .hero-title { font-size: 1.775rem; }
  .hero-desc  { font-size: .85rem; }
  .f-card { padding: 22px 16px; border-radius: 14px; }
  .f-card i  { font-size: 18px; margin-bottom: 12px; }
  .f-card h3 { font-size: 1.0rem; }
  .f-card p  { font-size: .9rem; }
  .footer-top { gap: 20px; }
  .footer-col h4 { font-size: .75rem; margin-bottom: 10px; }
  .footer-links a { font-size: .78rem; }
  .sp-img { width: 100px; height: 100px; }
  .sp-wordmark h2 { font-size: 18px; }
  .hs-arrow { width: 34px; height: 34px; font-size: 13px; }

  /* ─── Mobile: ganti foto-bg ke bg-tim2.jpeg ─── */
  .foto-bg {
    background-image: url('../img/bg-tim2.jpg');
  }
}

@media (max-width: 375px) {
  .hs-slide { padding: 60px 16px 40px; }
  .hs-slide--foto { padding: 0; }
  .hero-title { font-size: 1.45rem; letter-spacing: -.5px; }
  .hero-desc  { font-size: .8rem; margin-bottom: 20px; }
  .features-grid { margin: 12px 10px 0; gap: 8px; }
  .f-card { padding: 16px 12px; gap: 12px; border-radius: 12px; }
  .f-card i  { font-size: 16px; margin-bottom: 0; }
  .f-card h3 { font-size: .825rem; margin-bottom: 6px; }
  .f-card p  { font-size: .8rem; }
  .site-footer { margin: 10px 10px; padding: 16px 12px; }
  .footer-col h4 { font-size: .7rem; }
  .footer-links a { font-size: .72rem; }
  .sp-img { width: 88px; height: 88px; }
  .sp-x { width: 32px; }
  .sp-wordmark h2 { font-size: 16px; }
}