/* ============================================
   #PreMarriageTalk — Design System & Styles
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Quicksand:wght@400;500;600;700&family=Raleway:wght@400;500;600;700&display=swap');

/* ---------- Local Fonts (TT Wellingtons) ---------- */
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Light Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Medium Italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial DemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial DemiBold Italic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial ExtraBold Italic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'TT Wellingtons';
  src: url('assets/fonts/TT Wellingtons Trial Black Italic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors — derived from the logo */
  --teal-50: #e6f7f7;
  --teal-100: #b3ecec;
  --teal-200: #80e0e0;
  --teal-300: #4dd4d4;
  --teal-400: #2abfbf;
  --teal-500: #1aadad;
  --teal-600: #0d8f8f;
  --teal-700: #007070;
  --teal-800: #005252;
  --teal-900: #003333;

  --coral-50: #fdf0f0;
  --coral-100: #f9d4d4;
  --coral-200: #f4b0b0;
  --coral-300: #ef8b8b;
  --coral-400: #e8787a;
  --coral-500: #d96a6c;
  --coral-600: #c45a5c;
  --coral-700: #a44a4c;
  --coral-800: #843a3c;
  --coral-900: #642a2c;
  --coral-text: #cc3b3e; /* Darker, high-contrast coral for legible text on white/light backgrounds */

  --dark-teal: #325759;
  --deep-blue: #01627b;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #f1f4f6;
  --gray-200: #e2e8ec;
  --gray-300: #c9d3da;
  --gray-400: #94a3b0;
  --gray-500: #6b7c8a;
  --gray-600: #4a5b68;
  --gray-700: #374550;
  --gray-800: #1e2a33;
  --gray-900: #0f171e;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #37bfa6 0%, #084e59 100%);
  --gradient-coral: linear-gradient(135deg, #e56b6d 0%, #cc3538 100%);
  --gradient-warm: linear-gradient(135deg, #e8787a 0%, #f4b0b0 50%, #2abfbf 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.08) 100%);
  --gradient-section: linear-gradient(180deg, #f8fafb 0%, #e6f7f7 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(50, 87, 89, 0.06);
  --shadow-md: 0 4px 20px rgba(50, 87, 89, 0.1);
  --shadow-lg: 0 8px 40px rgba(50, 87, 89, 0.14);
  --shadow-xl: 0 16px 64px rgba(50, 87, 89, 0.18);
  --shadow-glow-teal: 0 0 30px rgba(42, 191, 191, 0.3);
  --shadow-glow-coral: 0 0 30px rgba(232, 120, 122, 0.3);

  /* Typography */
  --font-heading: 'TT Wellingtons', 'Outfit', sans-serif;
  --font-body: 'TT Wellingtons', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark-teal);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ---------- Utility Classes ---------- */
br.mobile-only {
  display: none;
}
br.desktop-only {
  display: inline;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: var(--space-lg);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--teal-700);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Animated Backgrounds ---------- */
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float-shape 20s infinite ease-in-out;
}

.floating-shapes .shape:nth-child(1) {
  width: 300px;
  height: 300px;
  background: var(--coral-400);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.floating-shapes .shape:nth-child(2) {
  width: 200px;
  height: 200px;
  background: var(--teal-400);
  top: 60%;
  right: -3%;
  animation-delay: -5s;
}

.floating-shapes .shape:nth-child(3) {
  width: 150px;
  height: 150px;
  background: var(--coral-300);
  bottom: 10%;
  left: 20%;
  animation-delay: -10s;
}

.floating-shapes .shape:nth-child(4) {
  width: 100px;
  height: 100px;
  background: var(--teal-300);
  top: 20%;
  right: 20%;
  animation-delay: -15s;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(10px, -10px) scale(1.02); }
}

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 191, 191, 0.1);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.navbar.scrolled .nav-brand-text {
  color: var(--dark-teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color 0.3s var(--ease-out);
}

.navbar.scrolled .nav-links a:not(.nav-cta) {
  color: var(--gray-700);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral-200);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.navbar.scrolled .nav-links a:not(.nav-cta)::after {
  background: var(--coral-text);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--coral-200);
}

.navbar.scrolled .nav-links a:not(.nav-cta):hover {
  color: var(--coral-text);
}

.nav-cta {
  background: var(--gradient-coral) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: var(--shadow-glow-coral);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(232, 120, 122, 0.4);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark-teal);
}

.nav-toggle.active span {
  background: var(--white) !important;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO SECTION (MINIMALIST + RICH PATTERN) ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #084e59;
  background-image: 
    linear-gradient(to top right, 
      rgba(55, 191, 166, 0.2) 0%, 
      rgba(13, 143, 143, 0.45) 45%, 
      rgba(5, 44, 50, 0.78) 100%
    ),
    url('assets/images/hero-bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 30px);
  padding-bottom: 120px;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.waves {
  position: relative;
  width: 100%;
  height: 60px;
  min-height: 60px;
  max-height: 100px;
  display: block;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
  fill: rgba(255, 255, 255, 0.7);
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  fill: rgba(255, 255, 255, 0.5);
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  fill: rgba(255, 255, 255, 0.3);
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  fill: var(--white);
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  animation: fadeInUp 0.9s var(--ease-out) 0.15s both;
}

.hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: badgeFloat 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.hero-content .hero-badge span {
  display: inline-block;
  animation: sparkleTwinkle 2.2s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
  }
}

@keyframes sparkleTwinkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25) rotate(12deg);
    opacity: 1;
  }
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-title .highlight-yellow {
  position: relative;
  display: inline-block;
  color: #ffffff;
  padding: 0 6px;
  z-index: 1;
}

.hero-title .highlight-yellow::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 18%;
  height: 60%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-0.8deg);
}

.hero-title .hero-bersama {
  font-size: 0.85em;
  font-weight: 400;
  opacity: 0.9;
}

.hero-title .hero-brand {
  font-size: 0.95em;
  font-weight: 700;
}

.hero-brand .brand-hash {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin-top: 18px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-bullets {
  margin-top: 4px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.hero-chat-sequence {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 840px;
  width: 100%;
  margin: 4px auto 20px;
  min-height: 90px;
}

.chat-bubble-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 20px 20px 20px 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.85) translateY(12px);
  transition: opacity 0.4s var(--ease-spring), transform 0.45s var(--ease-spring);
}

.chat-bubble-chip.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: chipPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-bubble-chip.chat-bubble-answer {
  background: #148f91;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
}

.chat-avatar {
  font-size: 0.9rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.chat-text {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

@keyframes chipPop {
  0% {
    opacity: 0;
    transform: scale(0.82) translateY(14px);
  }
  65% {
    opacity: 1;
    transform: scale(1.04) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-highlight-badge {
  display: inline-block;
  background: transparent;
  border: none;
  color: var(--white);
  font-weight: 600;
  font-style: italic;
  font-size: 1.08rem;
  padding: 0;
  margin-top: 14px;
  box-shadow: none;
  letter-spacing: 0.3px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-spring);
  text-decoration: none;
}

.btn-hero-pill.btn-primary-hero {
  position: relative;
  overflow: hidden;
  background: #ffe5e6;
  color: #9e2b2e;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  font-weight: 700;
  animation: heroBtnGlow 3.5s ease-in-out infinite;
}

.btn-hero-pill.btn-primary-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: heroShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.btn-hero-pill.btn-primary-hero:hover {
  transform: translateY(-4px) scale(1.03);
  background: #ffd4d6;
  color: #851f22;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-pill.btn-secondary-hero {
  background: var(--white);
  color: #005252;
  border: 2px solid var(--white);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  transition: all 0.35s var(--ease-spring);
}

.btn-hero-pill.btn-secondary-hero:hover {
  transform: translateY(-4px) scale(1.02);
  background: #ffffff;
  color: #003333;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

@keyframes heroShimmer {
  0%, 60% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

@keyframes heroBtnGlow {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 8px 24px rgba(255, 229, 230, 0.45);
    transform: translateY(-2px);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
  z-index: 3;
  margin-top: -60px;
}

.stats-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: var(--space-xs);
  line-height: 1.25;
}

.stats-main-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.stats-main-tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--teal-800);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.stats-main-tagline strong {
  color: var(--teal-900);
  font-weight: 700;
}

.stats-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: var(--space-sm) 0 var(--space-lg);
}

.stats-divider::before,
.stats-divider::after {
  content: '';
  display: block;
  height: 1px;
  width: 12vw;
  max-width: 140px;
  min-width: 60px;
  background: rgba(8, 78, 89, 0.2);
}

.stats-divider span {
  margin: 0 var(--space-xs);
  color: var(--teal-900);
  font-size: 0.8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-card {
  text-align: center;
  position: relative;
}

.stat-image {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease-spring);
}

.stat-card:hover .stat-image img {
  transform: translateY(-8px);
}

.stat-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.stat-card-desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  padding: var(--space-5xl) 0;
  position: relative;
  background: var(--gradient-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 90%;
  margin-left: auto;
  margin-right: 0;
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--coral-100);
  bottom: -20px;
  left: 6%;
  z-index: -1;
}

.about-image-caption {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: 0;
  margin-top: var(--space-md);
  font-weight: 600;
  z-index: 2;
  position: relative;
}

.about-content .section-title {
  font-size: clamp(2.05rem, 3.8vw, 2.92rem);
}

.about-content .section-title .nowrap-line {
  white-space: nowrap;
}

.about-content .section-title span {
  color: var(--coral-text);
}

.about-tagline {
  font-size: 1.05rem;
  color: var(--teal-800);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.about-tagline strong {
  color: var(--teal-900);
  font-weight: 700;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg) var(--space-md);
  margin-top: var(--space-xl);
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-spring);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
}

