/* ── findmygod.css — Find My God page styles ─────────────────────────────── */

/* ── Nav: legacy .nav-bar removed — now uses shared .nav from style.css ── */
/* fmg hero offset accounts for fixed nav(64) + sp-bar(48) */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.fmg-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 164px 2rem 4rem !important; /* nav(64) + sp-bar(48) + breathing(52) */
  text-align: center;
  position: relative;
  z-index: 1;
}
.fmg-hero__mandala {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 1.2rem;
  animation: fmgMandalaFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(212,175,55,0.5));
}
.fmg-hero__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.fmg-gold { color: var(--gold, #D4AF37); }
.fmg-hero__hindi {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold, #D4AF37);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  opacity: 0.85;
}
.fmg-hero__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Form Section ─────────────────────────────────────────────────────────── */
.fmg-form-section {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 5rem;
  display: flex;
  justify-content: center;
}
.fmg-form-card {
  width: 100%;
  max-width: 600px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}
.fmg-form-card__header {
  text-align: center;
  margin-bottom: 2rem;
}
.fmg-form-card__icon { font-size: 2.5rem; display: block; margin-bottom: 0.6rem; }
.fmg-form-card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold, #D4AF37);
  margin-bottom: 0.4rem;
}
.fmg-form-card__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* ── Form Fields ──────────────────────────────────────────────────────────── */
.fmg-form { display: flex; flex-direction: column; gap: 1.25rem; }
.fmg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fmg-field { display: flex; flex-direction: column; gap: 0.45rem; }
.fmg-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(212,175,55,0.85);
  text-transform: uppercase;
}
.fmg-optional {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 6px;
}
/* ── Date / time picker wrapper (display injected by premium_pickers.js) ── */
.fmg-dt-wrap { position: relative; }

.fmg-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.92);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.fmg-input::placeholder { color: rgba(255,255,255,0.28); }
.fmg-input:focus {
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.13), 0 2px 12px rgba(0,0,0,0.3);
  outline: none;
}
.fmg-input:not(:placeholder-shown):not(:focus) {
  border-color: rgba(212,175,55,0.28);
}
.fmg-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.fmg-select option { background: #1a1030; color: #fff; }

/* ── Submit Button ────────────────────────────────────────────────────────── */
.fmg-btn {
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #D4AF37 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 12px;
  color: #09090F;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.fmg-btn:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.45);
}
.fmg-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@keyframes fmgSpin {
  to { transform: rotate(360deg); }
}
.fmg-spinner {
  display: inline-block;
  animation: fmgSpin 1s linear infinite;
  font-size: 1.2rem;
}

/* ── Results Section ──────────────────────────────────────────────────────── */
.fmg-results {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 6rem;
}

/* ── Personal reveal label — small, below ticker, above deity ────────────── */
.fmg-reveal-label {
  text-align: center;
  padding: 1.8rem 1rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  position: relative;
}
.fmg-lang-toggle--corner {
  position: absolute !important;
  top: 1.2rem;
  right: 1.2rem;
}
.fmg-reveal-label__name {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
}
.fmg-reveal-label__line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.38);
  font-style: italic;
}
.fmg-reveal-label__meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 0.1rem;
}

/* ── Deity Cards Grid ─────────────────────────────────────────────────────── */
.fmg-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

/* ── Single Deity Card ────────────────────────────────────────────────────── */
.fmg-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  animation: fmgCardIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.fmg-card--primary   { border-color: rgba(212,175,55,0.4); box-shadow: 0 8px 40px rgba(212,175,55,0.15), 0 0 0 1px rgba(212,175,55,0.15); }
.fmg-card--secondary { border-color: rgba(140,100,220,0.35); }
.fmg-card--supporting{ border-color: rgba(80,200,160,0.25); }

