:root {
  --sdm-about-ink: #171717;
  --sdm-about-navy: #151d31;
  --sdm-about-blue: #075aa8;
  --sdm-about-blue-soft: #c8d2ff;
  --sdm-about-orange: #f47721;
  --sdm-about-brown: #39372d;
  --sdm-about-soft: #f5f4f2;
  --sdm-about-card: #e9e5e1;
  --sdm-about-muted: #687386;
  --sdm-about-border: #d9d7d4;
}

/* =========================================================
   PAGE BASE
   ========================================================= */
.sdm-about-final {
  overflow: hidden;
  color: var(--sdm-about-ink);
  background: #ffffff;
}

#navbar > ul > li > a.active {
  color: #168df0 !important;
}

/* =========================================================
   ABOUT INTRO
   ========================================================= */
.sdm-about-intro {
  padding: 90px 0 92px;
  background: #ffffff;
}

.sdm-about-intro-grid {
  display: grid;
  grid-template-columns: minmax(390px, .90fr) minmax(0, 1.10fr);
  gap: clamp(60px, 7vw, 120px);
  align-items: start;
}

.sdm-about-intro-heading {
  min-width: 0;
  overflow: visible;
}

.sdm-about-intro-heading span {
  display: block;
  max-width: 100%;
  color: #050505;
  font-family: "Raleway", sans-serif;
  font-size: clamp(82px, 8.2vw, 142px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .88;
  white-space: nowrap;
}

.sdm-about-intro-copy {
  max-width: 860px;
  padding-top: 34px;
}

.sdm-about-intro-copy p {
  color: #262626;
  font-size: clamp(17px, 1.35vw, 21px);
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 26px;
}

.sdm-about-approach {
  margin: -4px 0 26px;
}

.sdm-about-approach strong {
  display: block;
  color: #252525;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 7px;
}

.sdm-about-approach ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sdm-about-approach li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #252525;
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
}

.sdm-about-approach li i {
  color: var(--sdm-about-orange);
  margin-top: 3px;
}

/* =========================================================
   MISSION & CLIENT VALUE
   ========================================================= */
.sdm-about-feature-section {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  padding: 78px 0;
}

.sdm-about-feature-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.03);
}

.sdm-about-feature-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 20, 36, .32), rgba(9, 20, 36, .16)),
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(0, 0, 0, .12));
}

.sdm-about-feature-section .container {
  position: relative;
  z-index: 2;
}

.sdm-about-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 34px 34px 38px;
  background: rgba(248, 246, 243, .94);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 24px;
  box-shadow: 0 28px 65px rgba(7, 24, 48, .20);
  backdrop-filter: blur(12px);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.sdm-about-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--sdm-about-blue),
    var(--sdm-about-orange)
  );
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .35s ease;
}

.sdm-about-feature-card:hover {
  transform: translateY(-12px) rotateX(1deg);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 38px 80px rgba(7, 24, 48, .27);
}

.sdm-about-feature-card:hover::before {
  transform: scaleX(1);
}

.sdm-about-feature-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}

.sdm-about-feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sdm-about-blue);
  background: #ffffff;
  border: 1px solid #d5d4d0;
  border-radius: 16px;
  font-size: 24px;
  transition:
    color .3s ease,
    background .3s ease,
    transform .3s ease;
}

.sdm-about-feature-card:hover .sdm-about-feature-icon {
  color: #ffffff;
  background: var(--sdm-about-blue);
  transform: rotate(-8deg) scale(1.08);
}

.sdm-about-feature-card h2 {
  color: var(--sdm-about-ink);
  font-family: "Raleway", sans-serif;
  font-size: clamp(32px, 3vw, 47px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
  margin: 0;
}

.sdm-about-feature-list {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sdm-about-feature-list li {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid #d5d2ce;
  color: #373737;
  font-size: 16px;
  line-height: 1.65;
}

.sdm-about-feature-list li:last-child {
  border-bottom: 0;
}

.sdm-about-feature-list i {
  color: var(--sdm-about-orange);
  margin-top: 3px;
}

.sdm-about-client-values {
  position: relative;
  z-index: 2;
}

.sdm-about-client-value {
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #d5d2ce;
}

.sdm-about-client-value:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.sdm-about-client-value h3 {
  color: var(--sdm-about-navy);
  font-size: 17px;
  font-style: italic;
  font-weight: 800;
  margin: 0 0 6px;
}

.sdm-about-client-value p {
  color: #4d4d4d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.sdm-about-feature-watermark {
  position: absolute;
  right: -12px;
  bottom: -20px;
  color: rgba(7, 90, 168, .05);
  font-family: "Raleway", sans-serif;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -.06em;
  white-space: nowrap;
  pointer-events: none;
}

/* =========================================================
   COMPANY CORE VALUES
   ========================================================= */
.sdm-company-values {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 104px 0 98px;
  background-image: var(--sdm-company-values-bg);
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.sdm-company-values-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(8, 21, 39, .66) 0%,
      rgba(8, 21, 39, .52) 48%,
      rgba(8, 21, 39, .61) 100%
    );
}

.sdm-company-values::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .08), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(244, 119, 33, .10), transparent 30%);
}

