:root {
  --bg: #FAF7F2;
  --primary: #385C4A;
  --primary-sub: #587667;
  --accent: #D2896C;
  --text-main: #232323;
  --text: #545454;
  --muted: #7A7A7A;
  --font-base: "Nunito Sans", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.02em;
  --default-width: 1200px;
  --plr-default: 24px;
  --border-main: 1px solid rgba(198, 198, 198, 0.35);
  --border-sub: 1px solid rgba(198, 198, 198, 0.5);
  --border-line: 1px solid #F0D8CE;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
}

body {
  font-family: var(--font-base);
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin-bottom: 16px;
  color: var(--text-main);
}

h1 {
  font-size: 58px;
  font-weight: 500;
  line-height: 72px;
  letter-spacing: var(--letter-spacing-tight);
}

h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: var(--letter-spacing-tight);
}

h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: var(--letter-spacing-tight);
}

h4 {
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
}

h1 span, h2 span, h3 span, h4 span {
  color: var(--accent);
  font-family: var(--font-heading);
}

h5 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--text-main);
}

p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

a {
  text-decoration: none;
}

/* Standard syntax for modern browsers */
::placeholder {
  color: #959595; /* Red color using HEX */
  opacity: 1;    /* Ensures full opacity in Firefox */
}

/* Vendor prefixes for cross-browser compatibility */
::-webkit-input-placeholder { /* Chrome, Opera, Safari, Edge */
  color: #959595;
}

:-moz-placeholder { /* Firefox 4-18 */
  color: #959595;
  opacity: 1;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #959595;
  opacity: 1;
}

:-ms-input-placeholder { /* IE 10-11 */
  color: #959595;
}


/* TYPOGRAPHY */
.p-sub {
  font-size: 16px;
  line-height: 24px;
}


/* BUTTON */
.btn-primary {
  position: relative; /* penting agar ::before relatif ke button */
  /* display: inline-block; */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  background: #FFF;
  padding: 7px 20px 7px 7px;
  border: 1px solid #B7C4BE;
  border-radius: 999px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  transition:
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
/* .btn-primary div {
  position: relative;
  z-index: 1;
  transition: color 0.4s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
} */
.btn-primary::before {
  content: "";
  position: absolute;
  /* inset: 0; */
  left: 7px;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-sub);
  /* transform: translateX(-100%); */
  transform: translateY(-50%) scale(1);
  /*transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;*/
  transition: all 0.6s cubic-bezier(0.3, 1, 0.4, 1) 0.1s;
  z-index: 0;
}
/* .btn-primary:hover::before {
  transform: translateX(0);
}
.btn-primary:hover div {
  color: #FFF;
} */
.btn-primary .arrow {
  /* background-color: var(--primary-sub); */
  background: url('../../images/arrow-right.svg') center no-repeat var(--primary-sub);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition:
    transform 0.4s cubic-bezier(0.3, 1, 0.4, 1) 0.1s,
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.btn-primary .text {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  color: var(--text-main);
  transition:
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.btn-primary:hover::before {
  width: 120%;
  height: 120%;
  left: -10%;
  border-radius: 999px;
}
.btn-primary:hover .text {
  color: #fff;
}
.btn-primary:hover {
  border-color: transparent;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  width: fit-content;
  background: #E4E0D7;
  padding: 16px 38px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #263F32;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.btn-secondary:hover {
  background-color: #BDB39D;
}

.btn-ripple {
  position: relative;
  overflow: hidden;
  height: 56px;
  padding: 8px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.btn-ripple .ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
  animation: gradient-ripple 0.7s ease-out;
}

.btn-green {
  background: var(--primary-sub);
  border: none;
  color: #FFF;
}
.btn-green:hover {
  background: #2F4D3E;
}
.btn-green .ripple-effect {
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0.35) 40%,
    rgba(255,255,255,0.15) 60%,
    rgba(255,255,255,0) 70%
  );
}

.btn-white {
  background: #FFF;
  border: var(--border-main);
  color: var(--text-main);
}
.btn-white:hover {
  background: #F0F0F0;
}
.btn-white .ripple-effect {
  background: radial-gradient(
    circle,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.15) 60%,
    rgba(0,0,0,0) 70%
  );
}

/* Ripple animation */
@keyframes gradient-ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


/* COLOR */
.orange {
  color: var(--accent);
}

.red {
  color: #FF383C;
}

.green {
  color: var(--primary-sub);
}


/* ALIGNMENT */
.center {
  text-align: center;
}

.container {
  max-width: var(--default-width);
  margin: auto;
}


.hidden {
  display: none;
}

.scrollable-hidden-scrollbar {
  /* For Firefox */
  scrollbar-width: none;
  /* For IE and Edge */
  -ms-overflow-style: none; 
  /* Standard property for Webkit browsers (Chrome, Safari, Opera, Edge) */
  overflow: auto; /* Ensures content is scrollable when needed */
}

/* For Webkit browsers (Chrome, Safari, Opera, Edge) */
.scrollable-hidden-scrollbar::-webkit-scrollbar {
  display: none; /* Hides the scrollbar visually */
}


