:root {
  --hero-bg-width: 2667px;
  --page-width: 100%;
  --nav-height: 64px;
  --wk-green: #004f38;
  --wk-green-soft: #2d7b55;
  --wk-gold: #d4aa54;
  --wk-gold-gradient: linear-gradient(90deg, #a8883e 0%, #d4af6b 40%, #d4af6b 100%);
  --wk-black: #000000;
  --wk-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--wk-black);
  font-family: "Poppins";
  background: var(--wk-white);
}

main {
  width: 100%;
  margin-inline: auto;
}

.site-container {
  width: min(calc(100% - 80px), 1200px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--nav-height);
  background: var(--wk-white);
}

.site-header__brand {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  display: block;
  width: clamp(158px, 13.2vw, 216px);
  line-height: 0;
}

.site-header__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3.2vw, 82px);
  width: 100%;
  height: var(--nav-height);
  padding: 0 clamp(34px, 6.2vw, 170px) 0 clamp(216px, 17.6vw, 280px);
  color: var(--wk-white);
  background: var(--wk-green);
}

.site-header__nav,
.site-header__actions {
  display: flex;
  align-items: center;
}

.site-header__nav {
  flex: 1;
  justify-content: center;
  gap: 40px;
}

.site-header a,
.site-header button {
  color: inherit;
  font: inherit;
}

.site-header__nav a {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-header__nav a span {
  font-weight: inherit;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible,
.site-header__nav-toggle:hover,
.site-header__nav-toggle:focus-visible {
  color: var(--wk-gold);
}

.site-header__nav-dropdown {
  position: relative;
  color: var(--wk-white);
}

.site-header__nav-dropdown summary {
  list-style: none;
}

.site-header__nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-header__nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-header__nav-toggle span[aria-hidden="true"] {
  font-size: 12px;
  transition: transform 180ms ease;
}

.site-header__nav-dropdown[open] .site-header__nav-toggle span[aria-hidden="true"] {
  transform: rotate(180deg);
}

.site-header__nav-dropdown:hover .site-header__nav-toggle span[aria-hidden="true"],
.site-header__nav-dropdown:focus-within .site-header__nav-toggle span[aria-hidden="true"] {
  transform: rotate(180deg);
}

.site-header__nav-menu {
  position: absolute;
  z-index: 150;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  width: 238px;
  overflow: hidden;
  border: 1px solid #dde4ee;
  border-radius: 12px;
  background: var(--wk-white);
  color: #1f2b40;
  box-shadow: 0 20px 40px rgba(13, 38, 59, 0.18);
  transform: translateX(-50%);
}

.site-header__nav-dropdown:hover .site-header__nav-menu,
.site-header__nav-dropdown:focus-within .site-header__nav-menu {
  display: grid;
}

.site-header__nav-menu-group {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
}

.site-header__nav-menu-group + .site-header__nav-menu-group {
  border-top: 1px solid #dde4ee;
}

.site-header__nav-menu-group h3 {
  margin: 0 0 2px;
  color: #aeb4bf;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.site-header__nav-menu-group a {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  min-height: 30px;
  color: #1f2b40;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.site-header__nav-menu-group a:hover,
.site-header__nav-menu-group a:focus-visible {
  color: var(--wk-green);
}

.site-header__nav-menu-group img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(72%) sepia(42%) saturate(526%) hue-rotate(359deg) brightness(89%) contrast(87%);
}

.site-header__country,
.site-header__language,
.site-header__login {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
}

.site-header .site-header__country {
  font-weight: 600;
}

.site-header .site-header__language {
  font-weight: 600;
}

.site-header .site-header__login {
  font-weight: 700;
}

.site-header__actions {
  gap: clamp(18px, 2vw, 48px);
}

.site-header__language {
  position: relative;
  color: var(--wk-white);
}

.site-header__language summary,
.site-header__mobile-language summary {
  list-style: none;
}

.site-header__language summary::-webkit-details-marker,
.site-header__mobile-language summary::-webkit-details-marker {
  display: none;
}

.site-header__language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-header__language > .site-header__language-toggle {
  font-size: 16px;
}

.site-header__language-arrow {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transition: transform 180ms ease;
}

.site-header__language[open] .site-header__language-arrow,
.site-header__mobile-language[open] .site-header__language-arrow {
  transform: rotate(180deg);
}

.site-header__language-menu {
  position: absolute;
  z-index: 150;
  top: calc(100% + 18px);
  right: -18px;
  display: grid;
  min-width: 190px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid #dde4ee;
  border-radius: 8px;
  background: var(--wk-white);
  color: #1f2b40;
  box-shadow: 0 20px 40px rgba(13, 38, 59, 0.18);
}

.site-header__language-menu a {
  padding: 12px 14px;
  border-radius: 6px;
  color: #1f2b40;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.site-header__language-menu a:hover,
.site-header__language-menu a:focus-visible,
.site-header__language-menu a.is-active {
  color: var(--wk-green);
  background: #f0f6f3;
}

.site-header__country {
  position: relative;
  color: var(--wk-white);
}

.site-header__country summary {
  list-style: none;
}

.site-header__country summary::-webkit-details-marker {
  display: none;
}

.site-header__country-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
}

.site-header__flag-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--wk-white);
  box-shadow: 0 4px 10px rgba(13, 38, 59, 0.16);
  flex: 0 0 auto;
}

.site-header__flag-ring img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header__country-arrow {
  display: inline-block;
  color: inherit;
  font-size: 13px;
  line-height: 1;
  transition: transform 180ms ease;
}

.site-header__country[open] .site-header__country-arrow {
  transform: rotate(180deg);
}

.site-header__country-menu {
  position: absolute;
  z-index: 150;
  top: calc(100% + 18px);
  right: -20px;
  display: grid;
  width: 250px;
  overflow: hidden;
  border: 1px solid #dde4ee;
  border-radius: 12px;
  background: var(--wk-white);
  color: #1f2b40;
  box-shadow: 0 20px 40px rgba(13, 38, 59, 0.18);
}

.site-header__country-group {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.site-header__country-group + .site-header__country-group {
  border-top: 1px solid #dde4ee;
}

.site-header__country-group h3 {
  margin: 0 0 4px;
  color: #c4c8cf;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.site-header__country-option {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f2b40;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.site-header__country-option:hover,
.site-header__country-option:focus-visible,
.site-header__country-option.is-active {
  color: var(--wk-green);
}

.site-header__country-option.is-muted,
.site-header__country-option:disabled {
  color: #aeb4bf;
  cursor: not-allowed;
  opacity: 0.48;
  pointer-events: none;
}

.site-header__country-option.is-muted .site-header__flag-ring,
.site-header__country-option:disabled .site-header__flag-ring {
  filter: grayscale(0.1);
  opacity: 0.65;
}

.site-header__flag {
  display: block;
  width: 28px;
  height: 28px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
}

.site-header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 32px;
  min-height: 32px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--wk-white);
  background: var(--wk-gold-gradient);
  font-size: 12px;
  font-family: "Poppins";
  font-weight: 700;
  line-height: 1;
}

.site-header__mobile-menu {
  display: none;
  position: relative;
  z-index: 110;
}

.site-header__mobile-menu > summary {
  display: grid;
  place-items: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: url("Asset/burger menu.png") center / contain no-repeat;
  cursor: pointer;
  list-style: none;
}

.site-header__mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.site-header__mobile-menu > summary > span {
  display: none;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--wk-white);
}

.site-header__mobile-actions,
.site-header__mobile-menu nav {
  position: absolute;
  right: 0;
}

.site-header__mobile-actions {
  top: calc(100% + 15px);
  display: none;
}