.about-stat-item:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: var(--shadow-sm);
}

.about-stat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  padding: 10px;
  transition: all 0.4s var(--ease-spring);
  z-index: 2;
}

.about-stat-item:hover .about-stat-icon {
  transform: scale(1.08) rotate(5deg);
  background: var(--teal-100);
}

.about-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-stat-text {
  z-index: 2;
}

.about-stat-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 4px;
  line-height: 1.25;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  transition: all 0.3s var(--ease-spring);
}

.odo-digit {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 0.65em;
}

.odo-strip {
  display: inline-flex;
  flex-direction: column;
  transition: transform 1.6s cubic-bezier(0.15, 0.85, 0.3, 1);
  transform: translateY(0);
}

.odo-num {
  height: 1em;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat-item:hover .stat-number {
  color: var(--coral-text);
  transform: translateY(-1px) scale(1.03);
}

.about-stat-text p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.4;
  margin: 0;
}

.about-stat-text p.stat-desc-small {
  font-size: 0.72rem;
  line-height: 1.3;
}

.programs-section {
  padding: var(--space-5xl) 0;
  background: var(--gradient-hero);
  position: relative;
}

.programs-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
  line-height: 0;
}

.programs-wave-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

.programs-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
  line-height: 0;
}

.programs-wave-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.programs-section .container {
  position: relative;
  z-index: 3;
}

.programs-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.programs-section .section-title {
  color: var(--white);
  margin-bottom: 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-spring);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.program-card-image {
  width: 100%;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease-out);
}

.program-card:hover .program-card-image img {
  transform: scale(1.06);
}

.program-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.program-card-body h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-800);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-card-body p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin-bottom: 0.35rem;
  flex-grow: 1;
}

.program-card-note {
  display: block;
  font-size: 0.82em;
  color: var(--gray-500);
  margin-top: 4px;
}

.program-card-chevron {
  color: var(--gray-400);
  margin-top: auto;
  transition: all 0.3s var(--ease-out);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
}

.program-card:hover .program-card-chevron {
  transform: translateY(4px);
  color: var(--coral-text);
}

.program-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out);
}

.program-card:hover .program-card-link svg {
  transform: translateX(4px);
}

/* ---------- MENTOR SECTION ---------- */
.mentor-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
}


.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.mentor-content {
  max-width: 550px;
  margin-left: auto;
}

.mentor-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
}

.mentor-content h2 .nowrap-line {
  white-space: nowrap;
}

.mentor-content h2 .highlight-mentor {
  position: relative;
  display: inline-block;
  color: var(--teal-900);
  padding: 0 4px;
  z-index: 1;
}

.mentor-content h2 .highlight-mentor::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 20%;
  height: 36%;
  background: rgba(42, 191, 191, 0.32);
  z-index: -1;
  border-radius: 3px;
}

.mentor-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.mentor-content p strong {
  color: var(--teal-900);
  font-weight: 800;
}

.btn-mentor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #50979E;
  color: var(--white);
  padding: 14px 40px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(80, 151, 158, 0.3);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
}

.btn-mentor:hover {
  transform: translateY(-3px);
  background: #3f7b82;
  box-shadow: 0 6px 20px rgba(80, 151, 158, 0.4);
}

.mentor-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mentor-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  animation: floating-mentor 6s ease-in-out infinite;
}

.mentor-circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 85%;
  background: rgba(42, 191, 191, 0.12);
  border-radius: 50%;
  z-index: 1;
  animation: blob-morph-bg 12s ease-in-out infinite alternate;
}

/* Pulsing rings around the mentor photo */
.mentor-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 85%;
  border-radius: 50%;
  border: 1.5px solid rgba(42, 191, 191, 0.25);
  box-shadow: 0 0 15px rgba(42, 191, 191, 0.1);
  z-index: 1;
  pointer-events: none;
  animation: mentor-pulse 6s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.mentor-pulse-ring.ring-1 {
  animation-delay: 0s;
}

.mentor-pulse-ring.ring-2 {
  animation-delay: 2s;
}

.mentor-pulse-ring.ring-3 {
  animation-delay: 4s;
}

/* Orbiting path and elements */
.mentor-orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 90%;
  border-radius: 50%;
  border: 1px dashed rgba(42, 191, 191, 0.2);
  z-index: 1;
  pointer-events: none;
  animation: mentor-orbit-rotate 35s linear infinite;
  transition: border-color 0.5s ease;
}

.mentor-orbit-path::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 8%;
  width: 7px;
  height: 7px;
  background: var(--coral-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--coral-400);
}

.mentor-orbit-path::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 6px;
  height: 6px;
  background: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal-400);
}

.orbit-star {
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  color: var(--teal-300);
  font-size: 0.85rem;
  text-shadow: 0 0 8px rgba(77, 212, 212, 0.9);
  animation: orbit-star-glow 2s ease-in-out infinite alternate;
}

/* Hover Speed Up & Reactions */
.mentor-image-wrapper:hover .mentor-orbit-path {
  animation-duration: 15s;
  border-color: rgba(42, 191, 191, 0.45);
}

.mentor-image-wrapper:hover .mentor-pulse-ring {
  animation-duration: 3s;
}

.mentor-image-wrapper:hover .mentor-pulse-ring.ring-2 {
  animation-delay: 1s;
}

.mentor-image-wrapper:hover .mentor-pulse-ring.ring-3 {
  animation-delay: 2s;
}

.mentor-image-wrapper img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

/* Decorative floating shapes around photo */
.mentor-floater {
  position: absolute;
  color: var(--teal-400);
  opacity: 0.55;
  font-size: 1.3rem;
  pointer-events: none;
  z-index: 3;
}

.floater-1 {
  top: 8%;
  left: 6%;
  animation: floater-bounce-1 5s ease-in-out infinite;
}

.floater-2 {
  bottom: 12%;
  right: 4%;
  color: var(--coral-400);
  font-size: 1.1rem;
  animation: floater-bounce-2 7s ease-in-out infinite;
}

.floater-3 {
  bottom: 18%;
  left: 4%;
  font-size: 0.9rem;
  animation: floater-bounce-3 6s ease-in-out infinite;
}