/* Card header band */
.fmg-card__band {
  padding: 1.8rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.fmg-card__band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--deity-color, rgba(212,175,55,0.12));
  opacity: 0.18;
}
.fmg-card__symbol {
  font-size: 3.5rem;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px var(--deity-accent, #D4AF37));
}
.fmg-card__band-text { position: relative; z-index: 1; }
.fmg-card__role-title {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deity-accent, #D4AF37);
  margin-bottom: 0.3rem;
}
.fmg-card__deity-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.fmg-card__sanskrit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 0.3rem;
}
.fmg-card__epithet {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

/* Card body */
.fmg-card__body { padding: 1.5rem 2rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; }

.fmg-card__role-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  border-left: 2px solid var(--deity-accent, #D4AF37);
  padding-left: 0.9rem;
}

.fmg-card__reading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}

/* Info grid */
.fmg-card__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.fmg-info-item { display: flex; flex-direction: column; gap: 0.2rem; }
.fmg-info-item__label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deity-accent, #D4AF37);
  opacity: 0.8;
}
.fmg-info-item__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

/* Mantra block */
.fmg-card__mantra {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.fmg-card__mantra-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deity-accent, #D4AF37);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.fmg-card__mantra-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.fmg-card__mantra-dev {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--deity-accent, #D4AF37);
  font-style: italic;
}
.fmg-card__mantra-toggle {
  margin-top: 0.75rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.fmg-card__mantra-toggle:hover {
  border-color: var(--deity-accent, #D4AF37);
  color: var(--deity-accent, #D4AF37);
}
.fmg-card__deep-mantra {
  margin-top: 0.75rem;
  display: none;
}
.fmg-card__deep-mantra.open { display: block; }
.fmg-card__deep-mantra-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.fmg-card__deep-mantra-dev {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* Practice block */
.fmg-card__practice {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
}
.fmg-card__practice-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deity-accent, #D4AF37);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.fmg-card__practice-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

/* Offering & temple row */
.fmg-card__footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
}
.fmg-card__footer-item {}
.fmg-card__footer-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.25rem;
}
.fmg-card__footer-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
}

/* ── CTA Strip ────────────────────────────────────────────────────────────── */
.fmg-cta-strip {
  max-width: 860px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 2rem;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 16px;
}
.fmg-cta-strip__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.fmg-cta-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid var(--gold, #D4AF37);
  border-radius: 10px;
  color: var(--gold, #D4AF37);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.fmg-cta-btn:hover {
  background: var(--gold, #D4AF37);
  color: #09090F;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-om { font-size: 1.5rem; color: var(--gold, #D4AF37); }
.footer-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold, #D4AF37);
}
.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes fmgMandalaFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-12px) scale(1.04); }
}
@keyframes fmgCardIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Locked teaser block ──────────────────────────────────────────────────── */
.fmg-card__locked {
  margin-top: 0.5rem;
  border: 1px dashed rgba(212,175,55,0.3);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: rgba(212,175,55,0.04);
}
.fmg-locked__icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.fmg-locked__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.fmg-locked__btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border-radius: 8px;
  color: #09090F;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.fmg-locked__btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── CTA strip sub-text ───────────────────────────────────────────────────── */
.fmg-cta-strip__lock { font-size: 1.5rem; margin-bottom: 0.5rem; }
.fmg-cta-strip__sub {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold, #D4AF37);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* ── Error state ──────────────────────────────────────────────────────────── */
.fmg-error {
  text-align: center;
  padding: 2rem;
  color: #ff6b6b;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

/* ── Warm astrology glow — mimics zodiac wheel atmosphere (image 5) ───────── */
.fmg-hero {
  overflow: hidden;
}
.fmg-hero::before {
  content: '';
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(190, 75, 15, 0.20) 0%,
    rgba(150, 55, 8,  0.12) 30%,
    rgba(90,  35, 5,  0.06) 55%,
    transparent 72%
  );
  z-index: 0;
  pointer-events: none;
}
/* Subtle side halos to mimic the planet orbs from the astrology wheel */
.fmg-hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(212,175,55,0.04) 0%,
    rgba(212,175,55,0.02) 35%,
    transparent 65%
  );
  z-index: 0;
  pointer-events: none;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .fmg-hero { padding: 100px 1.25rem 3rem; }
  .fmg-hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .fmg-hero__hindi { font-size: 1.1rem; }
  .fmg-results { padding: 3rem 1rem 4rem; }
  .fmg-results__title { font-size: 1.4rem; }
  .fmg-cards { gap: 1.25rem; }
  .fmg-form-card { padding: 1.5rem 1.25rem; }
  .fmg-card__body { padding: 1.25rem 1.25rem 1.5rem; }
  .fmg-card__deity-name { font-size: 1.5rem; }
}

