/* ============================================================
   KARMA CLEANSING CLASS — CORE DESIGN SYSTEM & STYLESHEET
   Aesthetic: Sacred, Cinematic, Editorial, Luxurious & Spiritual
   ============================================================ */

/* CSS RESET & BOX SIZING */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --color-dark-abyss: #080B12;
  --color-charcoal-blue: #18202B;
  --color-muted-blue: #2A3A4A;
  --color-divine-gold: #C99732;
  --color-warm-gold: #E5B96A;
  --color-pale-gold: #F5D98A;
  --color-light-ivory: #FFF9EE;
  --color-sacred-green: #2E5A43;
  --color-pure-white: #FFFFFF;

  /* Atmospheric Variables */
  --stage-ambient: rgba(8, 11, 18, 0.45);
  --stage-gold-intensity: 0;

  /* Typography */
  --font-display: 'Cinzel', 'Cinzel Decorative', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation & Borders */
  --gold-border: 1px solid rgba(201, 151, 50, 0.28);
  --gold-border-subtle: 1px solid rgba(229, 185, 106, 0.15);
  --gold-glow: 0 0 28px rgba(201, 151, 50, 0.22);
  --gold-glow-intense: 0 0 45px rgba(229, 185, 106, 0.45);
  --card-bg-dark: rgba(18, 14, 16, 0.55);
  --card-bg-glass: rgba(22, 16, 19, 0.45);

  /* Transitions */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s var(--ease-cinematic);
}

html {
  font-size: 16px;
  background-color: var(--color-dark-abyss);
  color: var(--color-light-ivory);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-dark-abyss);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================================================
   CINEMATIC BACKGROUND STAGE (FIXED 3-VIDEO LAYER)
   ============================================================ */
#cinematic-stage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--color-dark-abyss);
}

.stage-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  will-change: opacity, transform;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

#video-karma-1 {
  opacity: 1; /* Initial state */
}

/* Ambient Vignette & Dynamic Lighting Overlay */
.stage-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(8, 11, 18, 0.22) 0%,
    rgba(8, 11, 18, 0.50) 65%,
    rgba(8, 11, 18, 0.78) 100%
  );
  z-index: 2;
  transition: background 0.8s ease;
}

.stage-light-glow {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 50vw;
  height: 50vw;
  max-width: 650px;
  max-height: 650px;
  background: radial-gradient(circle, rgba(201, 151, 50, 0.22) 0%, rgba(201, 151, 50, 0) 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  opacity: var(--stage-gold-intensity, 0);
  transition: opacity 0.5s ease;
}

/* Particles Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 3rem;
  background: rgba(8, 11, 18, 0);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
  box-shadow: 0 0 0 transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

section {
  scroll-margin-top: 85px;
}

.site-header.nav-scrolled {
  padding: 1.05rem 3rem;
  background: rgba(8, 11, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 185, 106, 0.18);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(201, 151, 50, 0.15);
}

.nav-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--color-light-ivory);
}

.brand-lotus-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(201, 151, 50, 0.5));
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-pale-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: rgba(255, 249, 238, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  transition: color var(--transition-smooth);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-warm-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-warm-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Toggle */
.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-pale-gold);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.menu-toggle-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ============================================================
   CALL TO ACTION BUTTONS
   ============================================================ */
.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #E5B96A 0%, #C99732 50%, #A67822 100%);
  color: #080B12;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(255, 249, 238, 0.4);
  box-shadow: 0 4px 20px rgba(201, 151, 50, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.35s var(--ease-cinematic);
  position: relative;
  overflow: hidden;
}

.btn-cta-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 151, 50, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.7);
}

.btn-cta-gold:hover::before {
  left: 100%;
}

.btn-cta-gold:active {
  transform: translateY(0);
}

.btn-cta-gold .btn-arrow {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.btn-cta-gold:hover .btn-arrow {
  transform: translateX(4px);
}

/* Secondary CTA / Outline */
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: rgba(18, 14, 16, 0.55);
  backdrop-filter: blur(10px);
  color: var(--color-pale-gold);
  border: var(--gold-border);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background: rgba(201, 151, 50, 0.15);
  border-color: var(--color-warm-gold);
  color: var(--color-light-ivory);
}