@keyframes floating-mentor {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes blob-morph-bg {
  0% {
    border-radius: 50% 50% 50% 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  33% {
    border-radius: 55% 45% 52% 48% / 48% 52% 45% 55%;
    transform: translate(-50%, -50%) scale(1.03) rotate(3deg);
  }
  66% {
    border-radius: 48% 52% 45% 55% / 55% 48% 52% 45%;
    transform: translate(-50%, -50%) scale(0.97) rotate(-3deg);
  }
  100% {
    border-radius: 50% 50% 50% 50%;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes floater-bounce-1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-8px, -12px) rotate(45deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floater-bounce-2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, 8px) rotate(-30deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floater-bounce-3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-4px, 6px) rotate(15deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes mentor-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
  }
  15% {
    opacity: 0.65;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0;
    border-color: rgba(232, 120, 122, 0.05);
    box-shadow: 0 0 25px rgba(232, 120, 122, 0);
  }
}

@keyframes mentor-orbit-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-star-glow {
  0% {
    transform: translateY(-50%) scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
  }
}

/* Interactive hotspots for mentors in group photo */
.mentor-hotspot {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: transparent;
}

.hotspot-tooltip {
  position: absolute;
  bottom: 105%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(13, 143, 143, 0.95);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(13, 143, 143, 0.95) transparent transparent transparent;
}

.mentor-hotspot:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


@media (max-width: 768px) {
  .mentor-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }
  
  .mentor-content {
    max-width: 100%;
    margin-left: 0;
  }
  
  .mentor-image {
    order: -1;
  }
}

/* ---------- BOOK SECTION ---------- */
.book-section {
  padding: var(--space-3xl) 0;
  background: var(--gray-50);
  position: relative;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

.book-image {
  position: relative;
}

.book-feeling-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  padding: var(--space-xl) var(--space-md);
}

.feeling-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: var(--teal-600);
  margin-top: 0;
  margin-bottom: -15px; /* Tarik wrapper buku ke atas agar lebih dekat */
  text-align: center;
  letter-spacing: 0.5px;
}

.book-mockup-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 450px;
  margin: 0 auto;
}

.book-main-img {
  width: 315px;
  z-index: 2;
  animation: float-book 6s ease-in-out infinite;
}

.book-main-img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s var(--ease-spring);
}

.book-main-img:hover img {
  transform: scale(1.05) rotate(-2deg);
}

/* Pulsing Glow Rings behind Book Mockup */
.book-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px solid rgba(42, 191, 191, 0.2);
  box-shadow: 0 0 20px rgba(42, 191, 191, 0.08);
  z-index: 1;
  pointer-events: none;
  animation: book-pulse 5s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.book-pulse-ring.ring-2 {
  animation-delay: 2.5s;
}

.book-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(42, 191, 191, 0.12) 0%, rgba(42, 191, 191, 0) 70%);
  z-index: 1;
  pointer-events: none;
  animation: book-glow 8s ease-in-out infinite alternate;
}

@keyframes float-book {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes book-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
  }
  15% {
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 0;
    border-color: rgba(232, 120, 122, 0.05);
    box-shadow: 0 0 30px rgba(232, 120, 122, 0);
  }
}

@keyframes book-glow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.bubble {
  position: absolute;
  background: var(--dark-teal);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
  max-width: 140px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Chat bubble pointing tails */
.bubble::after {
  content: '';
  position: absolute;
  border-width: 6px;
  border-style: solid;
}

.bubble-left::after {
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-color: transparent transparent transparent var(--dark-teal);
}

.bubble-right::after {
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-color: transparent var(--dark-teal) transparent transparent;
}

.bubble-bottom::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-color: transparent transparent var(--dark-teal) transparent;
}

/* Positioning of individual bubbles */
.bubble-1 {
  top: 15%;
  right: 74%;
}

.bubble-2 {
  top: 42%;
  right: 78%;
}

.bubble-3 {
  top: 67%;
  right: 74%;
}

.bubble-4 {
  top: 15%;
  left: 74%;
}

.bubble-5 {
  top: 42%;
  left: 78%;
}

.bubble-6 {
  top: 67%;
  left: 74%;
}

.bubble-7 {
  bottom: 2%; /* Moved closer to the book image */
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px; /* Reduced to wrap 2 lines cleanly */
  width: 90%;
}

/* feeling-footer removed as it is no longer used */

/* Animations for bubbles */
.bubble {
  animation: float-bubble 4s ease-in-out infinite;
}

.bubble-1 { animation-delay: 0s; }
.bubble-2 { animation-delay: 0.6s; }
.bubble-3 { animation-delay: 1.2s; }
.bubble-4 { animation-delay: 0.3s; }
.bubble-5 { animation-delay: 0.9s; }
.bubble-6 { animation-delay: 1.5s; }

.bubble-7 {
  animation: float-bubble-centered 4s ease-in-out infinite;
  animation-delay: 1.8s;
}

@keyframes float-bubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes float-bubble-centered {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 500px) {
  .book-mockup-wrapper {
    height: 420px;
    max-width: 100%;
  }
  .book-main-img {
    width: 225px;
  }
  .book-pulse-ring {
    width: 240px;
    height: 240px;
  }
  .book-glow-bg {
    width: 280px;
    height: 280px;
  }
  .bubble {
    font-size: 0.68rem;
    padding: 6px 10px;
    max-width: 95px;
    border-radius: 12px;
  }
  .bubble-left {
    right: 73%;
  }
  .bubble-right {
    left: 73%;
  }
  .bubble-2 {
    right: 76%;
  }
  .bubble-5 {
    left: 76%;
  }
  .bubble-7 {
    max-width: 180px;
  }
}

.book-content h3 {
  font-size: 1.88rem;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.book-content h3 span {
  color: var(--coral-text);
}

.book-content .book-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--teal-600);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  margin-left: var(--space-md);
  padding: 6px 0 6px var(--space-lg);
  border-left: 3px solid var(--coral-text);
}

.book-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px; /* Adjusted spacing above book stats numbers */
}

.book-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-lg); /* Reduced spacing above Beli Buku Sekarang button */
}

.book-stat {
  text-align: center;
  cursor: pointer;
}

.book-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-600);
  transition: transform 0.3s var(--ease-spring);
  display: inline-block;
  line-height: 1; /* Tighten vertical spacing of numbers */
  margin-bottom: 2px; /* Small gap between number and label */
}

.book-stat .stat-number {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  transition: all 0.3s var(--ease-spring);
}

.book-stat:hover .number {
  transform: translateY(-4px);
}

.book-stat:hover .stat-number {
  color: var(--coral-text);
  text-shadow: 0 4px 15px rgba(204, 59, 62, 0.25);
}

.book-stat .label {
  font-size: 0.82rem;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.book-stat:hover .label {
  color: var(--teal-700);
}

.btn-coral {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gradient-coral);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow-coral);
  transition: all 0.3s var(--ease-spring);
}

.btn-coral:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(232, 120, 122, 0.4);
}

.book-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-book-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--white);
  color: var(--teal-900);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(13, 143, 143, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  text-decoration: none;
}

.btn-book-preview:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--white);
  border-color: var(--coral-400);
  color: var(--coral-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials-section {
  padding: var(--space-2xl) 0; /* Reduced top/bottom padding */
  position: relative;
  background-color: var(--teal-50);
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(13, 143, 143, 0.05)' stroke-width='1'/%3E%3Ccircle cx='0' cy='0' r='28' fill='none' stroke='rgba(13, 143, 143, 0.05)' stroke-width='1'/%3E%3Ccircle cx='60' cy='0' r='28' fill='none' stroke='rgba(13, 143, 143, 0.05)' stroke-width='1'/%3E%3Ccircle cx='0' cy='60' r='28' fill='none' stroke='rgba(13, 143, 143, 0.05)' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='28' fill='none' stroke='rgba(13, 143, 143, 0.05)' stroke-width='1'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--gray-50) 0%, var(--teal-50) 100%);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 0;
}

.testimonials-header .section-title {
  margin-bottom: 8px; /* Reduced from 24px to pull subtitle closer to title */
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
  margin-bottom: var(--space-2xl); /* Added more space below subtitle to push cards grid down */
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  padding: 20px; /* Reduced padding for cleaner card space */
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--teal-100);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px; /* Tightened gap below stars */
  color: #f4b740;
  font-size: 0.8rem;
}

.testimonial-text {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: var(--space-sm); /* Brought author closer to quote */
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: auto;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
}

.testimonial-info h5 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-teal);
}

.testimonial-info p {
  font-size: 0.72rem;
  color: var(--gray-400);
}

/* Testimonial Sub-Slider Card (Right Card) */
.testimonial-card.slider-card::before {
  display: none; /* Hide double quote icon to free space for nav arrows */
}

.testimonial-slider-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.testimonial-slider-nav .nav-btn {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-600);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-slider-nav .nav-btn:hover {
  background: var(--coral-text);
  border-color: var(--coral-text);
  color: var(--white);
  transform: scale(1.1);
}

