:root {
  --navy: #022a5f;
  --navy-2: #123f6d;
  --green: #0a499a;
  --green-dark: #01150d;
  --green-soft: #dde9f8;
  --yellow: #ffc83d;
  --text: #16324a;
  --muted: #6f8091;
  --line: #e6edf3;
  --white: #fff;
  --shadow: 0 20px 60px rgba(13, 45, 76, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.section {
  padding: 84px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin: 10px 0 14px;
  color: var(--navy);
  font-weight: 800;
}
.section-subtitle {
  max-width: 720px;
  color: var(--muted);
  margin: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 237, 243, 0.9);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 150px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 0.94rem;
}
.nav-links a {
  position: relative;
  padding: 26px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 17px;
  height: 3px;
  border-radius: 8px;
  background: var(--green);
  transition: 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 13px 20px;
  font-weight: 800;
  transition: 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.nav-cta,
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(10, 73, 154, 0.22);
}
.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}
.btn-outline {
  border-color: #aebdca;
  color: var(--navy);
  background: #fff;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--navy);
  font-size: 30px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f9fcff 0%, #fff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(10, 73, 154, 0.14),
    rgba(10, 73, 154, 0)
  );
  right: -150px;
  top: -160px;
  animation: floatGlow 7s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 58px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.02;
  margin: 16px 0 22px;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.hero h1 span {
  color: var(--green);
}
.hero p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 26px;
  color: var(--navy);
  font-weight: 700;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-copy-card {
  position: relative;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}
.hero-copy-card .quote {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
}
.hero-copy-card .quote span {
  color: var(--green);
}
.hero-copy-card .mini {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mini-stat {
  padding: 18px;
  border-radius: 18px;
  background: var(--green-soft);
}
.mini-stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--navy);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(13, 45, 76, 0.05);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  margin-bottom: 18px;
}
.icon-badge .material-symbols-rounded {
  font-size: 30px;
}
.card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.25rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.feature {
  text-align: left;
}
.feature .icon-badge {
  margin-bottom: 14px;
}
.stats {
  background: linear-gradient(90deg, #edf9f4, #f8fcfa);
  border-top: 1px solid #dff2e8;
  border-bottom: 1px solid #dff2e8;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 14px;
  align-items: center;
}
.stat {
  padding: 30px 14px;
  text-align: center;
  border-left: 1px solid #cfe8dc;
}
.stat strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
}
.stat span {
  color: var(--muted);
  font-weight: 700;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  padding: 20px 8px;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 42px;
  color: #9bb0c0;
  font-size: 26px;
}
.step-no {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.partner {
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy), #054392);
  color: #fff;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.partner::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  right: -80px;
  bottom: -120px;
}
.partner h2 {
  font-size: 2.4rem;
  margin: 0 0 12px;
}
.partner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.partner li {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}
.map-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr 0.6fr;
  gap: 24px;
  align-items: center;
}
.map-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 45, 76, 0.05);
}
.map-illustration {
  height: 330px;
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbf8, #eef8f2);
  overflow: hidden;
}
.island {
  position: absolute;
  background: #7cab88;
  border-radius: 50% 35% 50% 40%;
  opacity: 0.95;
}
.island.s1 {
  width: 260px;
  height: 70px;
  left: 60px;
  bottom: 90px;
  transform: rotate(8deg);
}
.island.s2 {
  width: 310px;
  height: 86px;
  left: 310px;
  bottom: 70px;
  transform: rotate(2deg);
}
.island.s3 {
  width: 180px;
  height: 110px;
  right: 140px;
  top: 72px;
  transform: rotate(-8deg);
}
.island.s4 {
  width: 120px;
  height: 160px;
  right: 30px;
  top: 118px;
  transform: rotate(10deg);
}
.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(10, 73, 154, 0.18);
}
.map-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 14px;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
}
.stars {
  color: #f3b61f;
  letter-spacing: 2px;
}
.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 800;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: #fff;
  border: 0;
  padding: 20px 22px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-a {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}
