* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: white; /* ← INI KUNCINYA */
  overflow-x: hidden;
}

html, body {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

.global-container {
  max-width: 1144px;
  width: 100%;
  margin: 0 auto;
}

/* HERO */
.hero {
  width: 100%;
  height: 1474px;

  color: white;
  position: relative;
  overflow: visible;
  z-index: 0;

  background:
    url('../IMAGE/background header jasa musik aransemen.jpg')
    no-repeat center center;

  background-size: cover;
  background-attachment: scroll;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: inherit;

  z-index: 0;

  filter: blur(18px);
  transform: scale(1.06);

  opacity: 0;

  animation: heroImageReveal 1.4s ease forwards;

  will-change: transform, filter, opacity;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(26, 26, 26, 1) 0%,
    rgba(6, 78, 59, 0.46) 100%
  );

  z-index: 2;

  opacity: 0;

  animation: heroGradientReveal 1.8s ease forwards;
  animation-delay: 0.35s; /* 🔥 gradient muncul belakangan */
}

@keyframes heroGradientReveal {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes heroImageReveal {
  0% {
    filter: blur(22px);
    transform: scale(1.08);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
  }
}



/* NAVBAR */
.navbar {
  position: relative; /* 🔥 WAJIB */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  z-index: 999; /* 🔥 GAS POL, jangan nanggung */ 
}

/* MENU */
.menu {
  display: flex;
  gap: 76px;
}

.menu a {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

/* HOVER MENU */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 50%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* LOGO */
.logo {
  width: 129px;
  height: 54px;
 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

/* HERO CONTENT */
.hero-content {
  margin-top: 223px;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 73px;
  line-height: 75px;
  font-weight: 500;
}

.hero-content p {
  margin-top: 50px;
  font-size: 17px;
  line-height: 30px;
  max-width: 600px;
}

/* CTA */
.cta {
  margin-top: 60px;
  display: flex;
  align-items: center;
  position: relative;
}

/* BUTTON WRAP */
.btn-wrap {
  position: relative;
  width: 311px;
  height: 65px;
}

/* OUTLINE CIRCLE */
.btn-wrap::before {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  border: 1px solid white;
  border-radius: 50%;
  left: 32px;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

/* BUTTON */
.btn-primary {
  width: 311px;
  height: 65px;
  background: #CF7325;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.35s ease, background 0.3s ease;
}

/* CIRCLE PUTIH */
.btn-primary .circle {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 53px;
  height: 53px;
  background: #EDE7E3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

/* TEXT */
.btn-primary .text {
  margin-left: 28px;
}

/* SVG */
.circle svg {
  display: block;
  width: 24px;
  height: 24px;
  transition: transform 0.5s ease;
}

/* HOVER BUTTON */
.btn-wrap:hover .btn-primary {
  background: #E07B2D;
  box-shadow: 0 0 18px rgba(207, 115, 37, 0.35);
}

.btn-wrap:hover .btn-primary .circle {
  box-shadow: 
    0 6px 16px rgba(0,0,0,0.35),
    0 2px 6px rgba(0,0,0,0.25);
  transform: translateY(-50%) scale(0.95);
}

.btn-wrap:hover::before {
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.9;
}

.cta-btn-wrap:hover .cta-circle svg {
  transform: rotate(360deg);
}

/* PORTFOLIO */
.portfolio {
  margin-left: 52px;
  color: white;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

/* HOVER PORTFOLIO */
.portfolio::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.portfolio:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* GUIDE LINE BASE */
/* GUIDE LINE BASE */
.guide-line {
  --line-color: rgba(220, 232, 228, 0.58);

  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* HORIZONTAL */
.guide-line.horizontal {
  position: absolute;
  top: 50%;
  left: 100%;

  width: 200vw;
  height: 1px;

  transform: translate(-50%, -50%);

  animation: dashMoveHorizontal 6s linear infinite;

  background: repeating-linear-gradient(
    to right,
    rgba(215,225,223,0.32) 0px,   /* 🔥 diturunin lagi sedikit */
    rgba(215,225,223,0.32) 17px,
    transparent 17px,
    transparent 34px
  );
}

/* VERTICAL */
.guide-line.vertical {
  top: 0;
  height: 100%;
  right: calc((100% - 1144px)/2);
  width: 1px;

  animation: dashMoveVertical 6s linear infinite;

  background: repeating-linear-gradient(
    to bottom,
    var(--line-color) 0px,
    var(--line-color) 17px,
    transparent 17px,
    transparent 34px
  );
}

/* ANIMASI DASH */
@keyframes dashMoveHorizontal {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 34px 0; /* 17 dash + 17 gap */
  }
}

@keyframes dashMoveVertical {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 34px;
  }
}


/* SECTION SERVICES */
.services {
  position: relative;
  margin-top: -350px;
  z-index: 2; /* 🔥 TAMBAH */
}

/* BACKGROUND PUTIH DI TENGAH CARD */
.services::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  top: 260px; /* 🔥 INI KUNCINYA */

  background: #ffffff;

  z-index: -1;
}


/* TITLE */
.services-title {
  font-size: 40px;
  line-height: 65px;
  font-weight: 500; /* Poppins Medium */
  color: white;
  margin-bottom: 40px;
}



/* CARD */
.card {
  cursor: pointer;
  will-change: transform;
  text-decoration: none;
  color: inherit;
  flex: 1;
  aspect-ratio: 351 / 520;

  background: #2A2A2A;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  border: none;
  outline: 1px solid rgba(255,255,255,0.6);
}

.card-arrow {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.card-arrow .circle {
  width: 60px;
  height: 60px;

  border: 2px solid white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;

  transition: all 0.4s ease;
}

/* SVG PANAH */
.card-arrow svg {
  width: 22px;
  height: 22px;
  transition: transform 0.4s ease;
}

.card-arrow svg path {
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;

  transition: all 0.4s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(6, 78, 59, 0.36) 0%,   /* atas */
    rgba(6, 78, 59, 0.48) 43%,  /* tengah */
    rgba(26, 26, 26, 1) 87%     /* bawah */
  );

  z-index: 1; /* di atas gambar */
  pointer-events: none;
}

.card:hover .card-arrow .circle {
  background: white;       /* jadi solid */
  border-color: white;
  transform: scale(1.08);
}

.card:hover .card-arrow svg path {
  stroke: #30504C;         /* panah jadi hijau */
}

/* BACKGROUND PER CARD */
.card-1 {
  background: url('../IMAGE/card aransemen musik dan orkestrasi.jpg') no-repeat center;
  background-size: cover;
}

.card-2 {
  background: url('../IMAGE/card penulisan partitur dan notasi.jpg') no-repeat center;
  background-size: cover;
}

.card-3 {
  background: url('../IMAGE/card mixing dan mastering.jpg') no-repeat center;
  background-size: cover;
}

.card-4 {
  background: url('../IMAGE/card studio rekaman.jpg') no-repeat center;
  background-size: cover;
}

/* OUTER FULL WIDTH */
.cards-outer {
  width: 100%;
  overflow: visible;
}

.services-container {
  max-width: 1144px;
  margin: 0 auto;
}

.cards {
  display: flex;
  gap: 13px;

  width: calc(100vw - ((100vw - 1144px) / 2)); 
  margin-left: calc((100vw - 1144px) / 2);

  justify-content: space-between;
}

.card {
  transition: 
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

.card:hover {
  transform: translateY(-18px);

  box-shadow: 
    0 30px 60px rgba(0,0,0,0.4),
    0 0 25px rgba(255,255,255,0.25);
}



/* CONTENT DALAM CARD */
.card-content {
  z-index: 3;
  padding-left: 36px;
  padding-bottom: 42px; /* tambah dikit biar lega bawah */
}

/* TITLE DALAM CARD */
.card-content h3 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
  max-width: 260px;
}

/* LINK */
.card-content a {
  font-size: 14px;
  color: rgba(255,255,255,0.5); /* ← 50% transparan */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 20px; /* ← jarak text ke panah diperbesar */
}

.card-content a .arrow {
  opacity: 0.8;
}









/* =========================
   AUDIO PREVIEW (KANAN HERO)
========================= */

.audio-preview {
  position: absolute;
  right: calc((100% - 1144px)/2);

  
  top: 340px;

  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10; 
}

/* CARD */
.audio-card {
  width: 293px;
  height: 111px;
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,0.6);

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  padding: 16px;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

/* TITLE */
.audio-title {
  font-size: 15px;
  font-weight: 600;
}

/* CONTROLS */
.audio-controls {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* PLAY BUTTON */
.play-btn {
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  flex: 0 0 26px;
}

/* ICON PLAY */
.icon.play {
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

/* ICON STOP */
.icon.stop {
  width: 10px;
  height: 10px;
  background: white;
}



/* DURATION */
.duration {
  font-size: 15px;
  font-weight: 400;
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
}

/* BUTTON SELENGKAPNYA */
.btn-more {
  width: 166px;
  height: 43px;
  border-radius: 67px;

  background: white;
  color: #2E4D49;

  font-size: 15px;
  border: none;
  cursor: pointer;

  align-self: flex-end;
}

/* HOVER CARD */
.audio-card:hover {
  border: 1px solid rgba(255,255,255,0.9);
}

/* =========================
   WAVEFORM REAL BAR STYLE
========================= */

.waveform {
  position: relative;
  width: 142px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* BAR STATIC (BACKGROUND) */




@keyframes waveMove {
  from { background-position: 0 0; }
  to { background-position: 12px 0; }
}

.hero-title span {
  display: block;
}

.hero-title span {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title span:nth-child(1) {
  animation-delay: 0.35s;
}

.hero-title span:nth-child(2) {
  animation-delay: 0.45s;
}

.hero-title span:nth-child(3) {
  animation-delay: 0.55s;
}

.hero-title span:nth-child(4) {
  animation-delay: 0.65s;
}

.hero-title span:nth-child(5) {
  animation-delay: 0.75s;
}

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

.text-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-title span,
  .text-reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}


.waveform {
  display: flex;
  gap: 4px;
  width: 142px;
  height: 32px;
  align-items: center;
  position: relative;
  flex: 1 1 auto;
  min-width: 72px;
  overflow: hidden;
  z-index: 1;
}

.wave-bar {
  width: 3px;
  flex: 0 0 3px;
  min-height: 6px;
  height: 100%;
  background: rgba(255,255,255,0.3);
  border-radius: 999px;
  transition: background 0.2s ease;
  position: relative;
  z-index: 1;
}

.wave-bar.active {
  background: #ffffff;
}

.waveform:not(.has-bars)::before {
  content: "";
  position: absolute;
  inset: 4px 0;
  opacity: 0.7;
  background:
    linear-gradient(90deg, transparent 0 1px, rgba(255, 255, 255, 0.82) 1px 4px, transparent 4px 7px),
    linear-gradient(90deg, transparent 0 8px, rgba(255, 255, 255, 0.38) 8px 11px, transparent 11px 14px);
  background-size: 14px 100%, 22px 100%;
  background-position: 0 center, 6px center;
  mask-image: repeating-linear-gradient(
    90deg,
    transparent 0 1px,
    #000 1px 4px,
    transparent 4px 7px
  );
  -webkit-mask-image: repeating-linear-gradient(
    90deg,
    transparent 0 1px,
    #000 1px 4px,
    transparent 4px 7px
  );
  pointer-events: none;
}







/* =========================
   NEW SERVICES (ISOLATED)
========================= */


/* ===== NEW SERVICES ===== */
.new-services {
  padding-top: 180px;   /* ⬅️ dari 120 → 180 biar lebih lega */
  padding-bottom: 180px; /* ⬅️ bawah juga disamain biar balance */

  max-width: 1144px;   /* 🔥 SAMAKAN DENGAN HEADER */
  margin: 0 auto;      /* 🔥 INI KUNCI RATA KIRI-KANAN */
}

.ns-item {
  display: flex;
  align-items: flex-start; /* 🔥 INI KUNCI RATA ATAS */
  justify-content: center;
  gap: 80px;
  margin-bottom: 240px;
}

/* LEFT */
.ns-left {
  width: 414px;
}

.ns-title {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  color: #064E3B;
  margin-bottom: 35px;
}

.ns-desc {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #064E3B;
  margin-bottom: 47px;
}

/* BUTTON (ISOLATED) */
.ns-btn {
  display: inline-flex;
  align-items: center;
  gap: 48px;

  padding: 8px 36px 8px 6px; /* 🔥 atas bawah diperkecil + kiri dipersempit */
  border-radius: 999px;

  background: transparent;
    border: 1px solid #064E3B; /* 🔥 GANTI */

  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
    color: #064E3B; /* 🔥 GANTI */

  cursor: pointer;
  transition: box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
}

/* CIRCLE JADI HIJAU */
.ns-btn .circle {
  width: 48px;   /* ⬅️ dari 42 → 48 */
  height: 48px;

  border-radius: 50%;
  background: #064E3B; /* 🔥 GANTI */

  display: flex;
  align-items: center;
  justify-content: center;

  
  flex-shrink: 0; /* ⬅️ biar nggak gepeng */
  transition: all 0.3s ease;
}
/* ICON JADI HIJAU */


/* TEXT */
.ns-btn .text {
  transform: translateX(-8px); /* ⬅️ geser dikit ke kiri */
  white-space: nowrap;
}

.ns-btn:hover {
  background: transparent;
  transform: none;
}

.ns-item:last-child {
  margin-bottom: 0; /* 🔥 kecilin dari 140 → jadi lebih rapat ke portfolio */
}

.ns-btn:hover {
  box-shadow: 
    0 0 0 1px rgba(6, 78, 59, 0.4),
    0 0 10px rgba(6, 78, 59, 0.25),
    0 0 20px rgba(6, 78, 59, 0.15);
}

.ns-btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #064E3B; /* 🔥 GANTI */
  flex-shrink: 0;
}

.ns-btn .arrow svg {
  width: 22px;
  height: 22px;
  transition: transform 0.5s ease;
}

.ns-btn:hover .circle svg {
  transform: rotate(360deg);
}

/* VISUAL */
.ns-visual {
  position: relative;
  width: 365px;
  height: 480px;
}

/* BACKGROUND IMAGE (PNG nanti) */
.ns-bg-img {
  position: absolute;
  width: 345px;
  height: 480px;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 🔥 CENTER PERFECT */

  z-index: 1;
}

/* MAIN IMAGE */
.ns-main-img {
  position: absolute;

  width: 365px;
  height: 485px; /* 🔥 UBAH KE INI */

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* 🔥 BIAR NGGAK KE-POTONG */

  border-radius: 20px;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* SECTION 1 */
.ns-1 .ns-bg-img {
  background: url('../IMAGE/BG jasa aransemen musik & orkestrasi.png') no-repeat center;
  background-size: cover;
  transition: transform 0.2s ease-out; /* 🔥 biar halus */
  will-change: transform;
}

.ns-1 .ns-main-img {
  background: url('../IMAGE/GD jasa aransement.png') no-repeat center;
  background-size: contain; /* 🔥 GANTI INI */
}

/* SECTION 2 */
.ns-2 .ns-bg-img {
  background: url('../IMAGE/BG penulisan partitur & notasi musik.png') no-repeat center;
  background-size: cover;
  transition: transform 0.2s ease-out; /* 🔥 biar halus */
  will-change: transform;
}

.ns-2 .ns-main-img {
  background: url('../IMAGE/GD penulisan partitur.png') no-repeat center;
  background-size: contain;
}

/* SECTION 3 */
.ns-3 .ns-bg-img {
  background: url('../IMAGE/BG jasa mixing mastering.png') no-repeat center;
  background-size: cover;
  transition: transform 0.2s ease-out; /* 🔥 biar halus */
  will-change: transform;
}

.ns-3 .ns-main-img {
  background: url('../IMAGE/GD jasa aransemen musik & orkestrasi.png') no-repeat center;
  background-size: contain;
}

/* SECTION 4 */
.ns-4 .ns-bg-img {
  background: url('../IMAGE/BG jasa rekording.png') no-repeat center;
  background-size: cover;
  transition: transform 0.2s ease-out; /* 🔥 biar halus */
  will-change: transform;
}

.ns-4 .ns-main-img {
  background: url('../IMAGE/GD vokal rekording.png') no-repeat center;
  background-size: contain;
}

/* RIGHT */
.ns-right {
  width: 303px;
  margin-left: 61px;
  margin-top: 0; /* 🔥 HAPUS OFFSET */

  will-change: transform, opacity;
}

.ns-right p {
  font-family: 'Poppins';
  font-size: 17px;
  line-height: 30px;
  color: #064E3B;
}















.pf-section {
  background: #ffffff;
  padding: 140px 0 140px;
  display: flex;
  justify-content: center;
  font-family: 'Poppins', sans-serif;

  overflow: hidden; /* 🔥 INI YANG BIKIN KE-CROP */
}

.pf-container {
  width: 1144px;        /* 🔥 KUNCI UTAMA */
  margin: 0 auto;
}

.pf-title {
  font-size: 38px;
  font-weight: 600; /* 🔥 semi bold */
  color: #304E4B;
  margin-bottom: 53px;
}

.pf-grid {
  display: flex;
  gap: 48px;

  justify-content: center; /* 🔥 INI KUNCI */
}

.pf-column {
  width: 350px;
}

.pf-item {
  padding: 10px 0 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf-item {
  border-bottom: 1px solid rgba(48, 78, 75, 0.2);
}

.pf-play:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.pf-column .pf-item:first-child {
  border-top: 1px solid rgba(48, 78, 75, 0.2);
}

.pf-left {
  display: flex;
  align-items: center;
  gap: 23px;
}

.pf-play {
  width: 16px;
  height: 16px;
  background: #304E4B;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
    cursor: pointer;
}

.pf-song {
  font-size: 17px;
  font-weight: 600;
  color: #304E4B;
}

.pf-artist {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  color: #304E4B;
}

.pf-dots {
  display: flex;
  gap: 4px;
}

.pf-dots {
  display: flex;
  align-items: center;
  gap: 4px; /* sesuai Figma */

  height: 100%; /* 🔥 biar center terhadap garis */
}

.pf-dots span {
  width: 3px;
  height: 3px;
  background: #304E4B;
  border-radius: 50%;
}

.pf-dots {
  position: relative;
}


.pf-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  cursor: pointer;
}

/* 3 titik */
.pf-dots span {
  width: 3px;
  height: 3px;
  background: #304E4B;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* 🔥 ANIMASI SAAT DIKLIK */
.pf-dots.active span:nth-child(1) {
  transform: translateY(-4px) scale(1.2);
}

.pf-dots.active span:nth-child(2) {
  transform: translateY(4px) scale(1.2);
}

.pf-dots.active span:nth-child(3) {
  transform: translateY(-4px) scale(1.2);
}




.pf-desc {
  margin-top: 65px;
  font-size: 17px;
  line-height: 30px;
  color: #304E4B;

  max-width: 1144px;      /* 🔥 sesuai Figma */
  width: 100%;

  text-align: center;

  margin-left: auto;
  margin-right: auto;
}

/* WRAP */
.pf-btn-wrap {
  position: relative;
  width: 311px;
  height: 65px;

  margin: 50px auto 0 auto; /* 🔥 lebih lega */
}

.pf-btn-wrap::before {
  content: "";
  position: absolute;

  width: 95px;
  height: 95px;

  border: 1px solid #304E4B;
  border-radius: 50%;

  left: 32px;              /* ✅ BALIK KE ASLI */
  top: 50%;
  transform: translate(-50%, -50%);

  transition: all 0.4s ease;
}

/* BUTTON */
.pf-btn-main {
  width: 311px;
  height: 65px;
  background: #064E3B;
  border-radius: 50px;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  cursor: pointer;
  z-index: 2;

  transition: all 0.35s ease;
}

/* CIRCLE */
.pf-circle {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);

  width: 53px;
  height: 53px;
  background: #EDE7E3;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
}

/* TEXT */
.pf-text-btn {
  font-size: 17px;
  font-weight: 500; /* 🔥 sama kayak detail */
  color: white;
  margin-left: 40px;
}

/* SVG */
.pf-circle svg {
  width: 24px;
  height: 24px;
  transition: transform 0.5s ease;
}

/* HOVER (SAMA PERSIS DETAIL) */
.pf-btn-wrap:hover .pf-btn-main {
  background: #3B615D;
  box-shadow: 0 0 18px rgba(48, 78, 75, 0.35);
}

.pf-btn-wrap:hover .pf-circle {
  box-shadow: 
    0 6px 16px rgba(0,0,0,0.35),
    0 2px 6px rgba(0,0,0,0.25);

  transform: translateY(-50%) scale(0.95);
}

.pf-btn-wrap:hover::before {
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.9;
}

.pf-btn-wrap:hover .pf-circle svg {
  transform: rotate(360deg);
}


.pf-title-wrap {
  width: fit-content;
  margin: 0 auto 53px auto; /* center block */
}

.pf-title-wrap {
  width: calc(350px * 3 + 48px * 2); /* 3 kolom + gap */
}

.pf-play.playing {
  width: 14px;
  height: 14px;
  background: #304E4B;
  clip-path: none; /* 🔥 jadi kotak */
}

.pricing-section {
  padding: 120px 0 160px;
  position: relative;
  overflow: hidden; /* 🔥 penting */

  background: url('../IMAGE/background pricing.jpg') center/cover no-repeat;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(6, 78, 59, 0.46) 0%,   /* bawah */
    rgba(26, 26, 26, 1) 100%    /* atas */
  );

  z-index: 1; /* 🔥 penting */
}

.pricing-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* TITLE */
.pricing-title {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 38px;
  color: white;
}

/* DESC */
.pricing-desc {
  margin-top: 40px;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: white;

  max-width: 1143px; /* 🔥 KUNCI Figma width */
  width: 100%;

  margin-left: auto;
  margin-right: auto;
}

/* CARDS WRAPPER */
.pricing-cards {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 17px;
}



/* CARD */
.pricing-card {
  width: 370px; /* 🔥 sesuai figma */
  min-height: 753px; /* ✅ ganti ini */
  border-radius: 34px;

  background: transparent; /* kosongkan */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: none; 

  padding: 65px 32px 52px; /* 🔥 BALIKIN padding bawah */
  text-align: left;
  color: white;

  position: relative;
  flex-direction: column; /* 🔥 INI KUNCI */
  z-index: 1;
}

.pricing-card {
  padding-bottom: 60px; /* 🔥 sebelumnya 52px → tambah jadi lebih lega */
}

.pricing-card::after {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  backdrop-filter: blur(10px);
  background: rgba(12,12,12,0.02);

  border-radius: 34px;
  z-index: -1;
}

/* =========================
   FEATURED PRICING CARD
========================= */

.pricing-card-featured::after {
  backdrop-filter: blur(22.6px);
  -webkit-backdrop-filter: blur(22.6px);

  background: rgba(207, 115, 37, 0.41);
}

.pricing-card-featured::before {
  border: 1px solid rgba(255,255,255,0.65);
}

/* BUTTON KHUSUS FEATURED */

.pricing-card-featured .pricing-btn {
  background: white;
  color: #CF7325;
}

/* =========================
   FEATURED BUTTON HOVER
========================= */

/* ====================================
   FIX FEATURED BUTTON HOVER
==================================== */

/* =========================
   PRO ARRANGEMENT SHADOW
========================= */

.pricing-card-featured {
  box-shadow: 0 4px 92px rgba(255, 255, 255, 0.15);
}

.pricing-card-featured:hover .pricing-btn {
  background: #ffffff !important;
  color: #CF7325 !important;

  box-shadow:
    0 6px 16px rgba(255,255,255,0.18),
    0 0 12px rgba(255,255,255,0.12),
    0 0 24px rgba(255,255,255,0.08) !important;
}

/* ARROW SAAT HOVER */
.pricing-card-featured:hover .btn-arrow svg path {
  stroke: #CF7325 !important;
}

/* ARROW TETAP MUNCUL OREN */
.pricing-card-featured .btn-arrow svg path {
  stroke: #CF7325;
}

/* =========================
   FIX HOVER BUTTON PUTIH
   STARTER + ORCHESTRAL
========================= */

.pricing-card:not(.pricing-card-featured):hover .pricing-btn {
  background: white !important;
  color: #324D4B !important;

  box-shadow:
    0 6px 16px rgba(255,255,255,0.18),
    0 0 12px rgba(255,255,255,0.12),
    0 0 24px rgba(255,255,255,0.08) !important;
}

/* WARNA PANAH */
.pricing-card:not(.pricing-card-featured):hover .btn-arrow svg path {
  stroke: #324D4B !important;
}

/* DEFAULT PANAH */
.pricing-card:not(.pricing-card-featured) .btn-arrow svg path {
  stroke: #324D4B;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border: 0.5px solid rgba(255,255,255,0.5);
  border-radius: 34px;

  pointer-events: none;
}





/* ICON */
.pricing-icon {
  width: 71px;
  height: 71px;
  border-radius: 50%;
  background: white;
  margin-bottom: 37px; /* 🔥 jarak ke title */
}

.icon-1 {
  background-image: url('../IMAGE/icon1.png');
}

.icon-2 {
  background-image: url('../IMAGE/icon2.png');
}

.icon-3 {
  background-image: url('../IMAGE/icon3.png');
}

/* TITLE CARD */
.pricing-card-title {
  margin-top: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -1px;
  margin: 0;
}

/* DESC */
.pricing-card-desc {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
}

/* PRICE */
.pricing-price {
  margin-top: 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
}

/* BUTTON */
.pricing-btn {

  text-decoration: none;
  margin-top: 30px;
  width: 316px; /* 🔥 dari 382 → 316 */
  height: 65px;
  background: #CF7325;
  border-radius: 34px;
  border: none;

  font-family: 'Poppins';
  font-weight: 500;
  font-size: 19px;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

/* FEATURES */
.pricing-features {
  margin-top: 33px; 
  font-size: 15px;
  line-height: 30px;
}



/* DIVIDER */
.pricing-divider {
  margin-top: 35px;
  width: 314px; /* 🔥 fix */
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.pricing-item {
  position: relative;
  padding-left: 20px; /* jarak ke teks */
}



/* BULLET LINGKARAN */
.pricing-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;

  width: 5px;
  height: 5px;

  background: white;
  border-radius: 50%;
}

/* 1. ICON TURUN (jarak atas diperbesar) */





.pricing-price {
  margin-top: 24px; /* sebelumnya 44px → ini kunci */
}

/* 3. SPACING BAWAH LEBIH LEGA */


/* =========================
   WHY SECTION (NEW)
========================= */

.why-section {
  padding: 100px 0 60px;
  background: #ffffff;
  
  color: #324D4B;
}

.why-container {
  max-width: 1144px; /* sama kayak pf-desc biar konsisten */
  width: 100%;
  margin: 0 auto;
}

/* ROW */
.why-row {
  display: flex;
  gap: 73px;
  margin-bottom: 80px;
}

.why-col {
  width: 585px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* TITLE */
.why-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
  color: #3a3a3a;
}

/* ITEM */
.why-item {
  position: relative;
  border-bottom: 1px solid #000;
}

.why-item p {
  width: 520px;
  font-size: 17px;
  line-height: 30px;
  color: #444;
  margin-bottom: 24px;
}

/* NUMBER BULAT */
.why-number {
  position: absolute;
  right: -30px;
  top: 100%;
  transform: translateY(-50%);

  width: 65px;
  height: 65px;
  border: 1px solid #000;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
  font-weight: 500;
  background: #fff;
}

/* ALIGN */
.top-align {
  align-items: flex-start;
}

.bottom-align {
  align-items: flex-end;
}

.why-title {
  margin-top: -4px;
}

/* =========================
   WHY SECTION COLOR UPDATE
========================= */



/* TITLE */
.why-title {
  color: #324D4B;
}

/* PARAGRAF */
.why-item p {
  color: #324D4B;
}

/* GARIS HORIZONTAL */
.why-item {
  border-bottom: 1px solid #324D4B;
}

/* LINGKARAN + ANGKA */
.why-number {
  color: #324D4B;
  border: 1px solid #324D4B;
}


/* =========================
   WHY SECTION HOVER (CLEAN)
========================= */

/* ITEM */
.why-item {
  transition: transform 0.35s ease;
}

/* HOVER → naik halus */
.why-item:hover {
  transform: translateY(-5px);
}

/* TEXT */
.why-item p {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.why-item:hover p {
  transform: translateX(4px);
  opacity: 0.9;
}

/* LINGKARAN */
.why-number {
  transition: all 0.35s ease;
}

/* HOVER → lingkaran hidup */
.why-item:hover .why-number {
  transform: translateY(-50%) scale(1.06);

  box-shadow: 
    0 6px 16px rgba(50,77,75,0.25),
    0 2px 6px rgba(50,77,75,0.15);
} 


/* =========================
   PRICING HOVER EFFECT
========================= */

/* CARD BASE */
.pricing-card {
  transition: 
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border 0.45s ease;
}

/* HOVER CARD */
.pricing-card:hover {
  transform: translateY(-12px) scale(1.01);

  box-shadow: 
    0 30px 60px rgba(0,0,0,0.35),
    0 0 30px rgba(255,255,255,0.08);
}

/* BORDER GLOW HALUS */
.pricing-card::before {
  transition: border 0.4s ease, opacity 0.4s ease;
}

.pricing-card:hover::before {
  border: 1px solid rgba(255,255,255,0.8);
  opacity: 1;
}

/* =========================
   BUTTON INTERACTION
========================= */

.pricing-btn {
  transition: all 0.35s ease;
}

/* HOVER BUTTON */
.pricing-card:hover .pricing-btn {
  background: #E07B2D;

  box-shadow: 
    0 10px 25px rgba(207,115,37,0.35),
    0 0 20px rgba(207,115,37,0.25);

  transform: translateY(-2px);
}

/* =========================
   TEXT MICRO INTERACTION
========================= */

.pricing-card-title,
.pricing-price {
  transition: transform 0.35s ease;
}

.pricing-card:hover .pricing-card-title {
  transform: translateY(-2px);
}

.pricing-card:hover .pricing-price {
  transform: translateY(-2px);
}

/* =========================
   FEATURE LIST (HALUS)
========================= */

.pricing-item {
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-item {
  transform: translateX(3px);
}

/* =========================
   WHITE BUTTON VERSION
========================= */

/* STARTER + ORCHESTRAL */
.pricing-card-starter .pricing-btn,
.pricing-card-orchestra .pricing-btn {
  background: white;
  color: #324D4B;
}

/* TEXT */
.pricing-card-starter .pricing-btn .btn-text,
.pricing-card-orchestra .pricing-btn .btn-text {
  color: #324D4B;
}

/* ARROW */
.pricing-card-starter .pricing-btn .btn-arrow svg path,
.pricing-card-orchestra .pricing-btn .btn-arrow svg path {
  stroke: #324D4B;
}

/* =========================
   PRICING BUTTON ARROW HOVER
========================= */

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0; /* awalnya tidak ada jarak */

  position: relative;
  overflow: hidden;
}

/* TEXT */
.btn-text {
  transition: transform 0.35s ease;
}

/* ARROW */
.btn-arrow {
  display: flex;
  align-items: center;

  opacity: 0;
  transform: translateX(-8px) scale(0.8);

  margin-left: 0; /* awalnya nempel */

  transition: all 0.35s ease;
}

.pricing-btn .btn-text {
  transform: translateX(8px);
}

/* HOVER */
.pricing-btn:hover .btn-text {
  transform: translateX(-4px);
}

.pricing-btn:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0) scale(1);

  margin-left: 10px; /* 🔥 INI KUNCI JARAK */
}

/* EXTRA FEEL (BIAR LEBIH HIDUP) */
.pricing-btn:hover {
  box-shadow: 
    0 10px 25px rgba(207,115,37,0.35),
    0 0 20px rgba(207,115,37,0.25);
}

.btn-arrow svg {
  width: 22px;
  height: 22px;
  display: block;

  transition: transform 0.35s ease;
}

/* HOVER → sedikit dorong */
.pricing-btn:hover .btn-arrow svg {
  transform: translateX(2px);
}

/* =========================
   AUDIO HOVER EFFECT (SAFE)
========================= */

/* CARD HOVER */
.audio-card {
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border 0.35s ease,
    background 0.35s ease;
}

.audio-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 30px rgba(0,0,0,0.25),
    0 0 15px rgba(255,255,255,0.15);

  border: 1px solid rgba(255,255,255,0.9);
}

/* GLASS FEEL LEBIH HIDUP */
.audio-card:hover {
  background: rgba(255,255,255,0.05);
}

/* =========================
   PLAY BUTTON INTERACTION
========================= */

.play-btn {
  transition: transform 0.25s ease;
}

.play-btn:hover {
  transform: scale(1.15);
}

/* ICON LEBIH RESPONSIVE */
.play-btn:hover .icon.play {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
}

/* =========================
   WAVEFORM HOVER (SUBTLE)
========================= */

.waveform .wave-bar {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.audio-card:hover .wave-bar {
  transform: scaleY(1.2);
  opacity: 0.9;
}

/* =========================
   DURATION (HALUS)
========================= */

.audio-card:hover .duration {
  opacity: 0.8;
}

/* =========================
   BTN MORE - PREMIUM VERSION
========================= */

.btn-more {
  width: 166px;
  height: 43px;
  border-radius: 67px;

  background: white;
  color: #2E4D49;

  font-size: 15px;
  border: none;
  cursor: pointer;

  align-self: flex-end;

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 
    background 0.35s ease,
    border 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease;
}

/* TEXT BASE */
.btn-more span {
  position: absolute;

  transition: 
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;

  will-change: transform, opacity;
}

/* FRONT TEXT */
.btn-text-front {
  color: #2E4D49;
  font-weight: 500;

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

/* BACK TEXT */
.btn-text-back {
  color: white;
  font-weight: 700;

  transform: translateY(8px);
  opacity: 0;
}

/* =========================
   HOVER MASUK
========================= */

.btn-more:hover {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.8);

  box-shadow: 
    0 0 10px rgba(255,255,255,0.35),  /* edge lebih kelihatan */
    0 0 22px rgba(255,255,255,0.25),  /* tengah naik */
    0 0 45px rgba(255,255,255,0.15);  /* outer lebih luas */

  transform: translateY(-2px);
}

/* TRANSISI TEKS */
.btn-more:hover .btn-text-front {
  transform: translateY(-6px);
  opacity: 0;
}

.btn-more:hover .btn-text-back {
  transform: translateY(0);
  opacity: 1;
}

/* =========================
   HOVER KELUAR (LEBIH HALUS)
========================= */

.btn-more:not(:hover) .btn-text-front {
  transform: translateY(0);
  opacity: 1;
}

.btn-more:not(:hover) .btn-text-back {
  transform: translateY(8px);
  opacity: 0;
}

/* CLICK FEEL */
.btn-more:active {
  transform: scale(0.96);
}

/* =========================
   FAQ SECTION (ISOLATED)
========================= */

.faq-section {
  padding: 120px 0 100px;
  background: #ffffff;
  padding-bottom: 150px; /* 🔥 samakan dengan atas CTA */
}



.faq-container {
  max-width: 1144px;
  width: 100%;
  margin: 0 auto;
}

/* TITLE */
.faq-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 50px;
  color: #314F4C;
}

/* ITEM */
.faq-item {
  margin-top: 74px;
  border-bottom: 1px solid rgba(49, 79, 76, 0.3);
  padding-bottom: 20px;
}

/* QUESTION ROW */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* TEXT */
.faq-question span {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #314F4C;
}

/* ICON */
.faq-icon {
  font-size: 28px;
  font-weight: 500;
  color: #314F4C;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;

  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: rgba(49, 79, 76, 0.7);

  transition: all 0.4s ease;
  transform: translateY(-10px);
  opacity: 0;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 20px;
  transform: translateY(0);
  opacity: 1;
}

/* ICON CHANGE */
.faq-item.active .faq-icon {
  transform: rotate(45deg); /* jadi X (lebih smooth dari ganti text) */
}

/* SPACING ANTAR ITEM */
.faq-item + .faq-item {
  margin-top: 39px;
}

/* HOVER EFFECT */
.faq-question:hover span {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}


/* =========================
   CTA SECTION (ISOLATED)
========================= */

.cta-section {
  position: relative;
  background: url('../IMAGE/background-cta.jpg') center / cover no-repeat;
  background-attachment: fixed;

  min-height: 493px;
  padding: 72px 0 411px;
  overflow: hidden;

  /* 🔥 TAMBAH INI */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 1) 0%,      /* 🔥 atas */
    rgba(6, 78, 59, 0.46) 100%   /* 🔥 bawah */
  );

  z-index: 1;
}

/* BASE */
.cta-section .cta-line {
  position: absolute;
  top: -72px;
  bottom: -411px;
  height: auto;
  width: 1px;

  pointer-events: none;
  z-index: 3;

  background: repeating-linear-gradient(
    to bottom,
    rgba(220, 232, 228, 0.58) 0px,
    rgba(220, 232, 228, 0.58) 17px,
    transparent 17px,
    transparent 34px
  );
}

/* 🔥 POSISI SESUAI CONTAINER 1144px */
.cta-section .cta-line.left {
  left: max(24px, calc(50% - 572px));
  right: auto;
  animation: ctaDashUp 6s linear infinite;
}

.cta-section .cta-line.right {
  left: min(calc(100% - 24px), calc(50% + 572px));
  animation: ctaDashDown 6s linear infinite;
}

/* ANIMASI */
@keyframes ctaDashDown {
  from { background-position: 0 0; }
  to   { background-position: 0 34px; }
}

@keyframes ctaDashUp {
  from { background-position: 0 34px; }
  to   { background-position: 0 0; }
}

.cta-container {
  max-width: 1144px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* TITLE */
.cta-title {
  padding-top: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(44px, 5.2vw, 58px);
  line-height: 1.08;
  color: white;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ACTIONS */
.cta-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(18px, 2.2vw, 28px);
}

/* =========================
   BUTTON (CLONE HERO STYLE)
========================= */
/* =========================
   BUTTON (REFINED - MATCH HERO)
========================= */

.cta-btn-wrap {
  position: relative;
  width: 311px;
  height: 65px;
}

.cta-btn-wrap::before {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  left: 32px;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.35s ease;
}

.cta-btn-primary {
  width: 100%;
  height: 100%;
  background: #CF7325;
  border-radius: 999px;
  border: none;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding-left: 90px; /* 🔥 tambah supaya balance */
  padding-right: 40px; /* 🔥 biar text benar2 center */

  font-size: 17px;
  font-weight: 600;
  color: white;

  cursor: pointer;
  position: relative;
  z-index: 2;

  transition: all 0.3s ease;
}

/* ICON BULAT */
.cta-circle {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;
  background: #F3EEEA;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.cta-btn-primary {
  justify-content: center; /* 🔥 center total */
}

.cta-btn-text {
  transform: translateX(-10px); /* 🔥 kompensasi icon */
}

.cta-circle svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* TEXT */
.cta-btn-text {
  white-space: nowrap;
}

/* 🔥 FIX BUTTON HERO */
.btn-wrap:hover .circle svg {
  transform: rotate(360deg);
}

/* HOVER (lebih smooth & elegan) */
.cta-btn-wrap:hover .cta-btn-primary {
  background: #E07B2D;
  box-shadow: 0 0 18px rgba(207, 115, 37, 0.35);
}

.cta-btn-wrap:hover .cta-circle {
  transform: translateY(-50%) scale(0.95);
  box-shadow: 
    0 6px 16px rgba(0,0,0,0.35),
    0 2px 6px rgba(0,0,0,0.25);
}

.cta-btn-wrap:hover .cta-circle svg {
  transform: rotate(360deg);
}

.cta-btn-wrap:hover::before {
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0.8;
}

/* =========================
   LINK (REFINED)
========================= */

.cta-link {
  margin-left: 0;
  font-size: 17px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  position: relative;
  opacity: 1;
  transition: all 0.3s ease;
}

.cta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.cta-link:hover {
  opacity: 1;
}

.cta-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.parallax-section {
  background-position: center;
  background-size: cover;
  will-change: transform;
}

/* =========================
   SCORE PDF GALLERY
========================= */

.score-section {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 118px 0 116px;
  overflow: hidden;
  background: #f5f8f7;
  color: #304e4b;
}

.score-section-heading {
  width: min(1144px, calc(100% - 48px));
  margin: 0 auto 76px;
}

.score-main-title {
  margin: 0;
  margin-top: -4px;
  color: #324D4B;
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
}

.score-song + .score-song {
  margin-top: 108px;
}

.score-section[data-main-score-limit="3"] .score-song:nth-of-type(n+4) {
  display: none;
}

.score-all-partitur-wrap {
  width: min(1144px, calc(100% - 48px));
  margin: 72px auto 0;
  display: flex;
  justify-content: center;
}

.score-all-partitur-btn {
  position: relative;
  width: 311px;
  height: 65px;
  padding: 0 34px;
  border: 1.5px solid #064e3b;
  border-radius: 999px;
  background: transparent;
  color: #064e3b;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.score-all-partitur-btn:hover,
.score-all-partitur-btn:focus-visible {
  background: #064e3b;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(48, 78, 75, 0.18);
  outline: 0;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .score-all-partitur-wrap {
    width: 100%;
    padding-left: var(--score-mobile-gutter, 16px);
    padding-right: var(--score-mobile-gutter, 16px);
    margin-top: clamp(58px, 14vw, 76px);
  }

  .score-all-partitur-btn {
    width: min(100%, 244px);
    height: 52px;
    padding: 0 22px;
    font-size: 14px;
  }
}

.score-header {
  width: min(1144px, calc(100% - 48px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  column-gap: 28px;
  row-gap: 16px;
}

.score-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.score-kicker {
  margin: 0 0 8px;
  color: #cf7325;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.score-title {
  margin: 0;
  color: #304e4b;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
}

.score-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.score-download-note {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  width: fit-content;
}

.score-download-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #304e4b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.score-download-link svg {
  width: 15px;
  height: 15px;
  color: #064e3b;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 0.25s ease, transform 0.25s ease;
}

.score-download-link span {
  position: relative;
}

.score-download-link span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.score-download-link:hover,
.score-download-link:focus-visible {
  color: #064e3b;
  transform: translateY(-1px);
  outline: 0;
}

.score-download-link:hover svg,
.score-download-link:focus-visible svg {
  transform: translateY(2px);
}

.score-download-link:hover span::after,
.score-download-link:focus-visible span::after {
  opacity: 0.55;
  transform: scaleX(1);
}

.score-audio-card {
  width: 258px;
  height: 62px;
  border: 1.5px solid rgba(6, 78, 59, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #064e3b;
  box-shadow: none;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transform: none;
}

.score-buy-btn {
  height: 62px;
  width: 62px;
  min-width: 62px;
  padding: 0;
  border: 1.5px solid rgba(6, 78, 59, 0.65);
  border-radius: 50%;
  background: transparent;
  color: #064e3b;
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.score-buy-btn.is-locked {
  border-color: #cf7325;
  background: #cf7325;
  color: #ffffff;
}

.score-buy-btn.is-locked:hover {
  background: transparent;
  border-color: #cf7325;
  color: #cf7325;
  box-shadow: 0 0 18px rgba(207, 115, 37, 0.18);
}

.score-buy-btn.is-free {
  border-color: rgba(6, 78, 59, 0.65);
  background: transparent;
  color: #064e3b;
}

.score-buy-btn.is-free:hover {
  border-color: #064e3b;
  background: #064e3b;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(6, 78, 59, 0.18);
}

.score-audio-card .audio-controls {
  position: relative;
  gap: 18px;
  width: 100%;
  isolation: isolate;
}

.score-audio-card .play-btn,
.score-audio-card .waveform {
  cursor: pointer;
}

.score-audio-card:hover {
  border-color: rgba(6, 78, 59, 0.65);
  box-shadow: none;
  transform: none;
}

.score-audio-card .play-btn:hover .icon.play {
  filter: none;
}

.score-audio-card:hover .wave-bar {
  transform: none;
  opacity: 1;
}

.score-audio-card:hover .duration {
  opacity: 1;
}

.score-audio-card .icon.play {
  border-left-color: #064e3b;
}

.score-audio-card .icon.stop {
  background: #064e3b;
}

.score-audio-card .wave-bar {
  background: rgba(6, 78, 59, 0.24);
}

.score-audio-card .wave-bar.active {
  background: #064e3b;
}

.score-audio-card .waveform:not(.has-bars)::before {
  background:
    linear-gradient(90deg, transparent 0 1px, rgba(6, 78, 59, 0.82) 1px 4px, transparent 4px 7px),
    linear-gradient(90deg, transparent 0 8px, rgba(6, 78, 59, 0.38) 8px 11px, transparent 11px 14px);
}

.score-audio-card .duration {
  color: #304e4b;
  font-weight: 500;
}

.score-view-all,
.score-nav,
.score-card,
.score-modal-close {
  font-family: inherit;
}

.score-view-all {
  position: relative;
  width: 210px;
  height: 65px;
  padding: 0 28px;
  border: 1.5px solid #064e3b;
  border-radius: 999px;
  background: transparent;
  color: #064e3b;
  font-size: 17px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.score-view-text {
  white-space: nowrap;
}

.score-view-all:hover {
  background: #064e3b;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(48, 78, 75, 0.22);
}

.score-nav {
  width: 65px;
  height: 65px;
  border: 1.5px solid #064e3b;
  border-radius: 50%;
  background: transparent;
  color: #064e3b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.score-nav svg {
  width: 21px;
  height: 21px;
}

.score-nav:hover {
  background: #064e3b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(48, 78, 75, 0.14);
}

.score-nav-row {
  width: min(1144px, calc(100% - 48px));
  margin: 30px auto 0;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.score-outer {
  width: calc(100vw - ((100vw - 1144px) / 2));
  margin-left: calc((100vw - 1144px) / 2);
  padding-top: 18px;
  margin-top: -18px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.score-outer::-webkit-scrollbar {
  display: none;
}

.score-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: max-content;
  padding: 0 max(24px, calc((100vw - 1144px) / 2)) 10px 0;
}

.score-track::before {
  content: "";
  display: none;
  flex: 0 0 0;
}

.score-track-spacer {
  display: none;
  flex: 0 0 0;
  width: 0;
  height: 1px;
}

.score-card {
  width: 254px;
  flex: 0 0 254px;
  min-width: 0;
  max-width: 100%;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: #304e4b;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.35s ease;
}

.score-preview {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
  height: 330px;
  overflow: hidden;
  border: 1px solid rgba(48, 78, 75, 0.18);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(48, 78, 75, 0.11);
  transition: all 0.35s ease;
}

.score-preview object {
  position: absolute;
  left: -2px;
  top: -2px;
  z-index: 2;
  width: calc(100% + 28px);
  height: calc(100% + 2px);
  min-width: 0;
  max-width: none;
  border: 0;
  pointer-events: none;
}

.score-preview-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  width: 100%;
  height: 100%;
  background: #ffffff;
  object-fit: contain;
}

.score-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(48, 78, 75, 0.22);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0;
}

.score-card:hover {
  transform: none;
}

.score-card:hover .score-preview {
  box-shadow: 0 24px 46px rgba(48, 78, 75, 0.18);
}

.score-card[data-score-password] .score-preview object {
  filter: blur(4px);
  transform: scale(1.035);
}

.score-card[data-score-password].is-unlocked .score-preview object {
  filter: none;
  transform: none;
}

.score-card[data-score-password] .score-preview-canvas {
  filter: blur(4px);
  transform: scale(1.035);
}

.score-card[data-score-password].is-unlocked .score-preview-canvas {
  filter: none;
  transform: none;
}

.score-card[data-score-password] .score-preview::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(6, 78, 59, 0.92);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 10V8.2C7.5 5.7 9.4 4 12 4s4.5 1.7 4.5 4.2V10M6.8 10h10.4c.9 0 1.5.6 1.5 1.5v6c0 .9-.6 1.5-1.5 1.5H6.8c-.9 0-1.5-.6-1.5-1.5v-6c0-.9.6-1.5 1.5-1.5Z' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  box-shadow: 0 16px 34px rgba(6, 78, 59, 0.32);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.score-card[data-score-password].is-unlocked .score-preview::after {
  display: none;
}

.score-meta {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}

.score-card-title,
.score-composer,
.score-detail {
  display: block;
}

.score-card-title {
  order: 2;
  margin-top: 4px;
  color: #1f3936;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.score-composer {
  order: 1;
  margin-top: 0;
  color: #cf7325;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.score-composer::after {
  content: "→";
  display: inline-block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-8px);
  transition:
    opacity 0.25s ease,
    clip-path 0.32s ease,
    transform 0.32s ease;
}

.score-card:hover .score-composer::after,
.score-card:focus-visible .score-composer::after,
.score-card:active .score-composer::after {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
}

.score-detail {
  margin-top: 8px;
  color: #304e4b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.score-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.score-modal.is-open {
  display: flex;
}

.score-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 16, 0.78);
  backdrop-filter: blur(8px);
}

.score-modal-panel {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  height: min(86vh, 780px);
  overflow: hidden;
  border-radius: 10px;
  background: #f5f8f7;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.score-modal-head {
  height: 62px;
  padding: 0 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(48, 78, 75, 0.14);
}

.score-modal-head h3 {
  margin: 0;
  color: #304e4b;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.score-modal-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.score-modal-download,
.score-modal-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #304e4b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.score-modal-download:hover,
.score-modal-download:focus-visible,
.score-modal-close:hover,
.score-modal-close:focus-visible {
  background: rgba(6, 78, 59, 0.08);
  color: #064e3b;
}

.score-modal-download:active,
.score-modal-close:active {
  transform: scale(0.94);
}

.score-modal-download:disabled {
  opacity: 0.45;
  cursor: default;
}

.score-modal-download svg,
.score-modal-close svg {
  width: 22px;
  height: 22px;
}

.score-modal-frame {
  display: block;
  width: 100%;
  height: calc(100% - 62px);
  border: 0;
  background: #ffffff;
}

.score-modal-render {
  display: none;
  height: calc(100% - 62px);
  overflow: auto;
  padding: 16px;
  background: #eef3f1;
}

.score-modal-render.is-loading,
.score-modal-render.has-error {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #304e4b;
  font-size: 15px;
  font-weight: 500;
}

.score-modal-page {
  display: block;
  width: 100%;
  max-width: 780px;
  height: auto;
  margin: 0 auto 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(48, 78, 75, 0.12);
}

.score-modal-page:last-child {
  margin-bottom: 0;
}


/* =========================
   TEXT SECTION (FOOTER SEO / CONTENT)
========================= */

.text-section {
  background: #ffffff;
  padding-top: 87px;
  padding-bottom: 99px;
}

.text-container {
  max-width: 1144px;
  width: 100%;
  margin: 0 auto;
}

.text-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 30px;
  color: #064E3B;

  text-align: justify; /* 🔥 ini pengganti justify fit figma */
}

.mobile-menu-icon {
  display: none;
}

/* =========================================================
   TABLET RESPONSIVE
   Keep the desktop composition, but give iPad/tablet viewports
   a clean master margin so sections do not clip at the edges.
========================================================= */

@media (min-width: 768px) and (max-width: 1190px) {
  :root {
    --tablet-gutter: clamp(28px, 5vw, 56px);
  }

  html,
  body {
    overflow-x: hidden;
  }

  .parallax-section,
  .hero,
  .pricing-section,
  .cta-section {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    will-change: auto !important;
  }

  .hero::after {
    background-position: center center !important;
    background-size: cover !important;
    transform: none !important;
  }

  .global-container,
  .services-container,
  .pf-container,
  .pricing-container,
  .why-container,
  .faq-container,
  .cta-container,
  .text-container {
    width: calc(100% - (var(--tablet-gutter) * 2));
    max-width: 1144px;
    margin-left: auto;
    margin-right: auto;
  }

  .navbar {
    gap: clamp(24px, 4vw, 52px);
  }

  .menu {
    gap: clamp(26px, 4.8vw, 58px);
  }

  .menu a {
    font-size: clamp(13px, 1.45vw, 16px);
    line-height: 1.7;
  }

  .hero {
    height: clamp(1160px, 132vw, 1474px);
  }

  .hero-content {
    max-width: calc(100% - clamp(250px, 34vw, 330px));
  }

  .hero-content h1 {
    font-size: clamp(42px, 5.2vw, 66px);
    line-height: 1.05;
  }

  .hero-content p,
  .text-section p,
  .pricing-desc,
  .pf-desc {
    font-size: clamp(14px, 1.65vw, 17px);
    line-height: 1.75;
  }

  .audio-preview {
    right: var(--tablet-gutter);
    width: clamp(220px, 27vw, 293px);
  }

  .audio-card {
    width: 100%;
    height: clamp(86px, 10.5vw, 111px);
    padding: clamp(12px, 1.5vw, 16px);
  }

  .audio-title,
  .duration {
    font-size: clamp(12px, 1.35vw, 15px);
  }

  .audio-controls {
    gap: clamp(12px, 1.6vw, 22px);
  }

  .waveform {
    width: clamp(92px, 12vw, 142px);
  }

  .btn-more {
    width: clamp(132px, 15vw, 166px);
    height: clamp(36px, 4.2vw, 43px);
    font-size: clamp(12px, 1.25vw, 15px);
  }

  .services {
    margin-top: clamp(-300px, -31vw, -260px);
  }

  .services-title {
    font-size: clamp(30px, 3.5vw, 38px);
    line-height: 1.15;
    margin-bottom: clamp(24px, 3vw, 36px);
  }

  .cards {
    width: 100%;
    margin-left: 0;
    gap: clamp(9px, 1.3vw, 14px);
  }

  .card {
    min-width: 0;
  }

  .card-arrow {
    top: clamp(12px, 1.8vw, 20px);
    right: clamp(12px, 1.8vw, 20px);
  }

  .card-arrow .circle {
    width: clamp(42px, 5.6vw, 60px);
    height: clamp(42px, 5.6vw, 60px);
  }

  .card-content {
    padding-left: clamp(14px, 1.8vw, 24px);
    padding-right: clamp(12px, 1.6vw, 20px);
    padding-bottom: clamp(20px, 2.5vw, 32px);
  }

  .card-content h3 {
    max-width: 100%;
    font-size: clamp(14px, 1.65vw, 19px);
    line-height: 1.18;
    margin-bottom: clamp(8px, 1.2vw, 12px);
  }

  .card-content a {
    font-size: clamp(10px, 1.1vw, 12px);
    gap: clamp(8px, 1.3vw, 16px);
  }

  .pf-container,
  .pf-title-wrap,
  .pf-desc {
    width: calc(100% - (var(--tablet-gutter) * 2));
    max-width: 1144px;
  }

  .pf-title-wrap {
    width: calc(100% - (var(--tablet-gutter) * 2));
  }

  .pf-grid {
    gap: clamp(22px, 3vw, 40px);
  }

  .pf-column,
  .pricing-card,
  .why-col {
    flex: 1;
    min-width: 0;
  }

  .pf-song,
  .pf-artist {
    font-size: clamp(14px, 1.55vw, 16px);
  }

  .pricing-cards {
    gap: clamp(12px, 1.6vw, 17px);
  }

  .pricing-card {
    padding-left: clamp(20px, 2.4vw, 30px);
    padding-right: clamp(20px, 2.4vw, 30px);
  }

  .why-row {
    gap: clamp(42px, 5vw, 64px);
  }

  .why-item p {
    width: auto;
  }

  .new-services {
    width: calc(100% - (var(--tablet-gutter) * 2));
    max-width: 1144px;
    padding-top: clamp(120px, 14vw, 180px);
    padding-bottom: clamp(120px, 14vw, 180px);
  }

  .ns-item {
    display: grid;
    grid-template-columns: minmax(0, 32%) minmax(0, 34%) minmax(0, 24%);
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
    justify-content: stretch;
    margin-bottom: clamp(140px, 18vw, 220px);
  }

  .ns-left,
  .ns-right {
    width: auto;
    min-width: 0;
    margin-left: 0;
  }

  .ns-title {
    font-size: clamp(30px, 4.1vw, 44px);
    line-height: 1.05;
    margin-bottom: clamp(22px, 3vw, 35px);
  }

  .ns-desc,
  .ns-right p {
    font-size: clamp(13px, 1.55vw, 16px);
    line-height: 1.75;
  }

  .ns-desc {
    margin-bottom: clamp(28px, 4vw, 47px);
  }

  .ns-btn {
    gap: clamp(22px, 3vw, 40px);
    font-size: clamp(12px, 1.35vw, 15px);
  }

  .ns-btn .circle {
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
  }

  .ns-visual {
    width: 100%;
    height: clamp(320px, 43vw, 480px);
  }

  .ns-bg-img {
    width: 94%;
    height: 100%;
  }

  .ns-main-img {
    width: 100%;
    height: 101%;
  }

  .cta-section .cta-line.left {
    left: var(--tablet-gutter);
  }

  .cta-section .cta-line.right {
    left: auto;
    right: var(--tablet-gutter);
  }

  .cta-section {
    min-height: clamp(430px, 48vw, 493px);
    padding-top: clamp(64px, 8vw, 76px);
    padding-bottom: clamp(68px, 8vw, 88px);
  }

  .cta-title {
    font-size: clamp(38px, 4.4vw, 46px);
    line-height: 1.08;
  }

  /* center CTA title & actions on tablet+desktop to match iPad */
  .cta-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .cta-title span { display: block; }

  .cta-actions {
    gap: clamp(16px, 3vw, 24px);
    justify-content: center !important;
  }

  .cta-btn-wrap {
    width: clamp(184px, 23vw, 244px);
    height: clamp(39px, 4.8vw, 52px);
    margin: 0;
  }

  .cta-btn-wrap::before {
    left: clamp(19px, 2.6vw, 26px);
    width: clamp(58px, 7.6vw, 76px);
    height: clamp(58px, 7.6vw, 76px);
  }

  .cta-btn-primary {
    padding-left: clamp(56px, 7vw, 74px);
    padding-right: clamp(22px, 3vw, 34px);
    font-size: clamp(11px, 1.35vw, 14px);
  }

  .cta-circle {
    left: clamp(5px, 0.8vw, 8px);
    width: clamp(30px, 4vw, 42px);
    height: clamp(30px, 4vw, 42px);
  }

  .cta-circle svg {
    width: clamp(15px, 2.1vw, 18px);
    height: clamp(15px, 2.1vw, 18px);
  }

  .cta-btn-text {
    transform: translateX(0);
  }

  .cta-link {
    margin-left: 0;
    font-size: clamp(12px, 1.45vw, 15px);
  }
}













/* =========================================================
   MOBILE RESPONSIVE — BASE 320
   STYLE MOBILE-FIRST PREMIUM LAYOUT
========================================================= */

@media (max-width: 767px) {

  /* =========================
     GLOBAL
  ========================= */

  html,
  body {
    overflow-x: hidden;
  }

  .global-container,
  .services-container,
  .pf-container,
  .pricing-container,
  .why-container,
  .faq-container,
  .cta-container,
  .text-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* =========================
     HERO
  ========================= */

  .hero {
    height: auto;
    min-height: unset;

    padding-bottom: 330px;

    background-position: center;
    background-size: cover;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
      90deg,
      #1A1A1A 0%,
      rgba(6, 78, 59, 0.45) 100%
    );

    transform: scale(1);
  }

  /* =========================
     NAVBAR
  ========================= */

  .navbar {
    display: flex;
    align-items: center;
  justify-content: center;
    padding-top: 43px;
    position: relative;
  }



  /* ICON MENU */
  .mobile-menu-icon {
    width: 35px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
  }

  .mobile-menu-icon span {
    display: block;
    height: 2px;
    background: #ffffff;
    border-radius: 20px;
  }

  /* GARIS PERTAMA PENDEK */
  .mobile-menu-icon span:nth-child(1) {
    width: 16px;
  }

  .mobile-menu-icon span:nth-child(2),
  .mobile-menu-icon span:nth-child(3) {
    width: 35px;
  }

  /* LOGO DI KANAN */
  .logo {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
  }

  .logo img {
    width: 84px;
    height: auto;
    display: block;
  }

  /* HIDE DESKTOP MENU */
  .menu {
    display: none !important;
  }



  
/* =========================
   AUDIO PREVIEW
========================= */

.audio-preview {


  position: relative;

  top: unset;
  right: unset;

  margin-top: clamp(125px, 39vw, 180px);

  gap: clamp(10px, 3vw, 16px);

  z-index: 5;
}

@media (max-width: 767px) {
  .cta-section .cta-line { display: none !important; }
}

.audio-card {
  width: clamp(197px, 62vw, 280px);

  height: clamp(80px, 25vw, 110px);

  border-radius: clamp(12px, 3vw, 18px);

  padding: clamp(11px, 3.5vw, 16px)
           clamp(12px, 3.8vw, 18px);
}

.audio-title {
  font-size: clamp(10px, 3vw, 14px);

  font-weight: 600;
}

.duration {
  font-size: clamp(10px, 3vw, 14px);

  font-weight: 400;
}

.audio-controls {
  gap: clamp(14px, 4vw, 20px);
}

.waveform {
  width: clamp(90px, 28vw, 130px);

  height: clamp(20px, 6vw, 28px);

  gap: clamp(2px, 0.6vw, 4px);
}

.wave-bar {
  width: clamp(2px, 0.6vw, 4px);
}

.play-btn {
  width: clamp(18px, 5.5vw, 28px);

  height: clamp(18px, 5.5vw, 28px);
}

.icon.play {
  border-left: clamp(8px, 2.5vw, 12px) solid white;

  border-top: clamp(5px, 1.5vw, 8px) solid transparent;

  border-bottom: clamp(5px, 1.5vw, 8px) solid transparent;
}

.btn-more {
  display: none;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
  margin-top: clamp(36px, 11vw, 80px);

  max-width: 100%;
  width: 100%;

  /* PENTING */
  container-type: inline-size;
}

.hero-content h1 {
  width: 100%;

  font-size: clamp(24px, 11cqw, 48px);

  line-height: 1.07;

  font-weight: 500;
}

/* Tidak perlu font-size lagi */
.hero-content h1 span {
  display: block;
}

.hero-content p {
  width: 100%;

  margin-top: clamp(18px, 8cqw, 36px);

  font-size: clamp(12px, 4.3cqw, 20px);

  line-height: 1.67;
}



/* =========================
   CTA HERO
========================= */

.cta {
  margin-top: 40px;

  display: flex;
  align-items: center;
}

.btn-wrap {
  width: clamp(174px, 54vw, 240px);

  height: clamp(46px, 14vw, 60px);
}

.btn-wrap::before {
  content: "";
  display: block;
  left: clamp(23px, 7vw, 32px);
  width: clamp(68px, 21vw, 95px);
  height: clamp(68px, 21vw, 95px);
  border-color: rgba(255, 255, 255, 0.72);
  z-index: 1;
}

.btn-primary {
  position: relative;
  z-index: 2;
  width: 100%;

  height: 100%;

  font-size: clamp(12px, 3.8vw, 16px);

  font-weight: 400;

  border-radius: 999px;
}

.btn-primary .circle {
  width: clamp(34px, 10vw, 42px);

  height: clamp(34px, 10vw, 42px);

  left: 6px;
}

.btn-primary .circle svg {
  width: clamp(15px, 4vw, 18px);

  height: clamp(15px, 4vw, 18px);
}

.btn-primary .text {
  margin-left: 20px;
}

.portfolio {
  margin-left: 18px;

  font-size: clamp(12px, 3.8vw, 16px);

  font-weight: 600;
}




  /* =========================
     GUIDE LINE
  ========================= */

  .guide-line,
  .cta-section .cta-line {
    display: none;
  }



  /* =========================
   SERVICES
========================= */

.services {
  margin-top: clamp(-200px, -62vw, -120px);

  position: relative;

  z-index: 5;
}

.services-title {
  width: clamp(195px, 61vw, 320px);

  margin-bottom: clamp(15px, 4.5vw, 24px);

  margin-left: 0;

  font-size: clamp(20px, 6vw, 34px);

  line-height: 1.1;

  font-weight: 600;
}

.services-container {
  padding-left: clamp(16px, 5vw, 32px);

  padding-right: clamp(16px, 5vw, 32px);

  margin-left: 0;

  margin-right: auto;
}

.cards-outer {
  overflow-x: auto;

  overflow-y: visible;

  -webkit-overflow-scrolling: touch;

  padding-left: clamp(16px, 5vw, 32px);
}

.cards-outer::-webkit-scrollbar {
  display: none;
}

.card {
  flex-shrink: 0;

  transition: transform 0.3s ease;
}

/* EFEK SAAT DISENTUH DI HP */
.card:hover {
  transform: none !important;

  box-shadow: none !important;
}

.card:active {
  transform: none !important;

  box-shadow: none !important;
}

.cards {
  display: flex;

  width: max-content;

  gap: clamp(12px, 3.8vw, 24px);

  padding-top: clamp(12px, 3.8vw, 20px);

  padding-bottom: clamp(12px, 3.8vw, 20px);

  padding-right: clamp(16px, 5vw, 32px);

  margin-left: 0;

  margin-right: 0;

  justify-content: flex-start;
}

.card {
  flex: unset;

  width: clamp(194px, 61vw, 300px);

  height: clamp(271px, 85vw, 420px);

  aspect-ratio: unset;
}

.card-arrow {
  top: clamp(12px, 3.8vw, 20px);

  right: clamp(12px, 3.8vw, 20px);
}

.card-arrow .circle {
  width: clamp(32px, 10vw, 48px);

  height: clamp(32px, 10vw, 48px);

  border-width: 1px;

  background: white;
}

.card-arrow svg {
  width: clamp(13px, 4vw, 18px);

  height: clamp(13px, 4vw, 18px);
}

.card-arrow svg path {
  stroke: #30504C;
}

.card-content {
  padding-left: clamp(18px, 5.5vw, 28px);

  padding-bottom: clamp(18px, 5.5vw, 28px);
}

.card-content h3 {
  max-width: clamp(140px, 44vw, 220px);

  margin-bottom: 0px;

  font-size: clamp(12px, 3.8vw, 18px);

  line-height: 1.4;

  font-weight: 500;
}

.card-content a {
  font-size: clamp(10px, 3vw, 15px);

  font-weight: 300;

  opacity: 0.60;

  gap: clamp(8px, 2.5vw, 14px);
}

.card-content a .arrow {
  opacity: 0.54;
}






/* =========================================================
   NEW SERVICES MOBILE
========================================================= */

.new-services {
  width: 100%;

  padding-top: clamp(80px, 18vw, 120px);
  padding-bottom: clamp(92px, 20vw, 136px);

  /* 🔥 DISAMAKAN DENGAN PORTFOLIO */
  padding-left: clamp(16px, 5vw, 28px);
  padding-right: clamp(16px, 5vw, 28px);

  overflow: hidden;
}

.ns-item {
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: flex-start;

  gap: 0;

  margin-bottom: clamp(96px, 18vw, 160px);
}

.ns-item:last-child {
  margin-bottom: 0;
}

/* =========================================================
   VISUAL
========================================================= */

.ns-visual {
  position: relative;

  order: 1;

  width: clamp(205px, 64vw, 320px);
  height: clamp(262px, 82vw, 410px);

  margin-bottom: clamp(37px, 8vw, 56px);

  flex-shrink: 0;
}

.ns-bg-img,
.ns-main-img {
  width: 100%;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ns-bg-img {
  width: clamp(195px, 61vw, 305px);
  height: clamp(262px, 82vw, 410px);
}

.ns-main-img {
  width: clamp(205px, 64vw, 320px);
  height: clamp(262px, 82vw, 410px);
}

/* =========================================================
   LEFT
========================================================= */

.ns-left {
  display: contents;
}

/* TITLE */

.ns-title {
  order: 2;

  width: clamp(234px, 73.125vw, 320px);

  margin-right: auto;

  font-size: clamp(20px, 6vw, 34px);
  line-height: clamp(22px, 6.4vw, 38px);

  font-weight: 600;

  margin-bottom: clamp(18px, 4vw, 28px);

  color: #064E3B;
}

/* DESC */

.ns-desc {
  order: 3;

  width: 100%;

  font-size: clamp(12px, 3.7vw, 17px);
  line-height: clamp(20px, 6vw, 30px);

  margin-bottom: clamp(18px, 4vw, 28px);

  color: #064E3B;
}

/* =========================================================
   RIGHT TEXT
========================================================= */

.ns-right {
  display: contents;
}

.ns-right p {
  order: 4;

  font-size: clamp(12px, 3.7vw, 17px);
  line-height: clamp(20px, 6vw, 30px);

  margin-bottom: clamp(27px, 6vw, 40px);

  color: #064E3B;
}

/* =========================================================
   BUTTON
========================================================= */

.ns-btn {
  order: 5;

  align-self: flex-start;

  width: clamp(186px, 58vw, 240px);
  height: clamp(46px, 14vw, 58px);

  padding:
    clamp(4px, 1vw, 6px)
    clamp(20px, 5vw, 30px)
    clamp(4px, 1vw, 6px)
    clamp(5px, 1vw, 6px);

  gap: clamp(18px, 5vw, 36px);

  border-radius: 999px;

  flex-shrink: 0;
}

.ns-btn .circle {
  width: clamp(36px, 11vw, 48px);
  height: clamp(36px, 11vw, 48px);
}

.ns-btn .circle svg {
  width: clamp(18px, 5vw, 24px);
  height: clamp(18px, 5vw, 24px);
}

.ns-btn .text {
  font-size: clamp(12px, 3.7vw, 17px);

  transform: translateX(0);
}



.pf-section {
  background: #ffffff;
  padding-top: clamp(80px, 18vw, 120px);
  padding-bottom: clamp(80px, 18vw, 120px);

  /* 🔥 SAMA DENGAN SECTION ATAS */
padding-left: clamp(0px, 2.5vw, 12px);
padding-right: clamp(0px, 2.5vw, 12px);

  overflow: hidden;
}

.pf-container {
  width: 100%;
  max-width: 100%;
}

/* =========================================================
   TITLE
========================================================= */

.pf-title-wrap {
  width: 100%;

  margin-left: 0;
  margin-right: 0;

  margin-bottom: clamp(33px, 8vw, 50px);
}

.pf-title {
  width: clamp(196px, 61.25vw, 320px);

  font-size: clamp(20px, 6vw, 34px);
  line-height: 1.2;

  font-weight: 600;

  color: #064E3B;

  margin-bottom: 0;
}

/* =========================================================
   GRID
========================================================= */

.pf-grid {
  display: flex;
  flex-direction: column;

  width: 100%;

  gap: 0;
}

.pf-column {
  width: 100%;
  margin: 0;
}

/* 🔥 MATIKAN BORDER TOP DESKTOP */
.pf-column .pf-item:first-child {
  border-top: none !important;
}

/* =========================================================
   ITEM
========================================================= */

.pf-item {
  width: 100%;

  /* 🔥 SPACING ATAS BAWAH DIBANYAKIN */
  padding-top: clamp(12px, 3vw, 18px);
  padding-bottom: clamp(13px, 3.5vw, 20px);

  border-top: none !important;

  border-bottom:
    clamp(0.77px, 0.2vw, 1px)
    solid
    rgba(6, 78, 59, 0.3);
}

/* 🔥 CUMA ITEM PALING PERTAMA YANG PUNYA BORDER ATAS */
.pf-grid .pf-column:first-child .pf-item:first-child {
  border-top:
    clamp(0.77px, 0.2vw, 1px)
    solid
    rgba(6, 78, 59, 0.3) !important;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.pf-left {
  gap: clamp(15px, 4vw, 24px);
}

/* PLAY */

.pf-play {
  width: clamp(14px, 4.3vw, 18px);
  height: clamp(14px, 4.3vw, 18px);

  background: #064E3B;

  flex-shrink: 0;
}

.pf-play.playing {
  width: clamp(12px, 4vw, 16px);
  height: clamp(12px, 4vw, 16px);
}

/* =========================================================
   SONG + ARTIST
========================================================= */

.pf-song {
  font-size: clamp(12px, 3.7vw, 17px);
  font-weight: 600;

  line-height: clamp(18.5px, 5vw, 24px);

  color: #064E3B;
}

.pf-artist {
  font-size: clamp(12px, 3.7vw, 17px);
  font-weight: 400;

  line-height: clamp(18.5px, 5vw, 24px);

  color: #064E3B;
}

/* =========================================================
   DOTS
========================================================= */

.pf-dots {
  gap: clamp(3px, 1vw, 5px);

  margin-right: clamp(4px, 1vw, 8px);

  flex-shrink: 0;
}

.pf-dots span {
  width: clamp(3px, 1vw, 4px);
  height: clamp(3px, 1vw, 4px);

  background: #064E3B;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.pf-desc {
  width: 100%;

  margin-top: clamp(39px, 10vw, 60px);

  font-size: clamp(12px, 3.7vw, 17px);
  line-height: clamp(20px, 6vw, 30px);

  text-align: left;

  color: #064E3B;
}

/* =========================================================
   BUTTON WRAP
========================================================= */

.pf-btn-wrap {
  width: clamp(224px, 70vw, 320px);
  height: clamp(46px, 14vw, 65px);

  margin-top: clamp(36px, 9vw, 54px);

  margin-bottom: clamp(22px, 6vw, 36px);

  margin-left: 0;
  margin-right: auto;
}

/* OUTLINE */

.pf-btn-wrap::before {
  width: clamp(68px, 21vw, 95px);
  height: clamp(68px, 21vw, 95px);

  left: clamp(23px, 7vw, 32px);

  border: 1px solid #064E3B;
}

/* =========================================================
   BUTTON
========================================================= */

.pf-btn-main {
  width: 100%;
  height: 100%;

  background: #064E3B;

  border-radius: 999px;
}

/* CIRCLE */

.pf-circle {
  left: clamp(5px, 1vw, 6px);

  width: clamp(36px, 11vw, 53px);
  height: clamp(36px, 11vw, 53px);
}

.pf-circle svg {
  width: clamp(18px, 5vw, 24px);
  height: clamp(18px, 5vw, 24px);
}

/* BUTTON TEXT */

.pf-text-btn {
  font-size: clamp(12px, 3.7vw, 17px);
  font-weight: 400;

  margin-left: clamp(26px, 8vw, 40px);

  color: white;
}





/* =========================================================
   WHY SECTION MOBILE
========================================================= */

.why-section {
  padding-top: clamp(80px, 18vw, 120px);
  padding-bottom: clamp(80px, 18vw, 120px);

  padding-left: clamp(0px, 2vw, 16px);
  padding-right: clamp(0px, 2vw, 16px);

  overflow: hidden;
}

.why-container {
  width: 100%;
  max-width: 100%;

  display: flex;
  flex-direction: column;
}

/* =========================================================
   ROW
========================================================= */

.why-row {
  display: contents;
}

.why-col {
  width: 100%;
}

/* =========================================================
   TITLE
========================================================= */

.why-title {
  width: clamp(287px, 89vw, 420px);

  font-size: clamp(20px, 6vw, 34px);
  line-height: clamp(22px, 6.4vw, 38px);

  font-weight: 600;

  color: #064E3B;

  margin-top: 0;
  margin-bottom: clamp(36px, 9vw, 56px);
}

/* =========================================================
   ITEM
========================================================= */

.why-item {
  position: relative;

  width: 100%;

  border-bottom:
    clamp(0.5px, 0.15vw, 1px)
    solid
    #064E3B;

  padding-bottom: clamp(17px, 5vw, 28px);
  margin-bottom: clamp(44px, 11vw, 72px);

  transition: transform 0.35s ease;
}

.why-item:hover {
  transform: translateY(-4px);
}

/* =========================================================
   TEXT
========================================================= */

.why-item p {
  width: auto;

  /* 🔥 SPACE KANAN KE LINGKARAN */
  padding-right: clamp(36px, 11vw, 60px);

  font-size: clamp(12px, 3.7vw, 17px);
  line-height: clamp(20px, 6vw, 30px);

  font-weight: 400;

  color: #064E3B;

  margin-bottom: clamp(2px, 1vw, 6px);

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.why-item:hover p {
  transform: translateX(3px);
  opacity: 0.9;
}

/* =========================================================
   NUMBER
========================================================= */

.why-number {
  position: absolute;

  right: 0;
  top: 100%;

  transform: translateY(-50%);

  width: clamp(35px, 11vw, 52px);
  height: clamp(35px, 11vw, 52px);

  border:
    clamp(0.5px, 0.15vw, 1px)
    solid
    #064E3B;

  border-radius: 50%;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: clamp(12px, 3.7vw, 17px);
  font-weight: 400;

  color: #064E3B;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.why-item:hover .why-number {
  transform: translateY(-50%) scale(1.06);

  box-shadow:
    0 6px 16px rgba(6, 78, 59, 0.16),
    0 2px 6px rgba(6, 78, 59, 0.10);
}

/* =========================================================
   🔥 URUTAN FIX 1 → 5
========================================================= */

/* TITLE */
.why-row:nth-child(1) .why-col:nth-child(1) {
  order: 1;
}

/* NOMOR 1 */
.why-row:nth-child(2) .why-col:nth-child(1) {
  order: 2;
}

/* NOMOR 2 */
.why-row:nth-child(3) .why-col:nth-child(1) {
  order: 3;
}

/* NOMOR 3 */
.why-row:nth-child(1) .why-col:nth-child(2) {
  order: 4;
}

/* NOMOR 4 */
.why-row:nth-child(2) .why-col:nth-child(2) {
  order: 5;
}

/* NOMOR 5 */
.why-row:nth-child(3) .why-col:nth-child(2) {
  order: 6;
}

/* =========================================================
   RESET DESKTOP ALIGN
========================================================= */

.top-align,
.bottom-align {
  align-items: stretch;
}




/* =========================================================
   FAQ MOBILE
========================================================= */

.faq-section {
  padding-top: clamp(18px, 5vw, 32px);
  padding-bottom: clamp(80px, 18vw, 120px);

  padding-left: clamp(0px, 2vw, 16px);
  padding-right: clamp(0px, 2vw, 16px);

  overflow: hidden;
}

.faq-container {
  width: 100%;
  max-width: 100%;
}

/* =========================================================
   TITLE
========================================================= */

.faq-title {
  width: clamp(287px, 89vw, 420px);

  font-size: clamp(20px, 6vw, 34px);
  line-height: clamp(22px, 6.4vw, 38px);

  font-weight: 600;

  color: #064E3B;

  margin-bottom: clamp(35px, 9vw, 54px);
}

/* =========================================================
   ITEM
========================================================= */

.faq-item {
  width: 100%;

  margin-top: 0;

  padding-bottom: clamp(9px, 2.5vw, 14px);

  border-bottom:
    clamp(0.77px, 0.2vw, 1px)
    solid
    rgba(6, 78, 59, 0.3);
}

/* 🔥 SPACING ANTAR ITEM */
.faq-item + .faq-item {
  margin-top: clamp(24px, 6vw, 38px);
}

/* =========================================================
   QUESTION
========================================================= */

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: clamp(48px, 12vw, 80px);

  cursor: pointer;
}

/* =========================================================
   QUESTION TEXT
========================================================= */

.faq-question span {
  width: 100%;

  font-size: clamp(12px, 3.7vw, 17px);
  line-height: clamp(20px, 6vw, 30px);

  font-weight: 400;

  color: #064E3B;

  transition: transform 0.3s ease;
}

.faq-question:hover span {
  transform: translateX(3px);
}

/* =========================================================
   PLUS ICON
========================================================= */

.faq-icon {
  width: clamp(9.5px, 3vw, 14px);
  height: clamp(9.5px, 3vw, 14px);

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: clamp(14px, 4vw, 22px);
  font-weight: 400;
  line-height: 1;

  color: #064E3B;

  transition: transform 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* =========================================================
   ANSWER
========================================================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;

  font-size: clamp(12px, 3.7vw, 17px);
  line-height: clamp(20px, 6vw, 30px);

  font-weight: 400;

  color: rgba(6, 78, 59, 0.72);

  transition:
    max-height 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;

  transform: translateY(-8px);
  opacity: 0;
}

/* =========================================================
   ACTIVE ANSWER
========================================================= */

.faq-item.active .faq-answer {
  max-height: 300px;

  margin-top: clamp(14px, 4vw, 24px);

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







  .cta-section {
    position: relative;

    background:
      linear-gradient(
        to bottom,
        rgba(26, 26, 26, 1) 0%,
        rgba(6, 78, 59, 0.46) 100%
      ),
      url('../IMAGE/background-cta.jpg') center center / cover no-repeat;

    background-color: #064E3B;
    background-size: auto 145%, auto 145%;

    overflow: hidden;

    min-height: clamp(507px, 158vw, 760px);

    /* 🔥 spacing atas = 58 */
    padding-top: clamp(58px, 18vw, 96px);

    /* 🔥 spacing bawah */
    padding-bottom: clamp(262px, 82vw, 420px);

    /* 🔥 layout guide margin 16 */
    padding-left: clamp(16px, 5vw, 28px);
    padding-right: clamp(16px, 5vw, 28px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* =========================================================
     OVERLAY
  ========================================================= */

  .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
      to bottom,
      rgba(26, 26, 26, 0.92) 0%,
      rgba(6, 78, 59, 0.42) 100%
    );

    z-index: 1;
  }

  /* =========================================================
     DASH LINE
  ========================================================= */

  .cta-section .cta-line {
    position: absolute;

    top: 0;
    bottom: 0;

    width: 1px;

    z-index: 3;
    pointer-events: none;

    background: repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.36) 0px,
      rgba(255,255,255,0.36) 10px,
      transparent 10px,
      transparent 20px
    );
  }

  .cta-section .cta-line.left {
    left: clamp(16px, 5vw, 28px);
    animation: ctaDashUp 2s linear infinite;
  }

  .cta-section .cta-line.right {
    right: clamp(16px, 5vw, 28px);
    animation: ctaDashDown 2s linear infinite;
  }

  /* =========================================================
     ANIMATION
  ========================================================= */

  @keyframes ctaDashDown {
    from {
      background-position: 0 0;
    }

    to {
      background-position: 0 20px;
    }
  }

  @keyframes ctaDashUp {
    from {
      background-position: 0 20px;
    }

    to {
      background-position: 0 0;
    }
  }

  /* =========================================================
     CONTAINER
  ========================================================= */

  .cta-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;
  }

  /* =========================================================
     TITLE
  ========================================================= */

  .cta-title {
  margin-top: 0;
  padding-top: 0;
    /* 🔥 dipertahankan layout 3 baris */


    font-family: 'Poppins', sans-serif;
    font-weight: 500;

    font-size: clamp(31.185px, 9.7vw, 48px);
    line-height: clamp(34.2px, 10.6vw, 56px);

    color: #ffffff;

    text-align: center;

    /* 🔥 spacing bawah = 38 */
    margin-bottom: clamp(52px, 14vw, 72px);

    /* 🔥 penting supaya layout tidak pecah */
    max-width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
  }

  /* =========================================================
     ACTIONS
  ========================================================= */

  .cta-actions {
  margin-top: 0 !important;
  padding-top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;

    /* 🔥 spacing kanan button = 15 */
    gap: clamp(15px, 4vw, 24px);
  }

  /* =========================================================
     BUTTON WRAP
  ========================================================= */

  .cta-btn-wrap {
    position: relative;

    width: clamp(197px, 61.5vw, 280px);
    height: clamp(46px, 14vw, 60px);

    flex-shrink: 0;
  }

  /* 🔥 mute stroke putih mobile */

  .cta-btn-wrap::before {
    display: none;
  }

  /* =========================================================
     MAIN BUTTON
  ========================================================= */

  .cta-btn-primary {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    border: none;
    border-radius: 999px;

    background: #CF7325;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-left: clamp(58px, 18vw, 90px);
    padding-right: clamp(18px, 5vw, 34px);

    cursor: pointer;

    transition:
      background 0.3s ease,
      box-shadow 0.3s ease;
  }

  /* =========================================================
     ICON CIRCLE
  ========================================================= */

  .cta-circle {
    position: absolute;

    left: clamp(5px, 1vw, 8px);
    top: 50%;

    transform: translateY(-50%);

    width: clamp(36px, 11vw, 52px);
    height: clamp(36px, 11vw, 52px);

    border-radius: 50%;

    background: #F3EEEA;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .cta-circle svg {
    width: clamp(18px, 5vw, 20px);
    height: clamp(18px, 5vw, 20px);

    transition: transform 0.3s ease;
  }

  /* =========================================================
     BUTTON TEXT
  ========================================================= */

  .cta-btn-text {
    font-family: 'Poppins', sans-serif;

    /* 🔥 regular size 12 */
    font-size: clamp(12px, 3.7vw, 16px);
    font-weight: 400;

    line-height: 1;

    color: #ffffff;

    white-space: nowrap;

    transform: translateX(clamp(-5px, -1vw, -10px));
  }

  /* =========================================================
     LINK
  ========================================================= */

  /* 🔥 DIMUTE MOBILE */
  .cta-link {
    display: none;
  }

  /* =========================================================
     HOVER
  ========================================================= */

  .cta-btn-wrap:hover .cta-btn-primary {
    background: #E07B2D;

    box-shadow:
      0 0 18px rgba(207, 115, 37, 0.28);
  }

  .cta-btn-wrap:hover .cta-circle {
    transform: translateY(-50%) scale(0.94);

    box-shadow:
      0 6px 16px rgba(0,0,0,0.25),
      0 2px 6px rgba(0,0,0,0.18);
  }

  .cta-btn-wrap:hover .cta-circle svg {
    transform: rotate(360deg);
  }







    .text-section {
    background: #ffffff;

    /* 🔥 spacing atas = 64 */
    padding-top: clamp(64px, 20vw, 110px);

    /* 🔥 spacing bawah bebas */
    padding-bottom: clamp(72px, 22vw, 120px);

    /* 🔥 layout guide margin 16 */
    padding-left: clamp(16px, 5vw, 28px);
    padding-right: clamp(16px, 5vw, 28px);
  }

  .text-container {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;
  }

  .text-section p {
    font-family: 'Poppins', sans-serif;

    /* 🔥 regular size 12 */
    font-size: clamp(12px, 3.7vw, 16px);
    font-weight: 400;

    /* 🔥 line-height 20 */
    line-height: clamp(20px, 6vw, 28px);

    color: #064E3B;

    /* 🔥 justify kiri kanan */
    text-align: justify;

    margin: 0;

    width: 100%;
  }






}

.hero-content p,
.text-section p,
.services-desc,
.pf-desc,
.why-item p,
.faq-answer,
.portfolio-text p,
.card-content p,
.branch-hub-head p,
.branch-card p,
.related-copy {
  font-size: 17px;
  line-height: 30px;
}

@media (min-width: 768px) and (max-width: 1190px) {
  .hero-content p,
  .text-section p,
  .services-desc,
  .pf-desc,
  .why-item p,
  .faq-answer,
  .portfolio-text p,
  .card-content p,
  .branch-hub-head p,
  .branch-card p,
  .related-copy {
    font-size: 17px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .hero-content p,
  .text-section p,
  .services-desc,
  .pf-desc,
  .why-item p,
  .faq-answer,
  .portfolio-text p,
  .card-content p,
  .branch-hub-head p,
  .branch-card p,
  .related-copy {
    font-size: 15px;
    line-height: 26px;
  }
}

@media (min-width: 768px) and (max-width: 1190px) {
  .score-section {
    margin-top: 0;
    padding-top: clamp(92px, 11vw, 128px);
    padding-bottom: clamp(88px, 11vw, 128px);
  }

  .score-section-heading {
    width: calc(100% - (var(--tablet-gutter, 40px) * 2));
    max-width: 1144px;
    margin-bottom: clamp(58px, 7vw, 76px);
  }

  .score-main-title {
    font-size: 50px;
    line-height: 50px;
  }

  .score-song + .score-song {
    margin-top: clamp(82px, 10vw, 108px);
  }

  .score-header {
    width: calc(100% - (var(--tablet-gutter, 40px) * 2));
    max-width: 1144px;
    margin-bottom: clamp(22px, 3vw, 30px);
    column-gap: clamp(18px, 3vw, 28px);
    row-gap: clamp(12px, 2vw, 16px);
  }

  .score-title {
    font-size: clamp(26px, 3vw, 32px);
  }

  .score-view-all {
    width: clamp(188px, 22vw, 210px);
    height: clamp(56px, 6.5vw, 65px);
    padding-left: clamp(22px, 2.4vw, 28px);
    padding-right: clamp(22px, 2.4vw, 28px);
    font-size: clamp(14px, 1.55vw, 17px);
  }

  .score-audio-card {
    width: clamp(212px, 25vw, 258px);
    height: clamp(56px, 6.5vw, 62px);
    padding: 0 clamp(13px, 1.5vw, 15px);
  }

  .score-buy-btn {
    height: clamp(56px, 6.5vw, 62px);
    width: clamp(56px, 6.5vw, 62px);
    min-width: clamp(56px, 6.5vw, 62px);
    font-size: clamp(14px, 1.55vw, 17px);
  }

  .score-audio-card .waveform {
    width: clamp(112px, 13vw, 142px);
  }

  .score-nav {
    width: clamp(56px, 6.5vw, 65px);
    height: clamp(56px, 6.5vw, 65px);
  }

  .score-outer {
    width: calc(100vw - var(--tablet-gutter, 40px));
    margin-left: var(--tablet-gutter, 40px);
    padding-top: 18px;
    margin-top: -18px;
  }

  .score-track {
    gap: clamp(18px, 2.4vw, 24px);
    padding-right: var(--tablet-gutter, 40px);
    padding-bottom: 10px;
  }

  .score-nav-row {
    width: calc(100% - (var(--tablet-gutter, 40px) * 2));
    max-width: 1144px;
    margin-top: clamp(26px, 3.2vw, 34px);
  }

  .score-card {
    width: clamp(218px, 25vw, 254px);
    flex-basis: clamp(218px, 25vw, 254px);
  }

  .score-preview {
    height: clamp(284px, 32vw, 330px);
  }
}

@media (max-width: 767px) {
  .score-section {
    --score-mobile-gutter: clamp(16px, 5vw, 32px);
    --score-mobile-action-height: clamp(44px, 12vw, 54px);
  }

  .score-section {
    margin-top: 0;
    padding-top: clamp(76px, 18vw, 104px);
    padding-bottom: clamp(82px, 20vw, 112px);
  }

  .score-section-heading {
    width: 100%;
    padding-left: var(--score-mobile-gutter);
    padding-right: var(--score-mobile-gutter);
    margin-bottom: clamp(48px, 12vw, 66px);
  }

  .score-main-title {
    width: 100%;
    max-width: none;
    color: #064E3B;
    font-size: clamp(24px, 11vw, 48px);
    line-height: 1.07;
    font-weight: 500;
    margin-top: 0;
  }

  .score-song + .score-song {
    margin-top: clamp(76px, 18vw, 104px);
  }

  .score-header {
    width: 100%;
    padding-left: var(--score-mobile-gutter);
    padding-right: var(--score-mobile-gutter);
    margin-bottom: clamp(18px, 5vw, 25px);
    align-items: flex-start;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 12px;
    column-gap: 0;
  }

  .score-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .score-title {
    max-width: 100%;
    font-size: clamp(22px, 5.8vw, 28px);
    line-height: 1.08;
  }

  .score-actions {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .score-download-note {
    grid-column: 1;
    grid-row: 3;
    margin-top: clamp(6px, 2.4vw, 12px);
  }

  .score-download-link {
    gap: 12px;
    font-size: clamp(11px, 3.1vw, 13px);
  }

  .score-download-note svg {
    width: clamp(13px, 3.8vw, 15px);
    height: clamp(13px, 3.8vw, 15px);
  }

  .score-view-all {
    width: clamp(150px, 42vw, 188px);
    min-width: 0;
    height: clamp(46px, 14vw, 60px);
    padding: 0 clamp(18px, 4.8vw, 24px);
    font-size: clamp(12px, 3.6vw, 15px);
  }

  .score-audio-card {
    width: auto;
    min-width: 0;
    max-width: 238px;
    flex: 1 1 auto;
    height: var(--score-mobile-action-height);
    padding: 0 clamp(12px, 3.4vw, 15px);
    border-radius: 999px;
  }

  .score-buy-btn {
    height: var(--score-mobile-action-height);
    width: var(--score-mobile-action-height);
    min-width: var(--score-mobile-action-height);
    flex: 0 0 var(--score-mobile-action-height);
    padding: 0;
    font-size: clamp(12px, 3.6vw, 15px);
  }

  .score-audio-card .audio-controls {
    gap: clamp(12px, 3.4vw, 18px);
  }

  .score-audio-card .waveform {
    width: clamp(106px, 33vw, 142px);
    min-width: 92px;
  }

  .score-audio-card .duration {
    font-size: clamp(12px, 3.4vw, 15px);
  }

  .score-view-text {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .score-outer {
    width: calc(100% - var(--score-mobile-gutter));
    margin-left: var(--score-mobile-gutter);
    margin-top: -16px;
    padding-top: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .score-track {
    --score-mobile-track-gap: clamp(14px, 4vw, 20px);
    gap: var(--score-mobile-track-gap);
    padding-left: 0;
    padding-right: var(--score-mobile-gutter);
    padding-bottom: 8px;
  }

  .score-track::before {
    display: none;
  }

  .score-track .score-card:first-of-type {
    margin-left: 0 !important;
  }

  .score-track > .score-card:first-child {
    margin-left: 0 !important;
  }

  .score-nav-row {
    width: 100%;
    padding-left: var(--score-mobile-gutter);
    padding-right: var(--score-mobile-gutter);
    margin-top: clamp(28px, 8vw, 42px);
    justify-content: flex-end;
    gap: 10px;
  }

  .score-nav {
    width: clamp(46px, 14vw, 60px);
    height: clamp(46px, 14vw, 60px);
  }

  .score-nav svg {
    width: 18px;
    height: 18px;
  }

  .score-card {
    width: clamp(196px, 62vw, 260px);
    flex-basis: clamp(196px, 62vw, 260px);
    flex-shrink: 0;
  }

  .score-preview {
    height: clamp(255px, 80vw, 338px);
  }

  .score-preview object {
    display: none !important;
  }

  .score-preview.is-rendered .score-fallback {
    display: none;
  }

  .score-preview.is-rendered .score-preview-canvas {
    display: block;
  }

  .score-fallback {
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,246,244,0.96)),
      repeating-linear-gradient(
        0deg,
        rgba(48, 78, 75, 0.06) 0 1px,
        transparent 1px 22px
      );
    color: rgba(48, 78, 75, 0.34);
    font-size: clamp(34px, 11vw, 48px);
  }

  .score-card:hover .score-preview {
    box-shadow: 0 14px 34px rgba(48, 78, 75, 0.11);
  }

  .score-card:hover {
    transform: none;
  }

  .score-card-title {
    font-size: clamp(15px, 4.4vw, 18px);
  }

  .score-composer,
  .score-detail {
    font-size: clamp(12px, 3.5vw, 14px);
  }

  .score-modal {
    padding: 14px;
  }

  .score-modal-panel {
    height: 84vh;
    border-radius: 8px;
  }

  .score-modal-head {
    height: 56px;
    padding-left: 16px;
    padding-right: 10px;
  }

  .score-modal-head h3 {
    font-size: 15px;
    padding-right: 8px;
  }

  .score-modal-tools {
    gap: 4px;
  }

  .score-modal-download,
  .score-modal-close {
    width: 40px;
    height: 40px;
  }

  .score-modal-frame {
    height: calc(100% - 56px);
  }

  .score-modal-panel.is-canvas-preview .score-modal-frame {
    display: none;
  }

  .score-modal-panel.is-canvas-preview .score-modal-render {
    display: block;
    height: calc(100% - 56px);
    padding: 10px;
  }

  .score-modal-panel.is-canvas-preview .score-modal-render.is-loading,
  .score-modal-panel.is-canvas-preview .score-modal-render.has-error {
    display: flex;
  }
}

@media (max-width: 767px) {
  .score-section .score-outer {
    width: calc(100% - var(--score-mobile-gutter)) !important;
    margin-left: var(--score-mobile-gutter) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .score-section .score-track {
    padding-left: 0 !important;
    padding-right: var(--score-mobile-gutter) !important;
    margin-left: 0 !important;
    transform: none !important;
  }

  .score-section .score-track .score-card:first-of-type,
  .score-section .score-track > .score-card:first-child {
    margin-left: 0 !important;
  }

  .score-section .score-track-spacer {
    display: none;
    flex: 0 0 0;
    width: 0;
  }
}

.pf-section {
  background: #ffffff !important;
  background-color: #ffffff !important;
}
