/* ==========================================================================
   DISHVIKA VEDIC KENDRA — 3D EXPERIENTIAL LUXURY STYLESHEET
   Centre for Occult Sciences | Awwwards / High-Fashion Editorial Experience
   ========================================================================== */

:root {
  /* DISHVIKA celestial brand palette */
  --obsidian: #100d14;
  --bg-deep: #151019;
  --bg-void: #100d14;
  --bg-surface: #211923;
  --bg-elevated: #30252b;
  
  --bg-card: rgba(33, 25, 35, 0.65);
  --bg-card-hover: rgba(48, 37, 43, 0.85);
  --bg-glass: rgba(33, 25, 35, 0.55);
  --bg-glass-heavy: rgba(16, 13, 20, 0.82);

  /* Brand accent aliases */
  --violet-deep: #211923;
  --violet-glow: rgba(217, 172, 98, 0.25);
  --violet-accent: #d9ac62;
  --violet-light: #f0d4a3;

  /* Radiant Celestial Gold & Champagne */
  --gold-pure: #e5b95c;
  --gold-light: #fae29c;
  --gold-champagne: #faecc8;
  --gold-warm: #dfb15b;
  --gold-deep: #b38228;
  --gold-glow: rgba(229, 185, 92, 0.3);
  --gold-glow-high: rgba(229, 185, 92, 0.65);
  --gold-gradient: linear-gradient(135deg, #fae29c 0%, #dfb15b 45%, #b38228 100%);
  --gold-gradient-shine: linear-gradient(90deg, #dfb15b 0%, #fff2d1 50%, #dfb15b 100%);

  /* Editorial Typography Colors */
  --text-pure: #ffffff;
  --text-starlight: #f6f3eb;
  --text-ivory: #ebe4d5;
  --text-secondary: #c9bfb8;
  --text-muted: #b0a39b;
  --text-dark: #26180e;

  /* Borders & Highlights */
  --border-subtle: rgba(223, 177, 91, 0.14);
  --border-gold: rgba(223, 177, 91, 0.32);
  --border-gold-bright: rgba(250, 226, 156, 0.7);
  --border-glow: 0 0 15px rgba(223, 177, 91, 0.2);

  /* Luxury Typefaces */
  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Smooth Physics & Easings */
  --ease-cinematic: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.4s var(--ease-cinematic);
  --transition-fast: 0.2s ease;
}

/* ==========================================================================
   RESET & SYSTEM BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--obsidian);
  color: var(--text-starlight);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  min-height: 100vh;
  line-height: 1.68;
  position: relative;
  background: radial-gradient(circle at 50% 10%, #39291f 0%, #151019 40%, #100d14 100%);
  color: var(--text-starlight);
  overflow-x: hidden;
}

/* Analog Film Grain Texture Overlay for Tactile Non-AI Aesthetic */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Real-Time WebGL 3D Canvas Layer */
#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

/* Cosmic Ambient Glow Layers */
.sacred-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(140px);
  opacity: 0.45;
  mix-blend-mode: screen;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.glow-top {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(217, 172, 98, 0.35) 0%, rgba(223, 177, 91, 0.15) 60%, transparent 80%);
  top: -200px;
  right: -100px;
}
.glow-mid {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(223, 177, 91, 0.22) 0%, rgba(217, 172, 98, 0.18) 55%, transparent 75%);
  bottom: 20%;
  left: -200px;
}

/* ==========================================================================
   CUSTOM COSMIC CURSOR (Desktop Only)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
  .cosmic-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--gold-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    box-shadow: 0 0 12px var(--gold-glow-high);
  }
  .cosmic-cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(223, 177, 91, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.09s ease-out, width 0.25s, height 0.25s, border-color 0.25s;
  }
  .cosmic-cursor.active {
    width: 22px;
    height: 22px;
    background-color: rgba(223, 177, 91, 0.85);
  }
  .cosmic-cursor-trail.active {
    width: 54px;
    height: 54px;
    border-color: rgba(250, 226, 156, 0.9);
    background: rgba(223, 177, 91, 0.08);
  }
}

/* ==========================================================================
   FLOATING CELESTIAL HUD & STAGE TRACKER (Desktop)
   ========================================================================== */
.celestial-hud {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .celestial-hud {
    display: none;
  }
}

.hud-coordinates {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold-champagne);
  opacity: 0.7;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.hud-stages-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  pointer-events: auto;
}

