/* =====================================================================
   Joy Philabella - Funnel
   Purple / lavender design system
   ===================================================================== */

:root {
  /* palette */
  --p-900: #2b1a4d;
  --p-800: #3a2568;
  --p-700: #4a2e7a;
  --p-600: #5c3d94;
  --p-500: #7754b8;
  --p-400: #9377cd;
  --p-300: #b6a1e0;
  --p-200: #d5c8ef;
  --p-150: #e3daf6;
  --p-100: #ede7f9;
  --p-50:  #f6f2fd;

  --ink: #2f2745;
  --body: #5b5372;
  --muted: #857da0;
  --line: #e6def5;
  --white: #ffffff;
  --cream: #fdfcff;

  --grad-hero: linear-gradient(180deg, #f7f3fd 0%, #efe7fa 45%, #e3d7f6 100%);
  --grad-btn: linear-gradient(135deg, #7754b8 0%, #6544a8 100%);
  --grad-btn-hover: linear-gradient(135deg, #8660cc 0%, #7150bb 100%);
  --grad-soft: linear-gradient(180deg, #faf7ff 0%, #f1eafc 100%);
  --grad-footer: linear-gradient(160deg, #3a2568 0%, #2b1a4d 60%, #241541 100%);

  --shadow-sm: 0 2px 10px rgba(74, 46, 122, .07);
  --shadow-md: 0 10px 30px rgba(74, 46, 122, .10);
  --shadow-lg: 0 24px 60px rgba(74, 46, 122, .16);
  --shadow-btn: 0 10px 24px rgba(103, 68, 172, .32);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  --container: 1160px;
  --gutter: 24px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--body);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--p-600); text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--p-700);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--p-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--p-700); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { position: relative; padding: 96px 0; }

.accent { color: var(--p-500); }
.text-center { text-align: center; }

.eyebrow {
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--p-500);
  font-weight: 500;
  margin: 0 0 14px;
}

.section-title { font-size: clamp(2rem, 4.4vw, 3.1rem); color: var(--p-800); }

.divider-line {
  width: 62px; height: 3px; border-radius: 3px;
  background: var(--p-300);
  margin: 18px 0 26px;
}
.divider-line--center { margin-inline: auto; }

/* lotus divider (— ✿ —) */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--p-400); margin: 0 auto 26px; max-width: 240px;
}
.ornament::before, .ornament::after {
  content: ""; flex: 1; height: 1px; background: var(--p-200);
}
.ornament svg { flex: none; }

.ornament--badge::before, .ornament--badge::after { max-width: 90px; }
.ornament-badge {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--p-150);
  display: grid; place-items: center; color: var(--p-400);
  box-shadow: var(--shadow-sm);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 34px;
  border: 0; border-radius: 999px;
  background: var(--grad-btn); color: #fff;
  font-weight: 500; font-size: .86rem; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: var(--shadow-btn);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover, .btn:focus-visible {
  background: var(--grad-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(103, 68, 172, .4);
  color: #fff;
}
.btn:active { transform: translateY(0); }
.btn--lg { padding: 19px 42px; font-size: .9rem; }
.btn--wide { width: 100%; }
.btn--soft {
  background: var(--p-100); color: var(--p-700); box-shadow: none;
  text-transform: none; letter-spacing: normal; font-size: .95rem;
}
.btn--soft:hover { background: var(--p-150); color: var(--p-700); }
.btn--plain {
  background: none; color: var(--p-600); box-shadow: none;
  text-transform: none; letter-spacing: normal; padding: 10px 6px; font-size: .95rem;
}
.btn--plain:hover { background: none; color: var(--p-500); transform: none; box-shadow: none; }

/* =====================================================================
   SECTION 1 - profile
   ===================================================================== */
.s1 {
  background: var(--grad-hero);
  padding: 86px 0 0;
  overflow: hidden;
  text-align: center;
}
.s1__inner { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; }
.s1__name { font-size: clamp(1.95rem, 4.6vw, 3.05rem); color: var(--p-800); margin-bottom: .3em; }
.s1__role {
  font-size: .82rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--p-500); font-weight: 500; margin-bottom: 22px;
}
.s1__rule { width: 78px; height: 2px; background: var(--p-300); margin: 0 auto 34px; border-radius: 2px; }
.s1__text p { color: var(--body); font-size: 1.02rem; margin-bottom: 1.5em; }

