/* ============ FONT (self-host variable + metric-compatible fallback) ============ */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans.woff2') format('woff2'),
       url('/assets/fonts/PlusJakartaSans.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans Fallback';
  src: local('Arial');
  font-weight: 100 900;
  font-style: normal;
  size-adjust: 103.36%;
  ascent-override: 100.42%;
  descent-override: 21.48%;
  line-gap-override: 0%;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ============ FLUID TOKENS & DEFAULTS ============ */
:root {
  --color-gold: var(--color-accent, #e8b931);
  --color-gray-soft: #f4f6f8;
  --font-body: 'Plus Jakarta Sans', 'Plus Jakarta Sans Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-pill: 999px;
  --shadow-soft: 0px 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0px 14px 32px rgba(0, 0, 0, 0.18);
  --container-width: 1240px;
}

/* ============ RESET DASAR ============ */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text, #000);
  background: var(--color-bg, #ffffff);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, blockquote { margin: 0 0 1rem; }
.container {
  width: min(var(--container-width), 100% - clamp(1.5rem, 5vw, 3rem));
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ============ FLUID TYPOGRAPHY ============ */
.section-heading {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: var(--color-primary, #456065);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* ============ TOMBOL ADAPTIF ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 0.95rem) clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
}
.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.btn--pill { border-radius: var(--radius-pill); box-shadow: var(--shadow-soft); }
.btn--primary { background: var(--color-primary, #456065); color: #fff; }
.btn--accent { background: var(--color-accent, #F17827); color: #fff; }
.btn--gold {
  background: var(--color-accent, var(--color-gold, #e8b931));
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.15rem);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--color-accent, #e8b931) 35%, transparent);
}
.btn--gold:hover {
  box-shadow: 0 12px 28px color-mix(in srgb, var(--color-accent, #e8b931) 50%, transparent);
}
.btn--light {
  background: color-mix(in srgb, var(--color-accent, #f17827) 12%, white);
  color: var(--color-accent, #f17827);
  box-shadow: none;
}
.btn--light:hover {
  background: var(--color-accent, #f17827);
  color: #fff;
}

/* ============ FLOATING GLASSMORPHISM HEADER ============ */
.site-header {
  position: sticky;
  top: clamp(8px, 2vw, 16px);
  z-index: 100;
  padding: 0 clamp(0.75rem, 3vw, 1.5rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}
.site-header__inner {
  max-width: var(--container-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  padding: clamp(0.4rem, 1.5vw, 0.65rem) clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.site-header__logo img {
  height: clamp(32px, 5vw, 44px);
  width: auto;
  object-fit: contain;
}
.site-header__logo-text { font-weight: 800; font-size: clamp(0.95rem, 2vw, 1.15rem); color: var(--color-primary, #456065); }
.site-header__nav { display: none; gap: clamp(1rem, 2.5vw, 2rem); font-weight: 700; font-size: 0.95rem; }
.site-header__nav a { text-decoration: none; color: #333; transition: color 0.2s; }
.site-header__nav a:hover { color: var(--color-accent, #F17827); }
.site-header__cta { font-size: clamp(0.78rem, 1.5vw, 0.88rem); padding: 0.55rem clamp(0.9rem, 2vw, 1.4rem); }

@media (min-width: 768px) {
  .site-header__nav { display: flex; }
}

/* ============ HERO SECTION ============ */
.hero { padding: clamp(1.5rem, 4vw, 3rem) clamp(0.75rem, 3vw, 1.5rem) clamp(2rem, 5vw, 4rem); text-align: center; }
.hero__inner { max-width: var(--container-width); margin-inline: auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__picture { display: flex; justify-content: center; align-items: center; width: 100%; margin: 0 auto 1.25rem; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft, rgba(241, 120, 39, 0.12));
  color: var(--color-accent, #F17827);
  font-weight: 800;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  margin: 0 auto 1.25rem;
}
.hero__logo { display: block; margin: 0 auto; max-width: min(360px, 80vw); max-height: 160px; width: auto; height: auto; object-fit: contain; }
.hero__title {
  font-size: clamp(1.65rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--color-text, #111111);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 500;
  max-width: 840px;
  margin-inline: auto;
  color: var(--color-text, #444444);
  opacity: 0.88;
  line-height: 1.65;
}

/* ============ DUAL-TONE INFO GRID ============ */
.hero__intro-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  text-align: left;
}
.hero__intro-image {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__intro-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 260 / 245;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: clamp(16px, 3vw, 24px);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 819px) {
  .hero__intro-image img {
    max-width: min(270px, 75vw);
  }
}
.hero__intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.intro-card {
  background: var(--color-gray-soft);
  border-left: 5px solid var(--color-primary, #456065);
  border-radius: 16px;
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.intro-card--accent {
  border-left-color: var(--color-accent, #F17827);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--color-accent, #F17827);
}
.intro-card__badge {
  display: inline-block;
  background-color: var(--color-accent, #F17827);
  color: #0f172a;
  padding: 0.3rem 0.8rem;
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
  font-weight: 800;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.intro-card__text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  color: #222;
  margin: 0;
}
.intro-card__highlight {
  background-color: var(--color-primary, #456065);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
}
.intro-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.intro-card__list li {
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  line-height: 1.5;
  color: #333;
  position: relative;
  padding-left: 1.6rem;
}
.intro-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent, #F17827);
  font-weight: 800;
  font-size: 1.1rem;
}
.intro-block__footer-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  font-weight: 600;
  color: #333;
  margin: 0;
}

@media (min-width: 820px) {
  .hero__intro-grid {
    grid-template-columns: minmax(320px, 460px) 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    min-height: 440px;
  }
}

/* ============ COVERFLOW GALLERY ============ */
.why-join { padding: clamp(2rem, 4vw, 3.5rem) clamp(0.75rem, 3vw, 1.5rem); background: #fafafa; }

/* ============ DUAL PRICING / DAFTAR CARDS ============ */
.benefits-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(0.75rem, 3vw, 1.5rem);
  background: #fafbfc;
}
.pricing-container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-container {
    flex-direction: row;
    align-items: stretch;
  }
}

.pricing-card {
  flex: 1;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 2px solid color-mix(in srgb, var(--color-accent, #e2e8f0) 30%, #e2e8f0);
  border-radius: clamp(20px, 4vw, 32px);
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.pricing-card--featured {
  background: var(--color-primary, #456065);
  color: #ffffff;
  border: none;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}
.pricing-card--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.25);
}

.pricing-card__badge {
  position: absolute;
  top: clamp(16px, 3vw, 24px);
  right: clamp(16px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: clamp(0.65rem, 1.2vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.pricing-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.pricing-card__price {
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary, #0f172a);
}
.pricing-card--featured .pricing-card__price {
  color: #ffffff;
}
.pricing-card__period {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: color-mix(in srgb, var(--color-text, #64748b) 68%, white);
  font-weight: 600;
}
.pricing-card--featured .pricing-card__period {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card__title {
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-primary, #0f172a);
}
.pricing-card--featured .pricing-card__title {
  color: #ffffff;
}

.pricing-card__desc {
  font-size: clamp(0.88rem, 1.8vw, 0.95rem);
  color: color-mix(in srgb, var(--color-text, #64748b) 68%, white);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}
.pricing-card--featured .pricing-card__desc {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}
.pricing-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.9rem, 1.8vw, 0.98rem);
  line-height: 1.45;
  color: var(--color-text, #334155);
}
.pricing-card--featured .pricing-card__item {
  color: rgba(255, 255, 255, 0.95);
}
.pricing-card__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent-soft, rgba(241, 120, 39, 0.12));
  color: var(--color-accent, #F17827);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 1px;
}
.pricing-card--featured .pricing-card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.pricing-card__cta {
  width: 100%;
  margin-top: auto;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  padding: 0.9rem 1.4rem;
}

/* ============ LEGAL ============ */
.legal { padding: clamp(2rem, 4vw, 3.5rem) clamp(0.75rem, 3vw, 1.5rem); text-align: center; }
.legal__ahu { font-weight: 800; max-width: 700px; margin-inline: auto; font-size: clamp(1.05rem, 2.5vw, 1.25rem); color: var(--color-primary, #456065); }
.legal__docs { margin-top: 1.8rem; justify-content: center; }
.legal__doc-card { margin: 0; }
.legal__doc-card img {
  flex: 1 1 clamp(240px, 30vw, 340px);
  max-width: 340px;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

/* ============ GALLERY STRIP ============ */
.event-gallery { padding: clamp(2rem, 4vw, 3.5rem) clamp(0.75rem, 3vw, 1.5rem); text-align: center; }
.gallery-strip {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0.5rem;
  max-width: var(--container-width);
  margin-inline: auto;
  justify-content: center;
  align-items: center;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip img {
  flex: 1 1 clamp(280px, 30vw, 380px);
  max-width: 380px;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  background: #fff;
}
.gallery-strip:has(img:only-child) { justify-content: center; }

/* ============ STATS ============ */
.stats {
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  background: var(--color-gray-soft);
  border-radius: clamp(18px, 4vw, 28px);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.stats h2 { font-size: clamp(1.3rem, 3vw, 1.6rem); color: var(--color-primary, #456065); margin-bottom: 0.8rem; }
.stats strong { color: var(--color-accent, #F17827); font-size: 1.1rem; }

/* ============ VIDEO FACADE ============ */
.video-section { padding: clamp(2rem, 4vw, 3.5rem) clamp(0.75rem, 3vw, 1.5rem); max-width: 840px; margin-inline: auto; }
.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: clamp(16px, 3vw, 24px);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.video-facade__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(54px, 12vw, 76px);
  height: clamp(54px, 12vw, 76px);
  border-radius: 50%;
  background: var(--color-accent, #F17827);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}
.video-facade:hover .video-facade__play { transform: scale(1.1); }
.video-facade__play::after {
  content: '';
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: clamp(9px, 2vw, 13px) 0 clamp(9px, 2vw, 13px) clamp(14px, 3vw, 22px);
  border-color: transparent transparent transparent #fff;
}

/* ============ NUMBERED STEPPER TIMELINE ============ */
.t1-schedule-section {
  width: 100%;
  margin: clamp(2rem, 4vw, 3.5rem) 0;
}
.t1-schedule-header {
  text-align: center;
  background: #ffffff;
  padding: clamp(1.8rem, 4vw, 2.5rem) 1rem 1.5rem;
}
.t1-schedule-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary, #456065);
  line-height: 1.2;
  margin: 0;
}
.t1-schedule-body {
  background: var(--color-gray-soft);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  border-radius: clamp(20px, 4vw, 32px);
  max-width: var(--container-width);
  margin: 0 auto;
}
.t1-timeline-container {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.t1-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 clamp(24px, 5vw, 36px);
  position: relative;
}
.t1-timeline-list::before {
  content: '';
  position: absolute;
  left: clamp(11px, 2.5vw, 17px);
  top: 14px;
  bottom: 28px;
  width: 3px;
  background: #cbd5e1;
}
.t1-timeline-item {
  position: relative;
  min-height: 120px;
  padding: 0 0 1.8rem clamp(1.2rem, 3vw, 2.2rem);
  cursor: pointer;
  outline: none;
  user-select: none;
}
.t1-timeline-item:last-child {
  min-height: auto;
  padding-bottom: 0;
}
.t1-timeline-badge {
  position: absolute;
  left: clamp(-24px, -4vw, -36px);
  top: 0;
  width: clamp(28px, 5vw, 36px);
  height: clamp(28px, 5vw, 36px);
  border-radius: 50%;
  background: #94a3b8;
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.t1-timeline-card {
  background: #fff;
  border-radius: 18px;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.1rem, 3vw, 1.6rem);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.t1-timeline-date {
  display: block;
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  font-weight: 700;
  color: #64748b;
  margin-bottom: 4px;
}
.t1-timeline-title {
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.15;
  margin: 0 0 4px;
}
.t1-timeline-note {
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  font-weight: 600;
  color: var(--color-accent, #F17827);
  margin: 4px 0 0;
}

/* ACTIVE STATE TIMELINE */
.t1-timeline-item--active .t1-timeline-badge {
  background: var(--color-accent, #F17827) !important;
  transform: scale(1.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.t1-timeline-item--active .t1-timeline-card {
  border-color: var(--color-accent, #F17827);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.t1-timeline-item--active .t1-timeline-date {
  color: var(--color-accent, #F17827);
}

.t1-timeline-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============ AVATAR TESTIMONIAL CARDS ============ */
.testimonials-section { padding: clamp(2rem, 4vw, 3.5rem) clamp(0.75rem, 3vw, 1.5rem); }
.testimonials { display: grid; gap: clamp(1.2rem, 3vw, 1.8rem); max-width: var(--container-width); margin-inline: auto; }
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: clamp(18px, 3vw, 24px);
  padding: clamp(1.4rem, 3vw, 2rem);
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.testimonial-card__avatar {
  width: clamp(42px, 8vw, 52px);
  height: clamp(42px, 8vw, 52px);
  border-radius: 50%;
  background: var(--color-accent, #F17827);
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.testimonial-card__meta h4 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 800;
  color: var(--color-primary, #456065);
}
.testimonial-card__meta span {
  font-size: clamp(0.8rem, 1.5vw, 0.88rem);
  color: #64748b;
  font-weight: 600;
}
.testimonial-card__stars {
  color: var(--color-gold);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 0.6rem;
}
.testimonial-card blockquote {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-style: italic;
}
@media (min-width: 700px) {
  .testimonials { grid-template-columns: 1fr 1fr; }
}

/* ============ FASILITAS ============ */
.facilities { padding: clamp(2rem, 4vw, 3.5rem) clamp(0.75rem, 3vw, 1.5rem); background: var(--color-gray-soft); }
.facilities__inner { max-width: var(--container-width); margin-inline: auto; display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); }
.facilities__inner img { border-radius: 24px; width: 100%; object-fit: cover; box-shadow: var(--shadow-soft); }
.facilities__inner ul { padding-left: 1.25rem; font-size: clamp(0.95rem, 2vw, 1.05rem); }
.facilities__inner li { margin-bottom: 0.6rem; }
@media (min-width: 800px) {
  .facilities__inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ============ COUNTDOWN ============ */
.countdown {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(0.75rem, 3vw, 1.5rem);
  text-align: center;
  background: var(--color-primary, #456065);
  color: #fff;
}
.countdown .section-heading { color: #fff; }
.countdown__timer { display: flex; justify-content: center; gap: clamp(0.6rem, 2vw, 1.2rem); margin-bottom: 2rem; flex-wrap: wrap; }
.countdown__timer div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  min-width: clamp(72px, 18vw, 95px);
  backdrop-filter: blur(8px);
}
.countdown__timer span { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 800; line-height: 1; color: #fff; }
.countdown__timer small { font-size: clamp(0.7rem, 1.5vw, 0.8rem); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; color: rgba(255,255,255,0.85); }

/* ============ FAQ MODERN ACCORDION ============ */
.faq { padding: clamp(2.5rem, 5vw, 4rem) clamp(0.75rem, 3vw, 1.5rem); max-width: 840px; margin-inline: auto; }
.faq__subtitle { text-align: center; margin-bottom: 1.8rem; color: #64748b; font-size: clamp(0.95rem, 2vw, 1.05rem); }
.faq__item { margin-bottom: 0.85rem; }
.faq__question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  color: var(--color-primary, #456065);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.faq__question:hover {
  border-color: var(--color-accent, #F17827);
}
.faq__question[aria-expanded="true"] {
  background: var(--color-primary, #456065);
  color: #ffffff;
  border-color: var(--color-primary, #456065);
  border-radius: 16px 16px 0 0;
}
.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: transparent;
  color: var(--color-accent, #F17827);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: #fff;
}
.faq__answer {
  padding: clamp(1rem, 2.5vw, 1.3rem) clamp(1.1rem, 3vw, 1.5rem);
  background: #ffffff;
  border: 2px solid var(--color-primary, #456065);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  color: #333;
  line-height: 1.65;
  font-size: clamp(0.92rem, 2vw, 1rem);
}

/* ============ FOOTER ============ */
.site-footer { background: var(--color-gray-soft); padding: clamp(1.8rem, 4vw, 2.5rem) clamp(0.75rem, 3vw, 1.5rem); text-align: center; font-size: clamp(0.82rem, 1.5vw, 0.9rem); }
.site-footer__social { display: flex; justify-content: center; align-items: center; gap: 1.2rem; margin-top: 0.8rem; }
.site-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,0.05); color: var(--color-primary, #456065); transition: transform 0.2s ease, background 0.2s ease; }
.site-footer__social a:hover { transform: translateY(-2px); background: rgba(0,0,0,0.1); }

/* ============ GALLERY COVERFLOW SLIDER ============ */
.gallery-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.gallery-slider__viewport {
  width: 100%;
  height: clamp(300px, 45vw, 480px);
  overflow: hidden;
  position: relative;
}
.gallery-slider__track {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}
.gallery-slider__item {
  position: absolute;
  height: clamp(260px, 40vw, 420px);
  max-width: 85%;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
              filter 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
              opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
              z-index 0.6s step-end;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, filter, opacity;
  cursor: pointer;
}
.gallery-slider__item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  background: #fff;
}
.gallery-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(38px, 6vw, 50px);
  height: clamp(38px, 6vw, 50px);
  border-radius: 50%;
  background: var(--color-primary, #456065);
  color: #fff;
  border: none;
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
}
.gallery-slider__btn:hover {
  background: var(--color-accent, #F17827);
  transform: translateY(-50%) scale(1.1);
}
.gallery-slider__btn--prev { left: clamp(8px, 2vw, 20px); }
.gallery-slider__btn--next { right: clamp(8px, 2vw, 20px); }

/* ============ EXTREME SMALL MOBILE FIXES (<480px) ============ */
@media (max-width: 480px) {
  .site-header__inner { padding: 0.4rem 0.8rem; }
  .pricing-card { padding: 1.5rem 1.1rem; }
  .pricing-card__badge { top: 14px; right: 14px; font-size: 0.62rem; padding: 0.25rem 0.65rem; }
  .intro-card { padding: 1rem 1.1rem; }
}

/* ============ CARD ALUR PENDAFTARAN & ZOOM MODAL ============ */
.regstep-section {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(0.75rem, 3vw, 1.5rem);
  max-width: 860px;
  margin-inline: auto;
  width: 100%;
}

.regstep-section .section-heading {
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.regstep-card-wrapper {
  position: relative;
  width: 100%;
}

.regstep-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: clamp(16px, 3vw, 24px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.regstep-card:hover {
  border-color: rgba(241, 120, 39, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.regstep-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 3vw, 24px);
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  gap: 12px;
}

.regstep-card__title {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.regstep-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.regstep-zoom-btn:hover {
  background: #f17827;
  color: #ffffff;
  border-color: #f17827;
  box-shadow: 0 4px 12px rgba(241, 120, 39, 0.25);
}

.regstep-zoom-btn svg {
  width: 16px;
  height: 16px;
}

.regstep-card__body {
  height: 480px;
  max-height: 65vh;
  overflow-y: auto;
  background: #f8fafc;
  padding: clamp(12px, 3vw, 24px);
  scroll-behavior: smooth;
}

.regstep-card__body::-webkit-scrollbar {
  width: 7px;
}

.regstep-card__body::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.regstep-card__body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.regstep-card__body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.regstep-images-stream {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
}

.regstep-item {
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.regstep-item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  cursor: zoom-in;
}

/* ============ FULLSCREEN ZOOM MODAL WITH BACKDROP BLUR ============ */
.regstep-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 3vw, 24px);
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.regstep-modal.is-active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.regstep-modal__dialog {
  width: min(920px, 95vw);
  height: min(88vh, 850px);
  background: #ffffff;
  border-radius: clamp(16px, 3vw, 24px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.regstep-modal.is-active .regstep-modal__dialog {
  transform: scale(1);
}

.regstep-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(14px, 3vw, 24px);
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  gap: 12px;
}

.regstep-modal__title {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.regstep-modal__controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.regstep-ctrl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.regstep-ctrl-btn:hover {
  background: #f17827;
  color: #ffffff;
  border-color: #f17827;
}

.regstep-zoom-level {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  min-width: 40px;
  text-align: center;
}

.regstep-modal__body {
  flex: 1;
  overflow: auto;
  background: #f1f5f9;
  padding: clamp(12px, 3vw, 24px);
  display: flex;
  justify-content: center;
}

.regstep-modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 780px;
  transition: transform 0.2s ease-out;
  transform-origin: top center;
}

.regstep-frame {
  width: 100%;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.regstep-modal__content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ============ MOBILE RESPONSIVE FIXES FOR ALUR PENDAFTARAN & MODAL (<640px) ============ */
@media (max-width: 640px) {
  .regstep-section {
    padding: 1.5rem 0.75rem;
  }

  .regstep-card {
    border-radius: 16px;
  }

  .regstep-card__header {
    align-items: center;
    padding: 12px 14px;
    gap: 8px;
  }

  .regstep-card__title {
    font-size: 0.88rem;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .regstep-zoom-btn {
    min-width: 0;
    min-height: 0;
    flex-shrink: 0;
  }

  .regstep-zoom-btn span {
    display: inline;
  }

  .regstep-zoom-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .regstep-card__body {
    height: min(38vh, 300px);
    height: min(38svh, 300px);
    min-height: 220px;
    max-height: none;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .regstep-images-stream {
    gap: 8px;
    width: 100%;
  }

  .regstep-item {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  }

  /* Modal Mobile Optimization */
  .regstep-modal {
    padding: 6px;
  }

  .regstep-modal__dialog {
    width: 100%;
    height: 94vh;
    height: 94dvh;
    border-radius: 16px;
  }

  .regstep-modal__header {
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 6px;
  }

  .regstep-modal__title {
    font-size: 0.85rem;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .regstep-modal__controls {
    width: 100%;
    justify-content: flex-end;
    gap: 6px;
    padding-top: 6px;
    border-top: 1px solid #f1f5f9;
  }

  .regstep-ctrl-btn {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .regstep-zoom-level {
    font-size: 11px;
    min-width: 32px;
  }

  .regstep-modal__body {
    min-height: 0;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .regstep-modal__content {
    gap: 12px;
    width: 100%;
    padding-bottom: 16px;
  }

  .regstep-modal__content img {
    border-radius: 8px;
  }
}

/* The modal must never occupy page flow before it is opened. */
.regstep-modal:not(.is-active) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.regstep-modal.is-active {
  display: flex !important;
  visibility: visible !important;
}
.js-daftar-cta.is-registration-closed {
  opacity: 0.58;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.35);
  box-shadow: none;
}