@media (max-width: 640px) {
  .fmg-row { grid-template-columns: 1fr; }
  .fmg-card__info { grid-template-columns: 1fr; }
  .fmg-card__band { flex-direction: column; gap: 0.8rem; }
  .fmg-form-card { padding: 1.25rem 1rem; margin: 0 4px; }
  .fmg-card__body { padding: 1rem 1rem 1.25rem; }
  .nav-links { display: none; }
  .fmg-label { font-size: 0.7rem; }
  .fmg-input { font-size: 15px; }
  .fmg-btn { font-size: 0.9rem; padding: 0.9rem 1rem; }
  .fmg-locked__btn { font-size: 0.75rem; padding: 0.55rem 1.2rem; }
  .fmg-cta-strip { padding: 1.5rem 1rem; }
}

@media (max-width: 400px) {
  .fmg-hero__title { font-size: 1.7rem; }
  .fmg-card__symbol { font-size: 2.5rem; }
  .fmg-card__deity-name { font-size: 1.3rem; }
}

/* ── saffron accent (competitor warmth) ─────────────────────────────────── */
.fmg-saffron { color: #FF9933; }

/* ═══════════════════════════════════════════════════════════════════════════
   LIVE ACTIVITY TICKER — smooth continuous scroll, zero flicker
═══════════════════════════════════════════════════════════════════════════ */
@keyframes fmg-tick-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fmg-dot-pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.fmg-ticker-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.2rem auto 0;
  max-width: 680px;
  overflow: hidden;
  padding: 0.6rem 1rem;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 40px;
}
/* Result-page ticker — full-width, more prominent strip */
.fmg-ticker-wrap--result {
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid rgba(212,175,55,0.18);
  padding: 0.72rem 1.5rem;
  background: rgba(212,175,55,0.07);
  gap: 14px;
}
.fmg-ticker-wrap--result .fmg-ticker-dot {
  width: 10px; height: 10px;
}
.fmg-ticker-wrap--result .fmg-tick-item {
  font-size: 0.85rem;
  padding: 0 1.4rem;
}
.fmg-ticker-wrap--result .fmg-tick-item::before {
  content: 'LIVE';
  font-size: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #52c97a;
  background: rgba(82,201,122,0.12);
  border: 1px solid rgba(82,201,122,0.3);
  border-radius: 3px;
  padding: 1px 5px;
  margin-right: 8px;
  display: none; /* only on first item */
}
.fmg-ticker-dot {
  flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: #52c97a;
  box-shadow: 0 0 6px rgba(82,201,122,0.7);
  animation: fmg-dot-pulse 1.8s ease-in-out infinite;
}
.fmg-ticker-viewport {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.fmg-ticker-track {
  display: flex;
  width: max-content;
  animation: fmg-tick-scroll 45s linear infinite;
}
.fmg-ticker-track:hover { animation-play-state: paused; }
.fmg-tick-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 0 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(232,228,217,0.75);
  letter-spacing: 0.03em;
}
.fmg-tick-dot {
  display: inline-block;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(212,175,55,0.5);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST STATS BAR
═══════════════════════════════════════════════════════════════════════════ */
.fmg-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  margin: 1.5rem auto 0;
  max-width: 600px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1rem 1.5rem;
}
.fmg-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 1.2rem;
}
.fmg-trust-num {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #D4AF37;
}
.fmg-trust-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.fmg-trust-div {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PULL QUOTE inside soul mirror
═══════════════════════════════════════════════════════════════════════════ */
.fmg-soul-mirror__pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
  text-align: center;
  padding: 0 1rem 1.25rem;
  border-bottom: 1px solid rgba(180,100,255,0.15);
  margin-bottom: 1.25rem;
  position: relative;
}
.fmg-soul-mirror__pullquote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(180,100,255,0.2);
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAIN-POINT HOOK SECTION
═══════════════════════════════════════════════════════════════════════════ */
.fmg-pain-section {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
  text-align: center;
  animation: fmg-fadeup 1s ease 0.5s both;
}
.fmg-pain__heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.fmg-pain__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.fmg-pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.fmg-pain__card {
  background: linear-gradient(135deg, rgba(255,100,50,0.08), rgba(20,10,30,0.5));
  border: 1px solid rgba(255,100,50,0.2);
  border-radius: 10px;
  padding: 1.1rem;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.fmg-pain__card:hover {
  border-color: rgba(255,153,51,0.45);
  background: linear-gradient(135deg, rgba(255,100,50,0.13), rgba(20,10,30,0.6));
}
.fmg-pain__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.fmg-pain__title {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #FF9933;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.fmg-pain__desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.fmg-pain__cta-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.fmg-pain__cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF9933, #e67a00);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,153,51,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.fmg-pain__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,153,51,0.5);
}
.fmg-pain__cta-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECONDARY DEITY CARDS SECTION LABEL
═══════════════════════════════════════════════════════════════════════════ */
.fmg-cards-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
}
.fmg-cards-section__label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  text-align: center;
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════════════ */
.fmg-testimonials {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
  animation: fmg-fadeup 1s ease 0.7s both;
}
.fmg-testimonials__label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 1.25rem;
}
.fmg-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.fmg-testi__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
}
.fmg-testi__stars {
  color: #FF9933;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.fmg-testi__text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.fmg-testi__author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA STRIP — upgraded with features grid + price
═══════════════════════════════════════════════════════════════════════════ */
.fmg-cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  text-align: left;
}
.fmg-cta-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}
.fmg-cta-feat__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.fmg-cta-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}
.fmg-cta-price__original {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.fmg-cta-price__current {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FF9933;
}
.fmg-cta-price__save {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  background: rgba(255,153,51,0.15);
  color: #FF9933;
  border: 1px solid rgba(255,153,51,0.3);
  border-radius: 99px;
  padding: 0.25rem 0.7rem;
  letter-spacing: 0.06em;
}
.fmg-cta-btn--big {
  font-size: 1rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, #FF9933, #c96a00);
  border: none;
  box-shadow: 0 6px 28px rgba(255,153,51,0.4);
}
.fmg-cta-btn--big:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,153,51,0.55);
}