.s1__photo {
  position: relative; z-index: 3;
  margin: 44px auto 0;
  max-width: 430px;
}
.s1__photo img { margin-inline: auto; filter: drop-shadow(0 22px 34px rgba(58, 37, 104, .22)); }

/* decorative background art */
.s1__waves { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; pointer-events: none; }
.s1__waves svg { width: 100%; height: auto; display: block; }
.s1__botanical {
  position: absolute; left: 2%; bottom: 6%; width: min(190px, 16vw);
  color: var(--p-300); opacity: .75; z-index: 1; pointer-events: none;
}
.s1__sparkle {
  position: absolute; right: 8%; top: 46%; width: 26px; color: var(--p-300);
  opacity: .9; z-index: 1; pointer-events: none;
}

/* =====================================================================
   SECTION 2 - audio hypnotherapy
   ===================================================================== */
.s2 { background: var(--cream); padding: 96px 0 100px; }

.s2__hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-bottom: 76px;
}
.s2__title { font-size: clamp(2.1rem, 4.6vw, 3.35rem); color: var(--ink); margin-bottom: 0; }
.s2__title .accent { color: var(--p-500); }
.s2__lead { font-size: 1.02rem; margin-bottom: .6em; }
.s2__script {
  font-family: var(--font-script);
  font-size: 2rem; color: var(--p-500); line-height: 1.2;
  margin: 0 0 .55em;
}
.s2__desc { margin-bottom: 30px; }
.s2__desc strong { color: var(--p-700); font-weight: 600; }

.mini-features {
  display: flex; flex-wrap: wrap; gap: 0; margin: 0 0 34px; padding: 0; list-style: none;
}
.mini-features li {
  display: flex; align-items: center; gap: 11px;
  padding: 4px 22px; color: var(--p-700);
  font-size: .88rem; line-height: 1.35;
  border-left: 1px solid var(--p-150);
}
.mini-features li:first-child { padding-left: 0; border-left: 0; }
.mini-features svg { flex: none; color: var(--p-400); }

.s2__media { position: relative; }
.s2__media-frame {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.4; background: var(--p-100);
}
.s2__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.s2__media-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  color: var(--p-300); background: linear-gradient(140deg, #efe8fb, #e2d6f5);
}
.s2__quote {
  position: absolute; left: -46px; bottom: 34px;
  max-width: 300px; background: #fff; border-radius: var(--radius);
  padding: 22px 26px 22px 22px; box-shadow: var(--shadow-md);
  display: flex; gap: 12px; color: var(--ink); font-size: .93rem; line-height: 1.6;
}
.s2__quote svg { flex: none; color: var(--p-300); margin-top: 2px; }

/* feature band */
.feature-band {
  background: var(--grad-soft);
  border: 1px solid var(--p-150);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-bottom: 78px;
}
.feature-band__item {
  text-align: center; padding: 6px 26px;
  border-left: 1px solid var(--p-150);
}
.feature-band__item:first-child { border-left: 0; }
.feature-band__icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  display: grid; place-items: center; color: var(--p-500);
}
.feature-band__item h3 {
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  color: var(--p-700); margin-bottom: .5em;
}
.feature-band__item p { font-size: .84rem; line-height: 1.65; color: var(--muted); }

/* audio cards */
.s2__list-head { text-align: center; margin-bottom: 40px; }
.s2__list-head .eyebrow { margin-bottom: 12px; }

