/* =====================================================================
   SACRED PATH NUMEROLOGY — Premium CSS
   ===================================================================== */

/* ── Root Variables ── */
:root {
  --cosmic-purple: #2E1065;
  --royal-gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dim: #B8942E;
  --mystic-indigo: #4338CA;
  --ivory: #FAF7F2;
  --ivory-dark: #F0EBE3;
  --near-black: #0F0A1A;
  --dark-purple: #1A1030;
  --charcoal: #1F1F1F;
  --text-muted: #6B6872;
  --text-light: rgba(255,255,255,0.75);
  --text-lighter: rgba(255,255,255,0.5);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-gold: 0 0 60px rgba(212, 175, 55, 0.15);
  --shadow-purple: 0 20px 80px rgba(46, 16, 101, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Utility ── */
.dark-section { background-color: var(--near-black); }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--royal-gold);
  margin-bottom: 1.2rem;
}
.section-eyebrow.light { color: var(--royal-gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.section-title.light { color: #fff; }
.section-title em {
  font-style: italic;
  color: var(--royal-gold);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 1rem;
  line-height: 1.8;
}
.section-sub.light { color: var(--text-light); }
.section-header.centered {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header.centered .section-sub {
  margin: 1rem auto 0;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--royal-gold);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.4);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary.small { font-size: 0.8rem; padding: 0.7rem 1.5rem; }
.btn-primary.large { font-size: 1rem; padding: 1.1rem 2.4rem; }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.9rem 0;
  transition: var(--transition);
}
.btn-secondary:hover { color: var(--royal-gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--royal-gold);
  color: var(--royal-gold);
  background: rgba(212,175,55,0.08);
}
.btn-outline.large { font-size: 1rem; padding: 1.1rem 2.4rem; }

.mt-footer { margin-top: 1.5rem; }

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}
#navbar.scrolled {
  background: rgba(15, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-symbol {
  color: var(--royal-gold);
  font-size: 1rem;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active { color: var(--royal-gold); }
.nav-cta {
  flex-shrink: 0;
  background: var(--royal-gold);
  color: var(--near-black);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: var(--transition-fast);
  display: block;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  background: rgba(15,10,26,0.95);
  border-top: 1px solid rgba(212,175,55,0.1);
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-fast);
}
.mob-link:hover { color: var(--royal-gold); }
.mob-cta {
  margin-top: 1rem;
  text-align: center;
  background: var(--royal-gold);
  color: var(--near-black);
  font-weight: 700;
  padding: 0.8rem;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #0F0A1A 0%, #1A0F35 40%, #2E1065 80%, #1A0A3A 100%);
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(67,56,202,0.4) 0%, transparent 70%);
  top: -100px; right: -150px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  bottom: 50px; left: -50px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(46,16,101,0.6) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat3 7s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-15px,15px)} }

/* Sacred geometry */
.sacred-geo {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: geoRotate 60s linear infinite;
}
.sacred-geo svg { width: 100%; height: 100%; }
@keyframes geoRotate { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  padding: 0 2rem;
  padding-top: 80px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
}
.eyebrow-line {
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}
.eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--royal-gold);
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.headline-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(30px);
}
.headline-line.italic {
  font-style: italic;
  color: var(--royal-gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 2rem auto 0;
  line-height: 1.85;
  opacity: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  opacity: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.trust-item i { color: var(--royal-gold); font-size: 0.75rem; }
.trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  z-index: 10;
}
.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  width: 1px;
  background: var(--royal-gold);
  position: absolute;
  top: -100%;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -100%; height: 30px; }
  50% { top: 60%; height: 30px; }
  100% { top: 130%; height: 30px; }
}