.faq-item.open .faq-a {
  display: block;
}
.cta-strip {
  background: linear-gradient(90deg, #032754, #0a499a);
  border-radius: 26px;
  padding: 34px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-strip h3 {
  margin: 0;
  font-size: 2rem;
}
.footer {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
}
.footer h4 {
  color: #fff;
  margin-top: 0;
}
.footer a {
  display: block;
  margin: 8px 0;
  color: #d7e2ec;
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
}
.page-hero {
  padding: 82px 0 58px;
  background: linear-gradient(180deg, #f5fbf8, #fff);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 10px 0;
  color: var(--navy);
}
.service-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-detail .card {
  min-height: 100%;
}
.list-check {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.list-check li {
  display: flex;
  gap: 9px;
  margin: 10px 0;
  color: var(--muted);
}
.list-check .material-symbols-rounded {
  color: var(--green);
  font-size: 20px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.notice {
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff8dc;
  color: #775d00;
  border: 1px solid #f3df84;
}
.parallax-section {
  background-image: linear-gradient(
      rgba(11, 45, 79, 0.78),
      rgba(11, 45, 79, 0.78)
    ),
    radial-gradient(circle at 20% 20%, #032754, #0b2d4f);
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
}
.parallax-section .section-title,
.parallax-section .section-subtitle {
  color: #fff;
}
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s ease;
}
.fade-up.show {
  opacity: 1;
  transform: none;
}
@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulseSoft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(10, 73, 154, 0.18);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(10, 73, 154, 0);
  }
}
.pulse {
  animation: pulseSoft 2.3s infinite;
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    padding: 13px;
  }
  .nav-links a::after {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid,
  .split,
  .partner,
  .map-wrap {
    grid-template-columns: 1fr;
  }
  .cards,
  .service-detail,
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid > div:first-child {
    grid-column: 1/-1;
  }
  .stat {
    border-left: 0;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .step::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  .brand img {
    width: 160px;
  }
  .hero {
    padding: 74px 0 62px;
  }
  .hero-copy-card {
    padding: 26px;
  }
  .cards,
  .service-detail,
  .testimonials,
  .feature-grid,
  .stats-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }
  .partner {
    padding: 30px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .map-illustration {
    height: 250px;
  }
}

/* MVC V1 */
.nav-links a.active {
  color: var(--green);
}

/* JEKTI MVC V1.1 — homepage revision */
.feature-card-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}
.feature-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 45, 76, 0.045);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #cfe8dc;
}
.feature-card .icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 26px;
}
.feature-card h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 12px;
}
.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}
.section-center {
  text-align: center;
}
.section-center .section-subtitle {
  margin-inline: auto;
}
.workflow-section {
  overflow: hidden;
}
.workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.workflow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 62px;
  height: 2px;
  background: linear-gradient(90deg, #bdebd7, var(--green), #bdebd7);
  z-index: 0;
}
.workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}
.workflow-icon {
  width: 124px;
  height: 124px;
  margin: 0 auto 24px;
  border-radius: 26px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(10, 73, 154, 0.2);
  transition: 0.3s ease;
}
.workflow-step:hover .workflow-icon {
  transform: translateY(-5px) scale(1.02);
}
.workflow-icon .material-symbols-rounded {
  font-size: 46px;
}
.workflow-copy h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 8px;
}
.workflow-copy h3 span {
  color: var(--green);
  font-weight: 800;
}
.workflow-copy p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.coverage-section {
  background: #f8fafc;
}
.office-map-card {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(13, 45, 76, 0.06);
}
.office-map-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.indonesia-svg {
  width: 100%;
  height: auto;
  max-height: 410px;
  overflow: visible;
}
.indonesia-provinces path {
  fill: #0a499a;
  stroke: #fff;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  transition: fill 0.25s ease;
}
.office-pin {
  fill: #ff5900;
  stroke: #fff;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 4px 6px rgba(10, 73, 154, 0.28));
  animation: mapPinPulse 2.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.office-map-empty {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--muted);
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(13, 45, 76, 0.06);
}
.office-map-empty .material-symbols-rounded {
  color: var(--green);
}
.office-carousel-wrap {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.office-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 2px;
}
.office-carousel::-webkit-scrollbar {
  display: none;
}
.office-card {
  flex: 0 0 min(320px, 85%);
  min-height: 170px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 22px;
}
.office-card .office-city {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}
.office-card .office-city .material-symbols-rounded {
  font-size: 20px;
  color: var(--green);
}
.office-card p {
  margin: 12px 0 0;
  color: var(--muted);
}
.office-card-empty {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}
.office-card-empty > .material-symbols-rounded {
  font-size: 34px;
  color: #aebdca;
}
.office-card-empty strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.office-card-empty p {
  margin: 0;
}
.office-card-empty code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82em;
}
.office-nav {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10, 73, 154, 0.18);
  transition: 0.25s;
}
.office-nav:hover {
  transform: scale(1.06);
  background: var(--green-dark);
}
.office-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
@keyframes mapPinPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}
@media (max-width: 980px) {
  .feature-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .workflow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 36px;
    max-width: 620px;
    margin-inline: auto;
  }
  .workflow::before {
    left: 61px;
    right: auto;
    top: 58px;
    bottom: 58px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #bdebd7, var(--green), #bdebd7);
  }
  .workflow-step {
    text-align: left;
    display: grid;
    grid-template-columns: 124px 1fr;
    align-items: center;
    gap: 24px;
    padding: 0 0 30px;
  }
  .workflow-icon {
    margin: 0;
  }
  .office-map-stage {
    min-height: 320px;
  }
  .office-carousel-wrap {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }
}
@media (max-width: 640px) {
  .feature-card-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: auto;
    padding: 24px;
  }
  .workflow-step {
    grid-template-columns: 82px 1fr;
    gap: 18px;
  }
  .workflow-icon {
    width: 82px;
    height: 82px;
    border-radius: 22px;
  }
  .workflow-icon .material-symbols-rounded {
    font-size: 34px;
  }
  .workflow::before {
    left: 40px;
    top: 40px;
    bottom: 40px;
  }
  .office-map-card {
    padding: 14px;
    border-radius: 22px;
  }
  .office-map-stage {
    min-height: 230px;
  }
  .office-map-empty {
    position: static;
    transform: none;
    margin-top: 12px;
    border-radius: 14px;
  }
  .office-map-stage {
    flex-direction: column;
  }
  .office-carousel-wrap {
    grid-template-columns: 1fr;
  }
  .office-nav {
    display: none;
  }
  .office-card {
    flex-basis: 88%;
  }
}

