/* =========================================================================
   ASTROMATA · MAIN STYLESHEET
   Imperial Vedic aesthetic — oxblood authority, parchment reading surface,
   gold accent. See DESIGN-SYSTEM.md for the locked design system.
   No frameworks, no build step. Pure CSS, custom properties throughout.
   ========================================================================= */

/* Canonical token source — DO NOT inline; modify tokens.css only. */
@import url('tokens.css');

/* -------------------------------------------------------------------------
   1. LEGACY TOKEN ALIASES
   Old token names map to the new Imperial Vedic system so legacy components
   (hero/services/cards/forms throughout this file) recolour automatically.
   New code MUST reference semantic tokens from tokens.css directly.
   ------------------------------------------------------------------------- */
:root {
  /* Brand palette — old names → new oxblood / gold / parchment */
  --plum-900:     var(--oxblood-950);
  --plum-800:     var(--oxblood-900);
  --plum-700:     var(--oxblood-800);
  --plum-600:     var(--oxblood-700);
  --magenta-500:  var(--gold-500);   /* accent role is now gold, not pink */
  --magenta-400:  var(--gold-300);
  --rose-700:     var(--oxblood-900);
  --rose-600:     var(--oxblood-800);
  --rose-500:     var(--oxblood-700);
  --gold-600:     var(--gold-500);
  /* --gold-500 is already defined in tokens.css */
  --gold-400:     var(--gold-300);
  --ivory-50:     var(--parchment-100);
  --ivory-100:    var(--parchment-200);
  --ivory-200:    var(--parchment-200);
  --blush-100:    var(--parchment-200);
  --blush-200:    var(--bronze-300);
  --starlight-200: var(--bronze-300);
  --starlight-300: var(--bronze-300);
  --slate-800:    var(--ink-800);
  --slate-700:    var(--ink-600);
  --slate-600:    var(--ink-600);
  --slate-500:    var(--ink-500);
  --text-inverse: var(--cream-100);

  /* Semantic aliases (kept for backward compatibility) */
  --text-primary:         var(--text-main);
  --accent-primary:       var(--oxblood-800);
  --accent-primary-hover: var(--oxblood-900);
  --accent-premium:       var(--gold-500);
  --border-soft:          var(--border-subtle);
  --border-strong:        var(--border-subtle);

  /* Fonts — legacy --font-accent now points to display (Cormorant) */
  --font-accent:   var(--font-display);
  --font-sanskrit: var(--font-display);

  /* Spacing — legacy sp-N → new space-N */
  --sp-1: var(--space-1);
  --sp-2: var(--space-2);
  --sp-3: var(--space-3);
  --sp-4: var(--space-4);
  --sp-5: var(--space-5);
  --sp-6: var(--space-6);
  --sp-7: var(--space-7);
  --sp-8: var(--space-8);
  --sp-9: var(--space-9);
  --sp-10: 128px;

  /* Radii — legacy r-N → new radius-N */
  --r-sm:   var(--radius-sm);
  --r-md:   var(--radius-md);
  --r-lg:   var(--radius-lg);
  --r-xl:   var(--radius-xl);
  --r-pill: 999px;

  /* Shadows — oxblood-tinted (was plum-tinted) */
  --shadow-sm:   0 1px 2px  rgba(45, 10, 15, 0.06);
  --shadow-md:   var(--shadow-card);
  --shadow-lg:   var(--shadow-elevated);
  --shadow-gold: 0 8px 24px rgba(226, 180, 76, 0.20);

  /* Motion — legacy t-N → new duration-N */
  --t-fast: var(--duration-fast);
  --t-base: var(--duration-normal);
  --t-slow: var(--duration-slow);
  /* --ease-out and --ease-in-out are defined in tokens.css (as --ease-out / --ease-inout) */
  --ease-in-out: var(--ease-inout);

  /* Layout */
  --max-width: 1240px;
  --max-width-narrow: 880px;
  --header-h: 76px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  /* Subtle paper-like background texture using layered gradients */
  background-image:
    radial-gradient(at 20% 0%, rgba(45, 10, 15, 0.04) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(212, 175, 55, 0.03) 0px, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
/* Body links on parchment: oxblood with subtle underline (per design system §1.9). */
a {
  color: var(--link-on-light);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(74, 14, 23, 0.35);
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
a:hover { color: var(--link-on-light-hover); text-decoration-color: var(--oxblood-700); }
/* UI/component links opt out of underline by setting .no-underline or via their own rules.
   Nav, buttons, card-link, and footer links suppress underline below. */
.nav a, .footer-col a, .card-link, .btn,
.brand, .breadcrumb a, .nav-cta { text-decoration: none; }
/* Links on dark surfaces: gold, no underline. */
.hero a:not(.btn), section.dark a:not(.btn), .page-header a, .site-header a, .site-footer a {
  color: var(--link-on-dark);
  text-decoration: none;
}
.hero a:not(.btn):hover, section.dark a:not(.btn):hover,
.page-header a:hover, .site-header a:hover, .site-footer a:hover { color: var(--link-on-dark-hover); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.625rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--text-primary); }
.muted { color: var(--text-muted); }

/* Eyebrow / category label */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-primary);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-400); }