.site-header__mobile-menu nav {
  top: calc(100% + 15px);
  display: grid;
  min-width: 210px;
  padding: 10px;
  border-radius: 8px;
  background: var(--wk-green);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.site-header__mobile-language,
.site-header__mobile-login {
  color: inherit;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.site-header__mobile-language {
  font-weight: 600;
}

.site-header__mobile-login {
  font-weight: 700;
}

.site-header .site-header__mobile-language {
  font-weight: 600;
}

.site-header .site-header__mobile-login {
  color: var(--wk-white);
  font-weight: 700;
}

.site-header__mobile-menu nav a {
  padding: 12px 14px;
  color: var(--wk-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__mobile-nav-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header__mobile-nav-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  color: var(--wk-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  list-style: none;
  cursor: pointer;
}

.site-header__mobile-nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-header__mobile-nav-link {
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.site-header__mobile-nav-link:focus-visible {
  outline: 3px solid rgba(201, 163, 74, 0.32);
  outline-offset: 4px;
}

.site-header__mobile-nav-dropdown summary span[aria-hidden="true"] {
  font-size: 11px;
  transition: transform 180ms ease;
}

.site-header__mobile-nav-dropdown[open] summary span[aria-hidden="true"] {
  transform: rotate(180deg);
}

.site-header__mobile-nav-menu {
  display: grid;
  gap: 6px;
  padding: 0 14px 14px 28px;
}

.site-header__mobile-menu nav .site-header__mobile-nav-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
}

.site-header__mobile-nav-menu img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(42%) saturate(526%) hue-rotate(359deg) brightness(89%) contrast(87%);
}

.site-header__mobile-menu nav a:hover,
.site-header__mobile-menu nav a:focus-visible {
  color: var(--wk-gold);
}

@media (max-width: 1400px) {
  .site-header__bar {
    gap: 20px;
    padding: 0 26px 0 216px;
  }

  .site-header__nav {
    gap: 40px;
  }

  .site-header__actions {
    gap: 18px;
  }

  .site-header__country,
  .site-header__language,
  .site-header__login {
    font-size: 12px;
  }

  .site-header__login {
    height: 28px;
    min-height: 28px;
    padding-inline: 24px;
    font-weight: 700;
  }
}

.hero,
.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  background: #eef7f4;
}

.hero-section__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-section__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 700ms ease;
}

.hero-section__slide.is-active {
  opacity: 1;
}

.hero-section__slide--wasiat {
  background-image: url("Asset/Home_Hero_Background.webp");
}

.hero-section__slide--hibah {
  background-image: url("Asset/Heropage_Hibah.webp");
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 520px;
  margin-left: 0;
  animation: heroContentIn 760ms ease-out 120ms both;
}

.hero-content[hidden] {
  display: none;
}

.hero-section .subtitle {
  margin: 0;
  color: var(--wk-black);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-section .main-title {
  margin: 0;
  color: var(--wk-black);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-section .hero-content--hibah .main-title {
  font-size: 60px;
}

.hero-section .hero-content--hibah .main-title .text-black {
  font-size: 55px;
}

.hero-section .main-title .text-green {
  display: block;
  color: var(--wk-green);
}

.hero-section .main-title .text-black {
  display: block;
  color: var(--wk-black);
}

.hero-section .description-highlight {
  margin: 0.5rem 0 0;
  color: var(--wk-black);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-section .hero-content--hibah .description-highlight {
  font-size: 15px;
}

.hero-section .description {
  margin: 0;
  color: var(--wk-black);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-section .hero-content--hibah .description {
  font-size: 14px;
}

.hero-section .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 14px 32px;
  border-radius: 999px;
  color: var(--wk-white);
  background: linear-gradient(90deg, #1f4e3a 0%, #33744f 40%, #33744f 100%);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    filter 180ms ease,
    transform 180ms ease;
  animation: heroButtonIn 760ms ease-out 460ms both;
}

.hero-section .hero-content--hibah .btn-primary {
  background: var(--wk-gold-gradient);
}

.hero-section .btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.hero-section .btn-primary:focus-visible {
  outline: 3px solid rgba(0, 79, 56, 0.35);
  outline-offset: 4px;
}

.hero-section__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(112px, 7vw, 142px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(6px);
}

.hero-section__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 79, 56, 0.28);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.hero-section__dot.is-active {
  width: 34px;
  background: var(--wk-green);
}

.hero-section__dot:hover,
.hero-section__dot:focus-visible {
  transform: scale(1.08);
}

.hero-section__dot:focus-visible {
  outline: 3px solid rgba(0, 79, 56, 0.22);
  outline-offset: 4px;
}

.quick-plan-section {
  position: relative;
  z-index: 7;
  margin-top: clamp(-92px, -4.8vw, -56px);
  margin-bottom: clamp(32px, 3vw, 72px);
  padding: 0;
  background: transparent;
  color: var(--wk-black);
}

.quick-plan-section__inner {
  width: min(80%, 1510px);
  margin: 0 auto;
  padding: clamp(14px, 1.2vw, 32px) clamp(15px, 2.3vw, 62px);
  border: 1px solid rgba(0, 79, 56, 0.06);
  border-radius: 8px;
  background: var(--wk-white);
  box-shadow: 0 24px 54px rgba(0, 79, 56, 0.12);
}

.quick-plan-tabs {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 5px;
  min-height: clamp(41px, 2.37vw, 62px);
  margin-bottom: clamp(14px, 1.15vw, 31px);
  padding: 5px;
  border-radius: 999px;
  background: #f4f4f4;
}

.quick-plan-mobile-select {
  display: none;
}

.quick-plan-mobile-select select {
  width: 100%;
  min-height: 54px;
  padding: 0 54px 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--wk-white);
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) right 24px center / 7px 7px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) right 17px center / 7px 7px no-repeat,
    linear-gradient(90deg, #1f4e3a 0%, #33744f 100%);
  box-shadow: inset 0 0 0 6px #f4f4f4;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  appearance: none;
  cursor: pointer;
}

.quick-plan-mobile-select select:focus-visible {
  outline: 3px solid rgba(0, 79, 56, 0.22);
  outline-offset: 4px;
}

.quick-plan-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: clamp(141px, 10.24vw, 250px);
  border: 0;
  border-radius: 999px;
  color: var(--wk-black);
  background: transparent;
  font: inherit;
  font-size: clamp(12px, 0.93vw, 23px);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.quick-plan-tab.is-active {
  color: var(--wk-white);
  background: linear-gradient(90deg, #1f4e3a 0%, #33744f 100%);
}

.quick-plan-tab__icon {
  width: clamp(12px, 0.8vw, 21px);
  height: clamp(12px, 0.8vw, 21px);
  object-fit: contain;
}

.quick-plan-tab__icon--light,
.quick-plan-tab.is-active .quick-plan-tab__icon--dark {
  display: none;
}

.quick-plan-tab.is-active .quick-plan-tab__icon--light {
  display: block;
}

.quick-plan-tab__icon--faraid {
  filter: brightness(0);
}

.quick-plan-tab.is-active .quick-plan-tab__icon--faraid {
  filter: none;
}

.quick-plan-tab:hover,
.quick-plan-tab:focus-visible {
  transform: translateY(-1px);
}

.quick-plan-panel {
  display: grid;
  grid-template-columns: minmax(179px, 0.92fr) minmax(358px, 1.7fr) auto;
  align-items: center;
  gap: clamp(21px, 1.92vw, 53px);
}

.quick-plan-panel[hidden] {
  display: none;
}

.quick-plan-panel[data-plan-panel="smarthibah"],
.quick-plan-panel[data-plan-panel="package"] {
  grid-template-columns: minmax(486px, 1fr) auto;
}

.quick-plan-panel--faraid {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: clamp(190px, 11vw, 250px);
}

.quick-plan-panel.quick-plan-panel--package {
  grid-template-columns: 1fr;
}

.quick-plan-control label,
.quick-plan-options h2 {
  display: block;
  margin: 0 0 clamp(6px, 0.5vw, 13px);
  color: var(--wk-green);
  font-size: clamp(12px, 0.78vw, 21px);
  font-weight: 700;
  line-height: 1.15;
}

.quick-plan-control select {
  width: 100%;
  min-height: clamp(28px, 1.73vw, 46px);
  padding: 0 30px 0 0;
  border: 0;
  color: var(--wk-black);
  background: transparent;
  font: inherit;
  font-size: clamp(12px, 0.91vw, 23px);
  font-weight: 600;
  line-height: 1.15;
  cursor: pointer;
}

.quick-plan-control select:focus-visible {
  outline: 3px solid rgba(0, 79, 56, 0.2);
  outline-offset: 6px;
}

.quick-plan-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(192px, 1fr));
  gap: clamp(15px, 1.02vw, 27px);
}

.quick-plan-cards--three {
  grid-template-columns: repeat(3, minmax(176px, 1fr));
}

.quick-plan-package-cards {
  align-items: start;
}

.quick-plan-package-card {
  display: grid;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f1f1f1;
  overflow: hidden;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.quick-plan-package-card:hover,
.quick-plan-package-card:focus-within {
  border-color: var(--wk-gold);
  background: #f8fcf9;
  transform: translateY(-6px);
}

.quick-plan-package-card.is-selected {
  border-color: var(--wk-gold);
  background: #f8fcf9;
}

.quick-plan-card {
  position: relative;
  display: grid;
  gap: clamp(5px, 0.45vw, 11px);
  min-height: clamp(58px, 3.8vw, 96px);
  padding: clamp(11px, 0.75vw, 20px);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--wk-black);
  background: #f1f1f1;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.quick-plan-card:hover,
.quick-plan-card:focus-visible {
  border-color: var(--wk-gold);
  background: #f8fcf9;
  transform: translateY(-6px);
}

.quick-plan-card.is-selected {
  border-color: var(--wk-gold);
  background: #f8fcf9;
}

.quick-plan-package-card__toggle {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding-right: clamp(48px, 3.1vw, 68px);
  transition: none;
}

.quick-plan-package-card__toggle:hover,
.quick-plan-package-card__toggle:focus-visible,
.quick-plan-package-card__toggle.is-selected {
  border-color: transparent;
  background: transparent;
  transform: none;
}

.quick-plan-package-card__toggle::after {
  content: "";
  position: absolute;
  top: clamp(12px, 0.85vw, 20px);
  right: clamp(12px, 0.85vw, 20px);
  display: grid;
  place-items: center;
  width: clamp(22px, 1.35vw, 32px);
  height: clamp(22px, 1.35vw, 32px);
  border: 2px solid #d7dfda;
  border-radius: 999px;
  color: var(--wk-white);
  background: var(--wk-white);
  font-size: clamp(13px, 0.78vw, 18px);
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.quick-plan-package-card__toggle.is-selected::after {
  content: "✓";
  border-color: var(--wk-gold);
  background: var(--wk-gold);
  color: var(--wk-white);
}

.quick-plan-card span {
  color: var(--wk-green);
  font-size: clamp(12px, 0.78vw, 21px);
  font-weight: 700;
  line-height: 1.12;
}

.quick-plan-card strong {
  color: var(--wk-black);
  font-size: clamp(13px, 0.88vw, 23px);
  font-weight: 600;
  line-height: 1.05;
}

.quick-plan-card small {
  color: #8c8c8c;
  font-size: clamp(9px, 0.53vw, 13px);
  font-weight: 400;
  line-height: 1.35;
}

.quick-plan-card.is-unavailable {
  color: #7a7f82;
  background: #e2e5e7;
  cursor: not-allowed;
  opacity: 1;
}

.quick-plan-card.is-unavailable span,
.quick-plan-card.is-unavailable strong,
.quick-plan-card.is-unavailable small {
  color: #7a7f82;
}

.quick-plan-card.is-unavailable:hover,
.quick-plan-card.is-unavailable:focus-visible {
  border-color: transparent;
  background: #e2e5e7;
  box-shadow: none;
  transform: none;
}

.quick-plan-package-detail {
  display: grid;
  gap: clamp(14px, 0.9vw, 22px);
  margin: 0 clamp(14px, 0.85vw, 22px) clamp(14px, 0.85vw, 22px);
  padding: clamp(16px, 1vw, 26px) 0 0;
  border-top: 1px solid rgba(0, 79, 56, 0.18);
}

.quick-plan-package-detail[hidden] {
  display: none;
}

.quick-plan-package-feature {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--wk-black);
  font-size: clamp(12px, 0.72vw, 18px);
  line-height: 1.28;
}

.quick-plan-package-feature img {
  width: 15px;
  margin-top: 2px;
}

.quick-plan-package-feature b {
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}

.quick-plan-package-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(38px, 2.3vw, 54px);
  margin-top: clamp(6px, 0.4vw, 12px);
  border-radius: 999px;
  color: var(--wk-white);
  background: linear-gradient(90deg, #1f4e3a 0%, #33744f 100%);
  font-size: clamp(13px, 0.78vw, 19px);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.quick-plan-package-start:hover,
.quick-plan-package-start:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.quick-plan-faraid-copy {
  max-width: 1040px;
}

.quick-plan-faraid-copy h2 {
  margin: 0 0 clamp(16px, 1.15vw, 28px);
  color: var(--wk-green);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.quick-plan-faraid-copy p {
  margin: 0;
  color: var(--wk-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.quick-plan-faraid-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.quick-plan-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(11px, 0.9vw, 22px);
  min-width: clamp(122px, 7.04vw, 190px);
  min-height: clamp(30px, 1.92vw, 51px);
  padding: 0 clamp(17px, 1.15vw, 30px);
  border-radius: 999px;
  color: var(--wk-white);
  background: var(--wk-gold-gradient);
  font-size: clamp(12px, 0.86vw, 22px);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.quick-plan-start:hover,
.quick-plan-start:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.quick-plan-help {
  margin: clamp(10px, 0.8vw, 21px) 0 0;
  color: #8c8c8c;
  font-size: clamp(9px, 0.53vw, 13px);
  font-weight: 400;
  line-height: 1.35;
}

.quick-plan-help a {
  color: #168cc6;
  font-weight: 700;
  font-style: italic;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.motion-ready main > section {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready main > section:nth-of-type(2) {
  transition-delay: 90ms;
}

.motion-ready main > section:nth-of-type(3) {
  transition-delay: 120ms;
}

.motion-ready main > section:nth-of-type(4) {
  transition-delay: 150ms;
}

.motion-ready main > section.section-visible {
  opacity: 1;
  transform: translateY(0);
}

body.pelan-harga-page.motion-ready .main-pelan-harga-section,
body.pelan-harga-page.motion-ready .harga-plan-section,
body.pelan-harga-page.motion-ready .harga-smartfaraid,
body.pelan-harga-page.motion-ready .harga-faraid-importance__inner,
body.pelan-harga-page.motion-ready .harga-faraid-risks__inner,
body.pelan-harga-page.motion-ready .harga-faraid-benefits__header,
body.pelan-harga-page.motion-ready .harga-faraid-process__header,
body.pelan-harga-page.motion-ready .harga-faraid-audience__header,
body.pelan-harga-page.motion-ready .harga-faraid-documents h2,
body.pelan-harga-page.motion-ready .harga-faraid-cta__inner,
body.pelan-harga-page.motion-ready .harga-faraid-importance__card,
body.pelan-harga-page.motion-ready .harga-faraid-risks__card,
body.pelan-harga-page.motion-ready .harga-faraid-benefits__item,
body.pelan-harga-page.motion-ready .harga-faraid-process__step,
body.pelan-harga-page.motion-ready .harga-faraid-audience__card,
body.pelan-harga-page.motion-ready .harga-faraid-documents__item {
  opacity: 1;
  transform: none;
  animation: none;
  transition: none;
}

.motion-ready main > section.kepimpinan-section {
  opacity: 1;
  transform: none;
  transition: none;
}

.motion-ready .quick-plan-section .quick-plan-card {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .quick-plan-section.section-visible .quick-plan-card {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .quick-plan-section.section-visible .quick-plan-card:nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .quick-plan-section.section-visible .quick-plan-card:nth-child(2) {
  animation-delay: 260ms;
}

.motion-ready .quick-plan-section.section-visible .quick-plan-card:nth-child(3) {
  animation-delay: 400ms;
}

.motion-ready .section-visible .apakah-wasiat__inner {
  animation: sectionInnerIn 780ms ease-out both;
}

.motion-ready .section-visible .main-tentangkami-section__content {
  animation: sectionInnerIn 780ms ease-out both;
}

.motion-ready .siapakah-tentangkami-section__content,
.motion-ready .siapakah-tentangkami-section__laptop {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .siapakah-tentangkami-section.section-visible .siapakah-tentangkami-section__content {
  animation: sectionInnerIn 760ms ease-out 120ms both;
}

.motion-ready .siapakah-tentangkami-section.section-visible .siapakah-tentangkami-section__laptop {
  animation: sectionInnerIn 760ms ease-out 280ms both;
}

.motion-ready .visi-misi-section .visi-misi-box-image,
.motion-ready .visi-misi-section .visi-misi-values-box {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .visi-misi-section.section-visible .visi-misi-box-image,
.motion-ready .visi-misi-section.section-visible .visi-misi-values-box {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .visi-misi-section.section-visible .visi-misi-box-image:nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .visi-misi-section.section-visible .visi-misi-box-image:nth-child(2) {
  animation-delay: 240ms;
}

.motion-ready .visi-misi-section.section-visible .visi-misi-values-box {
  animation-delay: 360ms;
}

.motion-ready .pencapaian-tentangkami-section .pencapaian-tentangkami-card {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .pencapaian-tentangkami-section.section-visible .pencapaian-tentangkami-card {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .pencapaian-tentangkami-section.section-visible .pencapaian-tentangkami-card:nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .pencapaian-tentangkami-section.section-visible .pencapaian-tentangkami-card:nth-child(2) {
  animation-delay: 260ms;
}

.motion-ready .pencapaian-tentangkami-section.section-visible .pencapaian-tentangkami-card:nth-child(3) {
  animation-delay: 400ms;
}

.motion-ready .metrics-section .metric-card {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .metrics-section.section-visible .metric-card {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .metrics-section.section-visible .metric-card:nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .metrics-section.section-visible .metric-card:nth-child(2) {
  animation-delay: 300ms;
}

.motion-ready .metrics-section.section-visible .metric-card:nth-child(3) {
  animation-delay: 480ms;
}

.motion-ready .how-it-works .step {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .how-it-works.section-visible .step {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .how-it-works.section-visible .step:nth-child(1) {
  animation-delay: 160ms;
}

.motion-ready .how-it-works.section-visible .step:nth-child(2) {
  animation-delay: 340ms;
}

.motion-ready .how-it-works.section-visible .step:nth-child(3) {
  animation-delay: 520ms;
}

.motion-ready .kepentingan-section .kepentingan-card {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .kepentingan-section.section-visible .kepentingan-card {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .kepentingan-section.section-visible .kepentingan-card:nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .kepentingan-section.section-visible .kepentingan-card:nth-child(2) {
  animation-delay: 240ms;
}

.motion-ready .kepentingan-section.section-visible .kepentingan-card:nth-child(3) {
  animation-delay: 360ms;
}

.motion-ready .kepentingan-section.section-visible .kepentingan-card:nth-child(4) {
  animation-delay: 480ms;
}

.motion-ready .kepentingan-section.section-visible .kepentingan-card:nth-child(5) {
  animation-delay: 600ms;
}

.motion-ready .kepentingan-section.section-visible .kepentingan-card:nth-child(6) {
  animation-delay: 720ms;
}

.motion-ready .kelebihan-section .kelebihan-item {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .kelebihan-section.section-visible .kelebihan-item {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .kelebihan-section.section-visible .kelebihan-item:nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .kelebihan-section.section-visible .kelebihan-item:nth-child(2) {
  animation-delay: 220ms;
}

.motion-ready .kelebihan-section.section-visible .kelebihan-item:nth-child(3) {
  animation-delay: 320ms;
}

.motion-ready .kelebihan-section.section-visible .kelebihan-item:nth-child(4) {
  animation-delay: 420ms;
}

.motion-ready .kelebihan-section.section-visible .kelebihan-item:nth-child(5) {
  animation-delay: 520ms;
}

.motion-ready .kelebihan-section.section-visible .kelebihan-item:nth-child(6) {
  animation-delay: 620ms;
}

.motion-ready .testimonial-section .testimonial-card {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .testimonial-section.section-visible .testimonial-card {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .testimonial-section.section-visible .testimonial-card:nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .testimonial-section.section-visible .testimonial-card:nth-child(2) {
  animation-delay: 260ms;
}

.motion-ready .testimonial-section.section-visible .testimonial-card:nth-child(3) {
  animation-delay: 400ms;
}

.motion-ready .faq-section .faq-item {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .faq-section.section-visible .faq-item {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .faq-section.section-visible .faq-item:nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .faq-section.section-visible .faq-item:nth-child(2) {
  animation-delay: 260ms;
}

.motion-ready .faq-section.section-visible .faq-item:nth-child(3) {
  animation-delay: 400ms;
}

.motion-ready .faq-section.section-visible .faq-item:nth-child(4) {
  animation-delay: 540ms;
}

.motion-ready .section-visible .cta-section__inner {
  animation: sectionInnerIn 780ms ease-out both;
}

.motion-ready .harga-smartfaraid,
.motion-ready .harga-faraid-importance__inner,
.motion-ready .harga-faraid-risks__inner,
.motion-ready .harga-faraid-benefits__header,
.motion-ready .harga-faraid-process__header,
.motion-ready .harga-faraid-audience__header,
.motion-ready .harga-faraid-documents h2,
.motion-ready .harga-faraid-cta__inner {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .harga-smartfaraid.section-visible,
.motion-ready .harga-faraid-importance.section-visible .harga-faraid-importance__inner,
.motion-ready .harga-faraid-risks.section-visible .harga-faraid-risks__inner,
.motion-ready .harga-faraid-benefits.section-visible .harga-faraid-benefits__header,
.motion-ready .harga-faraid-process.section-visible .harga-faraid-process__header,
.motion-ready .harga-faraid-audience.section-visible .harga-faraid-audience__header,
.motion-ready .harga-faraid-documents.section-visible h2,
.motion-ready .harga-faraid-cta.section-visible .harga-faraid-cta__inner {
  animation: sectionInnerIn 760ms ease-out both;
}

.motion-ready .harga-faraid-importance__card,
.motion-ready .harga-faraid-risks__card,
.motion-ready .harga-faraid-benefits__item,
.motion-ready .harga-faraid-process__step,
.motion-ready .harga-faraid-audience__card,
.motion-ready .harga-faraid-documents__item {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .harga-faraid-importance.section-visible .harga-faraid-importance__card,
.motion-ready .harga-faraid-risks.section-visible .harga-faraid-risks__card,
.motion-ready .harga-faraid-benefits.section-visible .harga-faraid-benefits__item,
.motion-ready .harga-faraid-process.section-visible .harga-faraid-process__step,
.motion-ready .harga-faraid-audience.section-visible .harga-faraid-audience__card,
.motion-ready .harga-faraid-documents.section-visible .harga-faraid-documents__item {
  animation: sectionInnerIn 680ms ease-out both;
}

.motion-ready .harga-faraid-importance.section-visible .harga-faraid-importance__card:nth-child(1),
.motion-ready .harga-faraid-risks.section-visible .harga-faraid-risks__card:nth-child(1),
.motion-ready .harga-faraid-benefits.section-visible .harga-faraid-benefits__item:nth-child(1),
.motion-ready .harga-faraid-process.section-visible .harga-faraid-process__step:nth-child(1),
.motion-ready .harga-faraid-audience.section-visible .harga-faraid-audience__card:nth-child(1),
.motion-ready .harga-faraid-documents.section-visible .harga-faraid-documents__item:nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .harga-faraid-importance.section-visible .harga-faraid-importance__card:nth-child(2),
.motion-ready .harga-faraid-risks.section-visible .harga-faraid-risks__card:nth-child(2),
.motion-ready .harga-faraid-benefits.section-visible .harga-faraid-benefits__item:nth-child(2),
.motion-ready .harga-faraid-process.section-visible .harga-faraid-process__step:nth-child(2),
.motion-ready .harga-faraid-audience.section-visible .harga-faraid-audience__card:nth-child(2),
.motion-ready .harga-faraid-documents.section-visible .harga-faraid-documents__item:nth-child(2) {
  animation-delay: 240ms;
}

.motion-ready .harga-faraid-importance.section-visible .harga-faraid-importance__card:nth-child(3),
.motion-ready .harga-faraid-risks.section-visible .harga-faraid-risks__card:nth-child(3),
.motion-ready .harga-faraid-benefits.section-visible .harga-faraid-benefits__item:nth-child(3),
.motion-ready .harga-faraid-process.section-visible .harga-faraid-process__step:nth-child(3),
.motion-ready .harga-faraid-audience.section-visible .harga-faraid-audience__card:nth-child(3),
.motion-ready .harga-faraid-documents.section-visible .harga-faraid-documents__item:nth-child(3) {
  animation-delay: 360ms;
}

.motion-ready .harga-faraid-risks.section-visible .harga-faraid-risks__card:nth-child(4),
.motion-ready .harga-faraid-benefits.section-visible .harga-faraid-benefits__item:nth-child(4),
.motion-ready .harga-faraid-process.section-visible .harga-faraid-process__step:nth-child(4),
.motion-ready .harga-faraid-audience.section-visible .harga-faraid-audience__card:nth-child(4),
.motion-ready .harga-faraid-documents.section-visible .harga-faraid-documents__item:nth-child(4) {
  animation-delay: 480ms;
}

.motion-ready .harga-faraid-risks.section-visible .harga-faraid-risks__card:nth-child(5),
.motion-ready .harga-faraid-audience.section-visible .harga-faraid-audience__card:nth-child(5) {
  animation-delay: 600ms;
}

.motion-ready .harga-faraid-risks.section-visible .harga-faraid-risks__card:nth-child(6) {
  animation-delay: 720ms;
}

@keyframes sectionInnerIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.metrics-section {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 2667 / 459;
  min-height: 220px;
  overflow: hidden;
  color: var(--wk-white);
  background-color: #004f38;
  background-image: url("Asset/Metric_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .motion-ready main > section {
    opacity: 1;
    transform: none;
  }
}

.metrics-section__grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  justify-content: center;
  gap: 150px;
  width: 100%;
  padding: clamp(32px, 4.5vw, 96px) clamp(80px, 11.8vw, 315px) clamp(38px, 4.8vw, 102px);
}

.metric-card {
  display: grid;
  justify-items: center;
  gap: clamp(8px, 0.9vw, 18px);
  text-align: center;
}

.metric-card + .metric-card {
  position: relative;
}

.metric-card + .metric-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -75px;
  width: 1px;
  height: clamp(40px, 4.1vw, 82px);
  background: var(--wk-gold);
  transform: translateY(-50%);
}

.metric-card strong {
  color: var(--wk-gold);
  font-size: clamp(34px, 3.6vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.metric-card span {
  font-size: clamp(13px, 1vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.how-it-works {
  padding: 100px 0;
  background: var(--wk-white);
  color: var(--wk-black);
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 4rem 0 4rem clamp(32px, 8vw, 170px);
}

.content-left,
.content-right {
  flex: 1;
  min-width: 300px;
}

.subtitle {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.main-title {
  margin: 0 0 2rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.main-title .highlight {
  color: var(--wk-green);
}

.main-title__line {
  display: inline-block;
  transform: translateY(10px);
  white-space: nowrap;
}

.platform-desc {
  margin: 0 0 3rem;
  color: var(--wk-black);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  min-width: 40px;
  color: var(--wk-green);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.step-content h3 {
  margin: 0 0 0.5rem;
  color: var(--wk-green);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.step-content p {
  margin: 0 0 0.75rem;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
}

.step-content p:last-child {
  margin-bottom: 0;
}

.content-right {
  display: flex;
  align-self: flex-end;
  align-items: center;
  justify-content: flex-end;
  min-width: min(430px, 42vw);
  overflow: visible;
}

.illustration-placeholder {
  display: block;
  width: min(54vw, 850px);
  max-width: none;
  height: auto;
  margin-top: 0;
}

.apakah-wasiat {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 17.2vw, 459px);
  padding: clamp(72px, 7vw, 150px) clamp(24px, 6vw, 160px);
  color: var(--wk-white);
  background-color: var(--wk-green);
  background-image: url("Asset/Apakah Wasiat_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.apakah-wasiat__inner {
  width: min(100%, 1960px);
}

.apakah-wasiat__title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(16px, 1.4vw, 36px);
  margin: 0 0 clamp(26px, 2.3vw, 56px);
  font-size: clamp(35px, 3.52vw, 93px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.apakah-wasiat__title span:last-child {
  color: var(--wk-gold);
}

.apakah-wasiat__copy {
  display: grid;
  gap: clamp(18px, 1.35vw, 36px);
  max-width: 1780px;
  margin: 0 auto;
  font-size: clamp(14px, 1vw, 27px);
  font-weight: 400;
  line-height: 1.35;
}

.apakah-wasiat__copy p {
  margin: 0;
}

.main-tentangkami-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(400px, 31.27vw, 834px);
  padding: calc(var(--nav-height) + clamp(70px, 6vw, 150px)) clamp(24px, 6vw, 160px)
    clamp(70px, 6vw, 150px);
  overflow: hidden;
  color: var(--wk-white);
  background-color: var(--wk-green);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)),
    url("Asset/Tentang Kami_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.main-tentangkami-section__content {
  width: min(100%, 1420px);
  margin: 0 auto;
}

.main-tentangkami-section h1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 1vw, 28px);
  margin: 0 0 clamp(22px, 1.9vw, 48px);
  font-size: clamp(42px, 4.6vw, 122px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.main-tentangkami-section h1 span:last-child {
  color: var(--wk-gold);
}

.main-tentangkami-section p {
  max-width: 1240px;
  margin: 0 auto;
  color: var(--wk-white);
  font-size: clamp(15px, 1.12vw, 30px);
  font-weight: 400;
  line-height: 1.35;
}

.main-pelan-harga-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(380px, 25vw, 664px);
  padding: calc(var(--nav-height) + clamp(45px, 4.2vw, 125px)) clamp(24px, 6vw, 160px)
    clamp(51px, 4.2vw, 125px);
  color: var(--wk-black);
  background: var(--wk-white);
  text-align: center;
  scroll-margin-top: var(--nav-height);
}

.main-pelan-harga-section__inner {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.main-pelan-harga-section__eyebrow {
  margin: 0 0 clamp(26px, 2vw, 54px);
  color: var(--wk-black);
  font-size: clamp(20px, 1.45vw, 38px);
  font-weight: 700;
  line-height: 1.1;
}

.main-pelan-harga-section h1 {
  display: grid;
  gap: clamp(8px, 0.6vw, 18px);
  margin: 0 0 clamp(30px, 2.5vw, 64px);
  font-size: clamp(44px, 4.25vw, 112px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.main-pelan-harga-section h1 span:first-child {
  color: var(--wk-green);
}

.main-pelan-harga-section__copy {
  max-width: 1340px;
  margin: 0 auto;
  color: var(--wk-black);
  font-size: clamp(15px, 1.03vw, 27px);
  font-weight: 400;
  line-height: 1.45;
}

.harga-plan-section {
  padding: clamp(70px, 5.2vw, 130px) 0 clamp(88px, 7vw, 160px);
  background: var(--wk-white);
  color: var(--wk-black);
}

.harga-plan-section__inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: 0 clamp(24px, 6.2vw, 170px);
}

.harga-plan-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: clamp(12px, 0.72vw, 18px);
  font-weight: 600;
}

.harga-plan-switch__label {
  border: 0;
  color: #8f8f8f;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.harga-plan-switch__label.is-active {
  color: var(--wk-black);
}

.harga-plan-section[data-plan="smarthibah"] .harga-plan-switch,
.harga-plan-section[data-plan="smartfaraid"] .harga-plan-switch {
  opacity: 0.45;
  pointer-events: none;
}

.harga-plan-switch__toggle {
  position: relative;
  width: 38px;
  height: 20px;
  border: 0;
  border-radius: 999px;
  background: #eeeeea;
  cursor: pointer;
}

.harga-plan-switch__toggle span {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--wk-gold-gradient);
  transition: transform 180ms ease;
}

.harga-plan-section[data-audience="asing"] .harga-plan-switch__toggle span {
  transform: translateX(18px);
}

.harga-plan-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  justify-items: stretch;
  width: min(100%, 1200px);
  margin: 0 auto clamp(70px, 5.2vw, 130px);
  padding: 8px;
  border-radius: 999px;
  background: #f5f5f5;
}

.harga-plan-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  gap: 16px;
  min-height: clamp(52px, 3.2vw, 76px);
  border: 0;
  border-radius: 999px;
  color: var(--wk-black);
  background: transparent;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 34px);
  font-weight: 700;
}

.harga-plan-tab.is-active {
  color: var(--wk-white);
  background: linear-gradient(90deg, #1f4e3a 0%, #33744f 100%);
}

.harga-plan-tab.is-active img {
  filter: brightness(0) invert(1);
}

.harga-plan-tab__icon--faraid {
  filter: brightness(0);
}

.harga-plan-tab.is-active .harga-plan-tab__icon--faraid {
  filter: none;
}

.harga-plan-tab img {
  width: clamp(18px, 1.3vw, 30px);
  height: clamp(18px, 1.3vw, 30px);
  object-fit: contain;
}

.harga-plan-panel[hidden] {
  display: none;
}

.harga-plan-intro {
  margin-bottom: clamp(52px, 4.2vw, 100px);
}

.harga-plan-intro h2 {
  margin: 0 0 clamp(20px, 1.4vw, 36px);
  color: var(--wk-green);
  font-size: clamp(34px, 2.7vw, 68px);
  font-weight: 700;
  line-height: 1.08;
}

.harga-plan-intro--plus h2 {
  color: var(--wk-gold);
}

.harga-plan-intro p {
  max-width: 1500px;
  margin: 0 0 clamp(24px, 1.8vw, 44px);
  font-size: clamp(15px, 1.05vw, 26px);
  line-height: 1.28;
}

.harga-plan-intro .harga-plan-note {
  margin-bottom: 0;
  color: #8d8d8d;
  font-style: italic;
}

.harga-smartfaraid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  column-gap: clamp(42px, 5vw, 120px);
  row-gap: clamp(34px, 3.4vw, 72px);
  align-items: center;
}

.harga-smartfaraid__content {
  min-width: 0;
}

.harga-smartfaraid h2 {
  margin: 0 0 clamp(24px, 2vw, 48px);
  color: var(--wk-black);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.harga-smartfaraid h2 span {
  color: var(--wk-green);
}

.harga-smartfaraid h3 {
  margin: 0 0 clamp(20px, 1.5vw, 34px);
  color: var(--wk-black);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
}

.harga-smartfaraid p {
  max-width: 920px;
  margin: 0 0 clamp(22px, 1.8vw, 42px);
  font-size: clamp(16px, 1.05vw, 25px);
  line-height: 1.35;
}

.harga-smartfaraid__list {
  margin-top: clamp(42px, 4vw, 96px);
}

.harga-smartfaraid__list h3 {
  margin-bottom: clamp(18px, 1.45vw, 34px);
}

.harga-smartfaraid__list ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: clamp(16px, 1.05vw, 25px);
  line-height: 1.35;
}

.harga-smartfaraid__image {
  width: 100%;
  max-width: 820px;
  justify-self: end;
  object-fit: contain;
}

.harga-smartfaraid__closing {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  color: var(--wk-green);
  font-weight: 700;
}

.harga-faraid-importance {
  width: 100vw;
  margin: clamp(82px, 7vw, 150px) calc(50% - 50vw) 0;
  color: var(--wk-white);
  background: url("Asset/Kepentingan_faraid_1_bg.png") center / cover no-repeat;
}

.harga-faraid-importance__inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: clamp(104px, 8vw, 178px) clamp(24px, 6.2vw, 170px) clamp(92px, 7.2vw, 168px);
}

.harga-faraid-importance h2 {
  margin: 0 0 clamp(14px, 1.4vw, 28px);
  color: var(--wk-gold);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.98;
}

.harga-faraid-importance h2 span {
  color: var(--wk-white);
}

.harga-faraid-importance__subtitle {
  margin: 0 0 clamp(66px, 5.8vw, 132px);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.harga-faraid-importance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 1.9vw, 48px);
}

.harga-faraid-importance__card {
  display: grid;
  gap: clamp(18px, 1.3vw, 30px);
  align-content: start;
  min-width: 0;
}

.harga-faraid-importance__card img {
  width: 100%;
  aspect-ratio: 1.98 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.harga-faraid-importance__card h3 {
  margin: 0;
  color: var(--wk-gold);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
}

.harga-faraid-importance__card p {
  max-width: 520px;
  margin: -15px 0 0;
  font-size: 14px;
  line-height: 1.32;
}

.harga-faraid-risks {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  color: var(--wk-black);
  background: var(--wk-white);
}

.harga-faraid-risks__inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: clamp(82px, 6.4vw, 148px) clamp(24px, 6.2vw, 170px) clamp(74px, 5.8vw, 132px);
}

.harga-faraid-risks h2 {
  margin: 0 0 clamp(56px, 4.8vw, 112px);
  color: var(--wk-black);
  font-size: clamp(24px, 1.7vw, 40px);
  font-weight: 600;
  line-height: 1.2;
}

.harga-faraid-risks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2vw, 48px);
}

.harga-faraid-risks__card {
  display: grid;
  min-height: clamp(108px, 7vw, 154px);
  padding: clamp(28px, 2.2vw, 46px) 24px clamp(24px, 1.8vw, 38px);
  place-items: center;
  border-radius: 8px;
  background: #f5f8f6;
  text-align: center;
}

.harga-faraid-risks__card img {
  width: clamp(28px, 1.9vw, 44px);
  height: clamp(28px, 1.9vw, 44px);
  margin-bottom: clamp(16px, 1.2vw, 26px);
}

.harga-faraid-risks__card h3 {
  margin: 0;
  color: var(--wk-black);
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.15;
}

.harga-faraid-risks__closing {
  margin: clamp(56px, 4.4vw, 104px) 0 0;
  color: var(--wk-green);
  font-size: clamp(18px, 1.25vw, 30px);
  font-weight: 600;
  line-height: 1.35;
}

.harga-faraid-benefits {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  color: var(--wk-black);
  background: var(--wk-white);
}

.harga-faraid-benefits__inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: clamp(96px, 8vw, 188px) clamp(24px, 6.2vw, 170px) clamp(84px, 7vw, 160px);
}

.harga-faraid-benefits__header {
  margin-bottom: clamp(72px, 6.2vw, 148px);
  text-align: center;
}

.harga-faraid-benefits h2 {
  margin: 0 0 clamp(22px, 1.8vw, 42px);
  color: var(--wk-green);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.harga-faraid-benefits h2 span {
  color: var(--wk-black);
}

.harga-faraid-benefits__header p {
  margin: 0;
  font-size: clamp(18px, 1.25vw, 30px);
  line-height: 1.3;
}

.harga-faraid-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(72px, 10vw, 220px);
  row-gap: clamp(82px, 7vw, 162px);
}

.harga-faraid-benefits__item {
  min-width: 0;
}

.harga-faraid-benefits__item img {
  width: 26px;
  height: 26px;
  margin-bottom: 17px;
}

.harga-faraid-benefits__item h3 {
  margin: 0 0 clamp(16px, 1.2vw, 26px);
  color: var(--wk-green);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
}

.harga-faraid-benefits__item p {
  max-width: 780px;
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
}

.harga-faraid-process {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  color: var(--wk-black);
  background: var(--wk-white);
}

.harga-faraid-process__inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: clamp(92px, 7.6vw, 178px) clamp(24px, 6.2vw, 170px) clamp(94px, 7.6vw, 176px);
}

.harga-faraid-process__header {
  margin-bottom: clamp(92px, 8vw, 188px);
  text-align: center;
}

.harga-faraid-process h2 {
  margin: 0 0 clamp(24px, 2vw, 48px);
  color: var(--wk-green);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.harga-faraid-process h2 span {
  color: var(--wk-black);
}

.harga-faraid-process__header p {
  margin: 0;
  font-size: clamp(18px, 1.25vw, 30px);
  line-height: 1.3;
}

.harga-faraid-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 118px);
}

.harga-faraid-process__step {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.harga-faraid-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: clamp(28px, 2.2vw, 46px);
  right: calc(clamp(-72px, -3.8vw, -34px));
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--wk-black);
}

.harga-faraid-process__icon {
  display: grid;
  width: 85px;
  height: 85px;
  margin-bottom: clamp(30px, 2.5vw, 60px);
  place-items: center;
}

.harga-faraid-process__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.harga-faraid-process__step h3 {
  margin: 0 0 clamp(14px, 1vw, 24px);
  color: var(--wk-green);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.14;
}

.harga-faraid-process__step p {
  max-width: 360px;
  margin: 0;
  font-size: 16px;
  line-height: 1.18;
}

.harga-faraid-audience {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  color: var(--wk-black);
  background: var(--wk-white);
}

.harga-faraid-audience__inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: clamp(78px, 6.4vw, 142px) clamp(24px, 6.2vw, 170px) clamp(88px, 7vw, 156px);
}

.harga-faraid-audience__header {
  margin-bottom: clamp(44px, 4vw, 78px);
  text-align: left;
}

.harga-faraid-audience h2 {
  margin: 0;
  color: var(--wk-black);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.98;
}

.harga-faraid-audience h2 span {
  color: var(--wk-green);
}

.harga-faraid-audience__header p {
  max-width: 1320px;
  margin: clamp(16px, 1.4vw, 28px) 0 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(14px, 0.92vw, 20px);
  font-weight: 400;
  line-height: 1.45;
}

.harga-faraid-audience__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.harga-faraid-audience__grid::-webkit-scrollbar {
  display: none;
}

.harga-faraid-audience__card {
  position: relative;
  flex: 0 0 clamp(260px, 20vw, 340px);
  scroll-snap-align: start;
  text-align: left;
  transition: transform 220ms ease;
}

.harga-faraid-audience__card:hover,
.harga-faraid-audience__card:focus-within {
  transform: translateY(-4px);
}

.harga-faraid-audience__photo {
  display: block;
  width: 100%;
  height: clamp(250px, 20vw, 380px);
  object-fit: cover;
  border-radius: 8px;
}

.harga-faraid-audience__card h3 {
  margin: clamp(20px, 1.45vw, 28px) 0 8px;
  color: var(--wk-green);
  font-size: clamp(20px, 1.35vw, 28px);
  font-weight: 700;
  line-height: 1.12;
}

.harga-faraid-audience__card p {
  margin: 0;
  color: var(--wk-black);
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 400;
  line-height: 1.35;
}

.harga-faraid-documents {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  color: var(--wk-black);
  background: var(--wk-white);
}

.harga-faraid-documents__inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: clamp(82px, 6.8vw, 160px) clamp(24px, 6.2vw, 170px) clamp(86px, 6.8vw, 164px);
}

.harga-faraid-documents h2 {
  margin: 0 0 clamp(54px, 4.4vw, 92px);
  color: var(--wk-black);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.harga-faraid-documents__grid {
  --documents-gap: clamp(34px, 4.2vw, 92px);

  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--documents-gap);
}

.harga-faraid-documents__grid::before {
  content: "";
  position: absolute;
  top: 7px;
  right: calc((100% - (3 * var(--documents-gap))) / 8);
  left: calc((100% - (3 * var(--documents-gap))) / 8);
  height: 2px;
  border-radius: 999px;
  background: #d6e8df;
}

.harga-faraid-documents__item {
  position: relative;
  min-width: 0;
  padding-top: 42px;
  text-align: center;
}

.harga-faraid-documents__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: var(--wk-green);
  box-shadow: 0 0 0 5px #e6f1eb;
  transform: translateX(-50%);
}

.harga-faraid-documents__item::after {
  content: none;
}

.harga-faraid-documents__item h3 {
  margin: 0 0 10px;
  color: var(--wk-green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.harga-faraid-documents__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.16;
}

.harga-faraid-documents__note {
  margin: clamp(52px, 4.6vw, 104px) 0 0;
  padding: clamp(20px, 1.5vw, 28px) clamp(24px, 2.2vw, 44px);
  border-radius: 8px;
  color: var(--wk-green);
  background: #effbf0;
  font-size: clamp(16px, 1.05vw, 21px);
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.harga-faraid-cta {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  color: var(--wk-white);
  background: var(--wk-green) url("Asset/CTA_Faraid_bg.png") center / cover no-repeat;
}

.harga-faraid-cta__inner {
  display: grid;
  justify-items: center;
  width: min(100%, 1760px);
  min-height: clamp(360px, 28vw, 576px);
  margin: 0 auto;
  padding: clamp(88px, 7.2vw, 160px) clamp(24px, 6.2vw, 170px) clamp(78px, 6vw, 138px);
  text-align: center;
}

.harga-faraid-cta h2 {
  margin: 0 0 clamp(24px, 1.8vw, 40px);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
}

.harga-faraid-cta h2 span {
  display: block;
}

.harga-faraid-cta h2 span:first-child {
  color: var(--wk-white);
}

.harga-faraid-cta h2 span:last-child {
  color: var(--wk-gold);
}

.harga-faraid-cta p {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(16px, 1.25vw, 27px);
  line-height: 1.3;
}

.harga-faraid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 1.5vw, 34px);
  margin-top: clamp(40px, 3.5vw, 78px);
}

.harga-faraid-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(210px, 12.6vw, 290px);
  min-height: clamp(48px, 3.05vw, 62px);
  padding: 0 34px;
  border-radius: 999px;
  color: var(--wk-white);
  font-size: clamp(17px, 1.15vw, 25px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.harga-faraid-cta__button--gold {
  background: var(--wk-gold-gradient);
}

.harga-faraid-cta__button--outline {
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
}

.harga-faraid-cta__button:hover,
.harga-faraid-cta__button:focus-visible {
  transform: translateY(-1px);
}

.harga-plan-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 1.2vw, 32px);
  padding: clamp(38px, 2.6vw, 70px);
  border-radius: 8px;
  background: #edf3ef;
}

.harga-plan-card-wrap--plus {
  background: #fbf8f2;
}

.harga-plan-card-wrap--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.harga-plan-panel[data-plan-content="package"] .harga-plan-card__body {
  grid-template-rows: auto minmax(clamp(72px, 5.2vw, 126px), auto) auto auto 1fr;
}

.harga-plan-panel[data-plan-content="package"] .harga-plan-card p {
  min-height: clamp(72px, 5.2vw, 126px);
}

.harga-plan-card {
  position: relative;
  min-width: 0;
  border-radius: 8px;
  background: var(--wk-white);
}

.harga-plan-card--plus {
  border: 2px solid var(--wk-gold);
}

.harga-plan-card--dark {
  color: var(--wk-white);
  background: linear-gradient(90deg, #1f4e3a 0%, #33744f 100%);
}

.harga-plan-card--plus-dark {
  background: linear-gradient(135deg, #164733 0%, #123d2c 100%);
}

.harga-plan-card--muted {
  border: 2px solid #d0d3d2;
  color: #8f9492;
  background: #eeeeee;
}

.harga-plan-card__body {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  min-height: clamp(650px, 45vw, 960px);
  padding: clamp(42px, 3.1vw, 82px) clamp(34px, 2.7vw, 72px);
}

.harga-plan-card h3 {
  margin: 0 0 clamp(14px, 1vw, 24px);
  font-size: clamp(26px, 1.9vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.harga-plan-card p {
  margin: 0 0 clamp(36px, 3vw, 78px);
  font-size: clamp(15px, 1.05vw, 26px);
  line-height: 1.22;
}

.harga-plan-card strong {
  display: block;
  margin-bottom: clamp(34px, 2.6vw, 66px);
  color: var(--wk-green);
  font-size: clamp(42px, 3vw, 76px);
  font-weight: 700;
  line-height: 1;
}

.harga-plan-card--plus strong {
  color: var(--wk-gold);
}

.harga-plan-card--dark strong {
  color: var(--wk-white);
}

.harga-plan-card--muted strong,
.harga-plan-card--muted h3,
.harga-plan-card--muted p,
.harga-plan-card--muted .harga-plan-feature,
.harga-plan-card--muted .harga-plan-feature b {
  color: #8f9492;
}

.harga-plan-card a,
.harga-plan-card button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(48px, 3vw, 72px);
  margin-bottom: clamp(50px, 4vw, 100px);
  border: 0;
  border-radius: 999px;
  color: var(--wk-white);
  background: linear-gradient(90deg, #1f4e3a 0%, #33744f 100%);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(16px, 1.1vw, 28px);
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.harga-plan-card--dark a,
.harga-plan-card--dark button {
  color: var(--wk-green);
  background: var(--wk-white);
}

.harga-plan-card--plus a,
.harga-plan-card--plus button {
  background: var(--wk-gold-gradient);
}

.harga-plan-card--plus-dark a,
.harga-plan-card--plus-dark button {
  color: var(--wk-gold);
  background: var(--wk-white);
}

.harga-plan-card--muted button {
  color: #f2f2f2;
  background: #b8bdbc;
  cursor: not-allowed;
}

.harga-plan-card--muted .harga-plan-feature img {
  filter: grayscale(1);
  opacity: 0.55;
}

.harga-plan-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  column-gap: clamp(26px, 2vw, 62px);
  row-gap: clamp(26px, 2.2vw, 58px);
  align-content: start;
}

.harga-plan-card-wrap--three .harga-plan-features {
  grid-template-columns: 1fr;
}

.harga-plan-feature {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: clamp(15px, 1.02vw, 25px);
  line-height: 1.16;
}

.harga-plan-feature img {
  width: 18px;
  margin-top: 4px;
}

.harga-plan-feature b {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.siapakah-tentangkami-section {
  display: flex;
  align-items: center;
  min-height: clamp(620px, 46.9vw, 1251px);
  padding: clamp(88px, 7vw, 150px) 0;
  overflow: hidden;
  color: var(--wk-white);
  background-color: var(--wk-green);
  background-image: url("Asset/Siapakah Kami_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.siapakah-tentangkami-section__inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 4.5vw, 120px);
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 0 clamp(24px, 6.2vw, 170px);
}

.siapakah-tentangkami-section h2 {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 1.2vw, 32px);
  margin: 0 0 clamp(32px, 3vw, 76px);
  font-size: clamp(38px, 3.55vw, 78px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.siapakah-tentangkami-section h2 span:first-child {
  color: var(--wk-gold);
}

.siapakah-tentangkami-section__copy {
  display: grid;
  gap: clamp(22px, 1.9vw, 48px);
  max-width: 770px;
}

.siapakah-tentangkami-section__copy p {
  margin: 0;
  color: var(--wk-white);
  font-size: clamp(14px, 1vw, 24px);
  font-weight: 400;
  line-height: 1.34;
}

.siapakah-tentangkami-section__laptop {
  display: block;
  width: min(100%, 820px);
  height: auto;
  justify-self: end;
}

.visi-misi-section {
  padding: clamp(88px, 7vw, 150px) 0;
  background: var(--wk-white);
  color: var(--wk-black);
  scroll-margin-top: var(--nav-height);
}

.tentang-kami-page .visi-misi-section {
  padding-top: clamp(88px, 7vw, 150px);
}

.visi-misi-section__inner {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 0 clamp(24px, 6.2vw, 170px);
}

.visi-misi-section__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 1.2vw, 32px);
  margin: 0 0 clamp(52px, 4.8vw, 108px);
  font-size: clamp(38px, 3.6vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
}

.visi-misi-section__title span:first-child {
  color: var(--wk-green);
}

.visi-misi-box-grid {
  display: grid;
  grid-template-columns: 1.349fr 1fr;
  gap: clamp(24px, 1.7vw, 40px);
  margin-bottom: clamp(24px, 1.7vw, 40px);
}

.visi-misi-box-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.visi-misi-values-box {
  overflow: hidden;
  border-radius: 8px;
}

.visi-misi-values-box picture,
.visi-misi-values-box img {
  display: block;
  width: 100%;
  height: auto;
}

.kepimpinan-section {
  padding: clamp(88px, 7vw, 150px) 0;
  background: var(--wk-white);
  color: var(--wk-black);
}

.kepimpinan-section__inner {
  display: grid;
  grid-template-columns: minmax(360px, 450px) minmax(0, 1fr);
  gap: clamp(64px, 4vw, 120px);
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 120px);
}

.kepimpinan-section__intro {
  position: static;
  align-self: start;
}

.kepimpinan-section__intro h2 {
  display: grid;
  gap: 8px;
  margin: 0 0 clamp(24px, 2vw, 42px);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.kepimpinan-section__intro h2 span:first-child {
  color: var(--wk-green);
}

.kepimpinan-section__intro p {
  max-width: 680px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.kepimpinan-section__people {
  display: grid;
  gap: clamp(72px, 6.4vw, 142px);
}

.kepimpinan-group h3 {
  margin: 0 0 clamp(26px, 2vw, 50px);
  padding-bottom: 24px;
  border-bottom: 1px solid #c9c9c9;
  color: var(--wk-green);
  font-size: clamp(22px, 1.35vw, 34px);
  font-weight: 700;
  line-height: 1.15;
}

.kepimpinan-group__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 450px));
  gap: clamp(28px, 2.4vw, 56px);
}

.kepimpinan-group__grid--single {
  grid-template-columns: minmax(0, 450px);
}

.lawyer-card {
  position: relative;
  min-height: clamp(430px, 33vw, 668px);
  border: 0;
  outline: 0;
}

.lawyer-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.lawyer-card__face {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  border-radius: 8px;
}

.lawyer-card__face--front {
  background: #f1f1f1;
}

.lawyer-card__face--front::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(241, 241, 241, 0) 0%, rgba(241, 241, 241, 0.95) 72%);
}

.lawyer-card__face--front img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lawyer-card__front-copy {
  position: absolute;
  right: clamp(20px, 1.6vw, 34px);
  bottom: clamp(24px, 2vw, 44px);
  left: clamp(20px, 1.6vw, 34px);
  z-index: 1;
}

.lawyer-card h4,
.lawyer-card p {
  margin: 0;
}

.lawyer-card h4 {
  max-width: 20ch;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.lawyer-card__name--two-line {
  max-width: none;
}

.lawyer-card__name--two-line span {
  display: block;
  white-space: nowrap;
}

.lawyer-card__front-copy p {
  margin-top: 8px;
  font-size: clamp(15px, 1vw, 24px);
  font-weight: 400;
  line-height: 1.15;
}

.lawyer-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(34px, 2.4vw, 46px);
  margin-top: clamp(14px, 1.1vw, 22px);
  padding: 0 clamp(20px, 1.5vw, 32px);
  border: 1px solid var(--wk-green);
  border-radius: 999px;
  color: var(--wk-white);
  background: var(--wk-green);
  font-family: "Poppins";
  font-size: clamp(11px, 0.68vw, 16px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.lawyer-card__button:hover,
.lawyer-card__button:focus-visible {
  color: var(--wk-white);
  background: #007b4d;
  transform: translateY(-1px);
}

.lawyer-drawer {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: flex-end;
  visibility: hidden;
  pointer-events: none;
}

.lawyer-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.lawyer-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  transition: opacity 220ms ease;
}

.lawyer-drawer.is-open .lawyer-drawer__backdrop {
  opacity: 1;
}

.lawyer-drawer__panel {
  position: relative;
  width: 100%;
  max-height: min(82vh, 760px);
  overflow-y: auto;
  padding: clamp(34px, 4vw, 72px) clamp(28px, 7vw, 180px) clamp(44px, 5vw, 90px);
  border-radius: 26px 26px 0 0;
  background: var(--wk-white);
  color: var(--wk-black);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.18);
  transform: translateY(100%);
  transition: transform 280ms ease;
}

.lawyer-drawer.is-open .lawyer-drawer__panel {
  transform: translateY(0);
}

.lawyer-drawer__close {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: clamp(22px, 4vw, 72px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dadada;
  border-radius: 999px;
  color: var(--wk-black);
  background: #f7f7f7;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.lawyer-drawer__header {
  padding-right: 56px;
  padding-bottom: clamp(22px, 2.4vw, 42px);
  border-bottom: 1px solid #c9c9c9;
}

.lawyer-drawer__header h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.6vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.lawyer-drawer__header p {
  margin: 0;
  font-size: clamp(20px, 1.9vw, 40px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
}

.lawyer-drawer__content {
  display: grid;
  gap: clamp(26px, 2.4vw, 48px);
  padding-top: clamp(26px, 2.4vw, 48px);
  font-size: clamp(14px, 1.05vw, 24px);
  line-height: 1.35;
}

.lawyer-drawer__content p,
.lawyer-drawer__content ul {
  margin: 0;
}

.lawyer-drawer__content h3 {
  margin: 0 0 4px;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.3;
}

.lawyer-drawer__content ul {
  padding-left: 1.2em;
}

body.lawyer-drawer-open {
  overflow: hidden;
}

.collaboration-partner-section {
  padding: clamp(36px, 3.4vw, 72px) 0;
  background: #f2f2f2;
  color: var(--wk-black);
}

.collaboration-partner-section__inner {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 2.4vw, 44px);
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 120px);
  text-align: center;
}

.collaboration-partner-section h2 {
  max-width: 980px;
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.collaboration-partner-section img {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

.pencapaian-tentangkami-section {
  padding: clamp(88px, 7vw, 150px) 0;
  background: var(--wk-white);
  color: var(--wk-black);
}

.pencapaian-tentangkami-section__inner {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 0 clamp(24px, 6.2vw, 170px);
}

.pencapaian-tentangkami-section__title {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 1.2vw, 32px);
  margin: 0 0 clamp(54px, 5vw, 112px);
  font-size: clamp(38px, 3.6vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.pencapaian-tentangkami-section__title span:first-child {
  color: var(--wk-green);
}

html[lang="en"] .pencapaian-tentangkami-section__title span:first-child {
  color: var(--wk-black);
}

html[lang="en"] .pencapaian-tentangkami-section__title span:nth-child(2) {
  color: var(--wk-green);
}

.pencapaian-tentangkami-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(54px, 6.5vw, 150px);
}

.pencapaian-tentangkami-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pencapaian-tentangkami-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: clamp(100px, 7.7vw, 190px);
  margin-bottom: clamp(22px, 1.8vw, 42px);
}

.pencapaian-tentangkami-card__logo img {
  display: block;
  width: auto;
  max-width: min(100%, 320px);
  max-height: 100%;
  object-fit: contain;
}

.pencapaian-tentangkami-card h3 {
  margin: 0 0 clamp(12px, 0.85vw, 22px);
  color: var(--wk-green);
  font-size: clamp(22px, 1.72vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.pencapaian-tentangkami-card p {
  margin: 0;
  color: var(--wk-black);
  font-size: clamp(14px, 1vw, 24px);
  font-weight: 400;
  line-height: 1.27;
}

.kepentingan-section {
  padding: clamp(88px, 7vw, 150px) 0;
  overflow: hidden;
  background: var(--wk-white);
  color: var(--wk-black);
}

.kepentingan-section__inner {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 0 clamp(24px, 6.2vw, 170px);
}

.kepentingan-section__header {
  margin-bottom: clamp(44px, 4vw, 88px);
}

.kepentingan-section__title {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 1.2vw, 32px);
  margin: 0 0 clamp(18px, 1.4vw, 32px);
  font-size: clamp(38px, 3.6vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.kepentingan-section__title span:first-child {
  color: var(--wk-green);
}

.kepentingan-section__header p {
  max-width: 1320px;
  margin: 0;
  font-size: clamp(14px, 0.92vw, 20px);
  font-weight: 400;
  line-height: 1.45;
}

.kepentingan-slider {
  position: relative;
}

.kepentingan-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.kepentingan-slider__viewport::-webkit-scrollbar {
  display: none;
}

.kepentingan-slider__track {
  display: flex;
  gap: 20px;
}

.kepentingan-card {
  flex: 0 0 293px;
  scroll-snap-align: start;
}

.kepentingan-card img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 8px;
}

.kepentingan-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.kepentingan-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--wk-white);
  background: var(--wk-green);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.kepentingan-slider__button:hover,
.kepentingan-slider__button:focus-visible {
  background: var(--wk-gold-gradient);
  transform: translateY(-1px);
}

.kelebihan-section {
  padding: clamp(88px, 7vw, 150px) 0;
  background: #ffffff;
  color: var(--wk-black);
}

.kelebihan-section__inner {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(24px, 6.2vw, 170px);
}

.kelebihan-section__header {
  margin-bottom: clamp(64px, 5.2vw, 120px);
  text-align: center;
}

.kelebihan-section__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 1.2vw, 32px);
  margin: 0 0 clamp(18px, 1.4vw, 32px);
  font-size: clamp(38px, 3.6vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.kelebihan-section__title span:first-child {
  color: var(--wk-green);
}

.kelebihan-section__header p {
  margin: 0;
  font-size: clamp(14px, 0.92vw, 20px);
  font-weight: 400;
  line-height: 1.35;
}

.kelebihan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(72px, 9vw, 190px);
  row-gap: clamp(54px, 5vw, 112px);
}

.kelebihan-item img {
  display: block;
  width: clamp(22px, 1.55vw, 36px);
  height: auto;
  margin-bottom: clamp(14px, 1vw, 22px);
}

.kelebihan-item h3 {
  margin: 0 0 clamp(14px, 1vw, 22px);
  color: var(--wk-green);
  font-size: clamp(25px, 2vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.kelebihan-item p {
  max-width: 620px;
  margin: 0;
  color: var(--wk-black);
  font-size: clamp(14px, 1vw, 22px);
  font-weight: 400;
  line-height: 1.28;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 28.15vw, 751px);
  padding: clamp(78px, 7vw, 150px) clamp(24px, 6vw, 160px);
  color: var(--wk-white);
  background-color: var(--wk-green);
  background-image: url("Asset/CTA_background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.cta-section__inner {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.cta-section__title {
  display: grid;
  gap: 4px;
  margin: 0 0 clamp(18px, 1.4vw, 32px);
  font-size: clamp(38px, 3.6vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.cta-section__title span:last-child {
  color: var(--wk-gold);
}

.cta-section p {
  max-width: 1120px;
  margin: 0 auto clamp(34px, 3.2vw, 70px);
  color: var(--wk-white);
  font-size: clamp(14px, 0.92vw, 20px);
  font-weight: 400;
  line-height: 1.35;
}

.cta-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(260px, 18.8vw, 500px);
  min-height: clamp(42px, 2.65vw, 70px);
  padding: 0 clamp(28px, 2.2vw, 58px);
  border-radius: 999px;
  color: var(--wk-white);
  background: var(--wk-gold-gradient);
  font-size: clamp(14px, 1.05vw, 26px);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.cta-section__button:hover,
.cta-section__button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.cta-section__button:focus-visible {
  outline: 3px solid rgba(212, 170, 84, 0.4);
  outline-offset: 4px;
}

.testimonial-section {
  padding: clamp(88px, 7vw, 150px) 0;
  background: var(--wk-white);
  color: var(--wk-black);
}

.testimonial-section__inner {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 0 clamp(24px, 6.2vw, 170px);
}

.testimonial-section__header {
  margin-bottom: clamp(44px, 4vw, 88px);
}

.testimonial-section__title {
  display: grid;
  gap: 4px;
  margin: 0 0 clamp(18px, 1.4vw, 32px);
  font-size: clamp(38px, 3.6vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.testimonial-section__title span:first-child {
  color: var(--wk-green);
}

.testimonial-section__header p {
  max-width: 1480px;
  margin: 0;
  font-size: clamp(14px, 0.92vw, 20px);
  font-weight: 400;
  line-height: 1.35;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 40px);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(260px, 17vw, 390px);
  padding: clamp(28px, 2.1vw, 52px);
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f6faf7;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: var(--wk-gold);
  background: #f8fcf9;
  box-shadow: 0 18px 36px rgba(0, 79, 56, 0.12);
  transform: translateY(-6px);
}

.testimonial-card__stars {
  margin-bottom: clamp(14px, 1vw, 24px);
  color: var(--wk-gold);
  font-size: clamp(20px, 1.45vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}

.testimonial-card__quote {
  margin: 0;
  color: var(--wk-black);
  font-size: clamp(15px, 1.05vw, 23px);
  font-weight: 400;
  line-height: 1.35;
}

.testimonial-card__person {
  margin-top: auto;
  padding-top: clamp(28px, 2.4vw, 56px);
}

.testimonial-card__person h3 {
  margin: 0 0 8px;
  color: var(--wk-green);
  font-size: clamp(22px, 1.55vw, 34px);
  font-weight: 700;
  line-height: 1.1;
}

.testimonial-card__person p {
  margin: 0;
  color: var(--wk-black);
  font-size: clamp(14px, 0.95vw, 20px);
  font-weight: 600;
  line-height: 1.25;
}

.faq-section {
  padding: clamp(88px, 7vw, 150px) 0;
  background: #ffffff;
  color: var(--wk-black);
}

.faq-section__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.25fr);
  gap: clamp(64px, 6.8vw, 180px);
  width: min(100%, 1840px);
  margin: 0 auto;
  padding: 0 clamp(24px, 6.2vw, 170px);
}

.faq-section__intro {
  padding-top: clamp(4px, 0.7vw, 18px);
}

.faq-section__title {
  display: grid;
  gap: 8px;
  margin: 0 0 clamp(28px, 2.4vw, 58px);
  font-size: clamp(38px, 3.6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-section__title span:first-child {
  color: var(--wk-green);
}

.faq-section__intro p {
  margin: 0 0 clamp(38px, 3.2vw, 82px);
  font-size: clamp(14px, 1vw, 22px);
  font-weight: 400;
  line-height: 1.28;
}

.faq-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.4vw, 34px);
  min-width: clamp(260px, 16vw, 430px);
  min-height: clamp(46px, 2.55vw, 68px);
  padding: 0 clamp(24px, 1.8vw, 48px);
  border-radius: 999px;
  color: var(--wk-white);
  background: linear-gradient(90deg, #1f4e3a 0%, #33744f 100%);
  font-size: clamp(15px, 1.05vw, 25px);
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.faq-section__button:hover,
.faq-section__button:focus-visible {
  background: linear-gradient(90deg, #1f4e3a 0%, #33744f 100%);
  transform: translateY(-2px);
}

.faq-list {
  display: grid;
}

.faq-item {
  display: grid;
  grid-template-columns: clamp(54px, 4.1vw, 108px) 1fr;
  gap: clamp(20px, 1.9vw, 48px);
  padding: 0 0 clamp(34px, 3vw, 78px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
}

.faq-item + .faq-item {
  padding-top: clamp(34px, 3vw, 78px);
}

.faq-item__number {
  color: var(--wk-green);
  font-size: clamp(20px, 1.45vw, 36px);
  font-weight: 700;
  line-height: 1.1;
}

.faq-item__content h3 {
  margin: 0 0 clamp(10px, 0.9vw, 22px);
  color: var(--wk-green);
  font-size: clamp(21px, 1.62vw, 42px);
  font-weight: 700;
  line-height: 1.12;
}

.faq-item__content p {
  margin: 0;
  font-size: clamp(14px, 1vw, 25px);
  font-weight: 400;
  line-height: 1.28;
}

.faq-item__content p + p {
  margin-top: clamp(18px, 1.6vw, 42px);
}

.site-footer {
  width: 100%;
  min-height: clamp(500px, 31.27vw, 834px);
  margin-inline: auto;
  color: var(--wk-white);
  background-color: var(--wk-green);
  background-image: url("Asset/Footer_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-footer__inner {
  width: min(100%, 2200px);
  margin: 0 auto;
  padding: clamp(72px, 5.2vw, 138px) clamp(36px, 6.2vw, 170px) clamp(44px, 4.2vw, 112px);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: clamp(46px, 4vw, 104px);
}

.site-footer__logo {
  display: block;
  width: clamp(210px, 15.2vw, 404px);
  height: auto;
  margin-bottom: clamp(26px, 2vw, 54px);
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin: 0;
}

.site-footer h2 {
  font-size: clamp(28px, 1.9vw, 52px);
  font-weight: 600;
  line-height: 1.1;
}

.site-footer__company-id {
  margin-top: 6px;
  font-size: clamp(16px, 1.12vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

.site-footer__slogan {
  width: clamp(120px, 8.48vw, 226px);
  height: auto;
  margin-top: clamp(8px, 0.8vw, 20px);
}

.site-footer__info {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(42px, 5vw, 136px);
  margin-bottom: clamp(56px, 4.8vw, 128px);
}

.site-footer__contact {
  display: grid;
  gap: clamp(34px, 2.8vw, 74px);
}

.site-footer h3 {
  margin-bottom: clamp(8px, 0.7vw, 18px);
  color: var(--wk-gold);
  font-size: clamp(21px, 1.5vw, 40px);
  font-weight: 600;
  line-height: 1.1;
}

.site-footer p,
.site-footer a {
  color: var(--wk-white);
  font-size: clamp(15px, 1.05vw, 28px);
  font-weight: 400;
  line-height: 1.28;
  text-decoration: none;
}

.site-footer__map {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: clamp(40px, 2.36vw, 63px);
  margin-top: clamp(20px, 1.6vw, 42px);
  padding: 0 clamp(20px, 1.45vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: clamp(13px, 0.78vw, 21px);
  font-weight: 600;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.site-footer__map img {
  width: clamp(16px, 1vw, 27px);
  height: auto;
}

.site-footer__map:hover,
.site-footer__map:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(280px, 1fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: clamp(36px, 4.8vw, 128px);
}

.site-footer__legal {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: clamp(28px, 2.2vw, 58px);
}

.site-footer__legal p {
  font-size: clamp(15px, 1vw, 27px);
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.1vw, 28px);
  flex-shrink: 0;
}

.site-footer__socials a {
  display: block;
  width: clamp(32px, 2vw, 53px);
  line-height: 0;
  transition: transform 180ms ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  transform: translateY(-2px);
}

.site-footer__socials img,
.site-footer__certifications {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__certifications {
  grid-column: 3;
  justify-self: start;
  width: clamp(240px, 18.78vw, 501px);
}

#chatbot-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  display: block;
  width: 126px;
  height: 126px;
  padding: 0;
  cursor: pointer;
  filter: drop-shadow(0 12px 24px rgba(0, 79, 56, 0.22));
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

#chatbot-toggle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#chatbot-toggle:hover,
#chatbot-toggle:focus-visible {
  filter: drop-shadow(0 16px 30px rgba(0, 79, 56, 0.3));
  transform: translateY(-3px) scale(1.03);
}

#chatbot-toggle:focus-visible {
  outline: 3px solid rgba(212, 170, 84, 0.55);
  outline-offset: 4px;
}

@media (max-width: 1200px) {
  .site-header {
    height: var(--nav-height);
  }

  .site-header__bar {
    padding: 0 28px 0 188px;
  }

  .site-header__nav {
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .kepimpinan-section__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .kepimpinan-section__intro {
    position: static;
  }

  .kepimpinan-section__intro h2 {
    max-width: 720px;
  }

  .kepimpinan-section__intro p {
    max-width: 760px;
  }

  .kepimpinan-section__people {
    padding-bottom: 0;
  }

  .kepimpinan-group__grid--single {
    grid-template-columns: minmax(0, 450px);
    max-width: 450px;
  }
}

@media (max-width: 980px) {
  .site-header__brand {
    width: 132px;
  }

  .site-header__nav,
  .site-header__actions > .site-header__country,
  .site-header__actions > .site-header__language,
  .site-header__actions > .site-header__login {
    display: none;
  }

  .site-header__bar {
    justify-content: flex-end;
    padding-left: 148px;
  }

  .site-header__mobile-menu {
    display: block;
  }

  .site-header__mobile-menu[open] .site-header__mobile-actions,
  .site-header__mobile-menu[open] nav {
    display: grid;
  }

  .site-header__mobile-actions,
  .site-header__mobile-menu nav {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    border-radius: 0;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  }

  .site-header__mobile-actions {
    z-index: 103;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 148px));
    justify-content: center;
    gap: 18px 16px;
    padding: 28px 24px 24px;
    color: var(--wk-black);
    background: #f7f8fa;
  }

  .site-header__mobile-language {
    position: relative;
    color: var(--wk-black);
  }

  .site-header__mobile-language .site-header__language-toggle {
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(13, 38, 59, 0.08);
    border-radius: 8px;
    background: var(--wk-white);
  }

  .site-header__mobile-language .site-header__language-menu {
    top: calc(100% + 10px);
    right: 0;
    width: min(82vw, 220px);
  }

  .site-header__mobile-country {
    color: var(--wk-black);
  }

  .site-header__mobile-country .site-header__country-toggle {
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(13, 38, 59, 0.08);
    border-radius: 8px;
    background: var(--wk-white);
    color: inherit;
  }

  .site-header__mobile-country .site-header__country-menu {
    top: calc(100% + 10px);
    right: auto;
    left: 0;
    width: min(82vw, 250px);
  }

  .site-header__mobile-login {
    display: inline-flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    width: min(100%, 520px);
    min-height: 56px;
    margin: 6px auto 0;
    border-radius: 8px;
    color: var(--wk-white);
    background: var(--wk-gold-gradient);
  }

  .site-header__mobile-menu nav {
    z-index: 102;
    top: calc(var(--nav-height) + 160px);
    display: none;
    gap: 0;
    padding: 28px 28px 34px;
    color: var(--wk-black);
    background: var(--wk-white);
  }

  .site-header__mobile-menu nav a {
    padding: 20px 0;
    color: #1f2937;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  }

  .site-header__mobile-nav-dropdown {
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  }

  .site-header__mobile-nav-dropdown summary {
    padding: 20px 0;
    color: #1f2937;
    font-size: 22px;
    font-weight: 600;
  }

  .site-header__mobile-nav-menu {
    gap: 8px;
    padding: 0 0 18px 18px;
  }

  .site-header__mobile-menu nav .site-header__mobile-nav-menu a {
    padding: 10px 0;
    color: #1f2937;
    font-size: 15px;
  }

  .site-header__mobile-menu nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .how-it-works {
    padding: 72px 0;
  }

  .container {
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 2rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .content-right {
    align-self: auto;
    justify-content: center;
    min-width: 0;
    width: 100%;
    order: 2;
  }

  .illustration-placeholder {
    width: 100%;
    max-width: 520px;
    margin-top: 0;
  }

  .apakah-wasiat {
    min-height: 360px;
  }

  .apakah-wasiat__title {
    flex-wrap: wrap;
    row-gap: 8px;
    font-size: clamp(32px, 6.4vw, 58px);
  }

  .apakah-wasiat__copy {
    font-size: clamp(13px, 1.92vw, 18px);
  }

  .main-tentangkami-section {
    min-height: 420px;
    padding: calc(var(--nav-height) + 72px) 28px 72px;
  }

  .main-tentangkami-section h1 {
    font-size: clamp(36px, 8vw, 72px);
  }

  .main-tentangkami-section p {
    font-size: clamp(13px, 1.9vw, 18px);
  }

  .main-pelan-harga-section {
    min-height: 420px;
    padding: calc(var(--nav-height) + 72px) 28px 72px;
  }

  .main-pelan-harga-section__eyebrow {
    font-size: clamp(18px, 2.6vw, 26px);
  }

  .main-pelan-harga-section h1 {
    font-size: clamp(36px, 8vw, 72px);
  }

  .main-pelan-harga-section__copy {
    font-size: clamp(13px, 1.9vw, 18px);
  }

  .harga-plan-section {
    padding: 62px 0 72px;
  }

  .harga-plan-section__inner {
    padding: 0 28px;
  }

  .harga-plan-tabs {
    margin-bottom: 54px;
  }

  .harga-smartfaraid {
    grid-template-columns: 1fr;
  }

  .harga-smartfaraid__image {
    justify-self: center;
    max-width: min(640px, 100%);
  }

  .harga-faraid-importance__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .harga-faraid-risks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .harga-faraid-benefits__grid {
    column-gap: 48px;
  }

  .harga-faraid-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 64px;
  }

  .harga-faraid-process__step::after {
    display: none;
  }

  .harga-faraid-audience__grid {
    gap: 18px;
  }

  .harga-faraid-documents__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
  }

  .harga-faraid-documents__grid::before {
    display: none;
  }

  .harga-faraid-documents__item {
    padding-top: 38px;
    padding-left: 0;
  }

  .harga-faraid-documents__item::before {
    top: 0;
    left: 50%;
  }

  .harga-faraid-documents__item::after {
    content: none;
  }

  .harga-plan-card-wrap {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .harga-plan-card__body {
    min-height: auto;
  }

  .harga-plan-features {
    grid-template-columns: 1fr;
  }

  .siapakah-tentangkami-section {
    min-height: auto;
    padding: 72px 0;
  }

  .siapakah-tentangkami-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 28px;
  }

  .siapakah-tentangkami-section h2 {
    font-size: clamp(34px, 6.4vw, 58px);
  }

  .siapakah-tentangkami-section__copy {
    max-width: none;
  }

  .siapakah-tentangkami-section__copy p {
    font-size: clamp(13px, 1.9vw, 18px);
  }

  .siapakah-tentangkami-section__laptop {
    justify-self: center;
    width: min(100%, 640px);
  }

  .visi-misi-section {
    padding: 72px 0;
  }

  .visi-misi-section__inner {
    padding: 0 28px;
  }

  .visi-misi-section__title {
    font-size: clamp(34px, 6.4vw, 56px);
  }

  .visi-misi-box-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 22px;
  }

  .kepimpinan-section {
    padding: 72px 0;
  }

  .kepimpinan-section__inner {
    padding: 0 28px;
  }

  .kepimpinan-section__intro h2 {
    font-size: clamp(36px, 8.2vw, 72px);
  }

  .kepimpinan-section__intro p {
    font-size: clamp(13px, 1.9vw, 18px);
    line-height: 1.35;
  }

  .kepimpinan-section__people {
    gap: 56px;
  }

  .kepimpinan-group h3 {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .kepimpinan-group__grid {
    grid-template-columns: minmax(0, min(100%, 450px));
    gap: 28px;
    max-width: 450px;
  }

  .lawyer-card {
    min-height: min(668px, calc((100vw - 56px) * 1.18));
  }

  .lawyer-drawer__panel {
    max-height: 86vh;
    border-radius: 18px 18px 0 0;
  }

  .collaboration-partner-section {
    padding: 42px 0;
  }

  .collaboration-partner-section__inner {
    gap: 24px;
    padding: 0 20px;
  }

  .collaboration-partner-section h2 {
    max-width: 620px;
    font-size: 18px;
  }

  .pencapaian-tentangkami-section {
    padding: 72px 0;
  }

  .pencapaian-tentangkami-section__inner {
    padding: 0 28px;
  }

  .pencapaian-tentangkami-section__title {
    font-size: clamp(34px, 6.4vw, 56px);
  }

  .pencapaian-tentangkami-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .pencapaian-tentangkami-card {
    max-width: 680px;
  }

  .metrics-section {
    aspect-ratio: auto;
    min-height: 420px;
  }

  .metrics-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 24px;
  }

  .metric-card + .metric-card::before {
    top: -14px;
    left: 50%;
    width: min(180px, 44vw);
    height: 1px;
    transform: translateX(-50%);
  }

  .metric-card strong {
    font-size: clamp(34px, 10.4vw, 51px);
  }

  .metric-card span {
    font-size: 13px;
    white-space: normal;
  }

  .hero,
  .hero,
  .hero,
  .hero-section {
    min-height: 720px;
  }

  .hero-section__slide {
    background-position: 65% center;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-section .main-title {
    font-size: 3rem;
  }

  .quick-plan-section {
    margin-top: -64px;
    margin-bottom: 48px;
    padding: 0;
  }

  .quick-plan-section__inner {
    width: min(calc(100% - 40px), 1888px);
    padding: 28px;
  }

  .quick-plan-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .quick-plan-tab {
    min-width: 0;
  }

  .quick-plan-panel,
  .quick-plan-panel[data-plan-panel="smarthibah"],
  .quick-plan-panel[data-plan-panel="package"],
  .quick-plan-panel--faraid,
  .quick-plan-panel--package {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 30px;
  }

  .quick-plan-cards,
  .quick-plan-cards--three {
    grid-template-columns: 1fr;
  }

  .quick-plan-start {
    justify-self: start;
  }

  .kepentingan-section {
    padding: 72px 0;
  }

  .kepentingan-section__inner {
    padding: 0 28px;
  }

  .kepentingan-section__title {
    font-size: clamp(34px, 6.4vw, 56px);
  }

  .kepentingan-card {
    flex-basis: min(293px, 72vw);
  }

  .kelebihan-section {
    padding: 72px 0;
  }

  .kelebihan-section__inner {
    padding: 0 28px;
  }

  .kelebihan-section__header {
    margin-bottom: 56px;
  }

  .kelebihan-section__title {
    font-size: clamp(34px, 6.4vw, 56px);
  }

  .kelebihan-grid {
    column-gap: 48px;
    row-gap: 48px;
  }

  .cta-section {
    min-height: 360px;
    padding: 72px 28px;
  }

  .cta-section__title {
    font-size: clamp(34px, 6.4vw, 56px);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }

  .faq-section {
    padding: 72px 0;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 28px;
  }

  .faq-section__title {
    font-size: clamp(34px, 6.4vw, 56px);
  }

  .site-footer__inner {
    padding: 72px 28px 56px;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
  }

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

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__legal,
  .site-footer__certifications {
    grid-column: auto;
  }

  .site-footer__legal {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  :root {
    --nav-height: 58px;
  }

  .how-it-works {
    padding: 48px 0;
  }

  .site-header__bar {
    gap: 10px;
    padding: 0 14px 0 102px;
  }

  .site-header__brand {
    width: 98px;
  }

  .site-header__actions {
    gap: 10px;
  }

  .site-header__actions > .site-header__country,
  .site-header__actions > .site-header__language {
    display: none;
  }

  .site-header__login {
    height: 28px;
    min-height: 28px;
    padding-inline: 16px;
    font-size: 12px;
    font-weight: 700;
  }

  .site-header__mobile-menu > summary {
    width: 32px;
    height: 32px;
  }

  .hero,
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-section__slide {
    background-position: 70% center;
  }

  .hero-content {
    max-width: 100%;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
  }

  .hero-section .subtitle {
    font-size: 0.95rem;
  }

  .hero-section .main-title {
    font-size: 2.4rem;
  }

  .hero-section .hero-content--hibah .main-title {
    font-size: 2.4rem;
  }

  .hero-section .hero-content--hibah .main-title .text-black {
    font-size: inherit;
  }

  .hero-section .description-highlight,
  .hero-section .description {
    font-size: 0.9rem;
  }

  .hero-section .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero-section__dots {
    bottom: 72px;
    gap: 10px;
    padding: 7px 9px;
  }

  .hero-section__dot {
    width: 10px;
    height: 10px;
  }

  .hero-section__dot.is-active {
    width: 30px;
  }

  .quick-plan-section {
    margin-top: -44px;
    margin-bottom: 32px;
    padding: 0;
  }

  .quick-plan-section__inner {
    width: min(calc(100% - 24px), 1888px);
    padding: 24px 18px;
    overflow: hidden;
  }

  .quick-plan-tabs {
    display: flex;
    grid-template-columns: none;
    width: 100%;
    min-height: 56px;
    margin-bottom: 24px;
    padding: 4px 20px;
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .quick-plan-tabs.has-left-fade {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 100%);
  }

  .quick-plan-tabs.has-right-fade {
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent 100%);
  }

  .quick-plan-tabs.has-left-fade.has-right-fade {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  }

  .quick-plan-tabs::-webkit-scrollbar {
    display: none;
  }

  .quick-plan-mobile-select {
    display: none;
  }

  .quick-plan-tab {
    flex: 0 0 auto;
    min-width: clamp(150px, 42vw, 190px);
    min-height: 48px;
    padding: 0 24px;
    gap: 0;
    border-radius: 999px;
    background: #f5f5f5;
    color: var(--wk-black);
    font-size: 16px;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .quick-plan-tab.is-active {
    color: var(--wk-white);
    background: linear-gradient(90deg, #18523a 0%, #33744f 100%);
  }

  .quick-plan-tab .quick-plan-tab__icon,
  .quick-plan-tab.is-active .quick-plan-tab__icon {
    display: none;
  }

  .quick-plan-faraid-copy h2 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.08;
  }

  .quick-plan-faraid-copy p {
    line-height: 1.5;
  }

  .quick-plan-faraid-copy strong {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.35;
  }

  .quick-plan-control label,
  .quick-plan-options h2 {
    font-size: 18px;
  }

  .quick-plan-control select {
    font-size: 22px;
  }

  .quick-plan-card {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 22px;
  }

  .quick-plan-card span,
  .quick-plan-card strong {
    font-size: 22px;
    overflow-wrap: anywhere;
  }

  .quick-plan-card small,
  .quick-plan-help {
    font-size: 13px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .quick-plan-start {
    width: min(100%, 260px);
    min-height: 46px;
    font-size: 18px;
  }

  .quick-plan-panel[data-plan-panel="package"] {
    gap: 22px;
  }

  .quick-plan-panel[data-plan-panel="package"] .quick-plan-options,
  .quick-plan-panel[data-plan-panel="package"] .quick-plan-cards {
    min-width: 0;
  }

  .quick-plan-panel[data-plan-panel="package"] .quick-plan-start {
    justify-self: stretch;
    width: 100%;
    max-width: 260px;
    min-height: 48px;
  }

  .container {
    padding: 3.25rem 1rem;
  }

  .main-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .main-title__line {
    display: inline;
    transform: none;
    white-space: normal;
  }

  .platform-desc {
    margin-bottom: 2.25rem;
  }

  .steps {
    gap: 2rem;
  }

  .step {
    gap: 1rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .apakah-wasiat {
    min-height: 320px;
    padding: 56px 20px;
  }

  .apakah-wasiat__title {
    display: grid;
    gap: 4px;
    font-size: clamp(30px, 8vw, 42px);
  }

  .apakah-wasiat__copy {
    gap: 16px;
    font-size: 12px;
    line-height: 1.5;
  }

  .main-tentangkami-section {
    align-items: flex-end;
    min-height: 520px;
    padding: calc(var(--nav-height) + 56px) 20px 56px;
    background-position: 58% center;
  }

  .main-tentangkami-section__content {
    padding: 28px 22px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(2px);
  }

  .main-tentangkami-section h1 {
    display: grid;
    gap: 4px;
    font-size: clamp(34px, 10vw, 48px);
  }

  .main-tentangkami-section p {
    font-size: 13px;
    line-height: 1.45;
  }

  .main-pelan-harga-section {
    min-height: 420px;
    padding: calc(var(--nav-height) + 56px) 20px 56px;
  }

  .main-pelan-harga-section__eyebrow {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .main-pelan-harga-section h1 {
    gap: 4px;
    margin-bottom: 24px;
    font-size: clamp(34px, 10vw, 48px);
  }

  .main-pelan-harga-section__copy {
    font-size: 13px;
    line-height: 1.45;
  }

  .harga-plan-section {
    padding: 48px 0 56px;
  }

  .harga-plan-section__inner {
    padding: 0 20px;
  }

  .harga-plan-switch {
    gap: 10px;
    margin-bottom: 18px;
  }

  .harga-plan-tabs {
    width: 100%;
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    min-height: 56px;
    padding: 4px 20px;
    margin-bottom: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .harga-plan-tabs.has-left-fade {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 100%);
  }

  .harga-plan-tabs.has-right-fade {
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 28px), transparent 100%);
  }

  .harga-plan-tabs.has-left-fade.has-right-fade {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  }

  .harga-plan-tabs::-webkit-scrollbar {
    display: none;
  }

  .harga-plan-tab {
    gap: 0;
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: #f5f5f5;
    color: var(--wk-black);
    font-size: 16px;
    font-weight: 600;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .harga-plan-tab.is-active {
    color: var(--wk-white);
    background: linear-gradient(90deg, #18523a 0%, #33744f 100%);
  }

  .harga-plan-tab img,
  .harga-plan-tab.is-active img {
    display: none;
  }

  .harga-smartfaraid {
    row-gap: 28px;
  }

  .harga-smartfaraid h2 {
    margin-bottom: 20px;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.05;
  }

  .harga-smartfaraid h3 {
    font-size: 21px;
  }

  .harga-smartfaraid p,
  .harga-smartfaraid__list ul {
    font-size: 15px;
    line-height: 1.45;
  }

  .harga-smartfaraid__list {
    margin-top: 34px;
  }

  .harga-smartfaraid__image {
    max-width: 100%;
  }

  .harga-faraid-importance {
    margin-top: 58px;
  }

  .harga-faraid-importance__inner {
    padding: 64px 20px 72px;
  }

  .harga-faraid-importance h2 {
    margin-bottom: 24px;
    font-size: clamp(42px, 12vw, 48px);
    line-height: 1.02;
  }

  .harga-faraid-importance__subtitle {
    margin-bottom: 44px;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.25;
  }

  .harga-faraid-importance__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .harga-faraid-importance__card {
    gap: 16px;
  }

  .harga-faraid-importance__card img {
    aspect-ratio: 1.65 / 1;
  }

  .harga-faraid-importance__card h3 {
    font-size: 21px;
  }

  .harga-faraid-importance__card p {
    max-width: none;
    font-size: 14px;
    line-height: 1.45;
  }

  .harga-faraid-risks__inner {
    padding: 54px 20px 62px;
  }

  .harga-faraid-risks h2 {
    margin-bottom: 34px;
    font-size: 22px;
    line-height: 1.25;
  }

  .harga-faraid-risks__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .harga-faraid-risks__card {
    min-height: 112px;
    padding: 24px 18px;
  }

  .harga-faraid-risks__card img {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
  }

  .harga-faraid-risks__card h3 {
    font-size: 21px;
  }

  .harga-faraid-risks__closing {
    margin-top: 34px;
    font-size: 16px;
    line-height: 1.4;
  }

  .harga-faraid-benefits__inner {
    padding: 64px 20px 72px;
  }

  .harga-faraid-benefits__header {
    margin-bottom: 46px;
  }

  .harga-faraid-benefits h2 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.04;
  }

  .harga-faraid-benefits__header p {
    font-size: 16px;
  }

  .harga-faraid-benefits__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .harga-faraid-benefits__item img {
    width: 26px;
    height: 26px;
    margin-bottom: 17px;
  }

  .harga-faraid-benefits__item h3 {
    font-size: 26px;
  }

  .harga-faraid-benefits__item p {
    font-size: 15px;
    line-height: 1.45;
  }

  .harga-faraid-process__inner {
    padding: 64px 20px 72px;
  }

  .harga-faraid-process__header {
    margin-bottom: 52px;
  }

  .harga-faraid-process h2 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.04;
  }

  .harga-faraid-process__header p {
    font-size: 16px;
  }

  .harga-faraid-process__steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .harga-faraid-process__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
  }

  .harga-faraid-process__icon img {
    width: 100%;
    height: 100%;
  }

  .harga-faraid-process__step h3 {
    font-size: 23px;
  }

  .harga-faraid-process__step p {
    max-width: 320px;
    font-size: 15px;
    line-height: 1.35;
  }

  .harga-faraid-audience__inner {
    padding: 64px 20px 72px;
  }

  .harga-faraid-audience__header {
    margin-bottom: 36px;
    text-align: left;
  }

  .harga-faraid-audience h2 {
    font-size: clamp(42px, 12vw, 48px);
    line-height: 1.04;
  }

  .harga-faraid-audience__grid {
    width: 100%;
    gap: 18px;
  }

  .harga-faraid-audience__card,
  .harga-faraid-audience__card:nth-child(n) {
    flex-basis: min(293px, 76vw);
    text-align: left;
  }

  .harga-faraid-audience__photo {
    height: 260px;
  }

  .harga-faraid-audience__card h3 {
    margin-top: 18px;
    font-size: 21px;
  }

  .harga-faraid-audience__card p {
    font-size: 14px;
  }

  .harga-faraid-documents__inner {
    padding: 58px 20px 68px;
  }

  .harga-faraid-documents h2 {
    margin-bottom: 38px;
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
  }

  .harga-faraid-documents__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .harga-faraid-documents__item h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .harga-faraid-documents__item p {
    font-size: 14px;
    line-height: 1.32;
  }

  .harga-faraid-documents__note {
    margin-top: 38px;
    font-size: 16px;
    line-height: 1.4;
  }

  .harga-faraid-cta__inner {
    min-height: 430px;
    padding: 70px 20px 78px;
  }

  .harga-faraid-cta h2 {
    font-size: clamp(34px, 9.8vw, 48px);
    line-height: 1.08;
  }

  .harga-faraid-cta p {
    font-size: 14px;
    line-height: 1.45;
  }

  .harga-faraid-cta p br {
    display: none;
  }

  .harga-faraid-cta__actions {
    display: grid;
    width: min(100%, 290px);
    gap: 14px;
    margin-top: 34px;
  }

  .harga-faraid-cta__button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 16px;
  }

  .harga-plan-intro {
    margin-bottom: 34px;
  }

  .harga-plan-intro h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .harga-plan-intro p {
    font-size: 13px;
    line-height: 1.38;
  }

  .harga-plan-card-wrap {
    gap: 18px;
    padding: 18px;
  }

  .harga-plan-card__body {
    padding: 30px 24px;
  }

  .harga-plan-card h3 {
    font-size: 25px;
  }

  .harga-plan-card p {
    min-height: 0;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .harga-plan-card strong {
    margin-bottom: 28px;
    font-size: 40px;
  }

  .harga-plan-card a,
  .harga-plan-card button {
    min-height: 44px;
    margin-bottom: 34px;
    font-size: 15px;
  }

  .harga-plan-feature {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    font-size: 14px;
    line-height: 1.25;
  }

  .harga-plan-feature img {
    width: 15px;
  }

  .siapakah-tentangkami-section {
    padding: 56px 0;
    background-position: 46% center;
  }

  .siapakah-tentangkami-section__inner {
    gap: 36px;
    padding: 0 20px;
  }

  .siapakah-tentangkami-section h2 {
    display: grid;
    gap: 4px;
    margin-bottom: 28px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .siapakah-tentangkami-section__copy {
    gap: 20px;
  }

  .siapakah-tentangkami-section__copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  .siapakah-tentangkami-section__laptop {
    width: min(100%, 420px);
  }

  .visi-misi-section {
    padding: 56px 0;
  }

  .visi-misi-section__inner {
    padding: 0 20px;
  }

  .visi-misi-section__title {
    display: grid;
    gap: 4px;
    margin-bottom: 32px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .visi-misi-box-grid {
    gap: 18px;
    margin-bottom: 18px;
  }

  .kepimpinan-section {
    padding: 56px 0;
  }

  .kepimpinan-section__inner {
    gap: 42px;
    padding: 0 20px;
  }

  .kepimpinan-section__intro h2 {
    gap: 4px;
    font-size: clamp(34px, 10vw, 52px);
  }

  .kepimpinan-section__people {
    gap: 46px;
  }

  .kepimpinan-group h3 {
    font-size: 22px;
  }

  .kepimpinan-group__grid {
    max-width: none;
  }

  .lawyer-card {
    min-height: min(580px, calc((100vw - 40px) * 1.18));
  }

  .lawyer-card h4 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .lawyer-card__front-copy p {
    font-size: 14px;
  }

  .lawyer-drawer__panel {
    padding: 34px 20px 46px;
  }

  .lawyer-drawer__close {
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
  }

  .lawyer-drawer__header {
    padding-right: 44px;
  }

  .lawyer-drawer__header h2 {
    font-size: clamp(26px, 7.8vw, 36px);
  }

  .lawyer-drawer__header p {
    font-size: clamp(18px, 5.4vw, 25px);
  }

  .lawyer-drawer__content {
    font-size: 14px;
    line-height: 1.45;
  }

  .pencapaian-tentangkami-section {
    padding: 56px 0;
  }

  .pencapaian-tentangkami-section__inner {
    padding: 0 20px;
  }

  .pencapaian-tentangkami-section__title {
    display: grid;
    gap: 4px;
    margin-bottom: 34px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .pencapaian-tentangkami-grid {
    gap: 38px;
  }

  .pencapaian-tentangkami-card__logo {
    height: 100px;
    margin-bottom: 18px;
  }

  .pencapaian-tentangkami-card__logo img {
    max-width: min(100%, 260px);
  }

  .pencapaian-tentangkami-card h3 {
    font-size: 24px;
  }

  .pencapaian-tentangkami-card p {
    font-size: 14px;
    line-height: 1.35;
  }

  .kepentingan-section {
    padding: 56px 0;
  }

  .kepentingan-section__inner {
    padding: 0 20px;
  }

  .kepentingan-section__header {
    margin-bottom: 32px;
  }

  .kepentingan-section__title {
    display: grid;
    gap: 4px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .kepentingan-section__header p {
    font-size: 13px;
  }

  .kepentingan-card {
    flex-basis: min(293px, 82vw);
  }

  .kepentingan-slider__controls {
    justify-content: flex-start;
  }

  .kelebihan-section {
    padding: 56px 0;
  }

  .kelebihan-section__inner {
    padding: 0 20px;
  }

  .kelebihan-section__header {
    margin-bottom: 40px;
  }

  .kelebihan-section__title {
    display: grid;
    gap: 4px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .kelebihan-section__header p {
    font-size: 13px;
  }

  .kelebihan-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .kelebihan-item h3 {
    font-size: 24px;
  }

  .kelebihan-item p {
    font-size: 14px;
    line-height: 1.35;
  }

  .cta-section {
    min-height: 420px;
    padding: 64px 20px;
  }

  .cta-section__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .cta-section p {
    font-size: 13px;
  }

  .cta-section__button {
    width: min(100%, 320px);
    min-width: 0;
    min-height: 44px;
    font-size: 14px;
  }

  .testimonial-section {
    padding: 56px 0;
  }

  .testimonial-section__inner {
    padding: 0 20px;
  }

  .testimonial-section__header {
    margin-bottom: 32px;
  }

  .testimonial-section__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .testimonial-section__header p {
    font-size: 13px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card__stars {
    font-size: 20px;
  }

  .testimonial-card__quote {
    font-size: 14px;
  }

  .testimonial-card__person h3 {
    font-size: 20px;
  }

  .testimonial-card__person p {
    font-size: 13px;
  }

  .faq-section {
    padding: 56px 0;
  }

  .faq-section__inner {
    gap: 44px;
    padding: 0 20px;
  }

  .faq-section__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .faq-section__intro p {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.35;
  }

  .faq-section__button {
    width: min(100%, 320px);
    min-width: 0;
    min-height: 44px;
    font-size: 14px;
  }

  .faq-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding-bottom: 28px;
  }

  .faq-item + .faq-item {
    padding-top: 28px;
  }

  .faq-item__number {
    font-size: 20px;
  }

  .faq-item__content h3 {
    font-size: 20px;
  }

  .faq-item__content p {
    font-size: 14px;
    line-height: 1.35;
  }

  .site-footer {
    min-height: auto;
  }

  .site-footer__inner {
    padding: 56px 20px 48px;
  }

  .site-footer__top {
    display: grid;
    gap: 32px;
    margin-bottom: 44px;
  }

  .site-footer__logo {
    width: min(260px, 72vw);
    margin-bottom: 24px;
  }

  .site-footer h2 {
    font-size: 26px;
  }

  .site-footer__company-id {
    font-size: 15px;
  }

  .site-footer__slogan {
    width: 122px;
  }

  .site-footer__info {
    gap: 34px;
    margin-bottom: 44px;
  }

  .site-footer__contact {
    gap: 28px;
  }

  .site-footer h3 {
    font-size: 21px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 14px;
    line-height: 1.35;
  }

  .site-footer__map {
    min-height: 38px;
    font-size: 13px;
  }

  .site-footer__legal {
    display: grid;
    gap: 20px;
  }

  .site-footer__socials a {
    width: 34px;
  }

  .site-footer__certifications {
    width: min(260px, 78vw);
  }

  #chatbot-toggle {
    right: 12px;
    bottom: 16px;
    width: 108px;
    height: 108px;
  }
}

@media (max-width: 768px) {
  .site-container,
  .hero-container {
    width: min(calc(100% - 32px), 1200px);
  }

  .hero,
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .hero-content {
    padding: 1.5rem;
  }

  .hero-section .main-title {
    font-size: 2.1rem;
  }
}

body.faq-page .faq-section {
  min-height: calc(100vh - var(--nav-height));
  padding: clamp(86px, 7.2vw, 150px) 0 clamp(92px, 8vw, 170px);
  background: var(--wk-white);
}

body.faq-page .faq-section__inner {
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  align-items: start;
  gap: clamp(80px, 9vw, 210px);
  width: min(100%, 1920px);
  padding: 0 clamp(28px, 6vw, 128px);
}

body.faq-page .faq-section__intro {
  position: sticky;
  top: calc(var(--nav-height) + 76px);
  padding-top: 0;
}

body.faq-page .faq-section__title {
  display: block;
  margin-bottom: clamp(30px, 2.6vw, 56px);
  font-size: clamp(48px, 3.9vw, 72px);
  font-weight: 700;
  line-height: 0.98;
}

body.faq-page .faq-section__title span {
  display: inline;
}

body.faq-page .faq-section__title span:first-child {
  color: #18523a;
}

body.faq-page .faq-section__title span + span {
  color: var(--wk-black);
}

body.faq-page .faq-section__intro p {
  max-width: 620px;
  margin-bottom: clamp(30px, 3vw, 62px);
  font-size: clamp(16px, 1.135vw, 22px);
  font-weight: 400;
  line-height: 1.16;
}

body.faq-page .faq-section__button {
  width: 300px;
  min-width: 0;
  min-height: clamp(54px, 3.1vw, 66px);
  padding-inline: 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, #195238 0%, #33744f 100%);
  font-size: 16px;
  font-weight: 600;
}

body.faq-page .faq-section__content {
  display: grid;
  gap: clamp(24px, 2vw, 38px);
}

body.faq-page .faq-category-tabs {
  display: flex;
  align-items: flex-end;
  gap: clamp(18px, 2.2vw, 42px);
  border-bottom: 2px solid rgba(0, 0, 0, 0.14);
  overflow-x: auto;
  scrollbar-width: none;
}

body.faq-page .faq-category-tabs::-webkit-scrollbar {
  display: none;
}

body.faq-page .faq-category-tab {
  flex: 0 0 auto;
  padding: 0 0 clamp(14px, 1.1vw, 24px);
  border: 0;
  border-bottom: 3px solid transparent;
  color: #a8a8a8;
  background: transparent;
  font: inherit;
  font-size: clamp(15px, 1vw, 21px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

body.faq-page .faq-category-tab.is-active {
  color: #18523a;
  border-bottom-color: #c9a34a;
}

body.faq-page .faq-category-tab:focus-visible {
  outline: 3px solid rgba(0, 79, 56, 0.2);
  outline-offset: 6px;
}

body.faq-page .faq-group {
  display: grid;
  gap: clamp(24px, 2vw, 38px);
}

body.faq-page .faq-group[hidden] {
  display: none;
}

body.faq-page .faq-group h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.faq-page .faq-list {
  gap: clamp(12px, 1vw, 18px);
}

body.faq-page .faq-accordion {
  border-radius: 6px;
  background: #f7f7f7;
  overflow: hidden;
}

body.faq-page .faq-accordion summary {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: clamp(18px, 1.4vw, 34px);
  min-height: clamp(72px, 4.3vw, 96px);
  padding: clamp(18px, 1.45vw, 30px) clamp(24px, 2vw, 44px);
  color: var(--wk-black);
  font-size: clamp(18px, 1.25vw, 27px);
  font-weight: 600;
  line-height: 1.12;
  list-style: none;
  cursor: pointer;
}

body.faq-page .faq-accordion summary::-webkit-details-marker {
  display: none;
}

body.faq-page .faq-accordion summary::before {
  content: "+";
  color: #c9a34a;
  font-size: clamp(20px, 1.35vw, 29px);
  font-weight: 700;
  line-height: 1;
}

body.faq-page .faq-accordion[open] summary::before {
  content: "-";
}

body.faq-page .faq-accordion__panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 280ms ease, opacity 220ms ease;
}

body.faq-page .faq-accordion[open] .faq-accordion__panel {
  opacity: 1;
}

body.faq-page .faq-accordion p {
  margin: 0;
  padding: 0 clamp(24px, 2vw, 44px) clamp(26px, 1.9vw, 40px)
    calc(clamp(24px, 2vw, 44px) + 34px + clamp(18px, 1.4vw, 34px));
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 400;
  line-height: 1.28;
}

body.faq-page .faq-accordion p + p {
  padding-top: 0;
}

body.faq-page .faq-policy-section {
  padding: clamp(82px, 7vw, 150px) 0;
  background: #f7f9f8;
}

body.faq-page .faq-policy-section__inner {
  display: grid;
  justify-items: center;
  gap: clamp(42px, 4vw, 76px);
  width: min(100%, 1920px);
  padding: 0 clamp(28px, 6vw, 128px);
  text-align: center;
}

body.faq-page .faq-policy-section__intro {
  display: grid;
  justify-items: center;
}

body.faq-page .faq-policy-section__title {
  display: block;
  margin: 0 0 clamp(24px, 2vw, 42px);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

body.faq-page .faq-policy-section__title span {
  display: inline;
}

body.faq-page .faq-policy-section__title span:first-child {
  color: #18523a;
}

body.faq-page .faq-policy-section__title span + span {
  color: var(--wk-black);
}

body.faq-page .faq-policy-section__intro p {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

body.faq-page .faq-policy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1vw, 18px);
  width: min(100%, 1120px);
}

body.faq-page .faq-policy-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(72px, 4.3vw, 96px);
  padding: clamp(18px, 1.45vw, 30px) clamp(24px, 2vw, 44px);
  border: 0;
  border-radius: 6px;
  color: var(--wk-black);
  background: #edf7f2;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease;
}

body.faq-page .faq-policy-card:hover,
body.faq-page .faq-policy-card:focus-visible {
  background: #e4f1eb;
}

body.faq-page .faq-policy-card strong {
  font-size: clamp(18px, 1.25vw, 27px);
  font-weight: 600;
  line-height: 1.12;
}

body.faq-page .faq-policy-drawer {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: flex;
  align-items: flex-end;
  visibility: hidden;
  pointer-events: none;
}

body.faq-page .faq-policy-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

body.faq-page .faq-policy-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms ease;
}

body.faq-page .faq-policy-drawer.is-open .faq-policy-drawer__backdrop {
  opacity: 1;
}

body.faq-page .faq-policy-drawer__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(20px, 1.6vw, 34px);
  width: 100%;
  height: min(88vh, 980px);
  padding: clamp(34px, 3vw, 64px) clamp(22px, 6vw, 120px) clamp(28px, 3vw, 60px);
  border-radius: 26px 26px 0 0;
  background: var(--wk-white);
  color: var(--wk-black);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 300ms ease;
}

body.faq-page .faq-policy-drawer.is-open .faq-policy-drawer__panel {
  transform: translateY(0);
}

body.faq-page .faq-policy-drawer__panel:focus {
  outline: none;
}

body.faq-page .faq-policy-drawer__close {
  position: absolute;
  top: clamp(14px, 1.4vw, 24px);
  right: clamp(18px, 4vw, 64px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dadada;
  border-radius: 999px;
  color: var(--wk-black);
  background: #f7f7f7;
  font-family: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

body.faq-page .faq-policy-drawer__header {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

body.faq-page .faq-policy-drawer__header h2 {
  margin: 0;
  color: #18523a;
  font-size: clamp(28px, 2.4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}

body.faq-page .faq-policy-drawer__header p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.35;
}

body.faq-page .faq-policy-drawer__content {
  width: 100%;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(22px, 2.2vw, 44px);
  border: 1px solid rgba(0, 79, 56, 0.12);
  border-radius: 8px;
  background: #fbfdfb;
}

body.faq-page .faq-policy-drawer__content h3 {
  margin: clamp(24px, 2vw, 36px) 0 10px;
  color: #18523a;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.2;
}

body.faq-page .faq-policy-drawer__content h3:first-child {
  margin-top: 0;
}

body.faq-page .faq-policy-drawer__content p {
  margin: 0;
  color: rgba(0, 0, 0, 0.76);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.65;
}

body.faq-page .faq-policy-drawer__content p + p,
body.faq-page .faq-policy-drawer__content ul + p,
body.faq-page .faq-policy-drawer__content p + ul {
  margin-top: 8px;
}

body.faq-page .faq-policy-drawer__content .faq-policy-clause {
  line-height: 1.55;
}

body.faq-page .faq-policy-drawer__content ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
  color: rgba(0, 0, 0, 0.76);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
}

body.faq-page .faq-policy-drawer__content li + li {
  margin-top: 6px;
}

body.faq-policy-drawer-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  body.faq-page .faq-accordion__panel {
    transition: none;
  }

  body.faq-page .faq-policy-drawer__backdrop,
  body.faq-page .faq-policy-drawer__panel {
    transition: none;
  }
}

body.perkongsian-page .perkongsian-hero {
  display: grid;
  place-items: center;
  min-height: clamp(410px, 32vw, 520px);
  padding: clamp(78px, 7vw, 135px) clamp(24px, 6vw, 128px);
  background: var(--wk-white);
  color: var(--wk-black);
  text-align: center;
}

body.perkongsian-page .perkongsian-hero__inner {
  width: min(100%, 1580px);
}

body.perkongsian-page .perkongsian-hero h1 {
  display: grid;
  gap: clamp(10px, 0.8vw, 16px);
  margin: 0 0 clamp(36px, 3.4vw, 68px);
  font-size: 60px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

body.perkongsian-page .perkongsian-hero h1 span:first-child {
  color: #18523a;
}

body.perkongsian-page .perkongsian-hero h1 span:last-child {
  color: var(--wk-black);
}

body.perkongsian-page .perkongsian-hero p {
  margin: 0 auto;
  max-width: 1560px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.34;
}

body.perkongsian-page .perkongsian-sertai {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 21.9vw, 584px);
  padding: clamp(70px, 6vw, 126px) clamp(24px, 6vw, 128px);
  color: var(--wk-white);
  background:
    url("Asset/Sertai_bg.png") center / cover no-repeat,
    var(--wk-green);
  text-align: center;
}

body.perkongsian-page .perkongsian-sertai__inner {
  width: min(100%, 1500px);
}

body.perkongsian-page .perkongsian-sertai h2 {
  margin: 0;
  color: var(--wk-white);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

body.perkongsian-page .perkongsian-sertai h2 {
  margin-bottom: clamp(24px, 2vw, 46px);
}

body.perkongsian-page .perkongsian-sertai h2 span {
  display: inline;
}

body.perkongsian-page .perkongsian-sertai h2 span + span {
  color: #c9a34a;
}

body.perkongsian-page .perkongsian-sertai p {
  margin: 0 auto;
  max-width: 1500px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

body.perkongsian-page .perkongsian-sertai p + p {
  margin-top: clamp(22px, 1.9vw, 42px);
}

body.perkongsian-page .perkongsian-program {
  padding: clamp(96px, 6.2vw, 160px) clamp(24px, 6vw, 166px) clamp(108px, 7vw, 180px);
  background: var(--wk-white);
  color: var(--wk-black);
}

body.perkongsian-page .perkongsian-program__inner {
  width: min(100%, 2220px);
  margin: 0 auto;
}

body.perkongsian-page .perkongsian-program__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 3.8vw, 78px);
}

body.perkongsian-page .perkongsian-program-card {
  display: grid;
  align-content: start;
  gap: clamp(28px, 2.4vw, 54px);
}

body.perkongsian-page .perkongsian-program-card img {
  width: 100%;
  aspect-ratio: 1.777 / 1;
  object-fit: cover;
  border-radius: 8px;
}

body.perkongsian-page .perkongsian-program-card__content {
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: clamp(240px, 16vw, 345px);
  color: var(--wk-black);
}

body.perkongsian-page .perkongsian-program-card h3 {
  margin: 0 0 clamp(14px, 1vw, 26px);
  font-size: clamp(34px, 2.6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
}

body.perkongsian-page .perkongsian-program-card h3 span {
  display: inline;
  color: var(--wk-black);
}

body.perkongsian-page .perkongsian-program-card:first-child h3 span + span {
  color: #c9a34a;
}

body.perkongsian-page .perkongsian-program-card:nth-child(2) h3 span + span {
  color: #18523a;
}

html[lang="en"] body.perkongsian-page .perkongsian-program-card:first-child h3 span:first-child {
  color: #c9a34a;
}

html[lang="en"] body.perkongsian-page .perkongsian-program-card:first-child h3 span + span {
  color: var(--wk-black);
}

html[lang="en"] body.perkongsian-page .perkongsian-program-card:nth-child(2) h3 span:first-child {
  color: #18523a;
}

html[lang="en"] body.perkongsian-page .perkongsian-program-card:nth-child(2) h3 span + span {
  color: var(--wk-black);
}

body.perkongsian-page .perkongsian-program-card p {
  max-width: 880px;
  margin: 0 0 clamp(34px, 3vw, 72px);
  font-size: clamp(16px, 1.12vw, 25px);
  font-weight: 400;
  line-height: 1.25;
}

body.perkongsian-page .perkongsian-program-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}

body.perkongsian-page .perkongsian-program-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: clamp(220px, 14vw, 318px);
  min-height: clamp(52px, 3vw, 68px);
  padding: 0 clamp(26px, 2vw, 46px);
  border-radius: 999px;
  color: var(--wk-white);
  font-size: clamp(16px, 1.1vw, 25px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease;
}

body.perkongsian-page button.perkongsian-program-card__button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

body.perkongsian-page .perkongsian-program-card__button--gold {
  background: linear-gradient(90deg, #b99543 0%, #d4af6b 100%);
}

body.perkongsian-page .perkongsian-program-card__button--green {
  min-width: clamp(160px, 9vw, 225px);
  background: linear-gradient(90deg, #18523a 0%, #33744f 100%);
}

body.perkongsian-page .perkongsian-program-card__button--grey {
  min-width: clamp(190px, 12vw, 275px);
  color: var(--wk-green);
  background: #f2f2f2;
}

body.perkongsian-page .perkongsian-program-card__button:hover,
body.perkongsian-page .perkongsian-program-card__button:focus-visible {
  transform: translateY(-2px);
}

body.perkongsian-page .program-drawer {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: flex;
  align-items: flex-end;
  visibility: hidden;
  pointer-events: none;
}

body.perkongsian-page .program-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

body.perkongsian-page .program-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  transition: opacity 220ms ease;
}

body.perkongsian-page .program-drawer.is-open .program-drawer__backdrop {
  opacity: 1;
}

body.perkongsian-page .program-drawer__panel {
  position: relative;
  width: 100%;
  max-height: min(88vh, 1080px);
  overflow-y: auto;
  padding: clamp(54px, 5vw, 118px) clamp(26px, 6.4vw, 165px) clamp(62px, 5.4vw, 118px);
  border-radius: 26px 26px 0 0;
  background: var(--wk-white);
  color: var(--wk-black);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 300ms ease;
}

body.perkongsian-page .program-drawer.is-open .program-drawer__panel {
  transform: translateY(0);
}

body.perkongsian-page .program-drawer__panel:focus {
  outline: none;
}

body.perkongsian-page .program-drawer__close {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: clamp(22px, 4vw, 72px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dadada;
  border-radius: 999px;
  color: var(--wk-black);
  background: #f7f7f7;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

body.perkongsian-page .program-drawer__close img {
  display: none;
}

body.perkongsian-page .program-drawer__image {
  display: block;
  width: 100%;
  height: clamp(220px, 22.5vw, 430px);
  object-fit: cover;
  border-radius: 8px;
}

body.perkongsian-page .program-drawer__intro {
  margin-top: clamp(44px, 3.4vw, 76px);
}

body.perkongsian-page .program-drawer__intro h2 {
  margin: 0 0 clamp(12px, 1vw, 22px);
  font-size: clamp(32px, 2.6vw, 58px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

body.perkongsian-page .program-drawer__intro h2 span:first-child {
  color: var(--wk-black);
}

body.perkongsian-page .program-drawer__intro h2 span:last-child {
  color: #c9a34a;
}

body.perkongsian-page .program-drawer__intro p {
  max-width: 1840px;
  margin: 0;
  font-size: clamp(15px, 1.08vw, 22px);
  font-weight: 400;
  line-height: 1.24;
}

body.perkongsian-page .program-drawer__intro p + p {
  margin-top: clamp(24px, 1.8vw, 42px);
}

body.perkongsian-page .program-drawer__professions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(36px, 3.4vw, 72px) clamp(34px, 5.6vw, 118px);
  margin-top: clamp(56px, 4.6vw, 102px);
}

body.perkongsian-page .program-drawer__profession {
  display: grid;
  align-content: start;
  justify-items: start;
  min-width: 0;
}

body.perkongsian-page .program-drawer__profession img {
  width: clamp(28px, 1.8vw, 38px);
  height: clamp(28px, 1.8vw, 38px);
  margin-bottom: clamp(14px, 1vw, 24px);
  object-fit: contain;
}

body.perkongsian-page .program-drawer__profession h3 {
  margin: 0 0 6px;
  color: #c9a34a;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

body.perkongsian-page .program-drawer__profession p {
  margin: 0;
  color: var(--wk-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
}

body.perkongsian-page .program-drawer--pwp .program-drawer__intro h2 span:last-child {
  color: var(--wk-green);
}

body.perkongsian-page .program-drawer--pwp .program-drawer__intro p {
  max-width: none;
}

body.perkongsian-page .pwp-plan-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 1.4vw, 36px);
  margin-top: clamp(64px, 4.6vw, 106px);
  padding: clamp(44px, 3.4vw, 82px);
  border-radius: 8px;
  background: #edf7f2;
}

body.perkongsian-page .pwp-plan-card {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: clamp(440px, 30vw, 670px);
  padding: clamp(46px, 3.4vw, 86px) clamp(42px, 3vw, 76px);
  border-radius: 8px;
  background: var(--wk-white);
  color: var(--wk-black);
}

body.perkongsian-page .pwp-plan-card h3 {
  margin: 0 0 clamp(8px, 0.65vw, 16px);
  font-size: clamp(26px, 1.9vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

body.perkongsian-page .pwp-plan-card p {
  margin: 0 0 clamp(34px, 2.8vw, 74px);
  font-size: clamp(17px, 1.15vw, 26px);
  line-height: 1.2;
}

body.perkongsian-page .pwp-plan-card strong {
  display: block;
  margin-bottom: clamp(42px, 3vw, 78px);
  color: var(--wk-green);
  font-size: clamp(46px, 3.4vw, 78px);
  font-weight: 700;
  line-height: 1;
}

body.perkongsian-page .pwp-plan-card--gold strong {
  color: var(--wk-gold);
}

body.perkongsian-page .pwp-plan-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(52px, 3vw, 72px);
  margin-bottom: clamp(54px, 3.6vw, 88px);
  padding: 0 clamp(28px, 2.4vw, 58px);
  border-radius: 999px;
  color: var(--wk-white);
  background: linear-gradient(90deg, #1f4e3a 0%, #00814f 100%);
  font-size: clamp(17px, 1.12vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease;
}

body.perkongsian-page .pwp-plan-card--gold a {
  background: var(--wk-gold-gradient);
}

body.perkongsian-page .pwp-plan-card a:hover,
body.perkongsian-page .pwp-plan-card a:focus-visible {
  transform: translateY(-2px);
}

body.perkongsian-page .pwp-plan-card h4 {
  margin: 0 0 clamp(20px, 1.5vw, 34px);
  font-size: clamp(22px, 1.45vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

body.perkongsian-page .pwp-plan-card ul,
body.perkongsian-page .pwp-benefits ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

body.perkongsian-page .pwp-plan-card li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  font-size: clamp(16px, 1.05vw, 25px);
  line-height: 1.25;
}

body.perkongsian-page .pwp-plan-card li + li {
  margin-top: clamp(14px, 1vw, 24px);
}

body.perkongsian-page .pwp-plan-card li img {
  width: 18px;
  margin-top: 4px;
}

body.perkongsian-page .pwp-benefits {
  margin-top: clamp(62px, 4.8vw, 108px);
}

body.perkongsian-page .pwp-benefits h3 {
  margin: 0 0 clamp(18px, 1.4vw, 32px);
  color: var(--wk-green);
  font-size: clamp(24px, 1.55vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

body.perkongsian-page .pwp-benefits ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 0.8vw, 18px) clamp(42px, 5vw, 116px);
}

body.perkongsian-page .pwp-benefits li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(15px, 1.03vw, 23px);
  line-height: 1.25;
}

body.perkongsian-page .pwp-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--wk-black);
}

body.program-drawer-open {
  overflow: hidden;
}

body.contact-page .contact-hero {
  min-height: clamp(720px, 44vw, 940px);
  padding: calc(var(--nav-height) + clamp(96px, 6.4vw, 160px)) clamp(24px, 6vw, 166px)
    clamp(96px, 6vw, 150px);
  background: var(--wk-white);
  color: var(--wk-black);
}

body.contact-page .contact-hero__inner {
  width: min(100%, 2260px);
  margin: 0 auto;
  text-align: center;
}

body.contact-page .contact-hero h1 {
  margin: 0 0 clamp(24px, 1.8vw, 44px);
  font-size: clamp(58px, 4.5vw, 110px);
  font-weight: 700;
  line-height: 0.98;
}

body.contact-page .contact-hero h1 span {
  display: inline;
}

body.contact-page .contact-hero h1 span:first-child {
  color: #18523a;
}

body.contact-page .contact-hero h1 span + span {
  color: var(--wk-black);
}

body.contact-page .contact-hero__inner > p {
  max-width: 1560px;
  margin: 0 auto clamp(78px, 5.2vw, 128px);
  font-size: clamp(17px, 1.15vw, 26px);
  font-weight: 400;
  line-height: 1.22;
}

body.contact-page .contact-hero__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 2.6vw, 72px);
}

body.contact-page .contact-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: clamp(220px, 12.8vw, 300px);
  padding: clamp(38px, 2.8vw, 70px) clamp(26px, 2vw, 48px);
  border-radius: 8px;
  background: #f6f9f7;
  color: var(--wk-black);
  text-align: center;
}

body.contact-page .contact-card img {
  width: clamp(32px, 2.1vw, 50px);
  height: clamp(32px, 2.1vw, 50px);
  margin-bottom: clamp(28px, 2vw, 48px);
  object-fit: contain;
}

body.contact-page .contact-card h2 {
  margin: 0 0 clamp(10px, 0.8vw, 18px);
  color: #2b7a4a;
  font-size: clamp(25px, 1.7vw, 40px);
  font-weight: 700;
  line-height: 1.08;
}

body.contact-page .contact-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

body.contact-page .contact-card p span {
  display: block;
}

body.contact-page .contact-card a {
  color: #0083d6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.contact-page .contact-form-section {
  padding: clamp(30px, 3.2vw, 68px) clamp(24px, 3vw, 72px) clamp(76px, 5vw, 120px);
  background: var(--wk-white);
  color: var(--wk-black);
}

body.contact-page .contact-form-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(100%, 1575px);
  margin: 0 auto;
  border-radius: 21px;
  overflow: hidden;
}

body.contact-page .contact-form-section__image {
  min-height: clamp(392px, 28vw, 616px);
  background: #e4f5f8;
}

body.contact-page .contact-form-section__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

body.contact-page .contact-form {
  display: grid;
  align-content: center;
  gap: clamp(20px, 1.4vw, 31px);
  padding: clamp(45px, 3.65vw, 88px) clamp(38px, 3.65vw, 88px);
  border-radius: 0 21px 21px 0;
  background: #f7f7f7;
}

body.contact-page .contact-form__intro {
  display: grid;
  gap: clamp(15px, 1.05vw, 24px);
  margin-bottom: clamp(6px, 0.7vw, 15px);
}

body.contact-page .contact-form h2 {
  margin: 0;
  color: #18523a;
  font-size: clamp(28px, 2.17vw, 50px);
  font-weight: 700;
  line-height: 1.05;
}

body.contact-page .contact-form p {
  max-width: 616px;
  margin: 0;
  color: #75767e;
  font-size: clamp(13px, 0.95vw, 24px);
  font-weight: 300;
  line-height: 1.48;
}

body.contact-page .contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(17px, 1.25vw, 28px);
}

body.contact-page .contact-form label {
  display: grid;
  gap: clamp(8px, 0.65vw, 14px);
  color: var(--wk-black);
  font-size: clamp(13px, 0.85vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

body.contact-page .contact-form label b {
  color: #d34a3f;
  font-weight: 700;
}

body.contact-page .contact-form input,
body.contact-page .contact-form textarea {
  width: 100%;
  border: 1px solid #dddddf;
  border-radius: 8px;
  background: var(--wk-white);
  color: var(--wk-black);
  font: inherit;
  font-size: clamp(13px, 0.75vw, 18px);
  font-weight: 500;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

body.contact-page .contact-form input {
  min-height: clamp(39px, 2.45vw, 53px);
  padding: 0 clamp(13px, 1vw, 21px);
}

body.contact-page .contact-form textarea {
  min-height: clamp(83px, 5.2vw, 119px);
  resize: vertical;
  padding: clamp(11px, 0.85vw, 18px) clamp(13px, 1vw, 21px);
}

body.contact-page .contact-form input::placeholder,
body.contact-page .contact-form textarea::placeholder {
  color: #7a7b84;
}

body.contact-page .contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 2.8vw, 59px);
  border: 0;
  border-radius: 8px;
  background: #1d1d20;
  color: var(--wk-white);
  font-size: clamp(13px, 0.9vw, 21px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

body.contact-page .contact-form button:hover,
body.contact-page .contact-form button:focus-visible {
  background: #18523a;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  body.faq-page .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 54px;
    width: min(100%, 860px);
  }

  body.faq-page .faq-policy-section__inner {
    width: min(100%, 980px);
  }

  body.faq-page .faq-section__intro {
    position: static;
  }

  body.faq-page .faq-section__intro p {
    max-width: 680px;
  }

  body.perkongsian-page .perkongsian-program__grid {
    grid-template-columns: 1fr;
  }

  body.perkongsian-page .perkongsian-program-card {
    gap: 28px;
  }

  body.perkongsian-page .perkongsian-program-card__content {
    min-height: auto;
  }

  body.perkongsian-page .program-drawer__professions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.perkongsian-page .pwp-plan-wrap,
  body.perkongsian-page .pwp-benefits ul {
    grid-template-columns: 1fr;
  }

  body.perkongsian-page .pwp-plan-card {
    min-height: auto;
  }

  body.contact-page .contact-hero {
    padding-inline: 32px;
  }

  body.contact-page .contact-hero__cards {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 760px;
    margin: 0 auto;
  }

  body.contact-page .contact-form-section__inner {
    grid-template-columns: 1fr;
  }

  body.contact-page .contact-form-section__image {
    min-height: 294px;
  }

  body.contact-page .contact-form {
    border-radius: 0 0 21px 21px;
  }
}

@media (max-width: 640px) {
  body.faq-page .faq-section,
  body.faq-page .faq-policy-section {
    padding: calc(var(--nav-height) + 48px) 0 72px;
  }

  body.faq-page .faq-section__inner {
    gap: 42px;
    padding: 0 20px;
  }

  body.faq-page .faq-policy-section__inner {
    gap: 34px;
    padding: 0 20px;
  }

  body.faq-page .faq-section__title {
    margin-bottom: 24px;
    font-size: clamp(42px, 14vw, 58px);
  }

  body.faq-page .faq-policy-section__title {
    margin-bottom: 20px;
    font-size: clamp(34px, 11vw, 48px);
  }

  body.faq-page .faq-section__intro p {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.28;
  }

  body.faq-page .faq-policy-section__intro p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.28;
  }

  body.faq-page .faq-section__button {
    width: min(100%, 320px);
    min-width: 0;
    min-height: 50px;
    font-size: 16px;
  }

  body.faq-page .faq-group h2 {
    font-size: 16px;
  }

  body.faq-page .faq-accordion summary {
    grid-template-columns: 24px 1fr;
    gap: 14px;
    min-height: 64px;
    padding: 18px;
    font-size: 16px;
    line-height: 1.22;
  }

  body.faq-page .faq-accordion p {
    padding: 0 18px 22px 56px;
    font-size: 14px;
    line-height: 1.38;
  }

  body.faq-page .faq-policy-list {
    grid-template-columns: 1fr;
  }

  body.faq-page .faq-policy-card {
    min-height: 64px;
    padding: 18px;
  }

  body.faq-page .faq-policy-card strong {
    font-size: 16px;
    line-height: 1.22;
  }

  body.faq-page .faq-policy-drawer__panel {
    height: 90vh;
    gap: 18px;
    padding: 54px 18px 24px;
    border-radius: 18px 18px 0 0;
  }

  body.faq-page .faq-policy-drawer__close {
    top: 12px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  body.faq-page .faq-policy-drawer__header h2 {
    font-size: 28px;
  }

  body.faq-page .faq-policy-drawer__header p {
    font-size: 14px;
  }

  body.faq-page .faq-policy-drawer__content {
    padding: 18px;
  }

  body.faq-page .faq-policy-drawer__content h3 {
    font-size: 18px;
  }

  body.faq-page .faq-policy-drawer__content p {
    font-size: 14px;
    line-height: 1.55;
  }

  body.perkongsian-page .perkongsian-hero {
    min-height: 380px;
    padding: calc(var(--nav-height) + 64px) 20px 78px;
  }

  body.perkongsian-page .perkongsian-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1.05;
  }

  body.perkongsian-page .perkongsian-hero p {
    font-size: 15px;
    line-height: 1.4;
  }

  body.perkongsian-page .perkongsian-sertai {
    min-height: 330px;
    padding: 64px 20px;
  }

  body.perkongsian-page .perkongsian-sertai h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.08;
  }

  body.perkongsian-page .perkongsian-sertai p {
    font-size: 14px;
    line-height: 1.45;
  }

  body.perkongsian-page .perkongsian-program {
    padding: 64px 20px;
  }

  body.perkongsian-page .perkongsian-program__grid {
    gap: 22px;
  }

  body.perkongsian-page .perkongsian-program-card img {
    min-height: 280px;
  }

  body.perkongsian-page .perkongsian-program-card h3 {
    font-size: clamp(28px, 9vw, 36px);
  }

  body.perkongsian-page .perkongsian-program-card p {
    font-size: 14px;
  }

  body.perkongsian-page .perkongsian-program-card__button {
    min-width: min(100%, 260px);
    min-height: 48px;
    font-size: 15px;
  }

  body.perkongsian-page .program-drawer__panel {
    max-height: 90vh;
    padding: 56px 20px 62px;
    border-radius: 18px 18px 0 0;
  }

  body.perkongsian-page .program-drawer__close {
    top: 12px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  body.perkongsian-page .program-drawer__image {
    height: auto;
    min-height: 185px;
    aspect-ratio: 1.7 / 1;
  }

  body.perkongsian-page .program-drawer__intro {
    margin-top: 34px;
  }

  body.perkongsian-page .program-drawer__intro h2 {
    font-size: clamp(30px, 8.6vw, 40px);
  }

  body.perkongsian-page .program-drawer__intro h2 span {
    display: inline;
  }

  body.perkongsian-page .program-drawer__intro p,
  body.perkongsian-page .program-drawer__profession p {
    font-size: 14px;
    line-height: 1.35;
  }

  body.perkongsian-page .program-drawer__professions {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
  }

  body.perkongsian-page .program-drawer__profession {
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
  }

  body.perkongsian-page .program-drawer__profession img {
    grid-row: span 2;
    width: 28px;
    height: 28px;
    margin: 2px 0 0;
  }

  body.perkongsian-page .program-drawer__profession h3 {
    font-size: 20px;
  }

  body.perkongsian-page .pwp-plan-wrap {
    gap: 18px;
    margin-top: 42px;
    padding: 18px;
  }

  body.perkongsian-page .pwp-plan-card {
    padding: 30px 22px 34px;
  }

  body.perkongsian-page .pwp-plan-card h3 {
    font-size: 24px;
  }

  body.perkongsian-page .pwp-plan-card p {
    margin-bottom: 34px;
    font-size: 15px;
  }

  body.perkongsian-page .pwp-plan-card strong {
    margin-bottom: 34px;
    font-size: 42px;
  }

  body.perkongsian-page .pwp-plan-card a {
    min-height: 48px;
    margin-bottom: 38px;
    font-size: 15px;
  }

  body.perkongsian-page .pwp-plan-card h4 {
    font-size: 20px;
  }

  body.perkongsian-page .pwp-plan-card li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  body.perkongsian-page .pwp-benefits {
    margin-top: 42px;
  }

  body.perkongsian-page .pwp-benefits h3 {
    font-size: 22px;
  }

  body.perkongsian-page .pwp-benefits ul {
    gap: 10px;
  }

  body.perkongsian-page .pwp-benefits li {
    font-size: 14px;
    line-height: 1.35;
  }

  body.perkongsian-page #chatbot-toggle {
    display: none;
  }

  body.contact-page .contact-hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 64px) 20px 72px;
  }

  body.contact-page .contact-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  body.contact-page .contact-hero__inner > p {
    margin-bottom: 42px;
    font-size: 15px;
    line-height: 1.4;
  }

  body.contact-page .contact-card {
    min-height: 190px;
    padding: 34px 22px;
  }

  body.contact-page .contact-card img {
    margin-bottom: 22px;
  }

  body.contact-page .contact-card h2 {
    font-size: 24px;
  }

  body.contact-page .contact-card p {
    font-size: 15px;
    line-height: 1.35;
  }

  body.contact-page .contact-form-section {
    padding: 20px 20px 72px;
  }

  body.contact-page .contact-form-section__inner {
    border-radius: 15px;
  }

  body.contact-page .contact-form-section__image {
    min-height: 196px;
  }

  body.contact-page .contact-form {
    gap: 17px;
    padding: 24px 18px;
    border-radius: 0 0 15px 15px;
  }

  body.contact-page .contact-form h2 {
    font-size: 28px;
  }

  body.contact-page .contact-form p {
    font-size: 13px;
    line-height: 1.45;
  }

  body.contact-page .contact-form__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.contact-page .contact-form label {
    font-size: 13px;
  }

  body.contact-page .contact-form input,
  body.contact-page .contact-form textarea {
    font-size: 13px;
  }

  body.contact-page .contact-form button {
    min-height: 42px;
    font-size: 13px;
  }

  body.contact-page #chatbot-toggle {
    display: none;
  }
}

.harga-plan-panel[data-plan-content="smartfaraid"] > .harga-smartfaraid,
.harga-faraid-importance__inner,
.harga-faraid-risks__inner,
.harga-faraid-benefits__inner,
.harga-faraid-process__inner,
.harga-faraid-audience__inner,
.harga-faraid-documents__inner,
.harga-faraid-cta__inner {
  width: min(80%, 1510px);
  margin-inline: auto;
}

.harga-plan-panel[data-plan-content="smartfaraid"] > .harga-smartfaraid {
  width: min(80vw, 1510px);
}

.harga-faraid-importance__inner,
.harga-faraid-risks__inner,
.harga-faraid-benefits__inner,
.harga-faraid-process__inner,
.harga-faraid-audience__inner,
.harga-faraid-documents__inner,
.harga-faraid-cta__inner {
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 767px) {
  .harga-plan-panel[data-plan-content="smartfaraid"] > .harga-smartfaraid,
  .harga-faraid-importance__inner,
  .harga-faraid-risks__inner,
  .harga-faraid-benefits__inner,
  .harga-faraid-process__inner,
  .harga-faraid-audience__inner,
  .harga-faraid-documents__inner,
  .harga-faraid-cta__inner {
    width: min(calc(100% - 40px), 1510px);
  }
}

.harga-faraid-risks {
  background: var(--wk-white);
}

.harga-faraid-risks__inner {
  padding-top: clamp(64px, 5.8vw, 116px);
  padding-bottom: clamp(64px, 5.8vw, 116px);
}

.harga-faraid-risks__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(28px, 3vw, 58px);
}

.harga-faraid-risks__content {
  display: grid;
  grid-template-rows: auto auto;
  align-content: end;
  gap: clamp(18px, 1.4vw, 28px);
}

.harga-faraid-risks__intro {
  display: grid;
  position: relative;
  grid-template-rows: 1fr;
  gap: clamp(24px, 2.4vw, 48px);
  align-content: start;
  min-width: 0;
  padding-top: clamp(122px, 9vw, 158px);
  overflow: visible;
}

.harga-faraid-risks__photo {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 24vw, 430px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 79, 56, 0.1);
}

.harga-faraid-risks h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: min(680px, calc(100vw - 48px));
  margin: 0;
  color: var(--wk-black);
  font-size: clamp(25px, 2.2vw, 42px);
  font-weight: 600;
  line-height: 1.18;
}

.harga-faraid-risks__closing {
  align-self: end;
  margin: 0;
  padding: clamp(20px, 1.5vw, 28px) clamp(24px, 2.2vw, 44px);
  border-radius: 8px;
  color: var(--wk-green);
  background: #effbf0;
  font-size: clamp(16px, 1.05vw, 21px);
  font-weight: 600;
  line-height: 1.45;
}

.harga-faraid-risks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.1vw, 22px);
}

.harga-faraid-risks__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  justify-items: start;
  width: auto;
  min-height: clamp(136px, 8.8vw, 162px);
  padding: clamp(16px, 1.05vw, 22px);
  place-items: unset;
  border-radius: 8px;
  background: #f5f8f6;
  text-align: left;
}

.harga-faraid-risks__card img {
  width: clamp(28px, 1.7vw, 36px);
  height: clamp(28px, 1.7vw, 36px);
  margin: 0 clamp(12px, 1vw, 18px) 0 0;
}

.harga-faraid-risks__card h3 {
  margin: 0;
  color: var(--wk-black);
  font-size: clamp(17px, 1.15vw, 21px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.15;
}

.harga-faraid-risks__card p {
  grid-column: 1 / -1;
  margin: clamp(10px, 0.85vw, 16px) 0 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .harga-faraid-risks__layout {
    grid-template-columns: 1fr;
  }

  .harga-faraid-risks__intro {
    position: static;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    grid-template-rows: auto;
    align-items: center;
    padding-top: 0;
  }

  .harga-faraid-risks__photo {
    min-height: 280px;
    max-height: 380px;
  }

  .harga-faraid-risks h2 {
    position: static;
    width: auto;
  }
}

@media (max-width: 900px) {
  .harga-faraid-risks__intro {
    grid-template-columns: 1fr;
  }

  .harga-faraid-risks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .harga-faraid-risks__inner {
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .harga-faraid-risks__layout {
    gap: 20px;
  }

  .harga-faraid-risks__photo {
    min-height: 220px;
  }

  .harga-faraid-risks h2 {
    font-size: 22px;
  }

  .harga-faraid-risks__grid {
    grid-template-columns: 1fr;
  }

  .harga-faraid-risks__card {
    width: 100%;
    min-height: 0;
    padding: 20px 18px;
  }

  .harga-faraid-risks__closing {
    padding: 22px 18px;
  }
}