.hud-stage-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(223, 177, 91, 0.25);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.hud-stage-dot:hover,
.hud-stage-dot.active {
  width: 8px;
  height: 8px;
  background: var(--gold-pure);
  box-shadow: 0 0 10px var(--gold-glow-high);
}
.hud-stage-dot .hud-tooltip {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  background: rgba(33, 25, 35, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.hud-stage-dot:hover .hud-tooltip {
  opacity: 1;
}

/* Scroll Progress Bar at Top */
.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient-shine);
  z-index: 1000;
  box-shadow: 0 0 12px var(--gold-pure);
  transition: width 0.1s linear;
}

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   HEADER & ULTRA-MODERN NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(16, 13, 20, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(223, 177, 91, 0.16);
  padding: 10px 0;
}

.header-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-warm);
  box-shadow: 0 0 18px rgba(223, 177, 91, 0.35);
  object-fit: cover;
  transition: transform 0.4s var(--ease-spring);
}
.brand-link:hover .brand-logo-img {
  transform: rotate(30deg) scale(1.08);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-champagne);
  opacity: 0.85;
}

.brand-subtag {
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
  background: rgba(33, 25, 35, 0.4);
  padding: 8px 24px;
  border-radius: 40px;
  border: 1px solid rgba(223, 177, 91, 0.12);
  backdrop-filter: blur(14px);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 6px 4px;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 1.5px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-spring);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-pure);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   BUTTONS & CTAs (High-Gloss 3D Styling)
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(223, 177, 91, 0.35);
  transition: all 0.35s var(--ease-spring);
  text-decoration: none;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover {
  transform: translateY(-2.5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(223, 177, 91, 0.55);
}
.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(33, 25, 35, 0.55);
  color: var(--gold-champagne);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 32px;
  border: 1px solid rgba(223, 177, 91, 0.35);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-spring);
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(223, 177, 91, 0.12);
  border-color: var(--gold-warm);
  color: var(--text-pure);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all 0.35s var(--ease-spring);
}
.btn-whatsapp:hover {
  transform: translateY(-2.5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.btn-large {
  padding: 16px 36px;
  font-size: 0.95rem;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: rgba(33, 25, 35, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}
.hamburger-btn .bar {
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s ease;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 177, 91, 0.08);
  border: 1px solid rgba(223, 177, 91, 0.28);
  padding: 6px 18px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-pure);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 54px auto;
  line-height: 1.7;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   1. HERO SECTION (3D Experiential Astrolabe Viewport)
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

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

.hero-superbadge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(33, 25, 35, 0.7);
  border: 1px solid rgba(223, 177, 91, 0.25);
  padding: 8px 20px;
  border-radius: 40px;
  backdrop-filter: blur(16px);
  margin-bottom: 26px;
}

.hero-superbadge .star-icon {
  color: var(--gold-pure);
  animation: spinSlow 18s linear infinite;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-superbadge span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-champagne);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6.2vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-champagne);
}

.hero-subline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-lead-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 38px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(223, 177, 91, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-ivory);
}
.trust-item .check-gold {
  color: var(--gold-pure);
  font-size: 0.95rem;
}

/* 3D Interactive Altar Frame in Hero */
.hero-3d-interactive-anchor {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.hero-emblem-cluster {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-core-frame {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  padding: 8px;
  background: radial-gradient(circle, rgba(223, 177, 91, 0.25) 0%, rgba(33, 25, 35, 0.7) 70%);
  border: 1px solid var(--border-gold-bright);
  box-shadow: 0 0 50px rgba(223, 177, 91, 0.35), inset 0 0 30px rgba(217, 172, 98, 0.3);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
}

.emblem-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.emblem-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(223, 177, 91, 0.35);
  pointer-events: none;
}
.ring-1 {
  width: 290px;
  height: 290px;
  animation: orbitRotate 36s linear infinite;
}
.ring-2 {
  width: 370px;
  height: 370px;
  border: 1px solid rgba(223, 177, 91, 0.18);
  animation: orbitRotate 48s linear infinite reverse;
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.floating-glyph {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(48, 37, 43, 0.85);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-champagne);
  box-shadow: 0 0 15px rgba(223, 177, 91, 0.25);
}
.glyph-1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.glyph-2 { right: 0; top: 50%; transform: translate(50%, -50%); }
.glyph-3 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.glyph-4 { left: 0; top: 50%; transform: translate(-50%, -50%); }

.hero-scroll-prompt {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-champagne);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
}
.mouse-scroll-indicator {
  width: 18px;
  height: 30px;
  border: 1.5px solid var(--border-gold);
  border-radius: 12px;
  position: relative;
}
.mouse-scroll-indicator::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--gold-warm);
  border-radius: 2px;
  animation: mouseScroll 1.8s infinite ease-in-out;
}
@keyframes mouseScroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* ==========================================================================
   2. SIGNATURE PROBLEM HOOK SECTION (4.2 — Floating 3D Pills)
   ========================================================================== */