.testimonial-slides {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-grow: 1;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ---------- SOCIAL SECTION ---------- */
.social-section {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.social-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.social-content .section-title span {
  color: var(--coral-text);
}

.social-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.social-platform {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.social-platform:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}

.social-platform-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--teal-50);
  color: var(--teal-600);
  transition: all 0.3s ease;
}

.social-platform:hover .social-platform-icon {
  background: var(--teal-500);
  color: var(--white);
}

.social-platform-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-teal);
  margin: 0;
}

/* ---------- INSTAGRAM EMBED CONTAINER ---------- */
.instagram-embed-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.instagram-widget-preview {
  padding: var(--space-md);
}

.widget-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.widget-avatar {
  height: 65px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}

.widget-profile-info {
  flex-grow: 1;
}

.widget-profile-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.widget-profile-info p {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0;
}

.widget-follow-btn {
  background: var(--teal-500);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.widget-follow-btn:hover {
  background: var(--teal-600);
}

.widget-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: var(--space-xs) 0;
  margin-bottom: var(--space-md);
}

.stat-col {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-align: center;
  flex: 1;
}

.stat-col strong {
  color: var(--gray-900);
  display: block;
}

.highlight-followers {
  color: #e11d48 !important; /* Prominent red color */
}

.bio-category {
  color: var(--gray-500);
}

.widget-bio {
  font-size: 0.78rem;
  color: var(--gray-700);
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.widget-bio p {
  margin: 0;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.widget-post {
  display: block;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0; /* Real Instagram squares */
}

.widget-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15); /* Cropping out the baked-in rounded corners of the image files */
  transition: transform 0.3s ease;
}

.widget-post:hover img {
  transform: scale(1.2); /* Zoom slightly on hover */
}

.post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.widget-post:hover .post-overlay {
  opacity: 1;
}

.post-overlay .likes {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.social-image {
  position: relative;
}

.social-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ---------- FOOTER ---------- */
.footer-wave-wrapper {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: transparent;
  margin-top: var(--space-2xl);
}

.footer-waves {
  position: relative;
  width: 100%;
  height: 60px;
  min-height: 60px;
  max-height: 100px;
  display: block;
}

.parallax-footer > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax-footer > use:nth-child(1) {
  fill: rgba(13, 143, 143, 0.4);
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax-footer > use:nth-child(2) {
  fill: rgba(13, 143, 143, 0.6);
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax-footer > use:nth-child(3) {
  fill: rgba(13, 143, 143, 0.8);
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax-footer > use:nth-child(4) {
  fill: var(--teal-600);
  animation-delay: -5s;
  animation-duration: 20s;
}

.footer {
  background: var(--teal-600);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-sm) 0 var(--space-md);
  position: relative;
  margin-top: -2px; /* Close any sub-pixel gaps between wave and footer body */
}

.footer-new-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4xl);
  margin-bottom: var(--space-lg);
  align-items: center;
}

.footer-left-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  margin: 0;
}

.footer-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-md);
  align-items: stretch;
}

.btn-footer-pill {
  background: var(--white);
  color: var(--teal-900);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all 0.3s var(--ease-spring);
  height: 100%;
  min-height: 48px;
  box-sizing: border-box;
  line-height: 1.25;
}

.btn-footer-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(255, 255, 255, 0.25);
  background: var(--teal-50);
}

.btn-footer-pill:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-footer-pill.disabled-btn {
  pointer-events: none;
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.9);
}

.coming-soon-badge {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.1;
  margin-top: 1px;
}

.btn-footer-pill.btn-pill-full {
  grid-column: 1 / -1;
  max-width: 240px;
  justify-self: center;
  width: 100%;
}



/* Sisi Kanan: Logo bulat & Deskripsi */
.footer-right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  align-self: end;
  gap: var(--space-sm);
  text-align: center;
}

.footer-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 340px;
  margin: 0;
  font-style: italic;
}

.footer-brand-desc em {
  font-style: normal;
  font-weight: 600;
}

.footer-brand-desc strong {
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  font-size: 0.82rem;
  margin: 0;
}