/* ══════════════════════════════════════════════════════════════════
   METRICS
══════════════════════════════════════════════════════════════════ */
#metrics {
  background: linear-gradient(135deg, var(--cosmic-purple) 0%, #1D0C50 100%);
  padding: 4rem 2rem;
}
.metrics-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.metric-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 2rem;
}
.metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--royal-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  text-transform: uppercase;
}
.metric-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════════ */
#about {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.about-bg-accent {
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(67,56,202,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-frame {
  position: relative;
}
.frame-inner {
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.frame-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 60%);
  z-index: 1;
}
.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(46,16,101,0.9) 0%, #0F0A1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portrait-geo { width: 100%; height: 100%; }
.portrait-geo svg { width: 100%; height: 100%; }
.frame-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--royal-gold);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(212,175,55,0.3);
  z-index: 5;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--near-black);
  line-height: 1;
}
.badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--near-black);
  text-align: center;
  line-height: 1.3;
}
.about-float-num {
  position: absolute;
  top: -2rem; left: -2rem;
  background: var(--near-black);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 2px;
  padding: 1rem 1.5rem;
  z-index: 5;
}
.about-float-num span {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--royal-gold);
  font-weight: 400;
  line-height: 1;
  opacity: 0.7;
}
.about-float-num p {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  max-width: 120px;
}
.about-text {}
.about-divider {
  width: 50px; height: 2px;
  background: var(--royal-gold);
  margin: 1.5rem 0;
}
.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about-body strong { color: var(--charcoal); font-weight: 600; }
.about-credentials {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.credential {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
}
.credential i { color: var(--royal-gold); width: 16px; }

/* ══════════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════════ */
#services {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(67,56,202,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 40%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}
.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: rgba(212,175,55,0.04); }
.service-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: rgba(212,175,55,0.3);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.service-icon {
  width: 44px; height: 44px;
  background: rgba(212,175,55,0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--royal-gold);
  color: var(--near-black);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.service-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.8;
}
.service-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(212,175,55,0.15);
  color: var(--royal-gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.service-arrow {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(5px);
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--royal-gold);
  color: var(--royal-gold);
}

/* ══════════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════════ */
#process { padding: 8rem 0; }
.process-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  left: 28px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: rgba(212,175,55,0.15);
  overflow: hidden;
}
.process-line-fill {
  width: 100%;
  background: linear-gradient(to bottom, var(--royal-gold), rgba(212,175,55,0.3));
  height: 0%;
  transition: height 0.1s;
}
.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.step-dot {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.process-step.active .step-dot {
  background: var(--royal-gold);
  border-color: var(--royal-gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--royal-gold);
  letter-spacing: 0.05em;
}
.process-step.active .step-num { color: var(--near-black); }
.step-content {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}
.step-icon {
  display: inline-flex;
  width: 36px; height: 36px;
  background: rgba(212,175,55,0.1);
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 500px;
}

/* ══════════════════════════════════════════════════════════════════
   INSIGHTS / TABS
══════════════════════════════════════════════════════════════════ */
#insights {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.insights-bg-orb {
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(67,56,202,0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.insights-tabs { position: relative; z-index: 2; }
.tab-nav {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 6px;
  background: rgba(255,255,255,0.03);
  width: fit-content;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  transition: var(--transition);
}
.tab-btn:hover { color: rgba(255,255,255,0.8); }
.tab-btn.active {
  background: var(--royal-gold);
  color: var(--near-black);
}
.tab-content-wrapper { position: relative; }
.tab-pane {
  display: none;
  animation: tabFade 0.4s ease;
}
.tab-pane.active { display: block; }
@keyframes tabFade { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.tab-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}
.tab-visual {
  text-align: center;
}
.number-display {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.big-number {
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,0.4);
  position: relative;
}
.big-number::after {
  content: attr(data-num);
  position: absolute;
  inset: 0;
  color: var(--royal-gold);
  -webkit-text-stroke: 0;
  opacity: 0.15;
  filter: blur(20px);
}
.num-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: -1rem;
}
.number-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.trait {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal-gold);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.tab-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.2rem;
}
.tab-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.tab-cta { margin-top: 2rem; }

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════════ */
#testimonials { padding: 8rem 0; }
.testimonial-swiper { padding-bottom: 4rem !important; }
.testi-card {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 4px 40px rgba(46,16,101,0.06);
  transition: var(--transition);
  height: 100%;
}
.testi-card:hover {
  box-shadow: 0 20px 60px rgba(46,16,101,0.12);
  transform: translateY(-4px);
}
.testi-quote {
  color: var(--royal-gold);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  opacity: 0.5;
}
.testi-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-style: italic;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  flex-shrink: 0;
}
.avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cosmic-purple), var(--mystic-indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--royal-gold);
  letter-spacing: 0.05em;
}
.testi-info { flex: 1; }
.testi-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}
.testi-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.testi-stars {
  color: var(--royal-gold);
  font-size: 0.75rem;
  display: flex;
  gap: 0.1rem;
}
.swiper-pagination-bullet {
  background: rgba(46,16,101,0.2) !important;
}
.swiper-pagination-bullet-active {
  background: var(--royal-gold) !important;
  width: 24px !important;
  border-radius: 4px !important;
}
.testi-prev, .testi-next {
  color: var(--royal-gold) !important;
  background: rgba(212,175,55,0.1) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  transition: var(--transition) !important;
}
.testi-prev:hover, .testi-next:hover {
  background: var(--royal-gold) !important;
  color: var(--near-black) !important;
}
.testi-prev::after, .testi-next::after { font-size: 0.85rem !important; font-weight: 700 !important; }