/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background-color: var(--bg);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.navbar-logo {
  height: 50px;
}

.navbar-center {
  list-style: none;
  display: flex;
  gap: 32px;
}

.navbar-center li a, .mobile-menu a {
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.navbar-center li a:hover {
  color: var(--accent);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #FFF;
  list-style: none;
  padding: 10px 0;
  min-width: 160px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 14px;
}
.dropdown-menu li a:hover {
  color: var(--accent);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.caret {
  display: inline-block;
  font-size: 12px;
  line-height: normal;
  transition: transform 0.3s ease;
}

.dropdown:hover .caret {
  transform: rotate(180deg);
}

.hamburger {
  position: relative;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  transition:
    transform 0.5s cubic-bezier(.77,0,.18,1),
    opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px,-5.5px);
}

.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--bg);
  padding: 0 var(--plr-default);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 0;
  transition: height 0.5s cubic-bezier(.77,0,.18,1);
}

.mobile-menu a {
  color: var(--text-main);
}

.mobile-menu > ul {
  list-style: none;
  padding: var(--plr-default) 0 0;
}
.mobile-menu li {
  margin-bottom: var(--plr-default);
}

.mobile-submenu {
  list-style: initial;
  padding: 10px 0 0 18px;
}
.mobile-submenu li {
  margin-bottom: 10px;
}

.mobile-submenu a {
  color: var(--text);
}

.mobile-menu-cta a {
  width: 100%;
}


/* FLOATING CONTACT US */
.floating-contact-us {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: auto;
  z-index: 999;
  transition: all 0.3s;
}
.floating-contact-us:hover {
  transform: scale(1.1);
}

.floating-contact-us img {
  border: 1px solid var(--bg);
  border-radius: 100px;
  width: 60px;
}


/* HOME - Hero */
.hero {
  padding: 75px 0;
  overflow: hidden;
}

.hero-container {
  max-width: var(--default-width);
  margin: auto;
  display: flex;
  gap: 100px;
  align-items: center;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 0px;
}

.hero-content .subtitle {
  font-size: 22px;
  line-height: 30px;
}

.hero-content .description {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.hero-content .badge {
  border: 2px solid #D7A648;
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: var(--letter-spacing-tight);
  padding: 8px 6px;
  border-radius: 8px;
  max-width: fit-content;
}

.hero-image {
  position: relative;
  min-width: 550px;
  max-width: 100%;
}

.hero-image img {
  width: 100%;
}

.floating-info {
  background: #FFF;
  padding: 4px 16px 4px 4px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  position: absolute;
  box-shadow:
    0px 8px 8px -4px rgba(10, 13, 18, 0.03),
    0px 20px 24px -4px rgba(10, 13, 18, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-info img {
  width: 40px;
}

.hero-image .first { top: 145px; left: -181px; }
.hero-image .second { bottom: 227px; right: -46px; }

.hero-image .img-top {
  position: absolute;
  top: 94px;
  right: -46px;
  width: fit-content;
}
.hero-image .img-bottom {
  position: absolute;
  bottom: 64px;
  left: -80px;
  width: fit-content;
}


/* HOME - Agenda */
.agenda {
  padding: 0 0 100px 0;
}

a.link-upcoming-event {
  display: block;
}

.agenda-desc {
  display: flex;
  justify-content: space-between;
  padding: 75px 0;
  max-width: var(--default-width);
  margin: auto;
}

.agenda-left h2 {
  margin-bottom: 0px;
}

.agenda-right {
  max-width: 550px;
}

.agenda-right p {
  margin-bottom: 24px;
}

.agenda-list {
  border-top: var(--border-line);
}

.agenda-item {
  padding: 48px 0;
  border-bottom: var(--border-line);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.agenda-item.closed .agenda-card {
  opacity: 0.6;
}

.agenda-item.available::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F0E8DC;
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: 0;
}
.agenda-item.available:hover::before {
  transform: translateX(0);
}

.agenda-item.available > * {
  position: relative;
  z-index: 1;
}
.agenda-item.available:hover > div {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}
.agenda-item.available > div {
  transition: transform 0.3s ease;
}

.agenda-item .number, .certificate-card .number {
  color: var(--primary);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.agenda-card {
  max-width: var(--default-width);
  margin: auto;
  display: grid;
  grid-template-columns: 40px 1fr 255px 196px;
  gap: 80px;
}

.agenda-info h3, .certificate-card h3 {
  color: var(--primary);
}

.agenda-meta {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.agenda-meta .meta-item {
  border-left: 3px solid #666;
  padding-left: 10px;
  margin-top: 5px;
}

.agenda-meta h4 {
  display: block;
  margin-bottom: 0px;
}

.agenda-action {
  text-align: right;
}

.agenda-action .badge {
  background: #E4E0D7;
  color: #FFF;
  padding: 17px 0;
  border-radius: 999px;
  font-weight: 600;
  display: block;
  text-align: center;
  width: 100%;
}


/* HOME - Testimoni */
.testimoni {
  padding: 50px 0;
  text-align: center;
}

.testimoni .sub {
  margin-bottom: 50px;
}

.marquee {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #FAF7F4, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #FAF7F4, transparent);
}

.track {
  display: flex;
  gap: 24px;
  width: max-content;
  margin-bottom: 25px;
  will-change: transform;
  cursor: grab;
}

.marquee.dragging .track {
  cursor: grabbing;
}

.testi-card {
  width: 480px;
  height: 326px;
  background: var(--bg);
  border-radius: 24px;
  border: var(--border-sub);
  padding: 32px;
  text-align: left;
}

.testi-card .stars {
  font-size: 20px;
  color: #98AAA1;
}

.testi-card .quote {
  margin-bottom: 32px;
  max-height: 162px;
  overflow-y: auto;
}

.testi-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-card .author img {
  width: 58px;
}


/* FAQ */
.faq {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.faq h2 {
  margin-bottom: 20px;
}

.faq-subtitle {
  max-width: 650px;
  margin: 0 auto 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: var(--border-main);
  background: #FFF;
  border-radius: 48px;
  padding: 20px 30px;
  text-align: left;
  /*cursor: pointer;*/
  transition: all 0.3s ease;
  overflow: hidden;
}

/*.faq-item[open] {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}*/

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--text-main);
  transition: padding 0.4s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none; /* hide default arrow */
}

.faq-item .arrow, .certificate-card .arrow {
  cursor: pointer;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  background: var(--primary-sub);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.4s ease;
}

.faq-item .arrow::before, .certificate-card .arrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(45deg);
  margin-top: -2.5px;
}

.faq-item[open] .arrow {
  transform: rotate(180deg);
}

/*.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}*/

.faq-item .content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    transform 0.35s ease;
}

.faq-item[open] .content {
  opacity: 1;
  transform: translateY(0);
}

.faq-item .content p {
  margin-top: 12px;
  font-weight: 400;
  max-width: 95%;
}

.faq-item[open] summary {
  padding-bottom: 6px;
}

.faq-cta {
  background: #FFF;
  border: var(--border-sub);
  border-radius: 48px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.faq-cta p {
  font-weight: 600;
  color: var(--text-main);
}


/* CTA */
.cta {
  padding: 50px var(--plr-default);
}

.cta-bg {
  width: 100%;
  max-width: var(--default-width);
  height: 448px;
  margin: auto;
  border-radius: 48px;
  overflow: hidden;
  background: url('../../images/cta-bg.png') top right no-repeat;
  position: relative;
}

.cta-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0.05) 100%
  );
  display: flex;
  align-items: center;
  padding: 48px;
}