.audio-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 22px; margin-bottom: 70px;
}
.audio-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.audio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--p-200);
}
.audio-card__media {
  position: relative; aspect-ratio: 4 / 3; background: linear-gradient(150deg, #ece3fa, #dccff2);
  overflow: hidden;
}
.audio-card__media img { width: 100%; height: 100%; object-fit: cover; }
.audio-card__media-fallback { display: grid; place-items: center; height: 100%; color: var(--p-400); }
.audio-card__badge {
  position: absolute; top: 12px; left: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, .82); backdrop-filter: blur(4px);
  display: grid; place-items: center; color: var(--p-600);
}
.audio-card__play {
  position: absolute; right: 12px; bottom: 12px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: #fff; color: var(--p-600);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(58, 37, 104, .28);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.audio-card__play:hover { transform: scale(1.08); background: var(--p-500); color: #fff; }
.audio-card__play[data-state="playing"] { background: var(--p-500); color: #fff; }
.audio-card__play[disabled] { opacity: .55; cursor: not-allowed; }
.audio-card__play .icon-pause { display: none; }
.audio-card__play[data-state="playing"] .icon-play { display: none; }
.audio-card__play[data-state="playing"] .icon-pause { display: block; }

.audio-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.audio-card__title {
  font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--p-800); margin-bottom: .7em;
}
.audio-card__desc { font-size: .83rem; line-height: 1.65; color: var(--muted); flex: 1; margin-bottom: 16px; }
.audio-card__link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 500; color: var(--p-500);
}
.audio-card__link:hover { gap: 11px; color: var(--p-600); }
.audio-card__link svg { transition: transform .2s ease; }

.audio-card__progress {
  height: 3px; background: var(--p-100); position: relative; overflow: hidden;
}
.audio-card__progress span {
  position: absolute; inset: 0 auto 0 0; width: 0;
  background: var(--p-500); transition: width .25s linear;
}

/* bottom cta */
.audio-cta {
  background: var(--grad-soft); border: 1px solid var(--p-150);
  border-radius: var(--radius-lg); padding: 34px 40px;
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
}
.audio-cta__icon { color: var(--p-400); flex: none; }
.audio-cta__text { flex: 1; min-width: 260px; }
.audio-cta__text h3 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 600; color: var(--p-800); margin-bottom: .35em; }
.audio-cta__text p { font-size: .9rem; color: var(--muted); }

/* =====================================================================
   SECTION 3 - services
   ===================================================================== */
.s3 {
  background: linear-gradient(180deg, #f4eefc 0%, #efe7fa 100%);
  border-top: 14px solid var(--p-300);
  padding: 80px 0 96px;
}
.s3__head { text-align: center; max-width: 820px; margin: 0 auto 46px; }
.s3__quote {
  font-style: italic; font-size: 1.02rem; color: var(--p-700);
  position: relative; padding: 0 34px; margin-bottom: 20px;
}
.s3__quote .mark {
  color: var(--p-300); font-family: var(--font-display); font-size: 1.7rem;
  line-height: 0; position: relative; top: 8px;
}
.s3__desc { color: var(--body); }

.service-card {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 58px;
}
.service-card__media { position: relative; min-height: 420px; background: var(--p-100); }
.service-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 46px 52px; }
.service-card__icon {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--p-50); border: 1px solid var(--p-150);
  display: grid; place-items: center; color: var(--p-500); margin-bottom: 24px;
}
.service-card__title { font-size: 1.85rem; color: var(--p-800); margin-bottom: .25em; }
.service-card__meta { color: var(--p-500); font-size: .92rem; margin-bottom: 20px; }
.service-card__rule { width: 54px; height: 2px; background: var(--p-200); margin-bottom: 24px; }
.service-card__body p { font-size: .95rem; }