/* Decorative divider — small diamond between sections */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin: var(--sp-6) 0;
  color: var(--gold-500);
}
.divider::before, .divider::after {
  content: '';
  flex: 0 1 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--starlight-300), transparent);
}
.divider svg { width: 14px; height: 14px; fill: currentColor; }

/* -------------------------------------------------------------------------
   3. LAYOUT
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container-narrow {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

main { flex: 1; }
section { padding-block: var(--sp-9); }
section.compact { padding-block: var(--sp-7); }
section.dark { background: var(--bg-dark); color: var(--text-on-dark); position: relative; overflow: hidden; }
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: var(--text-on-dark); }

/* Constellation pattern overlay for dark sections — very subtle */
section.dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1px at 12% 18%, rgba(212, 175, 55, 0.35), transparent),
    radial-gradient(circle 1px at 24% 62%, rgba(255, 248, 242, 0.25), transparent),
    radial-gradient(circle 1px at 38% 28%, rgba(212, 175, 55, 0.30), transparent),
    radial-gradient(circle 1px at 56% 78%, rgba(255, 248, 242, 0.20), transparent),
    radial-gradient(circle 1px at 72% 12%, rgba(212, 175, 55, 0.40), transparent),
    radial-gradient(circle 1px at 84% 48%, rgba(255, 248, 242, 0.30), transparent),
    radial-gradient(circle 1px at 92% 82%, rgba(212, 175, 55, 0.25), transparent),
    radial-gradient(circle 2px at 18% 90%, rgba(94, 22, 34, 0.30), transparent),
    radial-gradient(circle 2px at 66% 36%, rgba(94, 22, 34, 0.22), transparent);
  pointer-events: none;
  z-index: 0;
}
section.dark > * { position: relative; z-index: 1; }

.section-head {
  text-align: center;
  margin-bottom: var(--sp-7);
}
.section-head .eyebrow { margin-bottom: var(--sp-3); }
.section-head p { max-width: 640px; margin: var(--sp-3) auto 0; color: var(--text-muted); }
section.dark .section-head p { color: rgba(255, 248, 242, 0.75); }

/* -------------------------------------------------------------------------
   4. HEADER
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--plum-900);
  border-bottom: 1px solid var(--gold-600);
  box-shadow: var(--shadow-md);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500) 30%, var(--gold-500) 70%, transparent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--sp-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text-on-dark);
}
.brand img { height: 44px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--magenta-500);
}

.nav { display: flex; align-items: center; gap: var(--sp-5); }
.nav a {
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 500;
  padding: var(--sp-2) 0;
  position: relative;
  transition: color var(--t-fast);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base) var(--ease-out);
}
.nav a:hover { color: var(--gold-400); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--gold-400); }

.nav-cta {
  background: var(--rose-600);
  color: var(--text-on-dark) !important;
  padding: 10px 20px !important;
  border-radius: var(--r-pill);
  font-weight: 600;
  transition: all var(--t-base) var(--ease-out);
}
.nav-cta:hover { background: var(--gold-500); color: var(--plum-900) !important; }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-on-dark);
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* -------------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  text-decoration: none;
  line-height: 1;
}
/* Primary CTA — oxblood fill with gold text (per locked design system).
   Hover deepens authority, never weakens contrast. */