/* JEKTI dalam Angka — V1.3 */
.stats-showcase {
  background: #fff;
  border: 0;
  padding: 92px 0 96px;
}
.stats-heading {
  text-align: center;
  margin: 0 auto 52px;
}
.stats-heading .eyebrow {
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.stats-heading .section-title {
  margin: 12px 0 8px;
}
.stats-heading .section-subtitle {
  margin-inline: auto;
}
.stats-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.stat-card {
  min-height: 208px;
  padding: 34px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #dbe6f0;
  border-radius: 28px;
  box-shadow: 0 16px 45px rgba(13, 45, 76, 0.035);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 73, 154, 0.28);
  box-shadow: 0 20px 50px rgba(13, 45, 76, 0.08);
}
.stat-card .stat-number {
  display: block;
  color: var(--green);
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.stat-card span {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 980px) {
  .stats-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-heading {
    margin-bottom: 38px;
  }
}
@media (max-width: 640px) {
  .stats-showcase {
    padding: 68px 0 72px;
  }
  .stats-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stat-card {
    min-height: 170px;
    border-radius: 22px;
  }
  .stat-card span {
    margin-top: 16px;
  }
}

/* Office map interactive detail panel */
.office-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 40px;
}
.office-map-layout.has-detail {
  grid-template-columns: minmax(0, 1fr) 360px;
}
.office-map-layout .office-map-card {
  margin-top: 0;
}
.office-pin {
  cursor: pointer;
  transition: fill 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}