.problems { text-align: center; margin-bottom: 52px; }
.problems__title {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 600;
  color: var(--p-700); margin-bottom: 10px;
}
.problems__list {
  list-style: none; margin: 26px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.problems__list li {
  padding: 0 18px; border-left: 1px solid var(--p-200);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.problems__list li:first-child { border-left: 0; }
.problems__icon {
  width: 66px; height: 66px; border-radius: 50%;
  background: #fff; border: 1px solid var(--p-150);
  display: grid; place-items: center; color: var(--p-500);
  box-shadow: var(--shadow-sm);
}
.problems__list span { font-size: .84rem; color: var(--p-700); line-height: 1.45; font-weight: 400; }

.privacy-bar {
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--p-150);
  border-radius: var(--radius-lg);
  padding: 30px 38px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.privacy-bar__icon { color: var(--p-500); flex: none; }
.privacy-bar__text { flex: 1; min-width: 240px; }
.privacy-bar__text h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--p-800); margin-bottom: .3em; }
.privacy-bar__text p { font-size: .88rem; color: var(--muted); }
.privacy-bar__action { text-align: center; }
.privacy-bar__note { display: block; font-size: .78rem; color: var(--muted); margin-top: 10px; }
.privacy-bar .btn { text-transform: none; letter-spacing: .02em; font-size: 1rem; font-weight: 500; }

/* =====================================================================
   SECTION 4 & 5 - carousels
   ===================================================================== */
.s4 { background: var(--cream); }
.s5 { background: linear-gradient(180deg, #faf7ff 0%, #f2ecfc 100%); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); }

.carousel { position: relative; }
.carousel__viewport { overflow: hidden; padding: 8px 4px 12px; }
.carousel__track {
  display: flex; gap: 26px;
  transition: transform .55s cubic-bezier(.4, .01, .2, 1);
  will-change: transform;
}
.carousel__slide { flex: 0 0 auto; width: calc((100% - 52px) / 3); }

.carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--p-150); color: var(--p-600);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: background .2s ease, color .2s ease, opacity .2s ease;
  z-index: 4;
}
.carousel__nav:hover { background: var(--p-500); color: #fff; border-color: var(--p-500); }
.carousel__nav[disabled] { opacity: .35; cursor: not-allowed; }
.carousel__nav--prev { left: -22px; }
.carousel__nav--next { right: -22px; }

.carousel__dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.carousel__dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: var(--p-200); transition: all .25s ease;
}
.carousel__dots button[aria-selected="true"] { width: 26px; border-radius: 9px; background: var(--p-500); }