/* ═══════════════════════════════════════════════════════════════════════════
   STICKY BOTTOM BAR
═══════════════════════════════════════════════════════════════════════════ */
.fmg-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  background: rgba(10, 6, 20, 0.97);
  border-top: 1px solid rgba(255,153,51,0.35);
  backdrop-filter: blur(16px);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
  gap: 1rem;
}
.fmg-sticky-bar__left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.fmg-sticky-bar__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fmg-sticky-bar__price {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.fmg-sticky-bar__price s {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}
.fmg-sticky-bar__price strong {
  color: #FF9933;
  font-size: 1.15rem;
}
.fmg-sticky-bar__btn {
  background: linear-gradient(135deg, #FF9933, #c96a00);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(255,153,51,0.4);
  flex-shrink: 0;
  transition: transform 0.15s;
}
.fmg-sticky-bar__btn:hover { transform: scale(1.03); }

/* Add bottom padding to results so sticky bar doesn't overlap */
.fmg-results { padding-bottom: 5rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   DIVINE LOADER OVERLAY
═══════════════════════════════════════════════════════════════════════════ */
.fmg-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #0a0a18 0%, #050508 100%);
}

.fmg-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.fmg-loader__mandala {
  width: 180px;
  height: 180px;
  position: relative;
}

.fmg-loader__mandala svg {
  width: 100%;
  height: 100%;
}

/* Outer ring rotates slowly */
.fmg-ring--1 { animation: fmg-spin 18s linear infinite; transform-origin: 100px 100px; }
/* Inner rings counter-rotate */
.fmg-ring--2 { animation: fmg-spin-rev 12s linear infinite; transform-origin: 100px 100px; }
.fmg-ring--3 { animation: fmg-spin 8s linear infinite; transform-origin: 100px 100px; }
.fmg-ring--4 { animation: fmg-spin-rev 5s linear infinite; transform-origin: 100px 100px; }
/* Spokes + dots pulse */
.fmg-spokes  { animation: fmg-spin 24s linear infinite; transform-origin: 100px 100px; }
.fmg-dots    { animation: fmg-spin-rev 20s linear infinite; transform-origin: 100px 100px; }

/* Om pulses */
.fmg-loader__om {
  animation: fmg-pulse 2.4s ease-in-out infinite;
}

@keyframes fmg-spin     { to { transform: rotate(360deg); } }
@keyframes fmg-spin-rev { to { transform: rotate(-360deg); } }
@keyframes fmg-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* Message cycling */
.fmg-loader__messages {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fmg-loader__msg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: rgba(212,175,55,0.0);
  letter-spacing: 0.02em;
  line-height: 1.5;
  position: absolute;
  max-width: 460px;
  padding: 0 1rem;
  transition: color 0.7s ease, opacity 0.7s ease;
  opacity: 0;
  pointer-events: none;
}

.fmg-loader__msg.active {
  color: rgba(212,175,55,0.95);
  opacity: 1;
  position: relative;
}

.fmg-loader__hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO BADGES
═══════════════════════════════════════════════════════════════════════════ */
.fmg-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.fmg-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(212,175,55,0.8);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 99px;
  padding: 0.35rem 0.9rem;
  letter-spacing: 0.05em;
  background: rgba(212,175,55,0.06);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM EXTRAS
═══════════════════════════════════════════════════════════════════════════ */
.fmg-error-msg {
  color: #e07070;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  background: rgba(220,50,50,0.08);
  border: 1px solid rgba(220,50,50,0.25);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
.fmg-form-note {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRIMARY DEITY BIG REVEAL
═══════════════════════════════════════════════════════════════════════════ */
.fmg-primary-reveal {
  max-width: 760px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  text-align: center;
  animation: fmg-fadeup 0.9s ease both;
}

@keyframes fmg-fadeup {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fmg-primary__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: rgba(212,175,55,0.6);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.fmg-primary__symbol {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 24px rgba(212,175,55,0.5));
  animation: fmg-pulse 3s ease-in-out infinite;
}

.fmg-primary__name {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--deity-accent, #D4AF37);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 40px rgba(212,175,55,0.4);
}

.fmg-primary__sanskrit {
  font-family: 'Tiro Devanagari Hindi', 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: rgba(212,175,55,0.55);
  margin-bottom: 0.5rem;
}

.fmg-primary__epithet {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.fmg-primary__intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(212,175,55,0.8);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.fmg-primary__reading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  padding: 1.5rem 2rem;
  background: rgba(212,175,55,0.04);
  border-left: 2px solid rgba(212,175,55,0.3);
  border-radius: 4px;
  text-align: left;
  margin-bottom: 1.5rem;
}

.fmg-primary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.fmg-primary__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 120px;
}

.fmg-primary__meta-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
}

.fmg-primary__meta-val {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.fmg-primary__mantra-block {
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
}

.fmg-primary__mantra-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  margin-bottom: 0.5rem;
}

.fmg-primary__mantra {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #D4AF37;
  margin-bottom: 0.4rem;
}

.fmg-primary__mantra-dev {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: 1rem;
  color: rgba(212,175,55,0.6);
}

.fmg-primary__locked {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  border: 1px dashed rgba(212,175,55,0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOUL MIRROR (personality hook)
═══════════════════════════════════════════════════════════════════════════ */
.fmg-soul-mirror {
  max-width: 760px;
  margin: 0 auto 3rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(70,20,120,0.15), rgba(20,20,60,0.3));
  border: 1px solid rgba(180,100,255,0.25);
  border-radius: 12px;
  animation: fmg-fadeup 1s ease 0.3s both;
}

.fmg-soul-mirror__label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(180,100,255,0.7);
  text-align: center;
  margin-bottom: 1.25rem;
}

.fmg-soul-mirror__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 2;
  color: rgba(255,255,255,0.85);
  white-space: pre-line;
}

.fmg-soul-mirror__tease {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(180,100,255,0.15);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LOCAL DEITY / TEMPLE — card styled like deity cards
═══════════════════════════════════════════════════════════════════════════ */
.fmg-local-wrap {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
  animation: fmg-fadeup 0.9s ease 0.2s both;
}

.fmg-local__card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.5);
  background: linear-gradient(160deg, rgba(42,30,8,0.96) 0%, rgba(28,18,45,0.96) 100%);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.12) inset,
    0 12px 60px rgba(212,175,55,0.18),
    0 2px 0 rgba(212,175,55,0.3) inset;
  padding: 1.75rem 1.75rem 0;
}