.problem-hook-section {
  padding: 140px 0;
  position: relative;
}

.floating-pills-field {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto 56px auto;
  perspective: 1200px;
}

.celestial-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(48, 37, 43, 0.6);
  border: 1px solid rgba(223, 177, 91, 0.22);
  padding: 14px 26px;
  border-radius: 50px;
  color: var(--text-ivory);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(16, 13, 20, 0.5);
  transition: all 0.4s var(--ease-spring);
  position: relative;
  will-change: transform;
}
.celestial-pill .pill-star {
  color: var(--gold-warm);
  font-size: 0.75rem;
  transition: transform 0.4s ease;
}
.celestial-pill:hover {
  background: rgba(48, 37, 43, 0.85);
  border-color: var(--gold-light);
  color: var(--text-pure);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 35px rgba(223, 177, 91, 0.35);
}
.celestial-pill:hover .pill-star {
  transform: scale(1.4) rotate(45deg);
  color: #ffffff;
}

/* Subtle float animation with different delays */
.celestial-pill:nth-child(1) { animation: floatSubtle 6s ease-in-out infinite 0.1s; }
.celestial-pill:nth-child(2) { animation: floatSubtle 5.5s ease-in-out infinite 0.8s; }
.celestial-pill:nth-child(3) { animation: floatSubtle 6.2s ease-in-out infinite 0.3s; }
.celestial-pill:nth-child(4) { animation: floatSubtle 5.8s ease-in-out infinite 1.2s; }
.celestial-pill:nth-child(5) { animation: floatSubtle 6.5s ease-in-out infinite 0.6s; }
.celestial-pill:nth-child(6) { animation: floatSubtle 5.2s ease-in-out infinite 1.5s; }
.celestial-pill:nth-child(7) { animation: floatSubtle 6.1s ease-in-out infinite 0.4s; }
.celestial-pill:nth-child(8) { animation: floatSubtle 5.7s ease-in-out infinite 1.0s; }
.celestial-pill:nth-child(9) { animation: floatSubtle 6.3s ease-in-out infinite 0.2s; }
.celestial-pill:nth-child(10) { animation: floatSubtle 5.9s ease-in-out infinite 1.4s; }

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

/* Follow-up Solution Banner */
.hook-solution-box {
  background: linear-gradient(135deg, rgba(48, 37, 43, 0.75) 0%, rgba(33, 25, 35, 0.85) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 56px 44px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(16, 13, 20, 0.7), inset 0 0 35px rgba(223, 177, 91, 0.08);
  backdrop-filter: blur(20px);
}
.solution-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-champagne);
  margin-bottom: 18px;
}
.solution-desc {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--text-ivory);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 32px auto;
}
.compliance-note {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   3. FIVE AREAS OF GUIDANCE (4.3 — 3D Tilt Cards)
   ========================================================================== */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* 3D TILT CARD SYSTEM */
.tilt-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 38px 32px;
  transform-style: preserve-3d;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(16, 13, 20, 0.6);
  cursor: pointer;
  overflow: hidden;
}

/* Holographic specular light reflection on mouse move */
.tilt-card::before {
  content: "";
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(250, 226, 156, 0.18) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}
.tilt-card:hover::before {
  opacity: 1;
}

.tilt-card:hover {
  border-color: var(--border-gold-bright);
  box-shadow: 0 24px 60px rgba(16, 13, 20, 0.8), 0 0 35px rgba(223, 177, 91, 0.22);
}

.discipline-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(223, 177, 91, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  transform: translateZ(30px);
  box-shadow: 0 0 20px rgba(223, 177, 91, 0.15);
}

.discipline-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-champagne);
  margin-bottom: 14px;
  transform: translateZ(25px);
}

.discipline-primary-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--gold-pure);
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.discipline-card-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  transform: translateZ(20px);
}