/* ---------- SCROLL REVEAL ANIMATION ---------- */
/* Reveal — only hidden when JS adds .will-animate (progressive enhancement) */
.reveal.will-animate {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.will-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1.will-animate { transition-delay: 0.1s; }
.reveal-delay-2.will-animate { transition-delay: 0.2s; }
.reveal-delay-3.will-animate { transition-delay: 0.3s; }
.reveal-delay-4.will-animate { transition-delay: 0.4s; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow-coral);
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto var(--space-2xl);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image,
  .hero-bg-logo {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .book-grid,
  .social-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-features {
    align-items: center;
  }

  .about-feature {
    max-width: 500px;
  }

  .section-subtitle {
    margin: 0 auto;
  }

  .book-content .book-quote {
    text-align: left;
  }

  .book-stats {
    justify-content: center;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-new-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
  }


  .social-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(50, 87, 89, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .navbar.menu-open .nav-brand-text,
  .nav-links.active .nav-brand-text {
    color: var(--white) !important;
  }

  .nav-links a,
  .nav-links.active a:not(.nav-cta) {
    font-size: 1.2rem;
    color: var(--white) !important;
  }

  .nav-toggle.active span {
    background: var(--white) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .hero-bullets-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hero-chip {
    white-space: normal;
  }

  .hero-float-card {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-card {
    padding: var(--space-lg);
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .footer-new-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .footer-left-col {
    align-items: center;
  }

  .footer-title {
    text-align: center;
    font-size: 1.35rem;
    white-space: nowrap;
    margin-top: 50px;
  }

  .footer-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    width: 100%;
    max-width: 420px;
    gap: 8px;
    align-items: stretch;
  }

  .btn-footer-pill {
    font-size: 0.72rem;
    padding: 6px 8px;
    height: 100%;
    min-height: 42px;
  }

  .footer-logo {
    width: 85px;
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
  }
  .program-card {
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-lg);
  }
  .program-card-image {
    height: 110px;
    margin-bottom: var(--space-sm);
  }
  .program-card-body h3 {
    font-size: 0.8rem;
    min-height: auto;
    margin-bottom: var(--space-xs);
  }
  .program-card-body p {
    font-size: 0.7rem;
    line-height: 1.35;
    margin-bottom: var(--space-xs);
  }
  .program-card-chevron {
    margin-top: var(--space-xs);
    padding-top: 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 35px;
  }

  .hero-title,
  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    line-height: 1.25;
  }

  .hero-content .hero-badge,
  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 14px;
    gap: 6px;
    white-space: nowrap;
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .hero-chat-sequence {
    gap: 6px;
    margin: 4px auto 16px;
    min-height: auto;
  }

  .chat-bubble-chip {
    padding: 5px 11px;
    border-radius: 14px 14px 14px 4px;
  }

  .chat-avatar {
    font-size: 0.78rem;
    width: 19px;
    height: 19px;
  }

  .chat-text {
    font-size: 0.75rem;
  }

  .hero-chips-minimal {
    gap: 8px;
  }

  .hero-chips-minimal .hero-chip {
    font-size: 0.78rem;
    padding: 6px 14px;
  }
  .btn-hero-pill {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .hotspot-tooltip {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
  .book-content h3 {
    font-size: 1.58rem;
    line-height: 1.25;
  }
  .book-content .book-quote {
    font-size: 0.87rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .book-content p {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .book-stats {
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: 16px;
  }
  .book-stat .number {
    font-size: 1.3rem;
  }
  .book-stat .label {
    font-size: 0.75rem;
  }
  .book-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .book-content #book-cta,
  .book-content #book-preview-cta,
  .book-content .btn-book-preview {
    width: auto !important;
    max-width: 240px;
    margin: 0 auto;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .book-grid {
    gap: var(--space-md);
  }
  .book-feeling-container {
    padding-bottom: var(--space-md);
  }
  .book-content .section-label {
    display: none;
  }

  /* About section photo and 2x2 grid styling for mobile */
  .about-grid {
    gap: var(--space-md);
  }
  .about-content {
    padding: 0 12px;
    text-align: center;
  }
  .about-content .section-title {
    font-size: clamp(1.68rem, 6.2vw, 2.2rem);
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .about-content .section-title .nowrap-line {
    white-space: normal;
  }
  .about-content .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-image {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    margin: 16px auto 0;
  }
  .about-image-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1535 / 1476;
    border-radius: var(--radius-lg);
  }
  .about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-accent {
    width: 140px;
    height: 140px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }
  .about-image-caption {
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    margin: 10px auto 0;
    position: relative;
    z-index: 2;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .about-stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md) var(--space-xs);
  }
  .about-stat-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 6px;
    margin-bottom: var(--space-sm);
  }
  .about-stat-text h4 {
    font-size: 0.9rem;
  }
  .about-stat-text p {
    font-size: 0.7rem;
    line-height: 1.35;
  }
  .stat-number {
    font-size: 1.05rem;
  }

  /* Responsive line breaks and mentor text sizing */
  br.mobile-only {
    display: inline;
  }
  br.desktop-only {
    display: none;
  }
  .mentor-content p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* Section Padding Reductions for App-like Feel */
  .hero .container {
    padding-bottom: 70px;
  }
  .about-section {
    padding: 3.5rem 0;
  }
  .programs-section {
    padding: 3.5rem 0;
  }
  .programs-wave-top,
  .programs-wave-bottom {
    height: 40px;
  }
  .mentor-section {
    padding: 3rem 0;
  }
  .book-section {
    padding: 3rem 0;
  }
  .testimonials-section {
    padding: 2rem 0;
  }
  .testimonial-slider-nav {
    top: 16px;
    right: 16px;
    gap: 5px;
  }
  .testimonial-slider-nav .nav-btn {
    width: 24px;
    height: 24px;
  }
  .testimonial-slider-nav .nav-btn svg {
    width: 12px;
    height: 12px;
  }
  .social-section {
    padding: 2.5rem 0;
  }
  .footer-wave-wrapper {
    margin-top: var(--space-md);
  }
  .footer-waves {
    height: 40px;
    min-height: 40px;
  }

  /* Component margin reductions for tighter vertical rhythm */
  .section-title {
    margin-bottom: var(--space-md) !important;
  }
  .section-label {
    margin-bottom: var(--space-sm) !important;
  }
  .hero-divider {
    margin: var(--space-sm) 0 var(--space-md);
  }
  .hero-bullets {
    margin-bottom: var(--space-lg);
  }
  .book-content .book-quote {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
    margin-left: 0;
    padding-left: var(--space-md);
  }

  /* Social platforms mobile overrides: 2x2 grid layout */
  .social-grid {
    gap: 12px;
  }
  .social-content {
    padding: 0 12px;
    text-align: center;
  }
  .social-content .section-title {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
    margin-bottom: 12px;
  }
  .social-content .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 95%;
    margin: 0 auto 16px;
  }
  .social-platforms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    margin-bottom: 12px;
  }
  .social-platform {
    padding: 10px 10px;
    border-radius: var(--radius-md);
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
  }
  .social-platform-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: var(--radius-sm);
  }
  .social-platform-icon svg {
    width: 16px;
    height: 16px;
  }
  .social-platform-info {
    display: block;
    min-width: 0;
    overflow: hidden;
  }
  .social-platform-info h4 {
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .social-platform:hover {
    transform: translateY(-2px);
  }

  /* Instagram Widget Mobile Overrides */
  .social-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 12px;
  }
  .instagram-embed-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
  }
  .instagram-widget-preview {
    padding: 14px 16px;
  }
  .widget-avatar {
    display: none !important;
  }
  .widget-profile-info {
    text-align: left;
  }
  .widget-profile-info h5 {
    font-size: 0.92rem;
  }
  .widget-profile-info p {
    font-size: 0.72rem;
  }
  .widget-follow-btn {
    flex-shrink: 0;
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  .stat-col {
    font-size: 0.7rem;
  }
  .widget-bio {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  /* Navbar Active Mobile menu stacking context fix */
  .navbar.menu-open {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    transition: none !important;
  }

  /* Utility classes */
  .hide-on-mobile {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-coral {
    width: 100%;
    justify-content: center;
  }

  .footer-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    max-width: 310px;
    gap: 6px;
    margin: 0 auto;
    align-items: stretch;
  }

  .footer-buttons-grid .btn-footer-pill {
    font-size: 0.68rem;
    padding: 5px 6px;
    height: 100%;
    min-height: 38px;
  }

  .footer-logo {
    width: 70px;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .hero-chat-sequence {
    gap: 5px;
    margin: 2px auto 12px;
  }

  .chat-bubble-chip {
    padding: 4px 9px;
    border-radius: 12px 12px 12px 4px;
  }

  .chat-avatar {
    font-size: 0.72rem;
    width: 17px;
    height: 17px;
  }

  .chat-text {
    font-size: 0.7rem;
  }

  .hero-content .hero-badge,
  .hero-badge {
    font-size: 0.64rem;
    padding: 4px 11px;
    gap: 4px;
    white-space: nowrap;
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .hero {
    padding-bottom: 20px;
  }

  .about-content {
    padding: 0 10px;
  }

  .about-image {
    padding: 0 10px;
  }

  .about-content .section-title {
    font-size: 1.62rem;
    line-height: 1.25;
  }

  .about-content .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .social-content,
  .social-image {
    padding: 0 10px;
  }

  .social-platforms {
    gap: 6px;
  }

  .social-platform {
    padding: 8px 6px;
    gap: 6px;
  }

  .social-platform-info h4 {
    font-size: 0.7rem;
  }

  .stat-col {
    font-size: 0.65rem;
  }

  .testimonial-slider-nav {
    top: 14px;
    right: 14px;
    gap: 4px;
  }

  .testimonial-slider-nav .nav-btn {
    width: 22px;
    height: 22px;
  }

  .testimonial-slider-nav .nav-btn svg {
    width: 10px;
    height: 10px;
  }
}

/* ============================================
   Halaman Tentang Kami (About Us Page)
   ============================================ */

/* About Hero */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  background-image: url('assets/images/hero-bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
  padding-top: var(--nav-height);
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 78, 89, 0.45) 0%, rgba(8, 78, 89, 0.85) 100%);
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: var(--space-3xl);
  padding-bottom: 80px;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.about-hero .hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--teal-50);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-hero .hero-wave {
  bottom: -1px;
}

/* Visi Misi Section */
.visi-misi-section {
  padding: var(--space-5xl) 0;
  background: var(--gray-50);
  position: relative;
}

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-xl);
}

.visi-card, .misi-card {
  background: var(--white);
  padding: var(--space-3xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(42, 191, 191, 0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.visi-card:hover, .misi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.visi-card h3, .misi-card h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--teal-700);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.visi-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.misi-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.misi-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.misi-num {
  background: var(--teal-50);
  color: var(--teal-700);
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.misi-text {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.value-card {
  background: var(--gray-50);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
  text-align: center;
}

.value-card:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-200);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-50);
  color: var(--teal-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl) auto;
  font-size: 1.8rem;
  transition: all 0.4s var(--ease-out);
}

.value-card:hover .value-icon {
  background: var(--teal-500);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
  color: var(--dark-teal);
}

.value-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
  padding: var(--space-5xl) 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.timeline-container {
  position: relative;
  max-width: 850px;
  margin: var(--space-4xl) auto 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--teal-100);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 var(--space-2xl) var(--space-3xl) var(--space-2xl);
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 4px solid var(--teal-500);
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.3s var(--ease-spring), background-color 0.3s var(--ease-out);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  background-color: var(--coral-400);
  border-color: var(--coral-500);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-date {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--coral-text);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.timeline-content {
  background: var(--white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  max-width: 100%;
  border: 1px solid rgba(42, 191, 191, 0.05);
  text-align: left;
  transition: all 0.3s var(--ease-out);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(42, 191, 191, 0.15);
}

.timeline-content h4 {
  font-size: 1.05rem;
  color: var(--dark-teal);
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* About CTA Section */
.about-cta-section {
  padding: var(--space-5xl) 0;
  background: var(--gradient-hero);
  background-image: url('assets/images/hero-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55, 191, 166, 0.9) 0%, rgba(8, 78, 89, 0.95) 100%);
  z-index: 1;
}

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.about-cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.about-cta-content p {
  color: var(--teal-50);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.about-cta-buttons .btn-hero-pill.btn-secondary-pill {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.about-cta-buttons .btn-hero-pill.btn-secondary-pill:hover {
  background: var(--white);
  color: var(--teal-900);
}

/* Media Queries for Tentang Kami page */
@media (max-width: 768px) {
  .visi-misi-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Timeline Mobile Responsive */
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: var(--space-3xl);
    padding-right: 0;
    padding-bottom: var(--space-2xl);
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-dot {
    left: 12px !important;
    right: auto !important;
  }

  .timeline-content {
    max-width: 100%;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .about-cta-buttons .btn-hero-pill {
    width: 100%;
    max-width: 320px;
  }
}

/* ---------- Founders Section ---------- */
.founders-section {
  padding: var(--space-5xl) 0;
  background: var(--white);
  position: relative;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-xl);
}

.founder-card {
  display: flex;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-200);
}

.founder-image-wrapper {
  width: 40%;
  position: relative;
  overflow: hidden;
  background: var(--teal-50);
}

.founder-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}

.founder-card:hover .founder-image-wrapper img {
  transform: scale(1.05);
}

.founder-info {
  width: 60%;
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
}

.founder-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xs);
}

.founder-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: var(--space-md);
}

.founder-info p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.founder-socials {
  margin-top: auto;
  display: flex;
  gap: var(--space-md);
}

.founder-socials a {
  color: var(--gray-400);
  transition: color 0.3s var(--ease-out);
}

.founder-socials a:hover {
  color: var(--teal-500);
}

/* ---------- Achievements Section ---------- */
.achievements-section {
  padding: var(--space-5xl) 0;
  background: var(--white);
  position: relative;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.achieve-card {
  background: var(--gray-50);
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achieve-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-300);
}

.achieve-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  transition: transform 0.4s var(--ease-spring);
}

.achieve-card:hover .achieve-icon {
  transform: scale(1.2) rotate(5deg);
}

.achieve-num {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--teal-700);
  margin-bottom: var(--space-xs);
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.achieve-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: var(--space-sm);
}