/* Eyebrow row with live dot */
.fmg-local__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.fmg-local__live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #52c97a;
  flex-shrink: 0;
  animation: fmg-blink 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(82,201,122,0.6);
}
.fmg-local__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.65);
}

/* Headline */
.fmg-local__headline {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}

/* Keep backward compat with any old references */
.fmg-local__band { display: none; }
.fmg-local__band-icon,
.fmg-local__band-text,
.fmg-local__band-headline { display: none; }

/* ── Two-column body: image LEFT, info RIGHT ── */
.fmg-local__body {
  display: flex;
  gap: 0;
  flex-direction: row-reverse; /* image on left visually = last in DOM = right in row-reverse */
}

.fmg-local__info {
  flex: 1;
  padding: 0 0 1.5rem;
  border-left: 1px solid rgba(212,175,55,0.1);
  padding-left: 1.5rem;
}

/* Temple history teaser */
.fmg-local__temple-history {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
  border-left: 2px solid rgba(212,175,55,0.25);
  padding-left: 0.8rem;
}

.fmg-local__temple-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  font-weight: 700;
  color: #D4AF37;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.fmg-local__temple-loc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.fmg-local__temple-loc::before {
  content: '◉';
  color: rgba(212,175,55,0.35);
  font-size: 0.55rem;
}