/* ============================================================
   MAIN CONTENT & SECTIONS ARCHITECTURE
   ============================================================ */
main {
  position: relative;
  z-index: 5;
}

.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-warm-gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow.center {
  justify-content: center;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-divine-gold);
  opacity: 0.5;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EA 45%, #E5B96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 26px rgba(229, 185, 106, 0.45));
}

.section-subhead {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(255, 249, 238, 0.82);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 680px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ============================================================
   01 — HERO / THE GATEWAY
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 2rem 5rem;
  background: 
    linear-gradient(to bottom, rgba(8, 11, 18, 0.32) 0%, rgba(8, 11, 18, 0.16) 55%, transparent 100%),
    radial-gradient(ellipse 85% 70% at 50% 45%, rgba(8, 11, 18, 0.42) 0%, rgba(8, 11, 18, 0.16) 65%, transparent 100%);
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 2rem 1rem;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-guide-wrap {
  margin-bottom: 1.2rem;
}

.hero-guide-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-warm-gold);
  margin-bottom: 0.4rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-guide-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-pale-gold);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(201, 151, 50, 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EA 45%, #E5B96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.88)) drop-shadow(0 0 35px rgba(229, 185, 106, 0.5));
}

.hero-title span {
  display: block;
  color: #FFFDF8;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8E9 45%, #E5B96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subhead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: #FFF9EE;
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.4rem;
  background: rgba(18, 14, 16, 0.55);
  backdrop-filter: blur(12px);
  border: var(--gold-border-subtle);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-pale-gold);
  margin-bottom: 2.5rem;
}

.hero-meta-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--color-warm-gold);
}

.hero-cta-wrap {
  margin-bottom: 3.5rem;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator-text {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-warm-gold);
}

.scroll-indicator-arrow {
  width: 16px;
  height: 24px;
  animation: floatDown 2s infinite ease-in-out;
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   02 — THE KARMIC BURDEN (INTERACTIVE CONSTELLATION)
   ============================================================ */
.burdens-section {
  padding: 5.5rem 0 5rem;
  position: relative;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(8, 11, 18, 0.26) 20%, rgba(8, 11, 18, 0.26) 80%, transparent 100%),
    radial-gradient(ellipse 90% 75% at 50% 50%, rgba(8, 11, 18, 0.22) 0%, transparent 85%);
}

.burdens-header {
  text-align: center;
  margin-bottom: 4rem;
}

.burdens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.burden-card {
  background: rgba(18, 14, 16, 0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 185, 106, 0.16);
  border-radius: 10px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s var(--ease-cinematic);
  outline: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.burden-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-warm-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.burden-card:hover,
.burden-card.is-active,
.burden-card:focus-visible {
  border-color: var(--color-warm-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(201, 151, 50, 0.3);
  background: linear-gradient(160deg, rgba(32, 22, 25, 0.80) 0%, rgba(20, 15, 17, 0.90) 100%);
}

.burden-card.is-active::before,
.burden-card:hover::before {
  opacity: 1;
}

.burden-icon-wrap {
  width: 46px;
  height: 46px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  border: var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--color-warm-gold);
  background: rgba(8, 11, 18, 0.6);
  transition: all 0.3s ease;
}

.burden-card.is-active .burden-icon-wrap,
.burden-card:hover .burden-icon-wrap {
  background: var(--color-divine-gold);
  color: var(--color-dark-abyss);
  box-shadow: 0 0 16px rgba(201, 151, 50, 0.6);
}

.burden-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #FFFDF8;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.burden-short-desc {
  font-size: 0.80rem;
  color: rgba(255, 249, 238, 0.85);
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

/* Active Burden Detail Showcase */
.burden-detail-panel {
  background: linear-gradient(145deg, rgba(20, 15, 18, 0.58) 0%, rgba(14, 11, 13, 0.70) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 185, 106, 0.24);
  border-radius: 14px;
  padding: 2.5rem 3.5rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(201, 151, 50, 0.05);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.burden-detail-panel.is-updating {
  opacity: 0.5;
  transform: scale(0.99);
}

.burden-detail-symbol {
  font-size: 1.8rem;
  color: var(--color-warm-gold);
  margin-bottom: 0.8rem;
  text-shadow: 0 0 15px rgba(201, 151, 50, 0.4);
}

.burden-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EA 45%, #E5B96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 18px rgba(229, 185, 106, 0.4));
}

.burden-detail-desc {
  font-size: 1.05rem;
  color: #FFF9EE;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

/* ============================================================
   03 — WHAT BINDS YOU CAN ALSO BE RELEASED (BREAKING POINT)
   ============================================================ */
.breaking-point-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 5rem 2rem;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(8, 11, 18, 0.42) 22%, rgba(8, 11, 18, 0.42) 78%, transparent 100%),
    radial-gradient(ellipse 85% 70% at 50% 50%, rgba(8, 11, 18, 0.32) 0%, rgba(8, 11, 18, 0.15) 60%, transparent 95%);
}

