/* ==========================================================================
   Site Footer — latar gradasi teal ke navy, tiga kolom berjudul kecil
   dengan garis rambut, strip logo partner, lalu baris copyright.
   ========================================================================== */

.site-footer {
  background: radial-gradient(
    120% 100% at 30% 0%,
    var(--ink) 0%,
    var(--ink-dark) 55%,
    var(--ink-darkest) 100%
  );
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 24px 72px;
  box-sizing: border-box;
}

/* --- Baris intro CTA --- */
.site-footer__intro {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  text-align: center;
}

.site-footer__intro-text {
  max-width: 640px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--on-dark);
}

/* --- Tiga kolom --- */
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.fcol__title {
  margin: 0 0 18px;
  padding-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 1px solid rgb(255 255 255 / 0.22);
}

.fcol__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fcol__list li {
  margin-bottom: 12px;
}

.fcol__list li:last-child {
  margin-bottom: 0;
}

.fcol__list a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  color: var(--on-dark);
  transition: color 0.3s ease;
}

.fcol__list a:hover {
  color: var(--gold);
}

/* --- Blok label + nilai (kolom Contact) --- */
.fcol__block {
  margin-bottom: 22px;
}

.fcol__block:last-child {
  margin-bottom: 0;
}

.fcol__label {
  margin: 0 0 4px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}

.fcol__value {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--on-dark);
}

.fcol__value a {
  color: var(--on-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fcol__value a:hover {
  color: var(--gold);
}

/* --- Strip logo partner --- */
.site-footer__partners {
  margin-top: 72px;
}

.site-footer__partners-label {
  margin: 0 0 20px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: rgb(255 255 255 / 0.65);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.partner-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgb(255 255 255 / 0.05);
  transition: background-color 0.3s ease;
}

.partner-strip__item:hover {
  background: rgb(255 255 255 / 0.12);
}

.partner-strip__item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
}

/* --- Baris copyright --- */
.site-footer__bar {
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.site-footer__bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.site-footer__brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer__copy {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--on-dark);
}

@media (max-width: 900px) {
  .site-footer__inner {
    padding: 56px 24px 48px;
  }

  .site-footer__intro {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .site-footer__intro-text {
    font-size: 14px;
  }

  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__partners {
    margin-top: 48px;
  }

  .partner-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-strip__item {
    padding: 16px;
  }

  .partner-strip__item img {
    height: 44px;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__copy {
    text-align: center;
  }
}
