/**
 * Tentang Kami — page-specific CSS (flat, kaya detail, no gradient)
 */

/* ===== HERO ===== */
.about-hero {
  position: relative;
  background: var(--de-navy-800);
  color: #fff;
  padding: 4.5rem 0 6rem;
  overflow: hidden;
}
.about-hero-grid {
  position: absolute; inset: 0;
  pointer-events: none;
}
.about-hero-grid::before,
.about-hero-grid::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.about-hero-grid::before { width: 360px; height: 360px; top: -120px; right: -80px; }
.about-hero-grid::after { width: 240px; height: 240px; bottom: -100px; left: -60px; background: rgba(255,199,44,.06); }
.about-hero .container { position: relative; z-index: 2; }
.about-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,199,44,.12);
  color: var(--de-yellow-500);
  border: 1px solid rgba(255,199,44,.3);
  padding: .45rem .9rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .01em;
  margin-bottom: 1.25rem;
}
.about-hero h1 {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1; color: #fff;
  margin-bottom: 1rem;
}
.about-hero h1 .hl { color: var(--de-yellow-500); }
.about-hero .lead { color: rgba(255,255,255,.82); max-width: 520px; }
.about-hero-trust { display: flex; flex-wrap: wrap; gap: .6rem .75rem; margin-top: 1.75rem; }
.about-hero-trust span {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; border-radius: 999px;
  padding: .5rem .9rem; font-size: .85rem; font-weight: 600;
}
.about-hero-trust span i { color: var(--de-yellow-500); }

/* Hero visual — paket di tengah, moda orbit */
.about-hero-visual {
  position: relative;
  width: 320px; height: 320px;
  margin: 0 auto;
  max-width: 100%;
}
.about-hero-visual .ahv-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120px; height: 120px;
  background: var(--de-yellow-500); color: var(--de-navy-800);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  box-shadow: 0 20px 50px rgba(255,199,44,.25);
}
.about-hero-visual .ahv-orbit {
  position: absolute;
  width: 64px; height: 64px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  backdrop-filter: blur(4px);
}
.about-hero-visual .ahv-1 { top: 0; left: 50%; transform: translateX(-50%); }
.about-hero-visual .ahv-2 { right: 0; top: 50%; transform: translateY(-50%); color: var(--de-yellow-500); }
.about-hero-visual .ahv-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.about-hero-visual .ahv-4 { left: 0; top: 50%; transform: translateY(-50%); color: var(--de-yellow-500); }

/* ===== STATS (floating) ===== */
.about-stats {
  background: #fff;
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius);
  box-shadow: 0 16px 48px rgba(10, 29, 58, .1);
  padding: 1.75rem;
}
.about-stats .stat-card {
  border: none; background: transparent; box-shadow: none;
  text-align: center; padding: .5rem;
}
.about-stats .stat-card .stat-icon { margin: 0 auto .75rem; width: 52px; height: 52px; font-size: 1.3rem; }
.about-stats .stat-value { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--de-navy-800); line-height: 1; }
.about-stats .stat-label { color: var(--de-muted); font-size: .85rem; margin-top: .3rem; }

/* ===== SECTION TITLE accent ===== */
.about-section-title { font-family: 'Sora', sans-serif; font-weight: 800; }

/* ===== Visi/Misi cards ===== */
.about-card {
  background: #fff;
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius);
  padding: 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--de-yellow-500); transform: scaleY(0); transform-origin: top;
  transition: transform .25s ease;
}
.about-card:hover { transform: translateY(-5px); box-shadow: var(--de-shadow); border-color: var(--de-navy-500); }
.about-card:hover::after { transform: scaleY(1); }
.about-card-ico {
  width: 52px; height: 52px;
  background: var(--de-navy-800); color: var(--de-yellow-500);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.about-card h6 { font-family: 'Sora', sans-serif; font-weight: 700; margin-bottom: .4rem; }

/* ===== Value cards ===== */
.value-card {
  background: #fff;
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--de-shadow); border-color: var(--de-yellow-500); }
.value-card i {
  width: 64px; height: 64px; margin: 0 auto 1.1rem;
  background: var(--de-navy-50); color: var(--de-navy-800);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: background .25s ease, color .25s ease;
}
.value-card:hover i { background: var(--de-yellow-500); color: var(--de-navy-800); }
.value-card h6 { font-family: 'Sora', sans-serif; font-weight: 700; margin-bottom: .5rem; }

/* ===== How steps ===== */
.how-step {
  background: #fff;
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.how-step:hover { transform: translateY(-5px); box-shadow: var(--de-shadow); }
.how-num {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: var(--de-yellow-500); color: var(--de-navy-800);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(255,199,44,.3);
}
.how-step h6 { font-family: 'Sora', sans-serif; font-weight: 700; margin-bottom: .5rem; }

/* ===== Milestone timeline ===== */
.milestone { list-style: none; margin: 0; padding: 0 0 0 2.5rem; position: relative; }
.milestone::before {
  content: ''; position: absolute; left: .65rem; top: 8px; bottom: 8px;
  width: 2px; background: var(--de-border);
}
.milestone li {
  position: relative; padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  margin-bottom: 1rem;
  background: #fff; border: 1px solid var(--de-border); border-radius: 14px;
  transition: box-shadow .2s ease;
}
.milestone li:hover { box-shadow: var(--de-shadow); }
.milestone li:last-child { margin-bottom: 0; }
.milestone li::before {
  content: ''; position: absolute; left: -2.18rem; top: 1.5rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--de-yellow-500); border: 3px solid var(--de-navy-50);
  box-shadow: 0 0 0 2px var(--de-yellow-500);
}
.milestone-year {
  display: inline-block;
  background: var(--de-navy-800); color: var(--de-yellow-500);
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: .9rem;
  padding: .25rem .7rem; border-radius: 8px; margin-bottom: .6rem;
}
.milestone-body h6 { font-weight: 700; margin-bottom: .25rem; }

/* ===== CTA ===== */
.about-cta {
  position: relative;
  background: var(--de-navy-800);
  border-radius: var(--de-radius);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.about-cta::before {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,199,44,.07);
  top: -120px; right: -60px;
}
.about-cta > * { position: relative; z-index: 1; }
.about-cta h2 { font-family: 'Sora', sans-serif; font-weight: 800; color: #fff; }
.about-cta p { color: rgba(255,255,255,.82); }

@media (max-width: 991.98px) {
  .about-hero { padding: 3.5rem 0 5rem; }
  .about-hero-visual { width: 260px; height: 260px; margin-top: 2rem; }
}
@media (max-width: 767.98px) {
  .about-stats { padding: 1.25rem .75rem; }
  .about-cta { padding: 2.5rem 1.25rem; }
  .about-cta .btn { width: 100%; }
  .about-hero-visual .ahv-center { width: 96px; height: 96px; font-size: 2.4rem; }
  .about-hero-visual .ahv-orbit { width: 52px; height: 52px; font-size: 1.2rem; }
}