/* ===============================
   ABOUT · THE LEADERS
================================ */
/* ===============================
   EDITORIAL NAV · CLEAN & TEXTUAL
================================ */

/* ===============================
   GLOBAL LINK RESET (WAJIB)
================================ */
a,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}


/* ===============================
   EDITORIAL NAV · FINAL
================================ */
/* ===============================
   EDITORIAL NAV · CENTERED GROUP
================================ */
.editorial-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 14px 24px;
  border-bottom: 1px solid #eee;
}

.editorial-nav .nav-group {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: inherit;
}

/* LINK STYLE */
.editorial-nav a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.editorial-nav a:hover {
  opacity: 0.6;
}

.editorial-nav a.active {
  font-weight: 600;
}

/* LANGUAGE */
.editorial-nav .lang {
  font-size: 13px;
  opacity: 0.6;
  margin-left: 6px;
}

/* MOBILE SAFE */
@media (max-width: 768px) {
  .editorial-nav {
    padding: 12px 16px;
  }

  .editorial-nav .nav-group {
    gap: 16px;
    flex-wrap: wrap;
  }

  .editorial-nav a {
    font-size: 13px;
  }
}

/* LINK STYLE */
.editorial-nav a {
  color: #000;
  text-decoration: none;     /* NO UNDERLINE */
  font-size: 14px;
  font-weight: 400;
  margin-right: 20px;
  line-height: 1.4;
}

/* HOVER */
.editorial-nav a:hover {
  opacity: 0.65;
}

/* ACTIVE PAGE */
.editorial-nav a.active {
  font-weight: 600;
}

/* RIGHT SIDE */
.editorial-nav .nav-right a {
  margin-left: 16px;
  margin-right: 0;
}

/* LANGUAGE LINK */
.editorial-nav .lang {
  font-size: 13px;
  opacity: 0.7;
}

/* MOBILE SAFE */
@media (max-width: 768px) {
  .editorial-nav {
    padding: 12px 16px;
  }

  .editorial-nav a {
    font-size: 13px;
    margin-right: 14px;
  }
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.7;
}


/* HERO */
.about-hero {
  background: #000;
  color: #fff;
  padding: 120px 8% 80px;
}

.hero-inner h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

.hero-inner h2 {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 6px;
}

.hero-tagline {
  margin-top: 28px;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* CONTENT */
.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
}

.content-block {
  margin-bottom: 72px;
}

.content-block h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 28px;
}

/* DEFINITION LIST */
.definition-list {
  display: grid;
  grid-template-columns: 160px 1fr;
  row-gap: 14px;
}

.definition-list dt {
  font-weight: 600;
  color: #555;
}

.definition-list dd {
  margin: 0;
}

/* MISSION */
.mission-list {
  padding-left: 20px;
}

.mission-list li {
  margin-bottom: 12px;
}

/* FOOTER */
.about-footer {
  border-top: 1px solid #eee;
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero {
    padding: 90px 24px 60px;
  }

  .hero-inner h1 {
    font-size: 2.4rem;
  }

  .definition-list {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   TEAM SECTION
================================ */

.team-section {
  margin-top: 80px;
}

.team-intro {
  margin-bottom: 48px;
  color: #444;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(100%);
  margin-bottom: 18px;
}

.team-member h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.team-member span {
  font-size: 0.85rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 120px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member img {
    max-width: 180px;
  }
}
/* ===============================
   RATE CARD CTA
================================ */

.ratecard-cta {
  border-top: 1px solid #eee;
  padding-top: 64px;
}

.ratecard-cta p {
  max-width: 560px;
  margin-bottom: 28px;
  color: #444;
}

.ratecard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid #000;
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.ratecard-link:hover {
  opacity: 0.7;
}
/* ===============================
   DOWNLOAD SECTION
================================ */

.download-section {
  border-top: 1px solid #eee;
  padding-top: 64px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  border: 1.5px solid #000;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.download-link i {
  color: #c62828;
  font-size: 1.1rem;
}

.download-link:hover {
  background: #000;
  color: #fff;
}

.download-link:hover i {
  color: #fff;
}

.download-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #666;
}