.breaking-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 2.5rem 1.5rem;
}

.breaking-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EA 45%, #E5B96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.8rem;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 28px rgba(229, 185, 106, 0.48));
}

.breaking-headline span {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9EE 40%, #E5B96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.breaking-subtext {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 249, 238, 0.92);
  letter-spacing: 0.04em;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 4px 25px rgba(0, 0, 0, 0.9);
}

/* ============================================================
   04 — KARMA CLEANSING (THE THREE PILLARS)
   ============================================================ */
.cleansing-section {
  padding: 5.5rem 0 5rem;
  position: relative;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(8, 11, 18, 0.28) 20%, rgba(8, 11, 18, 0.28) 80%, transparent 100%),
    radial-gradient(ellipse 90% 70% at 50% 45%, rgba(8, 11, 18, 0.22) 0%, transparent 85%);
}

.cleansing-header {
  text-align: center;
  margin-bottom: 5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: linear-gradient(160deg, rgba(20, 15, 18, 0.52) 0%, rgba(14, 11, 13, 0.65) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(229, 185, 106, 0.18);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease-cinematic);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-warm-gold);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 25px rgba(201, 151, 50, 0.2);
  background: linear-gradient(160deg, rgba(28, 20, 23, 0.72) 0%, rgba(18, 13, 15, 0.82) 100%);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--color-warm-gold);
  margin-bottom: 1.2rem;
  display: block;
}

.pillar-icon-svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.6rem;
  stroke: var(--color-pale-gold);
  filter: drop-shadow(0 0 12px rgba(201, 151, 50, 0.4));
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-light-ivory);
  margin-bottom: 0.85rem;
}

.pillar-desc {
  font-size: 1.05rem;
  color: rgba(255, 249, 238, 0.88);
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

/* ============================================================
   05 — TRANSFORMATION (ATMOSPHERIC TRANSITION)
   ============================================================ */
.transformation-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(8, 11, 18, 0.25) 25%, rgba(8, 11, 18, 0.25) 75%, transparent 100%),
    radial-gradient(ellipse 85% 75% at 50% 50%, rgba(201, 151, 50, 0.08) 0%, rgba(8, 11, 18, 0.15) 55%, transparent 100%);
}

.transformation-card {
  background: radial-gradient(circle at 50% 50%, rgba(201, 151, 50, 0.12) 0%, rgba(18, 14, 16, 0.65) 70%);
  backdrop-filter: blur(20px);
  border: var(--gold-border);
  border-radius: 16px;
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(201, 151, 50, 0.08);
}

.transformation-mandala {
  width: 84px;
  height: 84px;
  margin: 0 auto 2rem;
  stroke: var(--color-warm-gold);
  filter: drop-shadow(0 0 20px rgba(201, 151, 50, 0.5));
}

/* ============================================================
   06 — WHAT AWAITS YOU (THE SIX DIMENSIONS)
   ============================================================ */