.fmg-local__temple-deity {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(212,175,55,0.75);
  margin-bottom: 0.9rem;
}

.fmg-local__temple-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.fmg-local__impact-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,153,51,0.1);
  border: 1px solid rgba(255,153,51,0.3);
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
}
.fmg-local__impact-num {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FF9933;
}
.fmg-local__impact-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* ── Image column (left side) ── */
.fmg-local__img-col {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 1.5rem;
  min-height: 220px;
}

.fmg-local__img-placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.02);
  border-left: 1px dashed rgba(212,175,55,0.15);
  padding: 1.5rem 1rem;
}
.fmg-local__img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.fmg-local__img-icon {
  font-size: 2.8rem;
  opacity: 0.25;
}
.fmg-local__img-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.fmg-local__img-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.06em;
}

/* ── Footer CTA ── */
.fmg-local__footer {
  padding: 1rem 1.75rem 1.25rem;
  border-top: 1px solid rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(212,175,55,0.03);
}

.fmg-local__footer-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  flex: 1;
}
.fmg-local__footer-text strong { color: rgba(255,255,255,0.65); }

.fmg-local__unlock-btn {
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(135deg, #FF9933, #e07820);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(255,153,51,0.3);
  transition: box-shadow 0.2s, transform 0.15s;
}
.fmg-local__unlock-btn:hover {
  box-shadow: 0 4px 20px rgba(255,153,51,0.5);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .fmg-local__body { flex-direction: column; }
  .fmg-local__img-col { width: 100%; height: 100px; border-left: none; border-top: 1px dashed rgba(212,175,55,0.15); }
  .fmg-local__img-placeholder { flex-direction: row; gap: 0.75rem; padding: 0.75rem 1rem; }
  .fmg-local__band { padding: 1rem; }
  .fmg-local__info { padding: 1.25rem 1rem; border-right: none; }
  .fmg-local__footer { flex-direction: column; align-items: flex-start; padding: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA STRIP (upgraded)
═══════════════════════════════════════════════════════════════════════════ */
.fmg-cta-strip__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  margin-bottom: 1rem;
}

.fmg-cta-strip__heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.fmg-cta-strip__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  display: inline-block;
}

.fmg-cta-strip__list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 0;
  line-height: 1.5;
}

.fmg-cta-strip__reassure {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
}