.cta-content {
  max-width: 607px;
  text-align: left;
}

.cta-content h2 {
  font-size: 54px;
  color: #FFF;
  margin-bottom: 24px;
}


/* FOOTER */
.footer {
  background: #E4E0D7;
  border-radius: 48px 48px 0 0;
  padding: 60px var(--plr-default) 20px;
  position: relative;
}

.footer-bgimg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  max-height: 85%;
}

.footer-inner {
  max-width: var(--default-width);
  margin: auto;
  text-align: center;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 86px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.footer-menu a {
  color: var(--text-main);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.menu-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.menu-group .sub {
  color: var(--text);
  font-weight: 500;
}

.footer-menu a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

.footer-social a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform .3s;
}
.footer-social a:hover {
  transform: scale(1.08);
}

.footer-brand img {
  width: 182px;
  margin-bottom: 30px;
}


/* ABOUT US - Hero */
.about-hero, .philosophy, .coach {
  padding: 50px var(--plr-default);
}

.about-hero-text {
  text-align: center;
  margin-bottom: 80px;
}

.about-hero-text p {
  max-width: 650px;
  margin: auto;
}

.about-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.about-hero-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-hero-card img {
  width: 100%;
  border-radius: 28px;
}


/* ABOUT US - Philosophy */
.divider-line {
  width: 100%;
  height: 1px;
  background: #F0D8CE;
  margin: 40px 0;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.philosophy-text .item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.philosophy-text .number, .mission-item .number {
  color: var(--primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.philosophy-text h4, .mission-item h4, .coach-info h4 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 8px;
}

.philosophy-img {
  margin-top: 40px;
  display: block;
  border-radius: 24px;
}

.about-philosophy-img {
  border-radius: 36px;
}


/* ABOUT US - Story */
.story {
  background: #FFF;
  padding: 60px var(--plr-default);
}

.story-logo img {
  margin-bottom: 50px;
}

.story h2 {
  max-width: 900px;
  margin: auto;
  margin-bottom: 32px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.story-stats .stat {
  background: var(--bg);
  border-radius: 24px;
  border: var(--border-sub);
  padding: 32px 24px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.story-stats .stat.show {
  opacity: 1;
  transform: translateY(0);
}

.story-stats .stat h3 {
  font-size: 40px;
  line-height: 60px;
  color: var(--primary);
  margin-bottom: 4px;
}


/* ABOUT US - Visi Misi */
.visi-misi {
  padding: 60px var(--plr-default) 20px;
}

.vision h5 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
}

.vm-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
}

.mission-item {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}


/* ABOUT US - Coach Dhiar */
.coach-card {
  max-width: var(--default-width);
  margin: 0 auto;
  background: #FFF;
  border-radius: 48px;
  border: var(--border-main);
  padding: 16px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0px;
  align-items: center;
}

.coach-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.coach-list {
  list-style: none;
}

.coach-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-main);
}

.coach-list-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.coach-list-logo img {
  width: 170px;
  height: auto;
}


/* FAQ - FAQ */
.faq-page {
  max-width: 848px;
  padding: 80px var(--plr-default);
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.faq-title p {
  max-width: 650px;
  margin: auto;
}

.tabs {
  background: #FFF;
  border: var(--border-main);
  border-radius: 48px;
  display: flex;
  justify-content: space-between;
  padding: 8px;
  margin-bottom: 60px;
  position: relative;
}

.tab-indicator {
  position: absolute;
  top: 8px;
  left: 0;
  height: calc(100% - 16px);
  background: var(--accent);
  border-radius: 100px;
  transition: transform .4s cubic-bezier(.4,0,.2,1), width .4s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

button.tab {
  flex: 1;
  padding: 14px 0;
  border-radius: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #263F32;
  position: relative;
  z-index: 1;
}
button.tab:hover {
  background: var(--bg);
}

button.tab.active {
  background: var(--accent);
  font-weight: 700;
  color: #FFF;
}

.faq-body .faq-list{
  /* opacity: 0;
  transform: translateY(24px); */
  animation: slideIn .5s cubic-bezier(.4,0,.2,1);
}
/* .faq-body .faq-list.in-view {
  animation: slideIn .5s cubic-bezier(.4,0,.2,1) forwards;
} */

@keyframes slideIn{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}

.faq-body .faq-item{
  transform: translateY(16px);
  animation: stagger .5s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes stagger{
  to{opacity:1;transform:translateY(0)}
}


/* 404 - 404 */
.page-not-found {
  padding: 100px var(--plr-default);
}

.inner-pnf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.inner-pnf h1 {
  margin-bottom: 0px;
  text-align: center;
}

.inner-pnf p {
  max-width: 700px;
  margin: 0 auto 12px;
  font-size: 20px;
  text-align: center;
}


/* FIND CERTIFICATE - Certificate */
.certificate {
  padding: 60px 0;
}

.certificate-header {
  padding: 0 var(--plr-default);
}

.certificate .center p {
  max-width: 650px;
  margin: auto;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #FFF;
  border-radius: 48px;
  border: var(--border-main);
  padding: 8px;
  margin: 60px 0;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  flex: 1;
}

/* .search-item span {
  color: #777;
  line-height: 24px;
  font-weight: 600;
} */
.search-item img {
  width: 20px;
}

.search-item input {
  border: none;
  outline: none;
  width: 100%;
  height: 56px;
  font-size: 16px;
  color: var(--text-main);
}

.search-bar .divider {
  width: 2px;
  height: 41px;
  background: #F0D8CE;
}

.certificate-list {
  border-bottom: var(--border-line);
}

.certificate-row {
  cursor: pointer;
  padding: 48px 0;
  border-top: var(--border-line);
  position: relative;
  overflow: hidden;
}
.certificate-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #F0E8DC;
  transform: translateY(-100%);
  transition: transform 0.45s ease;
  pointer-events: none;
}
.certificate-row:hover::after {
  transform: translateY(0);
}
.certificate-row > * {
  position: relative;
  z-index: 1;
}

.certificate-row:hover > .certificate-card {
  transform: translateY(2px);
  /* transition: transform 0.3s ease; */
  transition:
    transform 0.3s ease,
    max-height 0.45s ease;
}
.certificate-card {
  max-width: var(--default-width);
  max-height: 88px;
  overflow: hidden;
  position: relative;
  margin: auto;
  display: grid;
  grid-template-columns: 40px 1fr 422px 48px;
  gap: 80px;
  /* transition: transform 0.3s ease; */
  transition:
    transform 0.3s ease,
    max-height 0.45s ease;
}
.certificate-row.active .certificate-card {
  max-height: max-content;
}

.certificate-card .badge {
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 48px;
  border: var(--border-main);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  width: fit-content;
  transition: box-shadow 0.25s ease;
}
.certificate-row:hover .badge {
  box-shadow: 0 3px 7px rgba(0,0,0,0.25);
}

.accordion-content {
  height: 0;
  /* overflow: hidden; */
  opacity: 0;
  transition: height 0.45s ease, opacity 0.35s ease;
}

.certificate-row.active .accordion-content {
  opacity: 1;
}

.certificate-row.active .arrow {
  transform: rotate(180deg);
}

.certificate-nf {
  background: var(--bg);
  padding: 0 var(--plr-default) 50px;
}

.certificate-nf img {
  margin-bottom: 28px;
}

.certificate-nf p {
  max-width: 450px !important;
  margin: auto;
}

/* .load-more-btn {
  width: 100%;
  padding: 14px;
  margin-top: 24px;
  border-radius: 14px;
  border: none;
  background: #111;
  color: #FFF;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
} */


/* JOIN US - Hero */
.join-us-hero {
  width: 100%;
  padding: 60px 0;
}

.join-hero-text p {
  max-width: 600px;
  margin: 0 auto 60px;
}

.join-hero-image {
  position: relative;
  overflow: hidden;
}

.join-hero-image img {
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
}

.parallax-img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  will-change: transform;
}


/* JOIN US - Testimoni */
.join-us-testimonial {
  padding: 60px var(--plr-default);
}

.join-testimonial-card {
  max-width: var(--default-width);
  margin: 0 auto;
  padding: 16px;
  background: #FFF;
  border-radius: 48px;
  border: var(--border-main);
  display: flex;
  gap: 100px;
}

.testimonial-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-right {
  width: 700px;
  max-width: 65%;
  background: var(--bg);
  padding: 40px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.testimonial-right .quote-icon {
  height: 36px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .author-name {
  font-weight: 600;
  color: var(--text-main);
}


/* JOIN US - Why Join Us */
.why-join {
  padding: 60px var(--plr-default);
  text-align: center;
}

.why-header {
  margin-bottom: 40px;
}

.why-grid {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.why-item img {
  width: 224px;
  height: auto;
  /* filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2)); */
  /* box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2); */
}

.why-text {
  line-height: 32px;
  margin-bottom: 8px;
}


/* JOIN US - Yang Kami Cari */
.who-section {
  background: #FFF;
  padding: 70px var(--plr-default);
}

.who-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin: 50px 0;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.who-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.who-icon {
  width: 48px;
}

.who-info {
  flex: 1;
}

.who-image img, .who-icon img {
  width: 100%;
}


/* JOIN US - Langkah Gabung */
.join-steps {
  padding: 70px var(--plr-default);
}

.join-steps-header {
  margin-bottom: 55px;
}

.join-steps-header h2 {
  font-size: 54px;
  line-height: 72px;
}

.join-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.step-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: var(--text);
}

.step-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--accent);
  flex: 1;
}


/* DBODY - Program */
.talent-program {
  padding: 80px 0 60px;
}

.program-title {
  max-width: 650px;
  margin: auto;
}

.program-tabs {
  max-width: 1024px;
  margin: auto;
  padding: 60px 0 1px;
}

.wrap-btn-load-more {
  display: none;
  margin-top: 40px;
}

.wrap-btn-load-more button {
  cursor: pointer;
}


/* EVENT REGISTRATION - Header */
.regis-event-header {
  padding: 70px var(--plr-default) 0;
}

.regis-event-title h1 {
  max-width: 800px;
  margin: 0 auto;
  font-size: 52px;
  line-height: 60px;
}


/* EVENT REGISTRATION - Info */
.regis-event-info {
  padding: 70px var(--plr-default);
}

.regis-event-info img {
  width: 800px;
  max-width: 100%;
  display: block;
  margin: 0 auto 50px;
  border-radius: 32px;
}

.regis-event-card {
  max-width: 800px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #FFF;
  border-radius: 28px;
  border: var(--border-main);
  box-shadow:
    0px 6px 14px rgba(0, 0, 0, 0.03),
    0px 25px 25px rgba(0, 0, 0, 0.03),
    0px 55px 33px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.event-card-left, .event-card-right {
  padding: 24px;
}

.regis-event-card p, .regis-event-card li {
  font-size: 15px;
  line-height: 140%;
  color: var(--text-main);
}

.event-card-right {
  background: var(--bg);
}

.regis-event-card h6, .popup-box h6 {
  font-size: 15px;
  line-height: 100%;
  color: var(--primary);
  margin-bottom: 14px;
}

.regis-event-card ul {
  margin: 0;
  padding-left: 18px;
}

.regis-event-card li {
  margin-bottom: 6px;
}
.regis-event-card li:last-child {
  margin-bottom: 0;
}


/* EVENT REGISTRATION - Form */
.regis-event-form {
  padding: 0 var(--plr-default) 40px;
}

.regis-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.regis-txt-header {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
}

.form-group {
  width: 100%;
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.form-group label span {
  color: #FF383C;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 64px;
  padding: 20px 24px;
  border-radius: 48px;
  border: var(--border-main);
  background: #FFF;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.form-group select {
  background: url("data:image/svg+xml,<svg height='16px' width='16px' viewBox='0 0 16 16' fill='%23232300' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat #FFFFFF !important;
  background-position: right 12px top 24px !important;
  -moz-appearance: none;
  -webkit-appearance: none; 
  appearance: none;
}

.form-group textarea {
  border-radius: 24px;
  resize: vertical;
  min-height: 200px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-sub);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.form-group .input-hidden {
  visibility: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  display: block;
}

.form-group-dob {
  margin-left: -8px;
  display: grid;
  grid-template-columns: 0 1fr 1.3fr 1fr;
  gap: 8px;
}

.form-group .radio-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.form-group .radio-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-group .radio-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  cursor: pointer;
}
.form-group .radio-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}
.radio-group .custom-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: var(--border-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  background: #FFF;
}
.radio-group .custom-radio::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-sub);
  transform: scale(0);
  transition: transform 0.2s ease;
}
.form-group .radio-item input:checked + .custom-radio {
  border-color: var(--primary-sub);
}
.form-group .radio-item input:checked + .custom-radio::after {
  transform: scale(1);
}
.form-group .radio-item:hover .custom-radio {
  border-color: var(--primary-sub);
  transform: scale(1.05);
}

.regis-form-container button {
  width: 100%;
  margin-top: 16px;
}

@keyframes shakeLight {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

.form-control.shake {
  animation: shakeLight 0.4s ease;
}

.form-group.error .form-control:not(.filled) {
  border-color: #FF383C;
  background-color: #FFF5F5 !important;
}

.form-group.error .radio-group {
  outline: 1px solid #FF383C;
  border-radius: 8px;
}

.form-group .error-text {
    font-size: 12px;
    color: #FF383C;
    margin-top: 6px;
    display: block;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s ease;
}
.form-group.error .error-text {
    opacity: 1;
    transform: translateY(0);
}

.form-txt-status {
  margin-top: 32px;
}


/* POPUP */
body.popup-open {
  overflow: hidden;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.16);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  position: relative;
  overflow: hidden;
  width: 96%;
  max-width: 600px;
  background: var(--bg);
  border-radius: 48px;
  padding: 32px;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 
    0px 8px 8px -4px rgba(10, 13, 18, 0.03),
    0px 20px 24px -4px rgba(10, 13, 18, 0.08);
}
.popup-overlay.active .popup-modal {
  transform: scale(1);
}

.popup-modal img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.popup-modal h4 {
  margin-bottom: 6px;
  font-size: 26px;
}

.popup-box {
  background: #FFF;
  border-radius: 24px;
  border: var(--border-main);
  padding: 20px 24px;
  margin: 20px 0 40px;
}

.popup-box ul {
  padding-left: 18px;
  margin: 0;
}
.popup-box li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 140%;
  color: var(--text);
}
.popup-box li:last-child {
  margin-bottom: 0;
}