/* portfolio card */
.portfolio-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-card__media { aspect-ratio: 16 / 10; background: linear-gradient(150deg, #ece3fa, #dccff2); overflow: hidden; }
.portfolio-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.portfolio-card:hover .portfolio-card__media img { transform: scale(1.05); }
.portfolio-card__fallback { display: grid; place-items: center; height: 100%; color: var(--p-400); }
.portfolio-card__body { padding: 26px 26px 30px; flex: 1; }
.portfolio-card__tag {
  display: inline-block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--p-500); background: var(--p-50); border: 1px solid var(--p-150);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.portfolio-card__title { font-size: 1.28rem; color: var(--p-800); margin-bottom: .5em; }
.portfolio-card__body p { font-size: .89rem; color: var(--muted); }
.portfolio-card__date { display: block; margin-top: 16px; font-size: .78rem; color: var(--p-400); }

/* testimonial card */
.testimonial-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px 30px; height: 100%;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card__quote { color: var(--p-200); }
.testimonial-card__text { font-size: .95rem; color: var(--body); flex: 1; font-style: italic; }
.testimonial-card__stars { display: flex; gap: 3px; color: #eab54d; }
.testimonial-card__person { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex: none;
  background: var(--p-100); display: grid; place-items: center; color: var(--p-400);
  border: 2px solid var(--p-150);
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-weight: 600; color: var(--p-800); font-size: .95rem; line-height: 1.3; }
.testimonial-card__role { font-size: .8rem; color: var(--muted); }

.empty-note {
  text-align: center; color: var(--muted); font-size: .9rem;
  border: 1px dashed var(--p-200); border-radius: var(--radius); padding: 40px 20px;
}

/* =====================================================================
   SECTION 6 - footer
   ===================================================================== */
.site-footer {
  background: var(--grad-footer); color: #d9cff0;
  padding: 68px 0 30px; position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: -40% 45% 50% -10%;
  background: radial-gradient(circle, rgba(148, 110, 219, .35), transparent 62%);
  pointer-events: none;
}
.site-footer__inner { position: relative; z-index: 2; text-align: center; }
.site-footer__brand {
  font-family: var(--font-display); font-size: 1.9rem; color: #fff; margin-bottom: .15em;
}
.site-footer__tagline {
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--p-300); margin-bottom: 30px;
}
.social {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  list-style: none; margin: 0 0 34px; padding: 0;
}
.social a {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #e5dbf7;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.social a:hover {
  background: #fff; color: var(--p-700); border-color: #fff;
  transform: translateY(-4px);
}
.site-footer__divider { height: 1px; background: rgba(255, 255, 255, .12); margin-bottom: 22px; }
.site-footer__copy { font-size: .82rem; color: #b6a7d8; margin: 0; }
.site-footer__copy a { color: #d9cff0; }

/* =====================================================================
   Floating WhatsApp
   ===================================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #1f8f4e;
  padding: 12px 20px 12px 14px; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(28, 22, 51, .22);
  font-size: .88rem; font-weight: 500; line-height: 1.2;
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(28, 22, 51, .28); color: #1f8f4e; }
.wa-float__icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; flex: none;
}
.wa-float__label { white-space: nowrap; }

/* =====================================================================
   Booking modal
   ===================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(43, 26, 77, .55);
  backdrop-filter: blur(4px);
  animation: fade-in .25s ease;
}
.modal__dialog {
  position: relative; z-index: 2;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: pop-in .3s cubic-bezier(.2, .9, .3, 1.1);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop-in { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }

.modal__head {
  background: linear-gradient(135deg, #8a5fd8 0%, #6a45b8 55%, #5a34ad 100%);
  color: #fff; padding: 32px 36px; position: relative; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal__head::after {
  content: ""; position: absolute; right: -40px; top: -60px; width: 190px; height: 190px;
  border-radius: 50%; background: rgba(255, 255, 255, .12);
}
.modal__head h2 { color: #fff; font-size: 1.6rem; margin-bottom: .25em; position: relative; z-index: 2; }
.modal__head p { color: rgba(255, 255, 255, .88); font-size: .9rem; margin: 0; position: relative; z-index: 2; }
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, .18); color: #fff;
  display: grid; place-items: center; transition: background .2s ease;
}
.modal__close:hover { background: rgba(255, 255, 255, .32); }

.modal__body { padding: 30px 36px 36px; }

.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: .84rem; font-weight: 500;
  color: var(--p-800); margin-bottom: 7px;
}
.field .req { color: #d1495b; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--p-150); border-radius: var(--radius-sm);
  font: inherit; font-size: .93rem; color: var(--ink); background: var(--p-50);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--p-400); background: #fff;
  box-shadow: 0 0 0 4px rgba(119, 84, 184, .12);
}
.field textarea { resize: vertical; min-height: 92px; }
.field--error input, .field--error textarea { border-color: #d1495b; background: #fdf3f4; }
.field__error { display: block; font-size: .78rem; color: #d1495b; margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-note { font-size: .78rem; color: var(--muted); margin: 4px 0 20px; }

.alert {
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: .89rem; margin-bottom: 18px; border: 1px solid transparent;
}
.alert--success { background: #eaf7ef; border-color: #bfe5cd; color: #226e42; }
.alert--error { background: #fdf1f2; border-color: #f2c9cd; color: #a12d3c; }

.modal__success { text-align: center; padding: 20px 10px 6px; }
.modal__success-icon {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 20px;
  background: #eaf7ef; color: #2f9e5e; display: grid; place-items: center;
}
.modal__success h3 { font-size: 1.4rem; color: var(--p-800); }

.is-hidden { display: none !important; }

/* honeypot - hidden from humans, tempting for bots */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1080px) {
  .audio-grid { grid-template-columns: repeat(3, 1fr); }
  .carousel__slide { width: calc((100% - 26px) / 2); }
  .carousel__nav--prev { left: -8px; }
  .carousel__nav--next { right: -8px; }
}

@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .s2__hero { grid-template-columns: 1fr; gap: 40px; }
  .s2__media-frame { border-radius: var(--radius-lg); aspect-ratio: 16 / 11; }
  /* Kartu kutipan: pada layar kecil diletakkan DI BAWAH foto, tidak menimpa.
     Di layar besar tetap mengambang di tepi foto seperti semula. */
  .s2__quote {
    position: static;
    left: auto; right: auto; bottom: auto;
    max-width: none;
    margin-top: 14px;
    padding: 18px 20px;
    font-size: .88rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
  }
  .s2__media-frame { border-radius: var(--radius-lg); }
  .feature-band { grid-template-columns: repeat(2, 1fr); gap: 6px 0; }
  .feature-band__item:nth-child(odd) { border-left: 0; }
  .feature-band__item:nth-child(n+3) { border-top: 1px solid var(--p-150); padding-top: 28px; margin-top: 8px; }
  .service-card { grid-template-columns: 1fr; }
  .service-card__media { min-height: 280px; }
  .service-card__body { padding: 36px 32px; }
  .problems__list { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .problems__list li:nth-child(3n+1) { border-left: 0; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .section { padding: 60px 0; }
  .s1 { padding-top: 64px; }
  .s1__photo { max-width: 320px; }
  .audio-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .carousel__slide { width: 100%; }
  .carousel__nav { position: static; transform: none; }
  .carousel__controls {
    display: flex; justify-content: center; gap: 14px; margin-top: 24px;
  }
  .carousel__dots { margin-top: 20px; }
  .audio-cta, .privacy-bar { padding: 26px 24px; text-align: center; justify-content: center; }
  .audio-cta__text, .privacy-bar__text { min-width: 0; }
  .privacy-bar__action, .audio-cta .btn { width: 100%; }
  .privacy-bar .btn, .audio-cta .btn { width: 100%; }
  .modal__head { padding: 26px 24px; }
  .modal__body { padding: 24px 24px 30px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .wa-float__label { display: none; }
  .wa-float { padding: 12px; right: 16px; bottom: 16px; }
  .s3 { border-top-width: 10px; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .audio-grid { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; padding: 30px 18px; }
  .feature-band__item { border-left: 0; padding: 22px 8px; border-top: 1px solid var(--p-150); }
  .feature-band__item:first-child { border-top: 0; padding-top: 4px; }
  .feature-band__item:nth-child(n+3) { margin-top: 0; padding-top: 22px; }
  .problems__list { grid-template-columns: repeat(2, 1fr); }
  .problems__list li { border-left: 0; }
  .mini-features { gap: 12px 0; }
  .mini-features li { padding: 4px 16px; }
  .mini-features li:nth-child(odd) { padding-left: 0; border-left: 0; }
  .s2__script { font-size: 1.7rem; }
  .s3__quote { padding: 0 12px; }
  .service-card__body { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .wa-float, .carousel__nav, .modal { display: none !important; }
}

/* =====================================================================
   Tombol WhatsApp pada hasil booking
   ===================================================================== */
.btn--wa {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  box-shadow: 0 10px 24px rgba(29, 168, 81, .3);
  text-transform: none;
  letter-spacing: .01em;
  font-size: .95rem;
}
.btn--wa:hover, .btn--wa:focus-visible {
  background: linear-gradient(135deg, #2ee273 0%, #21b95a 100%);
  box-shadow: 0 14px 30px rgba(29, 168, 81, .38);
  color: #fff;
}

.modal__success-note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: -6px;
}
