

/* Scrim lebih rata daripada hero landing */
.hero--halaman .hero__overlay {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--navy) 88%, transparent) 0%,
    color-mix(in srgb, var(--navy) 78%, transparent) 45%,
    color-mix(in srgb, var(--navy) 55%, transparent) 100%);
}

.hero--halaman .hero__content { max-width: 700px; }
.hero--halaman .hero__sub { max-width: 560px; margin-bottom: 0; }

.video-embed {
  position: relative;
  /* 1120, bukan selebar container */
  max-width: 1120px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy) , var(--navy-mid) 55%, #0a1740);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  padding: var(--space-md);
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: center;
}

.video-embed__ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--white) 70%, transparent);
  background: color-mix(in srgb, var(--white) 14%, transparent);
  font-size: 1.6rem;
  line-height: 1;
  padding-left: 5px;              /* segitiga ▶ optically center */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .25s ease, transform .25s ease;
}
.video-embed__play:hover .video-embed__ikon {
  background: color-mix(in srgb, var(--white) 26%, transparent);
  transform: scale(1.08);
}

.video-embed__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
}
.video-embed__sub {
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--white) 72%, transparent);
}

.komitmen-intro {
  max-width: 620px;
  margin: 0 auto var(--space-xl);
  color: var(--text-body);
  font-size: 15px;
  text-align: center;
}

#komitmen .h2-section { margin-bottom: var(--space-md); }

.nilai-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: 1160px;
  margin-inline: auto;
}

/* flex-column + min-height */
.nilai-kartu {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 36px 40px 40px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.nilai-kartu__judul {
  margin-bottom: var(--space-md);
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

/* Moto */
.moto {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.moto__badge {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.moto__list li {
  font-size: 15px;
  font-weight: 600;
  line-height: 2.6;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* Misi */
.misi {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  width: 100%;
  max-width: 250px;
  margin-inline: auto;
}
.misi li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: baseline;
  gap: 28px;
  line-height: 1.4;
}
.misi__huruf {
  color: var(--gold);
  font-size: 17px;
  font-weight: 800;
}
.misi__kata {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* Dibatasi 1100px, BUKAN selebar container */
.timeline {
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
  --timeline-gap: 64px;         /* jarak kolom kiri ↔ kanan */
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: var(--gray-300);
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: var(--timeline-gap);
}
.timeline__item + .timeline__item { margin-top: 40px; }

/* titik di garis tengah */
.timeline__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 4px var(--off-white);   /* "memotong" garis di belakangnya */
}

/* 16/10, bukan 4/3 */
.timeline__media {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.timeline__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.timeline__media:hover img { transform: scale(1.04); }

.timeline__judul {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
.timeline__desc {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

/* Baris genap dibalik */
.timeline__item:nth-child(even) .timeline__media { grid-column: 2; grid-row: 1; }
.timeline__item:nth-child(even) .timeline__body  { grid-column: 1; grid-row: 1; }

/* Teks dikasih napas dari garis tengah */
.timeline__item:nth-child(odd)  .timeline__body { padding-left: var(--space-xs); }
.timeline__item:nth-child(even) .timeline__body { padding-right: var(--space-xs); }

@media (max-width: 1024px) {
  .timeline { --timeline-gap: 40px; }
}

@media (max-width: 768px) {
  .hero--halaman .hero__overlay {
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--navy) 75%, transparent) 0%,
      color-mix(in srgb, var(--navy) 88%, transparent) 100%);
  }

  .nilai-grid { grid-template-columns: 1fr; }
  .nilai-kartu { padding: 24px 20px 28px; }

  /* Timeline jadi satu kolom */
  .timeline::before { left: 7px; }
  .timeline__item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding-left: 34px;
  }
  .timeline__item + .timeline__item { margin-top: var(--space-lg); }
  .timeline__item::before { top: 8px; left: 7px; margin-top: 0; }

  .timeline__item:nth-child(even) .timeline__media,
  .timeline__item:nth-child(even) .timeline__body { grid-column: 1; grid-row: auto; }
  .timeline__item:nth-child(odd)  .timeline__body,
  .timeline__item:nth-child(even) .timeline__body { padding-inline: 0; }

  .video-embed { border-radius: var(--radius-md); }
  .video-embed__ikon { width: 60px; height: 60px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .moto { flex-direction: column; gap: var(--space-sm); }
  .misi { max-width: 220px; }
}