.popup-actions {
  display: flex;
  gap: 12px;
}

.popup-actions button {
  width: 100%;
}


/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }

  .philosophy-header h2, .visi-misi h2 {
    font-size: 54px;
    line-height: 72px;
  }

  .vm-images {
    position: relative;
  }
  .vm-img-left {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .vm-img-right {
    position: absolute;
    bottom: 60px;
    right: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --plr-default: 20px;
  }

  body {
    overflow-x: hidden;
  }
  section:has(.slide-left), section:has(.slide-right) {
    overflow: hidden;
  }

  h1 {
    font-size: 38px;
    line-height: 120%;
  }
  h2 {
    font-size: 38px;
    line-height: 50px;
  }
  h3 {
    font-size: 28px;
    line-height: 38px;
  }
  h4 {
    font-size: 22px;
    line-height: 30px;
  }
  p {
    font-size: 16px;
  }
  img {
    max-width: 100%;
  }

  .hide-mobile {
    display: none;
  }
  .container {
    max-width: 100%;
  }

  .about-hero, .story, .coach, .certificate-header, .join-us-testimonial, .why-join, .who-section, .join-steps {
    padding: 40px var(--plr-default);
  }
  .testimoni, .join-us-hero, .talent-program {
    padding: 40px 0;
  }
  .certificate-nf p, .testimonial-author p, .popup-modal .p-sub {
    font-size: 14px;
    line-height: 20px;
  }

  .navbar {
    padding: 12px var(--plr-default);
  }
  .navbar-center, .navbar-right {
    display: none;
  }
  .navbar.open {
    box-shadow: none;
  }
  .hamburger {
    display: flex;
  }

  .floating-contact-us {
    bottom: 15px;
    right: 15px;
  }
  .floating-contact-us img {
    width: 48px;
  }

  .inner-pnf h1 {
    font-size: 44px;
    line-height: 52px;
  }
  .inner-pnf p {
    font-size: 16px;
  }

  .hero {
    padding: 40px var(--plr-default) 60px;
  }
  .hero-container {
    flex-direction: column;
    gap: 50px;
  }
  .hero-meta {
    gap: 16px;
    margin-bottom: 32px;
  }
  .hero-content .badge {
    font-size: 16px;
    line-height: 16px;
  }
  .hero-content .subtitle {
    font-size: 20px;
    font-weight: 400;
  }
  .hero h1 {
    font-size: 50px;
    line-height: 62px;
  }
  .hero-content .description {
    font-size: 16px;
    line-height: 24px;
  }
  .hero-image {
    min-width: 100%;
  }
  .floating-info {
    padding: 8px 16px 8px 8px;
    gap: 10px;
    font-size: 14px;
  }
  .hero-image .first { top: unset; bottom: 39px; left: 16px; width: 226px; }
  .hero-image .second { top: 24px; right: unset; bottom: unset; left: 16px; width: 210px; }
  .hero-image .img-top {
    max-width: 121px;
    top: 156px;
    right: 16px;
  }

  .agenda {
    padding: 0 0 40px 0;
  }
  .agenda-desc {
    flex-direction: column;
    padding: 80px var(--plr-default) 60px;
  }
  .agenda-left h2 {
    margin-bottom: 12px;
  }
  .agenda-right p {
    margin-bottom: 40px;
  }
  .agenda-item {
    padding: 32px 0;
  }
  .agenda-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 var(--plr-default);
  }
  .agenda-info h3 {
    margin-bottom: 16px;
  }
  .agenda-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 16px 0;
  }
  .agenda-action .btn-primary {
    width: 100%;
  }

  .faq {
    margin: 40px var(--plr-default);
  }
  .faq h2 {
    margin-bottom: 16px;
  }
  .faq-item {
    border-radius: 32px;
  }
  .faq-item summary {
    font-size: 16px;
    gap: 10px;
  }
  .faq-item .content p {
    max-width: 100%;
  }
  .faq-cta {
    padding: 32px;
    margin-top: 50px;
    border-radius: 32px;
    flex-direction: column;
    gap: 32px;
  }
  .faq-cta p {
    font-size: 18px;
  }
  .faq-cta .btn-secondary {
    width: 100%;
  }

  .cta {
    padding: 20px 0 60px;
  }
  .cta-bg {
    height: 310px;
    border-radius: 0;
    background-position: right center;
    background-size: cover;
  }
  .cta-overlay {
    padding: 65px var(--plr-default);
  }
  .cta-content h2 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 32px;
  }

  .footer {
    border-radius: 32px 32px 0 0;
    padding: 40px var(--plr-default);
  }
  .footer-bgimg {
    bottom: 30px;
  }
  .footer-inner {
    text-align: left;
  }
  .footer-menu {
    gap: 24px;
    flex-direction: column;
  }
  .footer-social {
    justify-content: flex-start;
  }
  .footer-brand img {
    width: 130px;
    margin-bottom: 24px;
  }

  .faq-page {
    padding: 40px var(--plr-default);
    gap: 60px;
  }
  .tabs {
    border-radius: 32px;
    flex-direction: column;
    margin-bottom: 40px;
  }
  button.tab {
    padding: 16px 0;
  }
  .tab-indicator {
    top: -1px;
    left: 8px;
    width: calc(100% - 16px) !important;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), height .3s cubic-bezier(.4, 0, .2, 1);
  }
  .faq-page .faq-cta {
    margin-top: 0;
  }

  .about-hero-text {
    margin-bottom: 60px;
  }
  .about-hero-text p {
    max-width: 100%;
  }
  .about-hero-cards {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }
  .about-hero-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .divider-line {
    margin: 32px 0;
  }

  .philosophy, .visi-misi {
    padding: 40px var(--plr-default) 8px;
  }
  .philosophy-content {
    grid-template-columns: 1fr;
  }
  .philosophy-text .item {
    margin-bottom: 24px;
  }
  .philosophy-text .btn-primary {
    margin-top: 8px;
  }
  .philosophy-image {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 16px;
    margin-top: 40px;
  }
  .philosophy-img {
    margin-top: 0;
    height: 67.5%;
    object-fit: cover;
    border-radius: 20px;
  }

  .story-logo img {
    width: 64px;
    margin-bottom: 36px;
  }
  .story h2 {
    font-size: 36px;
    line-height: 44px;
    max-width: 100%;
    margin-bottom: 36px;
  }
  .story-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .story-stats .stat h3 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 8px;
  }
  .story-stats .stat p {
    font-weight: 600;
  }

  .vision h5 {
    font-size: 18px;
    line-height: 28px;
  }
  .vm-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .mission-item {
    gap: 16px;
    margin-top: 24px;
  }
  .vm-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .coach-card {
    display: flex;
    flex-direction: column;
    gap: 44px;
    border-radius: 32px;
  }
  .coach-info {
    padding: 16px;
    gap: 40px;
  }
  .coach-info h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .coach-info h4 {
    margin-bottom: 20px;
  }
  .coach-list li {
    font-size: 16px;
    line-height: 24px;
  }
  .coach-list li:last-child {
    margin-bottom: 0;
  }
  .coach-list-logo {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .coach-list-logo img {
    width: 100%;
  }
  .coach-img {
    width: 100%;
    height: calc(100vw - 74px);
    object-fit: cover;
    border-radius: 24px;
  }

  .certificate {
    padding: 0 0 40px;
  }
  .search-bar {
    flex-direction: column;
    gap: 12px;
    background: none;
    border: none;
    padding: 0;
    margin: 60px 0 20px;
  }
  .search-item {
    width: 100%;
    background: #FFF;
    border-radius: 48px;
    border: var(--border-main);
  }
  .search-bar .divider {
    display: none;
  }
  .search-bar button {
    width: 100%;
    margin-top: 20px;
  }

  .certificate-nf {
    padding-bottom: 42px;
  }
  .certificate-nf img {
    width: 40px;
    margin-bottom: 20px;
  }
  .certificate-nf h3 {
    font-size: 26px;
    line-height: 130%;
    letter-spacing: 0;
    margin-bottom: 8px;
  }
  .certificate-nf p {
    max-width: 262px !important;
  }

  .certificate-row {
    padding: 32px var(--plr-default) 24px;
  }
  .certificate-card {
    grid-template-columns: 1fr;
    gap: 16px;
    max-height: max-content;
  }
  .certificate-card h3 {
    margin-bottom: 0;
  }
  .certificate-card .arrow {
    display: none;
  }

  .join-hero-text {
    padding: 0 var(--plr-default);
  }
  .join-hero-text h1 {
    line-height: 50px;
  }
  .join-hero-image img {
    aspect-ratio: 1.5 / 1;
  }

  .join-testimonial-card {
    flex-direction: column;
    border-radius: 32px;
    gap: 24px;
  }
  .testimonial-left {
    padding: 16px;
    gap: 24px;
  }
  .testimonial-left h3 {
    font-size: 36px;
    line-height: 44px;
  }
  .testimonial-right {
    width: 100%;
    max-width: 100%;
    padding: 32px;
    border-radius: 24px;
    gap: 32px;
  }
  .testimonial-right .quote-icon {
    height: 28px;
  }
  .testimonial-right .quote-icon img {
    width: 60px;
  }
  .testimonial-text {
    font-size: 20px;
  }
  .testimonial-author {
    gap: 12px;
  }
  .testimonial-author img {
    width: 40px;
    height: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-text {
    font-size: 24px;
  }
  .why-item p {
    max-width: 300px;
    margin: auto;
  }

  .who-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .join-steps-header h2 {
    font-size: 38px;
    line-height: 50px;
  }
  .join-steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  p.talent-hero-phar {
    max-width: 312px;
  }

  .program-title {
    padding: 0 var(--plr-default);
    max-width: 100%;
  }
  .program-tabs {
    padding: 60px var(--plr-default) 1px;
  }

  .regis-event-header {
    padding: 40px var(--plr-default) 0;
  }
  .regis-event-title h1 {
    font-size: 38px;
    line-height: 50px;
  }
  .regis-event-info {
    padding: 60px var(--plr-default);
  }
  .regis-event-info img {
    margin-bottom: 40px;
    border-radius: 28px;
  }
  .regis-event-card {
    grid-template-columns: 1fr;
    padding: 4px;
    gap: 4px;
  }
  .event-card-left, .event-card-right {
    padding: 16px;
  }
  .event-card-right {
    border-radius: 24px;
    border: 1px solid #F0D8CE;
  }
  .regis-event-card p, .regis-event-card li {
    font-size: 14px;
    font-weight: 400;
  }
  .regis-event-card h6, .popup-box h6 {
    font-size: 14px;
    font-weight: 700;
  }

  .regis-event-form {
    padding-bottom: 30px;
  }
  .regis-txt-header {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .popup-modal {
    width: calc(100vw - 40px);
    border-radius: 32px;
  }
  .popup-modal h4 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 38px;
  }
  .popup-box {
    border-radius: 20px;
    padding: 16px;
  }
  .popup-box li {
    font-size: 14px;
    font-weight: 500;
  }
  .popup-actions {
    flex-direction: column-reverse;
  }
}


/* ========== LOADING ========== */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
  color: #AAA;
  font-size: 14px;
}

.spinner {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: #E5C1A6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.skeleton-row {
  height: 125px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    #EEE 25%,
    #F5F5F5 37%,
    #EEE 63%
  );
  background-size: 400% 100%;
  animation: shimmer 0.7s infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(0.5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loader-circle {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0,0,0,0.1);
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ========== TAB ANIMATION ========== */
.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, display 0.3s ease-in-out allow-discrete;
}

.tab-content.visible {
  display: block;
  opacity: 1;
}

@starting-style {
  .tab-content.visible {
    opacity: 0;
  }
}


/* ========== SCROLL ANIMATION (FRAMER STYLE) ========== */
.slide-left,
.slide-right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.6s ease-out;
}

.slide-left {
  transform: translateX(-60px);
}

.slide-right {
  transform: translateX(60px);
}

.slide-show {
  opacity: 1;
  transform: translateX(0);
}

/* initial state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(.22,1,.36,1),
    transform 0.8s cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}

/* visible */
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* stagger support */
.stagger > * {
  transition-delay: calc(var(--i) * 0.2s);
}

/* subtle scale (for cards) */
.scale {
  transform: translateY(40px) scale(0.85);
}

.scale.show {
  transform: translateY(0) scale(1);
}