.discipline-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  transform: translateZ(25px);
  transition: gap 0.3s ease, color 0.3s ease;
}
.discipline-learn-link:hover {
  color: #ffffff;
  gap: 14px;
}

/* ==========================================================================
   4. BESPOKE 3D TAROT DECK SANCTUARY (Interactive Micro-Experience)
   ========================================================================== */
.tarot-sanctuary-section {
  padding: 130px 0;
  background: radial-gradient(circle at 50% 50%, rgba(48, 37, 43, 0.5) 0%, transparent 70%);
}

.tarot-altar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  perspective: 1400px;
}

.tarot-deck-fanned {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 30px 0 50px 0;
  width: 100%;
  max-width: 900px;
}

.tarot-card-3d-wrapper {
  width: 220px;
  height: 360px;
  perspective: 1200px;
  cursor: pointer;
}

.tarot-card-3d-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 16px 40px rgba(16, 13, 20, 0.7);
  border-radius: 20px;
}

.tarot-card-3d-wrapper:hover .tarot-card-3d-inner {
  transform: translateY(-16px) rotateX(10deg);
  box-shadow: 0 28px 60px rgba(223, 177, 91, 0.3);
}

.tarot-card-3d-wrapper.flipped .tarot-card-3d-inner {
  transform: translateY(-20px) rotateY(180deg);
}

.tarot-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

/* Card Back Design */
.tarot-back {
  background: linear-gradient(135deg, #30252b 0%, #171219 100%);
  border: 1.5px solid var(--border-gold);
  box-shadow: inset 0 0 25px rgba(223, 177, 91, 0.15);
}
.tarot-back-mandala {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px dashed var(--gold-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold-pure);
  box-shadow: 0 0 30px rgba(223, 177, 91, 0.3);
  animation: spinSlow 30s linear infinite;
}
.tarot-tap-prompt {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold-champagne);
  margin-top: 24px;
  text-transform: uppercase;
}

/* Card Front (Revealed Face) */
.tarot-front {
  background: linear-gradient(135deg, #3a2b24 0%, #211923 100%);
  border: 1.5px solid var(--border-gold-bright);
  transform: rotateY(180deg);
  box-shadow: inset 0 0 35px rgba(223, 177, 91, 0.2);
}
.tarot-glyph-large {
  font-size: 3rem;
  margin-bottom: 12px;
}
.tarot-front-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-champagne);
  margin-bottom: 8px;
}
.tarot-front-vedic-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--violet-light);
  margin-bottom: 12px;
}
.tarot-front-message {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-ivory);
  line-height: 1.5;
}

/* ==========================================================================
   5. INTERACTIVE VIBRATIONAL NUMEROLOGY MATRIX
   ========================================================================== */
.numerology-matrix-section {
  padding: 130px 0;
  position: relative;
}

.numerology-calculator-card {
  background: linear-gradient(135deg, rgba(48, 37, 43, 0.8) 0%, rgba(33, 25, 35, 0.9) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 32px;
  padding: 60px 48px;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 24px 70px rgba(16, 13, 20, 0.8);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.matrix-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 44px;
}

.matrix-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.matrix-field label {
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-champagne);
}
.matrix-input {
  background: rgba(16, 13, 20, 0.7);
  border: 1px solid rgba(223, 177, 91, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-pure);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.matrix-input:focus {
  border-color: var(--gold-pure);
  box-shadow: 0 0 15px rgba(223, 177, 91, 0.35);
}

.matrix-results-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(223, 177, 91, 0.2);
  padding-top: 40px;
}

.matrix-stat-box {
  background: rgba(33, 25, 35, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.matrix-stat-box:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.matrix-stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}

.matrix-stat-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin-bottom: 6px;
}

.matrix-stat-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   6. MULTIDISCIPLINARY APPROACH (4.5)
   ========================================================================== */
.approach-flow-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.approach-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 38px 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(16, 13, 20, 0.6);
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.approach-box:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-bright);
}

.approach-box.highlighted {
  border-color: var(--gold-warm);
  background: linear-gradient(135deg, rgba(48, 37, 43, 0.8) 0%, rgba(33, 25, 35, 0.9) 100%);
  box-shadow: 0 20px 50px rgba(223, 177, 91, 0.2);
}

.flow-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-pure);
  opacity: 0.8;
  margin-bottom: 12px;
}

.flow-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 12px;
}

.flow-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

