.page-hero {
  background: var(--gradient-primary);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.page-breadcrumb a:hover {
  color: white;
}
.page-breadcrumb i {
  font-size: 10px;
}
.page-hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.7;
}

.profil-section {
  padding: 80px 0;
}
.profil-section:nth-child(even) {
  background: white;
}
.profil-section:nth-child(odd) {
  background: var(--light);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.history-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.history-text h2 span {
  color: var(--secondary);
}
.history-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.history-milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.milestone {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}
.milestone:last-child {
  border-bottom: none;
}
.milestone-year {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  min-width: 60px;
  line-height: 1;
  padding-top: 2px;
}
.milestone-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.milestone-desc strong {
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

/* STATS BAND */
.stats-band {
  background: var(--gradient-primary);
  padding: 60px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.stats-band-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stats-band-item:last-child {
  border-right: none;
}
.stats-band-number {
  font-size: 44px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-band-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* VISI MISI */
.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-card {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--gray-light);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}
.vm-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.vm-card-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}
.vm-card-icon.teal {
  background: #ccfbf1;
  color: #0d9488;
}
.vm-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}
.vm-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}
.misi-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.misi-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}
.misi-list li i {
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-light);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.value-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* STRUKTUR ORG */
.org-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.org-top {
  text-align: center;
  margin-bottom: 0;
}
.org-connector-v {
  width: 2px;
  height: 40px;
  background: var(--gray-light);
  margin: 0 auto;
}
.org-connector-h {
  display: flex;
  align-items: flex-start;
  position: relative;
  justify-content: center;
}
.org-connector-h::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--gray-light);
}
.org-branches-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.org-branch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.org-branch-line {
  width: 2px;
  height: 40px;
  background: var(--gray-light);
}
.org-box {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  transition: all 0.3s;
  width: 100%;
}
.org-box:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}
.org-box.top {
  background: var(--gradient-primary);
  color: white;
  border: none;
  display: inline-block;
  padding: 22px 48px;
  border-radius: 14px;
}
.org-box.top .org-name {
  color: white;
}
.org-box.top .org-role {
  color: rgba(255, 255, 255, 0.75);
}
.org-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--secondary);
  margin: 0 auto 12px;
}
.org-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.org-role {
  font-size: 13px;
  color: var(--gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-light);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 8px;
}
.team-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.accred-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-light);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.accred-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}
.accred-logo {
  height: 60px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}
.accred-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.accred-type {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
}
.accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .history-grid,
  .visi-misi-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid,
  .accred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .org-branches-new {
    grid-template-columns: 1fr;
  }
  .org-connector-h::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 36px;
  }
  .values-grid,
  .team-grid,
  .accred-grid {
    grid-template-columns: 1fr;
  }
  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding: 100px 0 60px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
}
