.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-trigger {
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  text-align: left;
}

.faq-trigger span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-dark);
  transition: transform 180ms ease;
}

.faq-trigger[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-panel p {
  max-width: 710px;
  padding: 0 2.5rem 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem 0.75rem 4rem 0.75rem;
  background: var(--ink);
  padding: clamp(2rem, 6vw, 5rem);
}

.cta-pattern {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 520px;
  height: 520px;
  border: 1px solid rgb(183 160 116 / 20%);
  border-radius: 50%;
}

.cta-pattern::after {
  position: absolute;
  inset: 65px;
  border: 1px solid rgb(183 160 116 / 15%);
  border-radius: 50%;
  content: "";
}

.cta-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.25) sepia(0.15);
  mask-image: linear-gradient(to right, transparent, black 40%);
}

.phone-link {
  display: inline-flex;
  min-height: 50px;
  flex-direction: column;
  justify-content: center;
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}

.phone-link span {
  margin-bottom: 0.35rem;
  color: #8f8c86;
  font-family: "Manrope", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #e6e2da;
}

.footer-title {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

footer nav a,
footer div > a {
  transition: color 180ms ease;
}

footer nav a:hover,
footer div > a:hover {
  color: var(--gold);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 999px;
  background: #1d8f52;
  padding: 0.75rem 1rem;
  color: white;
  box-shadow: 0 12px 35px rgb(17 17 17 / 24%);
  font-size: 0.75rem;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.floating-whatsapp:hover {
  background: #167743;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .page-shell {
    width: min(100% - 3rem, 1280px);
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .services-grid,
  .commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-whatsapp {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.75rem;
  }

  .section-title {
    font-size: 3.25rem;
  }

  .process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-grid::before {
    position: absolute;
    top: 22px;
    right: 3%;
    left: 3%;
    height: 1px;
    background: var(--line);
    content: "";
  }

  .process-step {
    border-top: 0;
    padding-top: 0;
  }

  .process-number {
    position: relative;
    z-index: 1;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .faq-intro .eyebrow {
    justify-content: center;
  }

  .faq-intro .section-title,
  .faq-intro .prose-copy {
    text-align: center;
  }

  .commitment-intro .eyebrow,
  .location-copy .eyebrow,
  .cta-copy .eyebrow {
    justify-content: center;
  }

  .commitment-intro .section-title,
  .commitment-intro > p,
  .location-copy .section-title,
  .location-copy .prose-copy,
  .cta-copy .section-title,
  .cta-copy > p {
    text-align: center;
  }

  .cta-copy,
  .location-copy {
    align-items: center;
    text-align: center;
  }

  .cta-copy > .flex {
    align-items: center;
    justify-content: center;
  }

  .location-copy .button {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .services-intro .eyebrow {
    justify-content: center;
  }

  .services-intro .section-title,
  .services-intro .prose-copy {
    text-align: center;
  }

  .situations-intro .eyebrow {
    justify-content: center;
  }

  .situations-intro .section-title,
  .situations-intro .prose-copy {
    text-align: center;
  }

  #tentang .eyebrow {
    justify-content: center;
  }

  #tentang .section-title,
  #tentang .prose-copy {
    text-align: center;
  }

  #tentang .button {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .hero-background {
    object-position: 72% center;
    opacity: 0.26;
  }

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

  .image-caption {
    right: -0.25rem;
  }

  .nasab-panel {
    min-height: 520px;
  }

  .service-card,
  .service-cta {
    min-height: auto;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