.flow-arrow-icon {
  font-size: 1.8rem;
  color: var(--gold-warm);
  opacity: 0.7;
  animation: pulseArrow 2.5s infinite ease-in-out;
}
@keyframes pulseArrow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ==========================================================================
   7. PEOPLE BEHIND DISHVIKA / EXPERTS (4.6)
   ========================================================================== */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.expert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(16, 13, 20, 0.6);
  transition: all 0.4s var(--ease-spring);
}
.expert-card:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(223, 177, 91, 0.25);
}

.expert-avatar-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid var(--border-gold-bright);
  padding: 5px;
  margin-bottom: 20px;
  background: radial-gradient(circle, rgba(223, 177, 91, 0.2) 0%, transparent 80%);
}

.expert-avatar-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(48, 37, 43, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold-champagne);
}

.expert-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.expert-role {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-pure);
  margin-bottom: 16px;
}

.expert-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(223, 177, 91, 0.1);
  border: 1px solid rgba(223, 177, 91, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-champagne);
  margin-bottom: 18px;
}

.expert-bio {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   8. CONSULTATION PLANS (4.8 — Transparent Luxury Pricing)
   ========================================================================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 45px rgba(16, 13, 20, 0.6);
  transition: all 0.4s var(--ease-spring);
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-bright);
  box-shadow: 0 24px 60px rgba(223, 177, 91, 0.28);
}

.plan-card.featured-plan {
  border-color: var(--gold-warm);
  background: linear-gradient(135deg, rgba(48, 37, 43, 0.8) 0%, rgba(33, 25, 35, 0.9) 100%);
  box-shadow: 0 20px 60px rgba(223, 177, 91, 0.3);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(223, 177, 91, 0.4);
}

.plan-discipline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 12px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-pure);
}

.plan-original-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.plan-offer-badge {
  background: rgba(223, 177, 91, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
  flex-grow: 1;
}

.plan-deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-ivory);
  line-height: 1.5;
}
.plan-deliverable-item .item-bullet {
  color: var(--gold-pure);
  font-size: 1rem;
  line-height: 1.2;
}

/* ==========================================================================
   9. GUIDANCE TOPICS GRID (4.4)
   ========================================================================== */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.topic-tile {
  background: rgba(33, 25, 35, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s var(--ease-spring);
}
.topic-tile:hover {
  background: rgba(48, 37, 43, 0.8);
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(223, 177, 91, 0.18);
}
.topic-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.topic-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 4px;
}
.topic-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ==========================================================================
   10. WHY DISHVIKA (4.9)
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 34px 28px;
  transition: all 0.35s ease;
}
.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.why-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 12px;
}
.why-card-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   11. FAQ ACCORDION (4.13)
   ========================================================================== */
.faq-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open {
  border-color: var(--border-gold);
}
.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-pure);
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--gold-pure);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ==========================================================================
   12. NEWSLETTER & FOOTER (4.11, 11)
   ========================================================================== */
.newsletter-card {
  background: linear-gradient(135deg, rgba(48, 37, 43, 0.75) 0%, rgba(33, 25, 35, 0.85) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 50px 40px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  backdrop-filter: blur(20px);
}
.newsletter-inputs {
  display: flex;
  gap: 14px;
  max-width: 580px;
  margin: 28px auto 16px auto;
}
.news-input {
  flex: 1;
  background: rgba(16, 13, 20, 0.7);
  border: 1px solid rgba(223, 177, 91, 0.3);
  border-radius: 30px;
  padding: 13px 22px;
  color: var(--text-pure);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
}
.consent-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-footer {
  border-top: 1px solid rgba(223, 177, 91, 0.15);
  background: rgba(16, 13, 20, 0.92);
  padding: 70px 0 30px 0;
  position: relative;
  z-index: 2;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-warm);
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-champagne);
}
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  display: block;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-disciplines-list {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a,
.footer-modal-btn {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-modal-btn:hover {
  color: var(--gold-light);
}
.footer-bottom-bar {
  border-top: 1px solid rgba(223, 177, 91, 0.1);
  padding-top: 24px;
}
.bottom-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Section 10)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 99;
  text-decoration: none;
  transition: all 0.35s var(--ease-spring);
}
.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.65);
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(16, 13, 20, 0.85);
  border: 1px solid var(--border-subtle);
  color: var(--gold-champagne);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ==========================================================================
   MODALS (Booking, Policies, Wisdom)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 13, 20, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: linear-gradient(135deg, rgba(48, 37, 43, 0.95) 0%, rgba(33, 25, 35, 0.98) 100%);
  border: 1px solid var(--border-gold-bright);
  border-radius: 28px;
  width: 100%;
  max-width: 640px;
  padding: 44px 38px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(223, 177, 91, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s var(--ease-spring);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-backdrop.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(223, 177, 91, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--gold-champagne);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.modal-close-btn:hover {
  background: var(--gold-pure);
  color: var(--text-dark);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.modal-badge {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold-pure);
  text-transform: uppercase;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--text-pure);
  margin: 6px 0 10px 0;
}
.modal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-champagne);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(16, 13, 20, 0.7);
  border: 1px solid rgba(223, 177, 91, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-pure);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-pure);
  box-shadow: 0 0 12px rgba(223, 177, 91, 0.3);
}