/* ══════════════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════════════ */
#why {
  padding: 8rem 0;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.why-text {
  position: sticky;
  top: 120px;
}
.why-lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  margin: 1.5rem 0 2.5rem;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-feature {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-feature:last-child { border-bottom: none; }
.why-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(212,175,55,0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold);
  font-size: 1rem;
  margin-top: 0.1rem;
  transition: var(--transition);
}
.why-feature:hover .why-icon {
  background: var(--royal-gold);
  color: var(--near-black);
}
.why-feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4rem;
}
.why-feature-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════════ */
#faq { padding: 8rem 0; }
.faq-container { max-width: 760px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--cosmic-purple); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold);
  font-size: 0.7rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--royal-gold);
  border-color: var(--royal-gold);
  color: var(--near-black);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  padding-bottom: 1.5rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ══════════════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.cta-geo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cta-geo svg { width: 700px; height: 700px; }
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--royal-gold);
  margin-bottom: 1.5rem;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.cta-headline em { font-style: italic; color: var(--royal-gold); }
.cta-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════════ */
#contact { padding: 8rem 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-lead {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 1.5rem 0 2.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(212,175,55,0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: color var(--transition-fast);
}
a.contact-value:hover { color: var(--cosmic-purple); }
.contact-social {
  display: flex;
  gap: 0.8rem;
}
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-icon:hover {
  border-color: var(--royal-gold);
  color: var(--royal-gold);
  background: rgba(212,175,55,0.05);
}

/* Form */
.contact-form-wrap {
  background: var(--ivory-dark);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 4px;
  padding: 2.5rem;
}
.contact-form {}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-group:last-of-type { margin-bottom: 1.5rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color var(--transition-fast);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--royal-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
#footer {
  background: var(--near-black);
}
.footer-top {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--royal-gold);
  color: var(--royal-gold);
}
.footer-links h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--royal-gold);
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li {
  margin-bottom: 0.6rem;
}
.footer-links ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}
.footer-links ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.7rem;
  list-style: none;
}
.footer-contact li i { color: var(--royal-gold); font-size: 0.75rem; }
.footer-bottom { padding: 2rem 0; }
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.35); }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-legal span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition-fast);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════════════
   SCROLL REVEAL BASE
══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .about-layout,
  .why-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-text { position: static; }
  .tab-layout { grid-template-columns: 1fr; }
  .tab-visual { margin-bottom: 2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-float-num { display: none; }
  .frame-badge { width: 90px; height: 90px; bottom: -1rem; right: -1rem; }
  .badge-num { font-size: 2.2rem; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .metrics-inner { flex-direction: column; gap: 0; }
  .metric-divider { width: 60px; height: 1px; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .cta-actions { flex-direction: column; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-line { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  #about, #services, #process, #insights,
  #testimonials, #why, #faq, #contact { padding: 5rem 0; }
}