/* Card intro line */
.fmg-card__intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  padding: 0.5rem 0 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
  .fmg-soul-mirror { padding: 1.25rem 1rem; }
  .fmg-local-temple { padding: 1.25rem 1rem; }
  .fmg-primary__reading { padding: 1rem; }
  .fmg-primary__symbol { font-size: 3.5rem; }
  .fmg-loader__mandala { width: 140px; height: 140px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOCIAL PROOF STRIP
═══════════════════════════════════════════════════════════════════════════ */
.fmg-social-proof {
  overflow: hidden;
  padding: 0.5rem 0 2.5rem;
  position: relative;
}
.fmg-social-proof::before,
.fmg-social-proof::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.fmg-social-proof::before {
  left: 0;
  background: linear-gradient(to right, #0a0814, transparent);
}
.fmg-social-proof::after {
  right: 0;
  background: linear-gradient(to left, #0a0814, transparent);
}

.fmg-social-proof__label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,153,51,0.6);
  text-align: center;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.fmg-social-proof__label::before,
.fmg-social-proof__label::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FF9933;
  animation: fmg-blink 1.4s ease-in-out infinite;
}

.sp-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: sp-scroll 40s linear infinite;
}
.sp-track:hover { animation-play-state: paused; }

@keyframes sp-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sp-card {
  flex-shrink: 0;
  width: 280px;
}

.sp-card__inner {
  background: linear-gradient(135deg, rgba(255,153,51,0.05), rgba(10,8,20,0.8));
  border: 1px solid rgba(255,153,51,0.18);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.sp-card__inner:hover {
  border-color: rgba(255,153,51,0.4);
}

.sp-card__img-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,153,51,0.4);
  background: rgba(255,153,51,0.1);
  position: relative;
}
.sp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.sp-card__img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #FF9933;
  font-weight: 700;
}
.sp-card__img-wrap--fallback .sp-card__img-fallback {
  display: flex;
}

.sp-card__body {
  flex: 1;
  min-width: 0;
}
.sp-card__comment {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.sp-card__meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.sp-card__name {
  color: rgba(255,153,51,0.75);
  font-weight: 500;
}
.sp-card__dot { opacity: 0.4; }
.sp-card__time { color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════════════════════════════════
   LANGUAGE TOGGLE
═══════════════════════════════════════════════════════════════════════════ */
.fmg-lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 6px;
  overflow: hidden;
  margin-left: auto;
}
.fmg-lang-toggle__btn {
  background: transparent;
  border: none;
  padding: 0.35rem 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.fmg-lang-toggle__btn.active {
  background: rgba(212,175,55,0.15);
  color: #D4AF37;
}
.fmg-lang-toggle__sep {
  width: 1px;
  height: 100%;
  background: rgba(212,175,55,0.2);
  align-self: stretch;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VEDIC WISDOM STRIP — between deity reveal and temple card
═══════════════════════════════════════════════════════════════════════════ */
.fmg-vedic-strip {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, rgba(130,60,200,0.04) 100%);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
  animation: fmg-fadeup 0.8s ease 0.3s both;
}

.fmg-vs__mandala {
  flex-shrink: 0;
  width: 90px;
  opacity: 0.7;
  animation: fmg-mandala-spin 60s linear infinite;
}
.fmg-vs__mandala--right {
  animation-direction: reverse;
}
@keyframes fmg-mandala-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.fmg-vs__body {
  flex: 1;
  text-align: center;
}

.fmg-vs__sanskrit {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #D4AF37;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.fmg-vs__translation {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.fmg-vs__divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.fmg-vs__div-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.3), transparent);
  max-width: 80px;
}
.fmg-vs__div-sym {
  color: rgba(212,175,55,0.5);
  font-size: 0.6rem;
}

.fmg-vs__insight {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  max-width: 480px;
  margin: 0 auto;
}
.fmg-vs__insight em {
  color: #D4AF37;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 600px) {
  .fmg-vedic-strip { flex-direction: column; gap: 1rem; }
  .fmg-vs__mandala { width: 60px; }
}

/* ── Slim mantra banner ─────────────────────────────────────────────────── */
.fmg-mantra-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto 1.2rem;
  padding: 0.8rem 1.5rem;
  flex-wrap: wrap;
}
.fmg-mb__om {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 1.6rem;
  color: rgba(212,175,55,0.5);
  line-height: 1;
}
.fmg-mb__line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.3), transparent);
}
.fmg-mb__mantra {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #D4AF37;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(212,175,55,0.3);
}
.fmg-mb__trans {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ── Nakshatra insight line ─────────────────────────────────────────────── */
.fmg-nakshatra-insight {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  text-align: center;
}
.fmg-nakshatra-insight strong { color: #D4AF37; font-weight: 600; }
.fmg-ni__highlight {
  color: #FF9933;
  font-weight: 600;
  font-style: normal;
}

/* ── Temple personal hook ─────────────────────────────────────────────────── */
.fmg-temple-hook {
  margin: 0 0 1.2rem;
  padding: 1.1rem 1.3rem;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.22);
  border-left: 3px solid rgba(212,175,55,0.7);
  border-radius: 10px;
}
.fmg-temple-hook__name {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 0.45rem;
}
.fmg-temple-hook__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
}
.fmg-temple-hook__text em {
  color: #D4AF37;
  font-style: normal;
  font-weight: 600;
}