.office-pin:hover,
.office-pin:focus {
  transform: scale(1.22);
  outline: none;
}
.office-pin.is-active {
  fill: #000;
  animation: none;
  transform: scale(1.2);
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.25));
}
.office-detail {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 30px 28px;
  box-shadow: 0 16px 45px rgba(13, 45, 76, 0.08);
  min-height: 100%;
}
.office-detail[hidden] {
  display: none;
}
.office-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef2f6;
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.office-detail-head {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-right: 46px;
}
.office-detail-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
}
.office-detail-icon .material-symbols-rounded {
  font-size: 32px;
}
.office-detail h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.2;
}
.office-detail-head p {
  margin: 5px 0 0;
  color: var(--muted);
}
.office-detail-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.office-detail-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.55;
}
.office-detail-row .material-symbols-rounded {
  color: #c2ccd6;
  font-size: 24px;
}
.office-detail-row p {
  margin: 0;
}
.office-detail-row[href]:hover {
  color: var(--green);
}
.office-card {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.office-card:not(.office-card-empty):hover,
.office-card.is-active {
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(10, 73, 154, 0.1);
  transform: translateY(-2px);
}
@media (max-width: 980px) {
  .office-map-layout,
  .office-map-layout.has-detail {
    grid-template-columns: 1fr;
  }
  .office-detail {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .office-map-layout {
    margin-top: 28px;
    gap: 16px;
  }
  .office-detail {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .office-detail h3 {
    font-size: 1.3rem;
  }
}

/* JEKTI — floating scroll up/down controls */
.jekti-scroll-nav{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:1200;
  display:flex;
  flex-direction:column;
  gap:10px;
  pointer-events:none;
}
.jekti-scroll-btn{
  width:50px;
  height:50px;
  border:1px solid rgba(10,73,154,.18);
  border-radius:16px;
  background:#fff;
  color:#0a499a;
  display:grid;
  place-items:center;
  box-shadow:0 12px 34px rgba(13,45,76,.12);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .25s ease, visibility .25s ease, transform .25s ease,
             background-color .2s ease, color .2s ease, border-color .2s ease;
  pointer-events:none;
}
.jekti-scroll-btn.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}
.jekti-scroll-btn:hover{
  background:#0a499a;
  color:#fff;
  border-color:#0a499a;
}
.jekti-scroll-btn:focus-visible{
  outline:3px solid rgba(10,73,154,.24);
  outline-offset:3px;
}
.jekti-scroll-btn .material-symbols-rounded{
  font-size:30px;
  line-height:1;
}
@media (max-width:640px){
  .jekti-scroll-nav{
    right:16px;
    bottom:16px;
    gap:8px;
  }
  .jekti-scroll-btn{
    width:46px;
    height:46px;
    border-radius:14px;
  }
}
@media (prefers-reduced-motion:reduce){
  .jekti-scroll-btn{
    transition:none;
  }
}


/* Layanan — Cakupan JEKTI */
.service-coverage-section{background:#f8fafc;padding-bottom:78px}
.service-coverage-heading{text-align:center;max-width:780px;margin:0 auto}
.service-coverage-heading .section-subtitle{margin-left:auto;margin-right:auto}
.coverage-search{
  max-width:760px;margin:34px auto 0;display:grid;grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;gap:12px;background:#fff;border:1px solid var(--line);border-radius:18px;
  padding:0 16px;box-shadow:0 12px 32px rgba(13,45,76,.06);transition:border-color .2s,box-shadow .2s
}
.coverage-search:focus-within{border-color:#0a499a;box-shadow:0 14px 34px rgba(10,73,154,.10)}
.coverage-search>.material-symbols-rounded{color:#0a499a;font-size:25px}
.coverage-search input{width:100%;height:58px;border:0;outline:0;background:transparent;color:var(--navy);font:inherit;font-weight:600}
.coverage-search input::placeholder{color:#98a7b8;font-weight:500}
.coverage-search button{width:36px;height:36px;border:0;border-radius:50%;background:#eef3f8;color:var(--navy);display:grid;place-items:center;cursor:pointer}
.coverage-search-result{max-width:760px;min-height:28px;margin:10px auto 0;text-align:center;font-size:.9rem;color:var(--muted)}
.coverage-search-result.is-found{color:#0a499a;font-weight:700}
.coverage-search-result.is-missing{color:#6d7d8d}
.service-office-map{margin-top:28px}
.service-office-map .office-map-card{padding:34px}
.coverage-list-head{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-top:38px;margin-bottom:18px}
.coverage-list-head h3{margin:5px 0 0;color:var(--navy);font-size:1.7rem}
.coverage-list-nav{display:flex;gap:10px}
.service-office-carousel{padding:3px 2px 10px}
.service-office-carousel .office-card{flex-basis:min(340px,85%);min-height:155px}
.coverage-missing{
  margin-top:38px;border:1px solid rgba(10,73,154,.15);border-radius:24px;background:#fff;
  padding:24px 26px;display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:18px;align-items:center;
  box-shadow:0 14px 38px rgba(13,45,76,.05)
}
.coverage-missing-icon{width:56px;height:56px;border-radius:17px;background:rgba(10,73,154,.09);color:#0a499a;display:grid;place-items:center}
.coverage-missing-icon .material-symbols-rounded{font-size:30px}
.coverage-missing h3{margin:0;color:var(--navy);font-size:1.25rem}
.coverage-missing p{margin:5px 0 0;color:var(--muted);line-height:1.55}
.coverage-missing .btn{white-space:nowrap}
@media(max-width:760px){
  .service-coverage-heading{text-align:left}
  .coverage-search{margin-top:24px}
  .service-office-map .office-map-card{padding:16px}
  .coverage-list-head{align-items:center}
  .coverage-list-head h3{font-size:1.35rem}
  .coverage-missing{grid-template-columns:auto minmax(0,1fr)}
  .coverage-missing .btn{grid-column:1/-1;width:100%;justify-content:center}
}


.office-card-link{display:inline-flex;align-items:center;gap:5px;margin-top:14px;color:#0a499a;font-weight:800;font-size:.88rem}
.office-card-link .material-symbols-rounded{font-size:18px}


/* JEKTI V3 — testimonial responsive slider */
.testimonial-slider{position:relative;overflow:hidden;margin-top:22px}
.testimonial-slider .testimonials{display:flex;gap:20px;transition:transform .48s cubic-bezier(.22,.61,.36,1);will-change:transform;margin:0}
.testimonial-slider .testimonial{flex:0 0 calc((100% - 40px)/3);min-width:0;height:auto}
.testimonial-slider-footer{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:22px}
.testimonial-dots{display:flex;align-items:center;gap:8px;min-height:12px}
.testimonial-dot{width:8px;height:8px;border:0;border-radius:99px;background:#cbd5e1;padding:0;cursor:pointer;transition:width .25s ease,background .25s ease}
.testimonial-dot.is-active{width:26px;background:#0a499a}
.testimonial-nav{display:flex;gap:10px;margin-left:auto}
.testimonial-prev,.testimonial-next{width:44px;height:44px;border:1px solid var(--line);border-radius:50%;background:#fff;color:#0a499a;display:grid;place-items:center;cursor:pointer;transition:background .2s ease,color .2s ease,border-color .2s ease,transform .2s ease}
.testimonial-prev:hover,.testimonial-next:hover{background:#0a499a;color:#fff;border-color:#0a499a;transform:translateY(-2px)}
.testimonial-prev:disabled,.testimonial-next:disabled{opacity:.38;cursor:not-allowed;transform:none}
.testimonial-prev .material-symbols-rounded,.testimonial-next .material-symbols-rounded{font-size:21px}
@media(max-width:900px){.testimonial-slider .testimonial{flex-basis:calc((100% - 20px)/2)}}
@media(max-width:640px){.testimonial-slider .testimonial{flex-basis:100%}.testimonial-slider-footer{margin-top:18px}}
@media(prefers-reduced-motion:reduce){.testimonial-slider .testimonials{transition:none}}


/* JEKTI — focus map JABODEBEK */
.jabodebek-svg{width:100%;height:auto;max-height:520px;overflow:visible}
.jabodebek-region-labels{pointer-events:none}
.jabodebek-region-label rect{fill:rgba(255,255,255,.92);stroke:rgba(10,73,154,.22);stroke-width:.08}
.jabodebek-region-label text{font-family:'Quicksand',sans-serif;font-size:1.08px;font-weight:800;fill:#0a499a;text-anchor:middle;letter-spacing:.02em}
.office-map-stage:has(.jabodebek-svg){background:linear-gradient(180deg,#fbfdff 0%,#f5f9fc 100%)}
.office-map-stage:has(.jabodebek-svg) .indonesia-provinces path{fill:#0a499a}
.coverage-area-section{margin:28px 0 26px}
.coverage-area-heading{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:16px}
.coverage-area-heading h3{margin:5px 0 0;color:var(--navy);font-size:1.5rem}
.coverage-area-heading p{margin:8px 0 0;max-width:760px;color:var(--muted);line-height:1.6}
.coverage-area-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px}
.coverage-area-card{
  min-width:0;border:1px solid var(--line);border-radius:18px;background:#fff;padding:16px;
  display:flex;align-items:center;gap:11px;text-align:left;color:var(--navy);font:inherit;cursor:pointer;
  box-shadow:0 8px 24px rgba(13,45,76,.04);
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease,background .2s ease
}
.coverage-area-card>.material-symbols-rounded{
  flex:0 0 auto;width:39px;height:39px;border-radius:12px;display:grid;place-items:center;
  background:rgba(10,73,154,.09);color:#0a499a;font-size:21px
}
.coverage-area-card span:last-child{min-width:0;display:flex;flex-direction:column}
.coverage-area-card strong{font-size:.94rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.coverage-area-card small{margin-top:3px;color:var(--muted);font-size:.76rem}
.coverage-area-card:hover,.coverage-area-card.is-match{
  border-color:rgba(10,73,154,.38);box-shadow:0 12px 28px rgba(10,73,154,.09);transform:translateY(-2px)
}
.coverage-area-card.is-match{background:rgba(10,73,154,.045)}
@media(max-width:1100px){.coverage-area-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:700px){
  .coverage-area-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .coverage-area-card{padding:13px}
  .coverage-area-heading h3{font-size:1.3rem}
}
@media(max-width:420px){.coverage-area-grid{grid-template-columns:1fr}}


/* JEKTI V4 — detailed JABODEBEK service map */
.jabodebek-map-svg{display:block;width:100%;height:auto;max-height:590px}
.jabodebek-sea{fill:#fff}
.jabodebek-coast{fill:#fff}
.jabodebek-regions .map-region{
  stroke:#fff;stroke-width:4;stroke-linejoin:round;vector-effect:non-scaling-stroke;
  transition:filter .2s ease,opacity .2s ease
}
.jakarta-west{fill:#3a6dad}.jakarta-central{fill:#3a6dad}.jakarta-north{fill:#3a6dad}
.jakarta-south{fill:#3a6dad}.jakarta-east{fill:#3a6dad}
.depok{fill:#3a6dad}
.bekasi-city{fill:#3a6dad}.bekasi-regency{fill:#3a6dad}
.bogor-regency{fill:#3a6dad}.bogor-city{fill:#3a6dad}
.map-boundary-accent path{fill:none;stroke:rgba(10,73,154,.18);stroke-width:2;vector-effect:non-scaling-stroke}
.jabodebek-labels{pointer-events:none;font-family:'Quicksand',sans-serif;text-anchor:middle}
.map-major-label{fill:#17324d;font-size:18px;font-weight:800;paint-order:stroke;stroke:rgba(255,255,255,.86);stroke-width:5px;stroke-linejoin:round}
.map-small-label{fill:#4f6478;font-size:11px;font-weight:700;paint-order:stroke;stroke:rgba(255,255,255,.9);stroke-width:3px}
.map-water-label{fill:#0a499a;font-size:13px;font-weight:800;letter-spacing:.18em;opacity:.72}
.jabodebek-map-svg .office-pin{
  fill:#ff5b00;stroke:#fff;stroke-width:4;vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 3px 5px rgba(13,45,76,.22));cursor:pointer;
  transition:fill .2s ease,stroke .2s ease
}
.jabodebek-map-svg .office-pin:hover{fill:#0a499a}
.jabodebek-map-svg .office-pin.is-active{fill:#000}
@media(max-width:760px){
  .map-major-label{font-size:15px}
  .map-small-label{font-size:9.5px}
  .map-water-label{font-size:11px}
}


/* JEKTI V5 — pagination halaman Testimoni */
.testimonial-page-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.testimonial-page-card{
  min-width:0;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.testimonial-page-card[hidden]{display:none!important}
.testimonial-pagination{
  margin-top:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.testimonial-pagination[hidden]{display:none!important}
.testimonial-page-prev,
.testimonial-page-next,
.testimonial-page-number{
  min-width:44px;
  height:44px;
  padding:0 13px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fff;
  color:var(--navy);
  display:inline-grid;
  place-items:center;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,border-color .2s ease,transform .2s ease;
}
.testimonial-page-prev:hover,
.testimonial-page-next:hover,
.testimonial-page-number:hover{
  border-color:#0a499a;
  color:#0a499a;
  transform:translateY(-1px);
}
.testimonial-page-number.is-active{
  background:#0a499a;
  color:#fff;
  border-color:#0a499a;
}
.testimonial-page-prev:disabled,
.testimonial-page-next:disabled{
  opacity:.38;
  cursor:not-allowed;
  transform:none;
}
.testimonial-page-numbers{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
}
.testimonial-page-summary{
  margin-top:14px;
  min-height:22px;
  text-align:center;
  color:var(--muted);
  font-size:.9rem;
}
@media(max-width:760px){
  .testimonial-page-grid{grid-template-columns:1fr}
  .testimonial-page-card{min-height:0}
  .testimonial-pagination{gap:7px}
  .testimonial-page-prev,
  .testimonial-page-next,
  .testimonial-page-number{
    min-width:42px;height:42px;border-radius:12px;padding:0 11px
  }
}