.sdm-company-values .container {
  position: relative;
  z-index: 2;
}

.sdm-company-values-heading {
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 5vw, 78px);
  margin-bottom: 58px;
}

.sdm-company-values-heading > span {
  flex: 0 0 auto;
  color: #ff8a32;
  font-family: "Raleway", sans-serif;
  font-size: clamp(31px, 3.1vw, 49px);
  font-weight: 800;
  letter-spacing: .10em;
  line-height: 1;
  margin-top: 12px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .22);
}

.sdm-company-values-heading h2 {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: clamp(64px, 7.4vw, 108px);
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .82;
  margin: 0;
  text-shadow: 0 5px 26px rgba(0, 0, 0, .24);
}

.sdm-company-value-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 278px;
  padding: 29px 29px 34px;
  color: var(--sdm-about-navy);
  background: rgba(246, 242, 237, .94);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 22px;
  box-shadow:
    0 18px 38px rgba(3, 16, 31, .22),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transform: translateZ(0);
  transition:
    transform .38s cubic-bezier(.2, .8, .2, 1),
    box-shadow .38s ease,
    background .38s ease,
    border-color .38s ease;
}

.sdm-company-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .34),
      transparent 43%
    );
  opacity: .75;
}

.sdm-company-value-card::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -78px;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(7, 90, 168, .18);
  border-radius: 50%;
  transition:
    transform .48s ease,
    border-color .38s ease;
}

.sdm-company-value-card:hover {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(7, 90, 168, .98), rgba(12, 121, 198, .98));
  border-color: rgba(255, 255, 255, .26);
  transform: translateY(-14px) scale(1.025);
  box-shadow:
    0 30px 65px rgba(0, 34, 72, .40),
    inset 0 1px 0 rgba(255, 255, 255, .20);
}

.sdm-company-value-card:hover::after {
  border-color: rgba(255, 255, 255, .30);
  transform: scale(1.25) rotate(14deg);
}

.sdm-company-value-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 39px;
}

.sdm-company-value-number {
  color: #657186;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: color .3s ease;
}

.sdm-company-value-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sdm-about-blue);
  background: rgba(255, 255, 255, .88);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(18, 42, 68, .08);
  font-size: 23px;
  transition:
    color .35s ease,
    background .35s ease,
    transform .45s cubic-bezier(.2, .8, .2, 1);
}

.sdm-company-value-card:hover .sdm-company-value-number {
  color: rgba(255, 255, 255, .78);
}

.sdm-company-value-card:hover .sdm-company-value-icon {
  color: #f47721;
  background: #ffffff;
  transform: rotate(10deg) scale(1.12);
}

.sdm-company-value-card h3 {
  position: relative;
  z-index: 2;
  color: var(--sdm-about-navy);
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin: 0 0 14px;
  transition: color .3s ease;
}

.sdm-company-value-card p {
  position: relative;
  z-index: 2;
  color: #596578;
  font-size: 15px;
  line-height: 1.67;
  margin: 0;
  transition: color .3s ease;
}

.sdm-company-value-card:hover h3,
.sdm-company-value-card:hover p {
  color: #ffffff;
}

.sdm-company-value-line {
  position: absolute;
  z-index: 2;
  left: 29px;
  right: 29px;
  bottom: 20px;
  height: 3px;
  overflow: hidden;
  background: rgba(7, 90, 168, .20);
  border-radius: 999px;
}

.sdm-company-value-line::before {
  content: "";
  display: block;
  width: 24%;
  height: 100%;
  background: #f47721;
  border-radius: inherit;
  transition: width .45s cubic-bezier(.2, .8, .2, 1);
}