.btn-primary {
  background: var(--oxblood-800);
  color: var(--gold-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(45, 10, 15, 0.18);
}
.btn-primary:hover {
  background: var(--oxblood-900);
  color: var(--gold-500);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(45, 10, 15, 0.30);
}
/* Gold variant — solid gold fill with oxblood text (premium / dark sections). */
.btn-gold {
  background: var(--gold-500);
  color: var(--oxblood-950);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-gold:hover { background: var(--gold-300); color: var(--oxblood-950); transform: translateY(-1px); }
/* Ghost — oxblood-bordered on parchment (secondary CTA). */
.btn-ghost {
  background: transparent;
  color: var(--oxblood-800);
  border: 1px solid var(--oxblood-800);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-ghost:hover { background: var(--oxblood-800); color: var(--gold-500); }
.btn-ghost.on-dark { color: var(--gold-500); border-color: var(--gold-500); }
.btn-ghost.on-dark:hover { background: var(--gold-500); color: var(--oxblood-950); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* -------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------- */
.hero {
  background: var(--plum-900);
  color: var(--text-on-dark);
  padding-block: clamp(var(--sp-7), 10vw, var(--sp-10));
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* Warm authority glow — oxblood deepens at top, faint gold bloom at corner.
     Replaces the old magenta wash; gold is the only accent allowed here. */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(94, 22, 34, 0.55), transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 100%, rgba(226, 180, 76, 0.10), transparent 70%);
  pointer-events: none;
}
.hero::after {
  /* Constellation dots layer */
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1.2px at 8% 22%, rgba(212, 175, 55, 0.5), transparent),
    radial-gradient(circle 1.2px at 16% 68%, rgba(255, 248, 242, 0.4), transparent),
    radial-gradient(circle 0.8px at 28% 38%, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(circle 1px at 42% 88%, rgba(255, 248, 242, 0.3), transparent),
    radial-gradient(circle 1.5px at 58% 14%, rgba(212, 175, 55, 0.6), transparent),
    radial-gradient(circle 1px at 72% 56%, rgba(255, 248, 242, 0.4), transparent),
    radial-gradient(circle 1.2px at 86% 28%, rgba(212, 175, 55, 0.5), transparent),
    radial-gradient(circle 0.8px at 94% 76%, rgba(255, 248, 242, 0.35), transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero h1 {
  color: var(--text-on-dark);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
/* Hero accent: italic gold on oxblood (7.1:1 AAA). Replaces old pink italic. */
.hero h1 .accent { color: var(--gold-500); font-style: italic; font-weight: 600; }
.hero .lede {
  font-size: 1.125rem;
  color: rgba(255, 248, 242, 0.85);
  max-width: 540px;
  margin-bottom: var(--sp-6);
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: var(--sp-6);
  display: flex; gap: var(--sp-5); flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 248, 242, 0.7);
}
.hero-trust > div { display: flex; align-items: center; gap: var(--sp-2); }
.hero-trust .num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-400);
  font-weight: 700;
}

/* Hero visual: stacked layered portrait/illustration */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
}
.hero-visual .ring {
  position: absolute; inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: rotate-slow 60s linear infinite;
}
.hero-visual .ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold-500);
}
.hero-visual .ring-2 {
  inset: 10%;
  border-color: rgba(196, 168, 124, 0.30);
  animation-duration: 90s;
  animation-direction: reverse;
}
.hero-visual .ring-2::before {
  background: var(--magenta-500);
  box-shadow: 0 0 10px var(--magenta-500);
}
.hero-visual .logo-mark {
  position: absolute;
  inset: 18%;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(94, 22, 34, 0.40));
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }

/* -------------------------------------------------------------------------
   7. PROCESS / HOW IT WORKS
   ------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  position: relative;
}
.process-step {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  position: relative;
}
.process-step .num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin-bottom: var(--sp-4);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  position: relative;
}
.process-step .num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
}
.process-step h3 { margin-bottom: var(--sp-2); }
.process-step p { color: var(--text-muted); max-width: 280px; margin-inline: auto; }
.process-step .sanskrit {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 14px;
  color: var(--accent-primary);
  display: block;
  margin-top: var(--sp-2);
}

/* -------------------------------------------------------------------------
   8. SERVICES GRID
   ------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.service-card {
  background: var(--ivory-100);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--plum-900);
  color: var(--gold-500);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: var(--sp-2); font-size: 1.25rem; }
.service-card p { color: var(--text-muted); font-size: 14px; margin-bottom: var(--sp-4); }
.service-card .card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-card .card-link::after {
  content: '→';
  transition: transform var(--t-fast);
}
.service-card:hover .card-link::after { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   9. ASTROLOGER CARDS
   ------------------------------------------------------------------------- */
.astro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
}
.astro-card {
  background: var(--ivory-100);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}
.astro-card.tier-guru { border-color: var(--gold-500); box-shadow: var(--shadow-gold); }
.astro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}
.astro-card .photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--magenta-500), var(--rose-600));
}
.astro-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.astro-card:hover .photo img { transform: scale(1.05); }
.astro-card .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(27, 10, 46, 0.4));
  pointer-events: none;
}
.astro-card .badge-wrap {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  z-index: 2;
}
.astro-card .body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.astro-card .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum-900);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.astro-card .location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 4px;
}
.astro-card .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: var(--sp-3);
}
.astro-card .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold-600);
  font-weight: 600;
}
.astro-card .rating svg { width: 14px; height: 14px; fill: var(--gold-500); }
.astro-card .exp { color: var(--text-muted); }
.astro-card .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-4);
}
.astro-card .chip {
  padding: 4px 10px;
  background: var(--blush-100);
  color: var(--rose-700);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.astro-card .actions { margin-top: auto; display: flex; gap: var(--sp-2); }
.astro-card .actions .btn { flex: 1; padding: 10px 14px; font-size: 13px; }

/* -------------------------------------------------------------------------
   10. VERIFICATION BADGES (custom — Guru / Surya / Chandra)
   ------------------------------------------------------------------------- */
.verif-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 5px;
  background: rgba(255, 248, 242, 0.95);
  backdrop-filter: blur(4px);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid;
}
.verif-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
.verif-badge.tier-guru {
  border-color: rgba(184, 144, 40, 0.4);
  color: var(--gold-600);
  background: linear-gradient(135deg, rgba(255, 248, 242, 0.98), rgba(229, 193, 88, 0.15));
}
.verif-badge.tier-surya {
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--rose-600);
  background: rgba(255, 248, 242, 0.95);
}
.verif-badge.tier-chandra {
  border-color: rgba(91, 103, 115, 0.25);
  color: var(--slate-700);
  background: rgba(255, 248, 242, 0.95);
}
.verif-badge.inline {
  padding: 2px 8px 2px 3px;
  font-size: 10px;
  gap: 4px;
}
.verif-badge.inline svg { width: 14px; height: 14px; }

/* -------------------------------------------------------------------------
   11. TESTIMONIALS
   ------------------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-5);
}
.testimonial-card {
  background: var(--blush-100);
  border: 1px solid var(--blush-200);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 18px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--rose-600);
  opacity: 0.18;
}
.testimonial-card .stars {
  display: flex; gap: 2px;
  margin-bottom: var(--sp-3);
  color: var(--gold-500);
}
.testimonial-card .stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card .quote {
  font-family: var(--font-accent);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--slate-800);
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}
.testimonial-card .author {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-700);
  letter-spacing: 0.02em;
}

/* -------------------------------------------------------------------------
   12. FORMS
   ------------------------------------------------------------------------- */