.awaits-section {
  padding: 5.5rem 0 5rem;
  position: relative;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(8, 11, 18, 0.40) 18%, rgba(8, 11, 18, 0.40) 82%, transparent 100%),
    radial-gradient(ellipse 85% 65% at 50% 35%, rgba(8, 11, 18, 0.30) 0%, rgba(8, 11, 18, 0.12) 65%, transparent 95%);
}

.awaits-header {
  text-align: center;
  margin: 0 auto 4.5rem;
  max-width: 860px;
  position: relative;
  z-index: 10;
}

.awaits-header .section-eyebrow {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.awaits-header .section-headline {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 28px rgba(229, 185, 106, 0.5));
}

.awaits-header .section-subhead {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 4px 22px rgba(0, 0, 0, 0.88);
}

.awaits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.awaits-item {
  background: linear-gradient(150deg, rgba(20, 15, 18, 0.52) 0%, rgba(14, 11, 13, 0.65) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(229, 185, 106, 0.18);
  border-radius: 10px;
  padding: 2.4rem 2rem;
  text-align: left;
  position: relative;
  transition: all 0.35s var(--ease-cinematic);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.awaits-item:hover {
  border-color: var(--color-warm-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(201, 151, 50, 0.2);
  background: linear-gradient(150deg, rgba(28, 20, 23, 0.72) 0%, rgba(18, 13, 15, 0.82) 100%);
}

.awaits-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pale-gold);
  margin-bottom: 1.4rem;
  background: rgba(8, 11, 18, 0.5);
  font-size: 1.1rem;
}

.awaits-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-pale-gold);
  margin-bottom: 0.6rem;
}

.awaits-desc {
  font-size: 1.02rem;
  color: rgba(255, 249, 238, 0.88);
  line-height: 1.72;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

/* ============================================================
   07 — GUIDANCE (SRI SIVAYOGINI MATAJI)
   ============================================================ */
.guidance-section {
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(8, 11, 18, 0.25) 20%, rgba(8, 11, 18, 0.25) 80%, transparent 100%),
    radial-gradient(ellipse 90% 75% at 50% 50%, rgba(8, 11, 18, 0.20) 0%, transparent 85%);
}

.guidance-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(145deg, rgba(20, 15, 18, 0.55) 0%, rgba(14, 11, 13, 0.68) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 185, 106, 0.25);
  border-radius: 16px;
  padding: 4.5rem 4rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(201, 151, 50, 0.05);
}