.achieve-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---------- Partners Section ---------- */
.partners-section {
  padding: var(--space-5xl) 0;
  background: var(--gray-50);
  position: relative;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  align-items: center;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(42, 191, 191, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}

.partner-logo-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s var(--ease-out);
}

.partner-card:hover .partner-logo-wrapper {
  color: var(--teal-700);
}

.partner-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gray-400);
  transition: stroke 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.partner-card:hover .partner-icon {
  stroke: var(--teal-500);
  transform: scale(1.1);
}

.partner-name {
  white-space: nowrap;
}

/* Responsive updates for new sections */
@media (max-width: 992px) {
  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .founder-card {
    flex-direction: column;
  }
  .founder-image-wrapper {
    width: 100%;
    height: 280px;
  }
  .founder-info {
    width: 100%;
    padding: var(--space-xl);
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONSULTATION SUBPAGE (RUANG CERITA) STYLES
   ========================================================================== */

/* Hero Section */
.consult-hero {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-5xl) 0;
  background: var(--gradient-section);
  position: relative;
  overflow: hidden;
}

.consult-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.consult-hero-content {
  position: relative;
  z-index: 2;
}

.consult-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.consult-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--dark-teal);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.consult-hero-content h1 span {
  color: var(--coral-text);
  position: relative;
}

.consult-hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--coral-100);
  z-index: -1;
  border-radius: 4px;
}

.consult-hero-content .hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.consult-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.consult-hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.consult-image-wrapper {
  position: relative;
  max-width: 440px;
  width: 100%;
}

.consult-image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--white);
  transition: transform 0.6s var(--ease-out);
}

.consult-image-wrapper:hover img {
  transform: translateY(-8px) rotate(1deg);
}

.consult-image-wrapper .image-accent {
  position: absolute;
  z-index: -1;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--coral-100);
  border-radius: var(--radius-xl);
  opacity: 0.5;
}

/* Empathy / Problem Section */
.empathy-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.empathy-block {
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 100%);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.empathy-quote-icon {
  font-size: 3rem;
  color: var(--coral-300);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.empathy-block p {
  font-size: 1.25rem;
  color: var(--dark-teal);
  line-height: 1.8;
  font-weight: 500;
  position: relative;
}

/* Benefits Section */
.benefits-section {
  padding: var(--space-5xl) 0;
  background: var(--gray-50);
}

.consult-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 191, 191, 0.05);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-200);
}

.benefit-icon-box {
  width: 64px;
  height: 64px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--teal-600);
  transition: all 0.4s var(--ease-spring);
}

.benefit-card:hover .benefit-icon-box {
  background: var(--teal-600);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.benefit-icon-box svg {
  width: 32px;
  height: 32px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Topics Section */
.topics-section {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.topic-card {
  display: flex;
  gap: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border-left: 5px solid var(--coral-400);
  transition: all 0.3s var(--ease-out);
}

.topic-card:hover {
  transform: translateX(6px);
  background: var(--coral-50);
  border-left-color: var(--coral-600);
}

.topic-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--coral-text);
}

.topic-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--dark-teal);
}

.topic-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Peek Section */
.peek-section {
  padding: var(--space-5xl) 0;
  background: var(--gray-50);
}

.peek-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.peek-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.peek-polaroid {
  background: var(--white);
  padding: var(--space-md) var(--space-md) var(--space-xl) var(--space-md);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  width: 100%;
  transform: rotate(-1.5deg);
  transition: transform 0.4s var(--ease-out);
}

.peek-polaroid:hover {
  transform: rotate(0deg) translateY(-8px);
}

.peek-polaroid img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  border: 1px solid var(--gray-200);
}

.peek-polaroid-caption {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 1.2rem;
  margin-top: var(--space-md);
  color: var(--gray-700);
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.testimonials-masonry {
  column-count: 3;
  column-gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.testimonial-bubble {
  break-inside: avoid;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.testimonial-bubble:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--teal-50);
  border-color: var(--teal-100);
}

.testimonial-bubble p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar-initials {
  width: 36px;
  height: 36px;
  background: var(--coral-200);
  color: var(--coral-900);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.testimonial-bubble:hover .testimonial-avatar-initials {
  background: var(--teal-500);
  color: var(--white);
}

.author-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-teal);
  line-height: 1.2;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Mentors Page Section */
.mentors-page-section {
  padding: var(--space-5xl) 0;
  background: var(--gray-50);
}

.mentors-page-intro {
  max-width: 800px;
  margin: 0 auto var(--space-3xl) auto;
  text-align: center;
}

.mentors-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.mentor-page-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 191, 191, 0.05);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.mentor-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-200);
}

.mentor-page-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* square ratio */
  background: var(--teal-50);
}

.mentor-page-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.mentor-page-card:hover .mentor-page-img-wrapper img {
  transform: scale(1.05);
}

.mentor-page-card-info {
  padding: var(--space-lg);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mentor-page-card-info span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral-text);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.mentor-page-card-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-teal);
}

/* FAQ Accordion Section */
.faq-section {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: var(--space-3xl) auto 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--space-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-teal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s var(--ease-out);
}

.faq-question:hover {
  color: var(--coral-text);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--teal-500);
  transition: transform 0.4s var(--ease-spring);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-content {
  padding-bottom: var(--space-lg);
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Active FAQ states */
.faq-item.active .faq-question {
  color: var(--coral-text);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--coral-text);
}

/* CTA Section */
.consult-cta-section {
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--dark-teal) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.consult-cta-section .container {
  position: relative;
  z-index: 2;
}

.consult-cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.consult-cta-section p {
  font-size: 1.1rem;
  color: var(--teal-100);
  max-width: 600px;
  margin: 0 auto var(--space-2xl) auto;
  line-height: 1.7;
}

.consult-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: #25d366;
  color: var(--white);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s var(--ease-spring);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  background: #20ba5a;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-cta-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive consultation subpage layout updates */
@media (max-width: 992px) {
  .consult-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }
  .consult-hero-buttons {
    justify-content: center;
  }
  .consult-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .topics-grid {
    grid-template-columns: 1fr;
  }
  .peek-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }
  .peek-image-container {
    order: 2;
  }
  .testimonials-masonry {
    column-count: 2;
  }
  .mentors-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .consult-benefit-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-masonry {
    column-count: 1;
  }
  .mentors-page-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ============================================
   REKAMAN KELAS PAGE STYLES
   ============================================ */