.sdm-company-value-card:hover .sdm-company-value-line {
  background: rgba(255, 255, 255, .34);
}

.sdm-company-value-card:hover .sdm-company-value-line::before {
  width: 72%;
}

/* Pastikan section gambar lama tidak tampil lagi. */
.sdm-company-values-image {
  display: none !important;
}

@media (max-width: 991.98px) {
  .sdm-company-values {
    padding: 82px 0 78px;
    background-attachment: scroll;
  }

  .sdm-company-values-heading {
    gap: 28px;
  }

  .sdm-company-values-heading > span {
    font-size: 30px;
  }

  .sdm-company-values-heading h2 {
    font-size: 76px;
  }
}

@media (max-width: 767.98px) {
  .sdm-company-values {
    padding: 66px 0 64px;
    background-position: center;
  }

  .sdm-company-values-heading {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .sdm-company-values-heading > span {
    font-size: 25px;
    margin-top: 0;
  }

  .sdm-company-values-heading h2 {
    font-size: 64px;
    line-height: .88;
  }

  .sdm-company-value-card {
    min-height: 255px;
  }
}

@media (max-width: 575.98px) {
  .sdm-company-values-overlay {
    background: rgba(7, 21, 39, .66);
  }

  .sdm-company-values-heading h2 {
    font-size: 56px;
  }

  .sdm-company-value-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
}

/* =========================================================
   PMI & ATP
   ========================================================= */
.sdm-about-partnership {
  padding: 98px 0 90px;
  background: var(--sdm-about-soft);
}

.sdm-about-partnership-title {
  max-width: 850px;
  margin-bottom: 54px;
}

.sdm-about-partnership-title > span {
  display: inline-block;
  color: var(--sdm-about-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 13px;
}

.sdm-about-partnership-title h2 {
  color: var(--sdm-about-ink);
  font-family: "Raleway", sans-serif;
  font-size: clamp(45px, 5.5vw, 75px);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: 1;
  margin: 0;
}

.sdm-about-partnership-row {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(440px, 1.35fr) minmax(230px, .75fr);
  gap: 55px;
  align-items: start;
  padding: 46px 0;
  border-top: 1px solid #aaa8a4;
}

.sdm-about-partnership-row:last-child {
  border-bottom: 1px solid #aaa8a4;
}

.sdm-about-partnership-label span {
  display: block;
  color: var(--sdm-about-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.sdm-about-partnership-label h3 {
  color: var(--sdm-about-ink);
  font-family: "Raleway", sans-serif;
  font-size: clamp(27px, 2.7vw, 39px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
  margin: 0;
}

.sdm-about-partnership-copy {
  color: #242424;
  font-size: 16px;
  line-height: 1.72;
}

.sdm-about-partnership-copy p {
  margin: 0 0 20px;
}

.sdm-about-partnership-copy h4 {
  color: var(--sdm-about-navy);
  font-size: 17px;
  font-weight: 800;
  margin: 25px 0 10px;
}

.sdm-about-partnership-copy ul {
  padding-left: 22px;
  margin: 0;
}

.sdm-about-partnership-copy li {
  margin-bottom: 7px;
}

.sdm-about-partnership-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
}

.sdm-about-partnership-logo img {
  display: block;
  width: 100%;
  max-width: 310px;
  max-height: 180px;
  object-fit: contain;
}

.sdm-about-partnership-logo-atp img {
  max-width: 230px;
  max-height: 230px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199.98px) {
  .sdm-about-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sdm-about-intro-heading span {
    font-size: clamp(78px, 12vw, 118px);
  }

  .sdm-about-intro-copy {
    max-width: 900px;
    padding-top: 0;
  }

  .sdm-about-partnership-row {
    grid-template-columns: 220px 1fr 230px;
    gap: 35px;
  }
}

@media (max-width: 991.98px) {
  .sdm-about-intro {
    padding: 72px 0 76px;
  }

  .sdm-about-intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sdm-about-intro-heading span {
    font-size: 100px;
  }

  .sdm-about-intro-copy {
    padding-top: 0;
  }

  .sdm-about-feature-section {
    padding: 64px 0;
  }

  .sdm-about-feature-card {
    min-height: auto;
  }

  .sdm-company-values {
    padding: 78px 0 76px;
  }

  .sdm-company-values-heading {
    grid-template-columns: 150px 1fr;
    gap: 24px;
  }

  .sdm-about-partnership {
    padding: 76px 0 70px;
  }

  .sdm-about-partnership-row {
    grid-template-columns: 210px 1fr;
  }

  .sdm-about-partnership-logo {
    grid-column: 2;
    justify-content: flex-start;
    min-height: auto;
    padding-top: 8px;
  }
}

@media (max-width: 767.98px) {
  .sdm-about-intro-heading span {
    font-size: 76px;
  }

  .sdm-about-feature-card {
    padding: 28px 24px 31px;
    border-radius: 19px;
  }

  .sdm-about-feature-card-head {
    margin-bottom: 38px;
  }

  .sdm-company-values-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sdm-company-values-heading > span {
    grid-column: 1;
    font-size: 18px;
    margin-top: 0;
  }

  .sdm-company-values-heading h2 {
    font-size: 58px;
  }

  .sdm-company-values-image {
    min-height: 350px;
  }

  .sdm-company-values-image-copy {
    left: 28px;
    right: 28px;
    bottom: 30px;
  }

  .sdm-about-partnership-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0;
  }

  .sdm-about-partnership-logo {
    grid-column: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .sdm-about-intro {
    padding: 54px 0 58px;
  }

  .sdm-about-intro-heading span {
    font-size: 60px;
  }

  .sdm-about-intro-copy p,
  .sdm-about-approach li,
  .sdm-about-approach strong {
    font-size: 16px;
  }

  .sdm-about-feature-section {
    min-height: auto;
    padding: 48px 0;
  }

  .sdm-about-feature-card h2 {
    font-size: 34px;
  }

  .sdm-company-values {
    padding: 60px 0;
  }

  .sdm-company-values-heading h2 {
    font-size: 50px;
  }

  .sdm-company-value-card {
    min-height: 245px;
  }

  .sdm-company-values-image {
    min-height: 310px;
    margin-top: 46px;
  }

  .sdm-company-values-image-copy h3 {
    font-size: 35px;
  }

  .sdm-about-partnership {
    padding: 60px 0 54px;
  }

  .sdm-about-partnership-title h2 {
    font-size: 44px;
  }

  .sdm-about-partnership-logo img {
    max-width: 270px;
  }

  .sdm-about-partnership-logo-atp img {
    max-width: 210px;
  }
}


/* =========================================================
   FOOTER GUARD
   Footer mengikuti layout dan CSS footer Home.
   ========================================================= */
body #footer.sdm-footer {
  position: relative;
  z-index: 1;
}


/* =========================================================
   MISSION & CLIENT VALUE - TANPA BACKGROUND GAMBAR
   ========================================================= */
.sdm-about-feature-section {
  min-height: auto !important;
  padding: 78px 0 !important;
  background: #f3f4f6 !important;
}

.sdm-about-feature-background {
  display: none !important;
}

.sdm-about-feature-section::before,
.sdm-about-feature-section::after {
  display: none !important;
}

.sdm-about-feature-card {
  background: #ffffff !important;
  border: 1px solid #e1e5eb !important;
  box-shadow: 0 18px 45px rgba(17, 34, 58, .10) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.sdm-about-feature-card:hover {
  background: #ffffff !important;
  box-shadow: 0 28px 60px rgba(17, 34, 58, .16) !important;
}

@media (max-width: 767.98px) {
  .sdm-about-feature-section {
    padding: 56px 0 !important;
  }
}
/* =========================================================
   EFEK ZOOM KARTU COMPANY CORE VALUES
   Tempel paling bawah sdm-about-page.css
   ========================================================= */

.sdm-company-values .row {
  overflow: visible;
}

.sdm-company-values .row > div {
  position: relative;
}

.sdm-company-values .sdm-company-value-card {
  cursor: pointer;
  transform-origin: center;
  will-change: transform;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease !important;
}

/* Efek ketika mouse menyentuh kartu */
@media (hover: hover) and (pointer: fine) {
  .sdm-company-values .sdm-company-value-card:hover {
    position: relative;
    z-index: 20;

    /* Naik 12px dan zoom 6% */
    transform: translateY(-12px) scale(1.06) !important;

    box-shadow:
      0 35px 75px rgba(0, 34, 72, 0.45),
      0 10px 25px rgba(0, 0, 0, 0.18) !important;
  }
}

/* Efek ketika disentuh pada HP */
.sdm-company-values .sdm-company-value-card:active {
  position: relative;
  z-index: 20;
  transform: scale(1.03) !important;
}