.form-card {
  background: var(--ivory-100);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: clamp(var(--sp-5), 4vw, var(--sp-7));
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.form-row.three { grid-template-columns: repeat(3, 1fr); }
.form-row.full { grid-template-columns: 1fr; }
.form-group { margin-bottom: var(--sp-4); display: flex; flex-direction: column; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--rose-600); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  background: var(--parchment-200);
  color: var(--text-primary);
  transition: all var(--t-fast);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--oxblood-800);
  box-shadow: 0 0 0 3px rgba(74, 14, 23, 0.16);
}
.form-group textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-help { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Alert messages — muted, on-brand status colors per design system */
.alert {
  padding: 14px 18px;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-4);
  font-size: 14px;
  border: 1px solid;
}
.alert-success { background: rgba(45, 90, 61, 0.08);  border-color: rgba(45, 90, 61, 0.35);  color: var(--status-success); }
.alert-error   { background: rgba(90, 26, 26, 0.08);  border-color: rgba(90, 26, 26, 0.35);  color: var(--status-danger); }
.alert-info    { background: var(--parchment-200);     border-color: var(--bronze-300);       color: var(--oxblood-800); }

/* -------------------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--plum-900);
  color: var(--text-on-dark);
  padding-block: var(--sp-7) var(--sp-5);
  margin-top: auto;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 5%, var(--gold-500) 25%, var(--gold-500) 75%, transparent 95%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.footer-brand img { height: 56px; margin-bottom: var(--sp-3); }
.footer-brand p {
  color: rgba(255, 248, 242, 0.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-3);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--sp-2); }
.footer-col a {
  color: rgba(255, 248, 242, 0.75);
  font-size: 14px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold-400); }
.footer-contact { font-size: 14px; color: rgba(255, 248, 242, 0.75); line-height: 1.7; }
.footer-contact strong { color: var(--text-on-dark); font-weight: 600; }

.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 248, 242, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  color: rgba(255, 248, 242, 0.85);
  transition: all var(--t-base);
}
.footer-social a:hover {
  background: var(--gold-500);
  color: var(--plum-900);
  transform: translateY(-2px);
  border-color: var(--gold-500);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 248, 242, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: 13px;
  color: rgba(255, 248, 242, 0.55);
}

/* -------------------------------------------------------------------------
   14. PAGE-SPECIFIC: ASTROLOGER DETAIL
   ------------------------------------------------------------------------- */
.astro-detail {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-7);
  margin-block: var(--sp-7);
}
.astro-detail .photo-card {
  background: var(--ivory-100);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
  height: fit-content;
}
.astro-detail .photo-card .photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--magenta-500), var(--rose-600));
}
.astro-detail .photo-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.astro-detail .photo-card .info { padding: var(--sp-5); text-align: center; }
.astro-detail .photo-card .info .name { font-size: 1.5rem; }
.astro-detail .photo-card .info .location { justify-content: center; }

.astro-detail .content h1 { margin-bottom: var(--sp-3); }
.astro-detail .content .lede { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: var(--sp-5); }
.astro-detail .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-block: var(--sp-5);
  padding: var(--sp-4);
  background: var(--ivory-100);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-soft);
}
.astro-detail .stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rose-600);
  display: block;
}
.astro-detail .stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.astro-detail .stat-cell { text-align: center; }

/* -------------------------------------------------------------------------
   15. FILTERS BAR
   ------------------------------------------------------------------------- */
.filters {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding: var(--sp-4);
  background: var(--ivory-100);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-5);
  align-items: end;
}
.filters .form-group { margin-bottom: 0; flex: 1; min-width: 180px; }
.filters .form-group label { margin-bottom: 4px; }

/* -------------------------------------------------------------------------
   16. UTILITIES
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--sp-1); } .mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); } .mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); } .mt-6 { margin-top: var(--sp-6); }
.mb-1 { margin-bottom: var(--sp-1); } .mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); } .mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); } .mb-6 { margin-bottom: var(--sp-6); }

.empty-state {
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
  color: var(--text-muted);
}
.empty-state svg { width: 64px; height: 64px; opacity: 0.4; margin-bottom: var(--sp-4); }
.empty-state h3 { color: var(--text-muted); font-family: var(--font-body); font-weight: 500; }

/* Generic page header for non-home pages */
.page-header {
  background: var(--plum-900);
  color: var(--text-on-dark);
  padding-block: var(--sp-7);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1.5px at 20% 30%, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(circle 1px at 60% 70%, rgba(94, 22, 34, 0.40), transparent),
    radial-gradient(circle 1.2px at 85% 25%, rgba(212, 175, 55, 0.35), transparent);
}
.page-header > .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--text-on-dark); margin-bottom: var(--sp-2); }
.page-header .breadcrumb {
  font-size: 13px;
  color: rgba(255, 248, 242, 0.65);
  margin-bottom: var(--sp-3);
}
.page-header .breadcrumb a { color: rgba(255, 248, 242, 0.65); }
.page-header .breadcrumb a:hover { color: var(--gold-400); }