/* ── Temple history text — lighter and more legible ─────────────────────── */
.fmg-local__temple-history {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.98rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,0.78) !important;
  line-height: 1.9;
  margin-bottom: 1rem;
  font-style: italic;
  border-left: 2px solid rgba(212,175,55,0.4);
  padding-left: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESULTS 2-COLUMN LAYOUT — content + live sidebar
═══════════════════════════════════════════════════════════════════════════ */

/* Shell: full-width row that holds main content + sidebar */
.fmg-results__shell {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* Main column: deity reveal + temple card */
.fmg-results__main {
  flex: 1 1 0;
  min-width: 0;
}

/* ── LIVE SIDEBAR ──────────────────────────────────────────────────────── */
.fmg-live-sidebar {
  flex: 0 0 280px;
  width: 280px;
  position: sticky;
  top: 90px;                             /* clears fixed nav */
  background: rgba(10,6,18,0.75);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.fmg-live-sidebar__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(212,175,55,0.12);
  background: rgba(212,175,55,0.05);
}

.fmg-live-sidebar__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.8);
}

/* Vertical scrolling feed */
.fmg-live-sidebar__feed {
  height: 340px;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0;
}

/* Feed rail scrolls upward */
#fmgLiveFeedRail {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: fmgSidebarScroll 28s linear infinite;
}

#fmgLiveFeedRail:hover { animation-play-state: paused; }

@keyframes fmgSidebarScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Each feed item is a card row */
.fmg-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: default;
  transition: background 0.15s;
}
.fmg-sidebar-item:hover { background: rgba(212,175,55,0.04); }

.fmg-sidebar-item__avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  overflow: hidden;
}

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

.fmg-sidebar-item__body {
  flex: 1; min-width: 0;
}

.fmg-sidebar-item__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.fmg-sidebar-item__city {
  font-size: 0.65rem;
  color: rgba(212,175,55,0.6);
  font-family: 'Montserrat', sans-serif;
}

.fmg-sidebar-item__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
  margin-top: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Trust stats grid inside sidebar */
.fmg-live-sidebar__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(212,175,55,0.12);
}

.fmg-live-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.65rem 0.5rem;
  border-right: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.fmg-live-stat:nth-child(2n) { border-right: none; }
.fmg-live-stat:nth-child(3),
.fmg-live-stat:nth-child(4) { border-bottom: none; }

.fmg-live-stat__num {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: #D4AF37;
  font-weight: 600;
}

.fmg-live-stat__lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 2px;
}

/* ── MOBILE: sidebar collapses to a bottom strip ─────────────────────── */
@media (max-width: 860px) {
  .fmg-results__shell {
    flex-direction: column;
    padding: 0 1rem;
    gap: 0;
  }
  .fmg-live-sidebar {
    position: static;
    width: 100%;
    flex: none;
    order: 99;                           /* push below all content */
    margin-top: 2rem;
    border-radius: 12px;
  }
  .fmg-live-sidebar__feed { height: 220px; }
}