/* Hero Section */
.recording-hero {
  position: relative;
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: var(--gradient-section);
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.bg-glow-1 {
  width: 350px;
  height: 350px;
  background: var(--teal-400);
  top: -50px;
  right: -50px;
}
.bg-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--coral-400);
  bottom: -100px;
  left: -100px;
}
.recording-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.recording-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.rec-stat-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(42, 191, 191, 0.2);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rec-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.rec-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--teal-600);
  line-height: 1.1;
}
.rec-stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Controls Section (Search, Filter, Sort) */
.recording-controls-section {
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}
.controls-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(42, 191, 191, 0.15);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.search-box {
  position: relative;
  width: 100%;
}
.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.6;
}
.search-box input {
  width: 100%;
  padding: 0.9rem 2.8rem 0.9rem 3.2rem;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-800);
  transition: all 0.3s ease;
  font-family: inherit;
}
.search-box input:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42, 191, 191, 0.15);
}
.search-clear {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--gray-400);
  cursor: pointer;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.filter-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  background: var(--teal-50);
  color: var(--teal-700);
  border-color: var(--teal-200);
}
.filter-btn.active {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-600);
  box-shadow: 0 4px 12px rgba(13, 143, 143, 0.3);
}
.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 600;
  margin-left: auto;
}
.sort-select {
  padding: 0.45rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  outline: none;
}

/* Catalog Section */
.recording-catalog-section {
  padding: 2rem 0 5rem;
}
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.catalog-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
}
.catalog-info-tag {
  background: var(--teal-50);
  color: var(--teal-700);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--teal-200);
}

/* Grid & Cards */
.recording-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
.recording-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.recording-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(42, 191, 191, 0.4);
}
.card-thumb-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: var(--gray-900);
}
.card-thumb-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.recording-card:hover .card-thumb-wrap img {
  transform: scale(1.06);
}
.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.badge-coral {
  background: var(--coral-500);
  color: var(--white);
}
.badge-teal {
  background: var(--teal-600);
  color: var(--white);
}
.badge-purple {
  background: #7c3aed;
  color: var(--white);
}
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 30, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  transition: all 0.3s ease;
  z-index: 3;
}
.recording-card:hover .play-overlay {
  opacity: 1;
  background: rgba(15, 23, 30, 0.45);
}
.play-btn-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.recording-card:hover .play-btn-circle {
  transform: scale(1.15);
  background: var(--coral-500);
  color: var(--white);
}
.card-duration-tag {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.speaker-tag {
  color: var(--teal-700);
}
.rating-tag {
  color: #d97706;
}
.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.card-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.card-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  font-size: 0.82rem;
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.card-highlights li {
  line-height: 1.3;
}
.card-footer-box {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.price-box {
  display: flex;
  flex-direction: column;
}
.original-price {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.current-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal-700);
}
.card-actions {
  display: flex;
  gap: 0.4rem;
}
.btn-secondary-card {
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-secondary-card:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}
.btn-primary-card {
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--teal-600);
  color: var(--white);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.btn-primary-card:hover {
  background: var(--teal-700);
  box-shadow: 0 4px 12px rgba(13, 143, 143, 0.3);
}

/* No Results */
.no-results-box {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 20px;
  border: 1px dashed var(--gray-300);
  margin-top: 1.5rem;
}
.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

/* Bundling Section */
.recording-bundle-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #e6f7f7 0%, #f8fafb 100%);
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.bundle-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.25rem;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}
.bundle-featured {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-xl);
}
.bundle-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--coral-500);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-gold {
  background: #d97706;
}
.bundle-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.bundle-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.bundle-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.bundle-old-price {
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.bundle-new-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal-700);
}
.bundle-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  flex-grow: 1;
}

/* Benefits Section */
.recording-benefits-section {
  padding: 5rem 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.benefit-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.benefit-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* FAQ Accordion */
.recording-faq-section {
  padding: 4rem 0 6rem;
  background: var(--gray-50);
}
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--teal-600);
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  max-height: 300px;
}

/* Modal Styling */
.class-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 30, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.class-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.glass-modal {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 2rem;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.class-modal-backdrop.active .glass-modal {
  transform: scale(1);
}
.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  font-size: 1.5rem;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-close-btn:hover {
  background: var(--coral-500);
  color: var(--white);
}
.modal-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0.5rem 0 0.25rem 0;
}
.modal-meta {
  font-size: 0.85rem;
  color: var(--teal-700);
  font-weight: 600;
  margin-bottom: 1rem;
}
.modal-preview-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.25rem;
}
.curriculum-list {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.curriculum-list li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.modal-bonus-box {
  background: var(--teal-50);
  border-left: 4px solid var(--teal-500);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.modal-bonus-box h4 {
  font-size: 0.92rem;
  color: var(--teal-800);
  margin-bottom: 0.4rem;
}
.modal-bonus-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--teal-900);
}
.modal-footer {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
  margin-top: 1rem;
}

/* Button Coral Hero Extra */
.btn-coral-hero {
  background: var(--gradient-coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(229, 107, 109, 0.35);
}
.btn-coral-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 107, 109, 0.45);
}

/* Responsive Media Queries for Rekaman Kelas */
@media (max-width: 1024px) {
  .recording-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recording-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .recording-grid {
    grid-template-columns: 1fr;
  }
  .bundle-grid {
    grid-template-columns: 1fr;
  }
  .controls-wrapper {
    padding: 1.25rem;
  }
  .sort-wrapper {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
  .sort-select {
    flex-grow: 1;
  }
}

@media (max-width: 480px) {
  .recording-stats-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .filter-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    width: 100%;
  }
  .filter-btn {
    flex-shrink: 0;
  }
}





/* ============================================
   #PreMarriageTalk Book (pmtbook) Custom Styles
   ============================================ */

.pmtbook-page {
  background-color: var(--gray-50);
  color: var(--gray-800);
}

/* --- PMTBook Custom Navbar Styling --- */
.pmtbook-page .navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(8, 78, 89, 0.08);
  box-shadow: 0 2px 14px rgba(8, 78, 89, 0.04);
  transition: all 0.35s ease;
}

.pmtbook-page .navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(8, 78, 89, 0.12);
  box-shadow: 0 4px 20px rgba(8, 78, 89, 0.08);
}

.pmtbook-page .nav-brand-text {
  color: var(--dark-teal) !important;
}

.pmtbook-page .brand-hash {
  color: var(--teal-600);
}

.pmtbook-page .nav-links {
  gap: 1.75rem;
}

.pmtbook-page .nav-links a:not(.nav-cta) {
  color: var(--gray-700) !important;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.pmtbook-page .nav-links a:not(.nav-cta)::after {
  background: var(--coral-500) !important;
}

.pmtbook-page .nav-links a:not(.nav-cta):hover,
.pmtbook-page .nav-links a:not(.nav-cta).active {
  color: var(--coral-500) !important;
}

.pmtbook-page .nav-toggle span {
  background: var(--dark-teal) !important;
}

.pmtbook-page .nav-toggle.active span {
  background: #ffffff !important;
}

/* PMTBook Mobile Nav Links */
@media (max-width: 768px) {
  .pmtbook-page .nav-links {
    background: rgba(50, 87, 89, 0.98);
  }
  .pmtbook-page .nav-links a:not(.nav-cta) {
    color: #ffffff !important;
    font-size: 1.15rem;
  }
  .pmtbook-page .nav-links a:not(.nav-cta):hover,
  .pmtbook-page .nav-links a:not(.nav-cta).active {
    color: var(--coral-300) !important;
  }
  .pmtbook-page .nav-links a:not(.nav-cta)::after {
    background: var(--coral-400) !important;
  }
}

/* --- PMTBook Hero --- */
.pmtbook-hero {
  position: relative;
  padding: 8rem 0 4.5rem;
  background: linear-gradient(180deg, #eaf7f7 0%, #f8fafb 100%);
  overflow: hidden;
  text-align: center;
}

.pmtbook-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(13, 143, 143, 0.08);
  border: 1px solid rgba(13, 143, 143, 0.2);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 1.5rem;
}

.pmtbook-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.pmtbook-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Floating Emotional Chips Grid */
.pmtbook-chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.pmtbook-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  padding: 0.75rem 1.25rem;
  border-radius: 40px;
  box-shadow: 0 4px 14px rgba(8, 78, 89, 0.04);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.3s ease;
}