/* -------------------------------------------------------------------------
   17. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .astro-detail { grid-template-columns: 1fr; }
  .astro-detail .photo-card { position: static; max-width: 380px; margin-inline: auto; }
}

@media (max-width: 720px) {
  section { padding-block: var(--sp-7); }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--plum-800);
    padding: var(--sp-5);
    gap: var(--sp-4);
    transform: translateY(-110%);
    transition: transform var(--t-base) var(--ease-out);
    border-bottom: 1px solid var(--gold-600);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: var(--sp-2) 0; }
  .nav-cta { width: 100%; text-align: center; }
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .hero-trust { gap: var(--sp-3); }
  .astro-detail .stats { grid-template-columns: 1fr; }
  .brand-text { display: none; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .btn { padding: 12px 22px; font-size: 14px; }
  .hero h1 { font-size: 2rem; }
  .hero .lede { font-size: 1rem; }
}

/* -------------------------------------------------------------------------
   18. FAQ ACCORDION
   ------------------------------------------------------------------------- */
details summary { user-select: none; }
details summary::-webkit-details-marker { display: none; }
details[open] summary span:last-child { transform: rotate(45deg); }
details summary:hover { color: var(--rose-600); }

/* -------------------------------------------------------------------------
   19. PAIN-POINT ENTRY CARDS
   ------------------------------------------------------------------------- */
.pain-card {
  background: var(--ivory-100);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  display: block;
}
.pain-card:hover {
  border-color: var(--rose-600);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pain-card .pain-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  color: var(--rose-600);
}
.pain-card .pain-icon svg { width: 26px; height: 26px; }
.pain-card h3 {
  font-size: 1.125rem;
  color: var(--plum-900);
  margin-bottom: var(--sp-2);
}
.pain-card p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  line-height: 1.6;
}
.pain-card .pain-stat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-600);
}

/* Pain label on testimonials */
.testimonial-card .pain-label {
  display: inline-block;
  padding: 3px 10px;
  background: var(--blush-200);
  color: var(--rose-700);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}

/* -------------------------------------------------------------------------
   20. STICKY MOBILE CTA BAR
   Always visible bottom bar on mobile with "Book Now" CTA.
   ------------------------------------------------------------------------- */
.sticky-cta {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--plum-900);
  border-top: 1px solid var(--gold-600);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(27, 10, 46, 0.3);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 12px;
}
.sticky-cta .sticky-text {
  font-size: 13px;
  color: rgba(255, 248, 242, 0.85);
  line-height: 1.3;
}
.sticky-cta .sticky-text strong {
  display: block;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 600;
}
.sticky-cta .btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 13px;
}
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  /* Push footer content above sticky bar */
  body { padding-bottom: 68px; }
  /* Move WhatsApp button above sticky bar */
  .whatsapp-float { bottom: 80px; }
}

/* -------------------------------------------------------------------------
   21. EXIT-INTENT POPUP
   Modal overlay with free chart offer.
   ------------------------------------------------------------------------- */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(27, 10, 46, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.exit-popup {
  background: var(--ivory-100);
  border-radius: var(--r-xl);
  max-width: 480px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(27, 10, 46, 0.4);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}
.exit-overlay.visible .exit-popup {
  transform: translateY(0) scale(1);
}
.exit-popup .exit-header {
  background: var(--plum-900);
  padding: var(--sp-5);
  text-align: center;
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.exit-popup .exit-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1px at 20% 30%, rgba(212,175,55,0.5), transparent),
    radial-gradient(circle 1px at 50% 70%, rgba(226,180,76,0.35), transparent),
    radial-gradient(circle 1px at 80% 20%, rgba(212,175,55,0.4), transparent);
  pointer-events: none;
}
.exit-popup .exit-header > * { position: relative; z-index: 1; }
.exit-popup .exit-header h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-2);
}
.exit-popup .exit-header p {
  font-size: 14px;
  color: rgba(255, 248, 242, 0.75);
}
.exit-popup .exit-body { padding: var(--sp-5); }
.exit-popup .exit-close {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,248,242,0.1);
  border: none;
  color: rgba(255,248,242,0.7);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: all 0.2s;
}
.exit-popup .exit-close:hover {
  background: rgba(255,248,242,0.2);
  color: #fff;
}