.form-microcopy {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(48, 37, 43, 0.92);
  border: 1px solid var(--border-gold-bright);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7), 0 0 25px rgba(223, 177, 91, 0.3);
  backdrop-filter: blur(16px);
  z-index: 2000;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s var(--ease-spring);
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.toast-icon {
  font-size: 1.4rem;
}
.toast-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-champagne);
}
.toast-message {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION & RESPONSIVENESS
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: rgba(33, 25, 35, 0.96);
  border-left: 1px solid var(--border-gold);
  backdrop-filter: blur(28px);
  z-index: 999;
  padding: 100px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s var(--ease-cinematic);
}
.mobile-drawer.open {
  right: 0;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-ivory);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-nav-link:hover {
  color: var(--gold-pure);
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-superbadge,
  .hero-lead-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group,
  .hero-trust-bar {
    justify-content: center;
  }
  .approach-flow-wrapper {
    grid-template-columns: 1fr;
  }
  .flow-arrow-icon {
    transform: rotate(90deg);
    margin: 8px auto;
  }
  .matrix-inputs-row {
    grid-template-columns: 1fr;
  }
  .matrix-results-display {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .tarot-deck-fanned {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   SUBPAGES DESIGN SYSTEM (Wisdom, Services, Consultation Plans, About)
   ========================================================================== */
.page-banner-section {
  padding: 150px 0 50px;
  position: relative;
  z-index: 2;
}
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-pure);
  margin: 16px 0 14px;
  letter-spacing: -0.01em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-banner-sub {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* --- Consultation Plans Section & Grid (plans.html) --- */
.pricing-section {
  padding: 30px 0 100px;
  position: relative;
  z-index: 2;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 20px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.4s var(--ease-cinematic), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(223, 177, 91, 0.15);
}
.pricing-card.featured-plan {
  border-color: var(--border-gold-bright);
  background: linear-gradient(180deg, rgba(48, 37, 43, 0.85) 0%, rgba(33, 25, 35, 0.75) 100%);
  box-shadow: 0 12px 40px rgba(217, 172, 98, 0.18), 0 0 25px rgba(223, 177, 91, 0.2);
}
.plan-popular-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  background: rgba(223, 177, 91, 0.18);
  border: 1px solid var(--border-gold);
  padding: 5px 12px;
  border-radius: 100px;
}
.plan-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 12px;
}
.plan-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 14px 0 18px;
}
.plan-price-box .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-pure);
}
.plan-price-box .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1;
}
.plan-price-box .period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 6px;
}
.plan-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}
.plan-features li {
  font-size: 0.9rem;
  color: var(--text-starlight);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.plan-features .check {
  color: var(--gold-pure);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- Services Detail Section (services.html) --- */
.services-detail-section {
  padding: 20px 0 100px;
  position: relative;
  z-index: 2;
}
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 44px;
  margin-bottom: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.service-detail-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(223, 177, 91, 0.12);
}
.service-detail-card.highlight-service {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(48, 37, 43, 0.8) 0%, rgba(33, 25, 35, 0.7) 100%);
}
.service-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.service-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-pure);
  display: block;
  margin-bottom: 8px;
}
.service-detail-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-pure);
}
.service-price-pill {
  font-size: 0.95rem;
  color: var(--text-muted);
  background: rgba(223, 177, 91, 0.1);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: 100px;
}
.service-price-pill span {
  color: var(--gold-champagne);
  font-weight: 700;
  font-size: 1.15rem;
}
.service-lead {
  font-size: 1.05rem;
  color: var(--text-ivory);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 960px;
}
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.service-feature-box {
  background: rgba(16, 13, 20, 0.55);
  border: 1px solid rgba(223, 177, 91, 0.12);
  border-radius: 16px;
  padding: 22px;
}
.service-feature-box h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 8px;
}
.service-feature-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.service-detail-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* --- Wisdom Section, Grid & Category Filters (wisdom.html) --- */
.wisdom-section {
  padding: 20px 0 100px;
  position: relative;
  z-index: 2;
}
.wisdom-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.filter-btn {
  background: rgba(33, 25, 35, 0.65);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--gold-champagne);
}
.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(223, 177, 91, 0.35);
}
.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 50px;
}
.wisdom-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}
.wisdom-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(223, 177, 91, 0.14);
}
.wisdom-card.hidden {
  display: none;
}
.wisdom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.wisdom-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-pure);
  background: rgba(223, 177, 91, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
}
.read-time {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.wisdom-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.35;
  margin-bottom: 14px;
}
.wisdom-excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.btn-read-more {
  background: none;
  border: none;
  color: var(--gold-pure);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color 0.3s ease, transform 0.3s ease;
  text-align: left;
}
.btn-read-more:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}
.wisdom-cta-banner {
  background: linear-gradient(135deg, rgba(48, 37, 43, 0.7) 0%, rgba(33, 25, 35, 0.8) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.wisdom-cta-banner span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-starlight);
}
.article-modal-card {
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 44px;
}
.article-modal-body {
  color: var(--text-starlight);
  line-height: 1.8;
  font-size: 1.02rem;
}
.article-modal-body h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--gold-champagne);
  margin-bottom: 16px;
  line-height: 1.3;
}
.article-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-pure);
  margin: 24px 0 10px;
}
.article-modal-body p {
  margin-bottom: 16px;
  color: var(--text-ivory);
}
.article-modal-body ul {
  margin: 14px 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- About Page Sections (about.html) --- */
.about-philosophy-section,
.approach-section,
.team-section {
  padding: 30px 0 80px;
  position: relative;
  z-index: 2;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.about-emblem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(223, 177, 91, 0.15);
}
.emblem-inner-frame {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  padding: 8px;
  border: 1px dashed var(--gold-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-emblem-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.emblem-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-champagne);
  margin-bottom: 6px;
}
.emblem-motto {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.emblem-points {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(223, 177, 91, 0.15);
  padding-top: 20px;
}
.emblem-points li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.emblem-points li span {
  color: var(--gold-pure);
  font-weight: 700;
}
.philosophy-highlight-box {
  margin-top: 28px;
  background: rgba(223, 177, 91, 0.08);
  border-left: 3px solid var(--gold-pure);
  padding: 20px 24px;
  border-radius: 0 16px 16px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.highlight-icon {
  color: var(--gold-pure);
  font-size: 1.2rem;
  line-height: 1;
}
.philosophy-highlight-box p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-ivory);
  line-height: 1.6;
  margin: 0;
}
.approach-flow-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 48px;
}
.flow-step-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  backdrop-filter: blur(16px);
}
.flow-step-box.highlight-flow {
  border-color: var(--border-gold);
  background: rgba(48, 37, 43, 0.85);
  box-shadow: 0 10px 30px rgba(217, 172, 98, 0.18);
}
.flow-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-pure);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 12px;
}
.flow-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 10px;
}
.flow-step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.flow-connector {
  color: var(--gold-pure);
  font-size: 1.6rem;
  opacity: 0.6;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 48px;
}
.expert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px 28px;
  backdrop-filter: blur(16px);
  transition: transform 0.4s var(--ease-cinematic), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.expert-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(223, 177, 91, 0.15);
}
.expert-avatar-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(223, 177, 91, 0.25) 0%, rgba(217, 172, 98, 0.25) 100%);
  border: 2px solid var(--gold-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(223, 177, 91, 0.25);
}
.expert-initials {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-champagne);
}
.expert-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 6px;
}
.expert-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-pure);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.expert-credentials {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.expert-tags span {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-ivory);
  background: rgba(223, 177, 91, 0.1);
  border: 1px solid rgba(223, 177, 91, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .approach-flow-container {
    grid-template-columns: 1fr;
  }
  .flow-connector {
    transform: rotate(90deg);
    margin: 10px auto;
  }
  .service-detail-card {
    padding: 32px 24px;
  }
}