.guidance-portrait-wrap {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.guidance-portrait-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(201, 151, 50, 0.25) 0%, rgba(201, 151, 50, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.guidance-portrait-frame {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(229, 185, 106, 0.6) 0%, rgba(201, 151, 50, 0.2) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.guidance-portrait-img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.guidance-text-content {
  text-align: left;
}

.guidance-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EA 50%, #E5B96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 22px rgba(229, 185, 106, 0.42));
  white-space: nowrap;
}

.guidance-name span {
  display: inline;
  color: var(--color-pale-gold);
}

.guidance-bio {
  font-size: 1.05rem;
  color: rgba(255, 249, 238, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.guidance-quote {
  border-left: 2px solid var(--color-warm-gold);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--color-pale-gold);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   08 — CLASS DETAILS (THE CONVERSION HUB)
   ============================================================ */
.class-details-section {
  padding: 5.5rem 0 5rem;
  position: relative;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(8, 11, 18, 0.26) 20%, rgba(8, 11, 18, 0.26) 80%, transparent 100%),
    radial-gradient(ellipse 90% 75% at 50% 50%, rgba(8, 11, 18, 0.20) 0%, transparent 85%);
}

.class-details-card {
  background: linear-gradient(145deg, rgba(20, 16, 18, 0.45) 0%, rgba(14, 11, 13, 0.58) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(229, 185, 106, 0.22);
  border-radius: 16px;
  padding: 4.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(201, 151, 50, 0.06);
  position: relative;
  overflow: hidden;
}

.class-details-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 151, 50, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.details-card-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.detail-tile {
  background: rgba(14, 11, 13, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 185, 106, 0.18);
  border-radius: 10px;
  padding: 2rem 1.4rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.detail-tile:hover {
  border-color: var(--color-warm-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 18px rgba(201, 151, 50, 0.2);
  background: rgba(24, 17, 20, 0.82);
}

.detail-tile-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  stroke: var(--color-warm-gold);
}

.detail-tile-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E5B96A;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.detail-tile-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFDF8;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.details-cta-center {
  text-align: center;
}

.details-cta-center .btn-cta-gold {
  padding: 1.1rem 3rem;
  font-size: 0.95rem;
}

.details-guarantee-note {
  margin-top: 1.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: rgba(255, 249, 238, 0.75);
  letter-spacing: 0.02em;
}

.details-razorpay-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.45rem 1.15rem;
  background: rgba(8, 11, 18, 0.6);
  border: 1px solid rgba(229, 185, 106, 0.25);
  border-radius: 30px;
  font-size: 0.82rem;
  color: rgba(255, 249, 238, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.trust-lock-icon {
  width: 14px;
  height: 14px;
  stroke: var(--color-warm-gold);
  flex-shrink: 0;
}

.trust-rzp-brand {
  display: inline-flex;
  align-items: center;
}

.rzp-svg-logo {
  height: 17px;
  width: 92px;
  vertical-align: middle;
}

/* Razorpay Offscreen Container (keeps Razorpay active for modal checkout while hiding default button) */
.razorpay-offscreen-stage {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: visible !important;
}

#razorpay-form {
  display: block !important;
  width: 1px !important;
  height: 1px !important;
}

/* ============================================================
   09 — FINAL EMOTIONAL CTA (DESTINATION OF THE JOURNEY)
   ============================================================ */
.final-cta-section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 5.5rem 2rem 7.5rem;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(8, 11, 18, 0.44) 20%, rgba(8, 11, 18, 0.44) 75%, transparent 100%),
    radial-gradient(ellipse 85% 70% at 50% 50%, rgba(8, 11, 18, 0.34) 0%, rgba(8, 11, 18, 0.15) 60%, transparent 95%);
}

.final-cta-content {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 2.5rem 1.5rem;
}

.final-lotus-glyph {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  stroke: var(--color-warm-gold);
  filter: drop-shadow(0 0 20px rgba(201, 151, 50, 0.6));
}

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EA 45%, #E5B96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 32px rgba(229, 185, 106, 0.52));
}

.final-headline span {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9EE 40%, #E5B96A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.final-subtext {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 249, 238, 0.92);
  letter-spacing: 0.04em;
  max-width: 620px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 4px 25px rgba(0, 0, 0, 0.9);
}

.final-cta-content .btn-cta-gold {
  padding: 1.2rem 3.5rem;
  font-size: 1rem;
}

/* ============================================================
   10 — MINIMAL LUXURY FOOTER
   ============================================================ */
.site-footer {
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(184, 154, 90, 0.14);
  padding: 1.15rem 3rem;
  position: relative;
  z-index: 20;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 800px);
  height: 1px;
  background: radial-gradient(ellipse at center, rgba(229, 185, 106, 0.3) 0%, rgba(201, 151, 50, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.86rem;
  color: rgba(255, 249, 238, 0.65);
  letter-spacing: 0.04em;
  margin: 0;
  text-align: left;
}

.footer-copy a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: var(--color-warm-gold);
}

.footer-legal-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-legal-link {
  color: rgba(255, 249, 238, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--color-warm-gold);
}

/* ============================================================
   MOBILE DRAWER NAVIGATION
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 11, 18, 0.96);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 2rem;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-pale-gold);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-light-ivory);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--color-warm-gold);
}

/* ============================================================
   REDUCED MOTION SUPPORT
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .stage-video {
    transition: none !important;
  }
}

/* ============================================================
   RAZORPAY OVERRIDES (TRANSPARENT BACKDROP)
   ============================================================ */
.razorpay-container,
.razorpay-backdrop {
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ============================================================
   11 — SACRED PAYMENT SUCCESS MODAL
   Warm Sacred Smoked Glass confirmation with WhatsApp group CTA
   ============================================================ */
.payment-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 8, 14, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-modal-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.payment-modal-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.payment-modal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: linear-gradient(155deg, rgba(22, 17, 20, 0.98) 0%, rgba(14, 11, 13, 0.99) 100%);
  border: 1px solid rgba(229, 185, 106, 0.32);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.75),
              0 0 35px rgba(201, 151, 50, 0.12),
              inset 0 1px 0 rgba(245, 217, 138, 0.2);
  padding: 2rem 1.85rem 2rem;
  text-align: center;
  transform: scale(0.94) translateY(18px);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-modal-backdrop.is-visible .payment-modal-card {
  transform: scale(1) translateY(0);
}

/* Custom Scrollbar for Modal (if needed on small viewports) */
.payment-modal-card::-webkit-scrollbar {
  width: 5px;
}
.payment-modal-card::-webkit-scrollbar-track {
  background: rgba(14, 11, 13, 0.6);
  border-radius: 3px;
}
.payment-modal-card::-webkit-scrollbar-thumb {
  background: rgba(229, 185, 106, 0.3);
  border-radius: 3px;
}
.payment-modal-card::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 185, 106, 0.5);
}