.pmtbook-chip:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--teal-400);
  color: var(--teal-800);
  box-shadow: 0 8px 20px rgba(13, 143, 143, 0.12);
}

.pmtbook-chip-highlight {
  background: var(--teal-600);
  color: #ffffff;
  border-color: var(--teal-600);
}
.pmtbook-chip-highlight:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #ffffff;
}

.pmtbook-hero-action {
  margin-top: 1rem;
}

.pmtbook-hero .btn-hero-pill.btn-primary-hero {
  background: var(--teal-600);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(13, 143, 143, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pmtbook-hero .btn-hero-pill.btn-primary-hero:hover {
  background: var(--teal-700);
  color: #ffffff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(13, 143, 143, 0.45);
}

.pmtbook-recommend-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-700);
  margin-bottom: 1.25rem;
}

/* --- Book Overview Section --- */
.pmtbook-overview-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.pmtbook-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.pmtbook-mockup-card {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #f0fbfb 0%, #e6f5f5 100%);
  border-radius: 28px;
  border: 1px solid #d2eded;
  box-shadow: 0 12px 36px rgba(8, 78, 89, 0.08);
}

.pmtbook-main-img {
  max-width: 85%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.16));
  transition: transform 0.4s ease;
}

.pmtbook-mockup-card:hover .pmtbook-main-img {
  transform: scale(1.03) rotate(-1deg);
}

.pmtbook-gramedia-badge {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.pmtbook-main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pmtbook-author-tag {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--gray-300);
}

.pmtbook-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--teal-800);
  background: var(--teal-50);
  border-left: 4px solid var(--teal-500);
  padding: 1rem 1.25rem;
  border-radius: 0 12px 12px 0;
  margin-bottom: 1.25rem;
}

.pmtbook-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.pmtbook-stats-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pmtbook-stat-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  flex: 1;
  text-align: center;
}

.stat-number-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-600);
}

.stat-label-text {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 0.2rem;
}

/* Main CTA Box */
.pmtbook-cta-box {
  background: #fbfdfd;
  border: 1.5px solid #d7ecec;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(8, 78, 89, 0.05);
}

.btn-pmt-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #25d366;
  color: #ffffff;
  padding: 1rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.btn-pmt-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.pmtbook-alt-links {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.alt-link-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.6rem;
}

.btn-alt-shop {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-shopee {
  background: #ee4d2d;
  color: #ffffff;
}
.btn-shopee:hover {
  background: #d73d1f;
  color: #ffffff;
}

.btn-gramedia {
  background: #144983;
  color: #ffffff;
}
.btn-gramedia:hover {
  background: #0d3460;
  color: #ffffff;
}

.btn-google-books {
  background: #1a73e8;
  color: #ffffff;
}
.btn-google-books:hover {
  background: #1557b0;
  color: #ffffff;
}

/* --- Why Read Section --- */
.pmtbook-why-section {
  padding: 5.5rem 0;
  background: var(--gray-50);
}

.pmtbook-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.pmtbook-why-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(8, 78, 89, 0.04);
  transition: all 0.3s ease;
}

.pmtbook-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(8, 78, 89, 0.1);
  border-color: var(--teal-400);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.pmtbook-why-card h3 {
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.pmtbook-why-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.pmtbook-why-card-wide {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #edf9f9 100%);
  border-left: 5px solid var(--teal-500);
}

/* --- Specs Section --- */
.pmtbook-specs-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.pmtbook-specs-box {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 24px;
  padding: 3rem;
}

.pmtbook-specs-header {
  text-align: center;
  margin-bottom: 2rem;
}
.pmtbook-specs-header h2 {
  font-size: 1.8rem;
  color: var(--gray-900);
}
.pmtbook-specs-header p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.pmtbook-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.spec-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: 0.2rem;
}

/* --- TOC Section --- */
.pmtbook-toc-section {
  padding: 5.5rem 0;
  background: var(--gray-50);
}

.pmtbook-toc-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.toc-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(8, 78, 89, 0.04);
  transition: all 0.3s ease;
}

.toc-card:hover {
  border-color: var(--teal-300);
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  background: #ffffff;
  user-select: none;
}

.toc-header h3 {
  font-size: 1.15rem;
  color: var(--gray-900);
  flex-grow: 1;
  font-weight: 700;
}

.part-badge {
  background: var(--teal-500);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.toc-icon {
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: transform 0.3s ease;
}

.toc-card.active .toc-icon {
  transform: rotate(180deg);
}

.toc-body {
  display: none;
  padding: 1.5rem 1.75rem 2rem;
  border-top: 1px solid var(--gray-200);
  background: #fbfdfd;
}

.toc-card.active .toc-body {
  display: block;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.toc-list li {
  font-size: 0.92rem;
  color: var(--gray-800);
  line-height: 1.5;
}

/* --- Bonus Section --- */
.pmtbook-bonus-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.pmtbook-bonus-wrapper {
  background: linear-gradient(135deg, #0d8f8f 0%, #005252 100%);
  border-radius: 32px;
  padding: 4rem 3rem;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
}

.bonus-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.bonus-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.bonus-price-badge {
  display: inline-block;
  background: var(--coral-500);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(217, 106, 108, 0.4);
}

.bonus-header p {
  color: var(--teal-100);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.bonus-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.1rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: all 0.3s ease;
}

.bonus-item:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.bonus-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bonus-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.btn-bonus-cta {
  display: inline-block;
  background: var(--coral-500);
  color: #ffffff;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(217, 106, 108, 0.5);
  transition: all 0.3s ease;
}

.btn-bonus-cta:hover {
  background: var(--coral-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217, 106, 108, 0.6);
  color: #ffffff;
}

/* --- Compare Section --- */
.pmtbook-compare-section {
  padding: 5.5rem 0;
  background: var(--gray-50);
}

.pmtbook-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: 980px;
  margin: 2.5rem auto 0;
}

.compare-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 16px rgba(8, 78, 89, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(8, 78, 89, 0.08);
}

.compare-old {
  opacity: 0.92;
}

.compare-new {
  border: 2px solid var(--teal-500);
  box-shadow: 0 8px 30px rgba(13, 143, 143, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f0fbfb 100%);
}

.compare-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: #f8fafb;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  min-height: 240px;
}

.compare-new .compare-img-wrap {
  background: linear-gradient(135deg, #edf9f9 0%, #e1f5f5 100%);
  border-color: #cceeee;
}

.compare-cover-img {
  max-height: 220px;
  width: auto;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.35s ease;
}

.compare-card:hover .compare-cover-img {
  transform: scale(1.04) rotate(-1deg);
}

.compare-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.compare-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--gray-200);
  color: var(--gray-700);
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.new-badge {
  background: var(--teal-600);
  color: #ffffff;
}

.compare-card h3 {
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.compare-list li {
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* --- Media Queries for PMTBook --- */
@media (max-width: 1024px) {
  .pmtbook-overview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pmtbook-title {
    font-size: 2.3rem;
  }
  .pmtbook-chips-grid {
    gap: 0.6rem;
  }
  .pmtbook-chip {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
  .pmtbook-why-grid {
    grid-template-columns: 1fr;
  }
  .pmtbook-why-card-wide {
    grid-column: span 1;
    flex-direction: column;
  }
  .pmtbook-specs-grid {
    grid-template-columns: 1fr;
  }
  .toc-list {
    grid-template-columns: 1fr;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .pmtbook-compare-grid {
    grid-template-columns: 1fr;
  }
  .pmtbook-bonus-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .pmtbook-hero {
    padding: 6.5rem 0 3rem;
  }
  .pmtbook-title {
    font-size: 1.95rem;
  }
  .pmtbook-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }
  .pmtbook-stats-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .pmtbook-main-heading {
    font-size: 2rem;
  }
  .alt-link-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-alt-shop {
    text-align: center;
  }
  .pmtbook-specs-box {
    padding: 2rem 1.25rem;
  }
  .bonus-header h2 {
    font-size: 1.85rem;
  }
  .btn-pmt-wa {
    font-size: 0.92rem;
    padding: 0.85rem 1.25rem;
  }
}