/* =========================================================================
   PREMIUM LAYER — 0.1% UPGRADES
   ========================================================================= */

/* -------------------------------------------------------------------------
   P1. SCROLL-TRIGGERED REVEAL ANIMATIONS
   Elements start invisible + shifted, reveal on scroll via .revealed class.
   IntersectionObserver adds .revealed in JS.
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.reveal-left {
  transform: translateX(-40px);
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.reveal-scale {
  transform: scale(0.92);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* -------------------------------------------------------------------------
   P2. STAGGERED CHILDREN (cards appear one by one)
   Parent gets .stagger-children, each child gets delay via CSS --i custom prop.
   ------------------------------------------------------------------------- */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.revealed > *:nth-child(1)  { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2)  { transition-delay: 0.08s; }
.stagger-children.revealed > *:nth-child(3)  { transition-delay: 0.16s; }
.stagger-children.revealed > *:nth-child(4)  { transition-delay: 0.24s; }
.stagger-children.revealed > *:nth-child(5)  { transition-delay: 0.32s; }
.stagger-children.revealed > *:nth-child(6)  { transition-delay: 0.40s; }
.stagger-children.revealed > *:nth-child(7)  { transition-delay: 0.48s; }
.stagger-children.revealed > *:nth-child(8)  { transition-delay: 0.56s; }
.stagger-children.revealed > *:nth-child(9)  { transition-delay: 0.64s; }
.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   P3. ANIMATED STAR FIELD (twinkling stars in dark sections)
   Layered pseudo-elements with different animation timings.
   ------------------------------------------------------------------------- */
section.dark::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1.5px at 5% 15%, rgba(255,248,242,0.7), transparent 2px),
    radial-gradient(circle 1px at 12% 45%, rgba(212,175,55,0.6), transparent 2px),
    radial-gradient(circle 1.2px at 18% 72%, rgba(255,248,242,0.5), transparent 2px),
    radial-gradient(circle 1px at 25% 25%, rgba(212,175,55,0.4), transparent 2px),
    radial-gradient(circle 1.5px at 32% 88%, rgba(255,248,242,0.6), transparent 2px),
    radial-gradient(circle 0.8px at 40% 10%, rgba(226,180,76,0.45), transparent 2px),
    radial-gradient(circle 1.2px at 48% 55%, rgba(212,175,55,0.5), transparent 2px),
    radial-gradient(circle 1px at 55% 35%, rgba(255,248,242,0.4), transparent 2px),
    radial-gradient(circle 1.5px at 62% 78%, rgba(212,175,55,0.7), transparent 2px),
    radial-gradient(circle 1px at 68% 18%, rgba(255,248,242,0.5), transparent 2px),
    radial-gradient(circle 0.8px at 75% 60%, rgba(226,180,76,0.35), transparent 2px),
    radial-gradient(circle 1.2px at 82% 40%, rgba(212,175,55,0.6), transparent 2px),
    radial-gradient(circle 1px at 88% 85%, rgba(255,248,242,0.5), transparent 2px),
    radial-gradient(circle 1.5px at 95% 30%, rgba(212,175,55,0.5), transparent 2px);
  animation: starfield-twinkle 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
/* Second layer of stars with offset timing */
.hero::after,
section.dark .star-layer-2 {
  animation: starfield-twinkle-2 5s ease-in-out infinite alternate;
}
@keyframes starfield-twinkle {
  0%   { opacity: 0.6; }
  50%  { opacity: 1; }
  100% { opacity: 0.7; }
}
@keyframes starfield-twinkle-2 {
  0%   { opacity: 0.8; }
  50%  { opacity: 0.5; }
  100% { opacity: 0.9; }
}