/* Modal Close "✕" Button */
.payment-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 249, 238, 0.05);
  border: 1px solid rgba(229, 185, 106, 0.2);
  border-radius: 50%;
  color: rgba(255, 249, 238, 0.75);
  font-size: 0.92rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
  line-height: 1;
}

.payment-modal-close:hover {
  background: rgba(229, 185, 106, 0.18);
  border-color: var(--color-warm-gold);
  color: var(--color-light-ivory);
  transform: rotate(90deg);
}

/* Spiritual Emblem */
.payment-modal-symbol {
  width: 34px;
  height: 34px;
  margin: 0 auto 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px rgba(201, 151, 50, 0.35));
}

.payment-modal-symbol svg {
  width: 100%;
  height: 100%;
}

/* Eyebrow & Titles */
.payment-modal-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-warm-gold);
  margin-bottom: 0.35rem;
}

.payment-modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: var(--color-light-ivory);
  margin: 0 0 1.1rem;
}

/* Confirmation Details Grid */
.payment-details-box {
  background: rgba(8, 7, 9, 0.68);
  border: 1px solid rgba(229, 185, 106, 0.22);
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.payment-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  padding-bottom: 0.42rem;
  border-bottom: 1px solid rgba(255, 249, 238, 0.06);
}

.payment-detail-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: rgba(229, 185, 106, 0.88);
  text-transform: uppercase;
}

.detail-value {
  color: var(--color-light-ivory);
  font-weight: 500;
  text-align: right;
}

.detail-value.status-confirmed {
  color: #4ade80;
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.02em;
}

.detail-value.status-confirmed::before {
  content: '●';
  font-size: 0.62rem;
  color: #4ade80;
}

.detail-value.payment-id-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  font-size: 0.8rem;
  color: var(--color-pale-gold);
  background: rgba(201, 151, 50, 0.14);
  border: 1px solid rgba(229, 185, 106, 0.28);
  padding: 0.16rem 0.5rem;
  border-radius: 5px;
  letter-spacing: 0.04em;
  word-break: normal;
  white-space: nowrap;
}

.payment-id-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

/* Crisp Single Next Step Prompt */
.payment-modal-prompt {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 249, 238, 0.84);
  margin: 0 auto 0.85rem;
  max-width: 380px;
  text-wrap: balance;
}

.payment-modal-prompt strong {
  color: var(--color-pale-gold);
  font-weight: 600;
}

/* Prominent WhatsApp CTA */
.btn-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.86rem 1.35rem;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: #FFFFFF !important;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.32),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-whatsapp-cta:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #1BA850 100%);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-cta:active {
  transform: translateY(0);
}

.btn-whatsapp-cta .whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-whatsapp-cta .btn-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn-whatsapp-cta:hover .btn-arrow {
  transform: translateX(4px);
}

/* Body lock when modal is open */
body.payment-modal-open {
  overflow: hidden !important;
}