/* Shooting star (occasional dramatic effect on hero) */
.hero .shooting-star {
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.8), transparent);
  top: 20%;
  left: -120px;
  animation: shoot 6s ease-in-out infinite;
  animation-delay: 3s;
  z-index: 1;
  transform: rotate(-20deg);
}
.hero .shooting-star:nth-child(2) {
  top: 55%;
  animation-delay: 9s;
  animation-duration: 5s;
  width: 80px;
  transform: rotate(-15deg);
}
@keyframes shoot {
  0%, 85%, 100% { left: -120px; opacity: 0; }
  90% { left: 110%; opacity: 1; }
  95% { left: 110%; opacity: 0; }
}

/* -------------------------------------------------------------------------
   P4. ANIMATED ZODIAC WHEEL (hero visual)
   Replaces basic rotating rings with a full zodiac wheel.
   ------------------------------------------------------------------------- */
.zodiac-wheel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zodiac-wheel svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
}
.zodiac-ring-outer {
  animation: rotate-slow 120s linear infinite;
  transform-origin: center;
}
.zodiac-ring-inner {
  animation: rotate-slow 90s linear infinite reverse;
  transform-origin: center;
}
.zodiac-ring-glow {
  animation: zodiac-glow 4s ease-in-out infinite alternate;
}
@keyframes zodiac-glow {
  0%   { opacity: 0.3; }
  100% { opacity: 0.7; }
}
/* Zodiac sign symbols pulse subtly */
.zodiac-symbol {
  animation: symbol-pulse 3s ease-in-out infinite;
  transform-origin: center;
}
.zodiac-symbol:nth-child(odd) { animation-delay: 1.5s; }

@keyframes symbol-pulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* -------------------------------------------------------------------------
   P5. 3D TILT EFFECT ON CARDS
   JS sets --mx and --my custom properties on mousemove.
   Pure CSS perspective transform reacts to them.
   ------------------------------------------------------------------------- */
.tilt-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt-card:hover {
  transform: perspective(800px)
             rotateX(calc(var(--my, 0) * 1deg))
             rotateY(calc(var(--mx, 0) * 1deg))
             translateY(-8px)
             scale(1.02);
  box-shadow:
    0 20px 40px rgba(27, 10, 46, 0.15),
    0 0 60px rgba(212, 175, 55, 0.08);
}
/* Light reflection on tilt */
.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 10;
}
.tilt-card:hover::after { opacity: 1; }

/* -------------------------------------------------------------------------
   P6. COUNTER ANIMATION
   .count-up elements get animated via JS. Styled for trust bar.
   ------------------------------------------------------------------------- */
.hero-trust .num {
  display: inline-block;
  min-width: 3ch;
}
.count-up {
  transition: color 0.3s;
}
.count-up.counting {
  color: var(--gold-500);
}

/* -------------------------------------------------------------------------
   P7. PREMIUM HOVER GLOW ON BUTTONS
   CTA buttons get a gold shimmer on hover.
   ------------------------------------------------------------------------- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.15) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(212, 175, 55, 0.15) 75%,
    transparent 100%
  );
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary > * { position: relative; z-index: 2; }

/* -------------------------------------------------------------------------
   P8. SMOOTH SECTION DIVIDER ANIMATIONS
   Gold line grows from center on scroll.
   ------------------------------------------------------------------------- */
.divider::before, .divider::after {
  transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal .divider::before, .reveal .divider::after {
  flex: 0;
}
.revealed .divider::before, .revealed .divider::after {
  flex: 0 1 80px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .stagger-children > * { opacity: 1; transform: none; transition: none; }
  .tilt-card:hover { transform: translateY(-6px); }
  .hero .shooting-star { display: none; }
  section.dark::after { animation: none; }
  .zodiac-ring-outer, .zodiac-ring-inner { animation: none; }
  .zodiac-symbol { animation: none; opacity: 0.8; }
  .btn-primary::before { display: none; }
}

/* -------------------------------------------------------------------------
   19. PRINT
   ------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav, .btn { display: none !important; }
  body { background: white; color: black; }
  section.dark { background: white; color: black; }
}
