/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */
:root {
  --gold-primary: #C9A84C;
  --gold-light: #E8C96A;
  --gold-deep: #A07830;
  --gold-pale: #F0DFA0;
  --purple-rich: #4B2D8C;
  --purple-mid: #7C5CBF;
  --purple-light: #9B7DD4;
  --purple-dark: #2A1654;
  --purple-darkest: #160D30;
  --cream: #FDF8F0;
  --cream-dark: #F5EDD8;
  --text-dark: #1A1A2E;
  --text-muted: #5A5A7A;
  --white: #FFFFFF;

  --grad-hero: linear-gradient(135deg, #2A1654 0%, #4B2D8C 35%, #7C3DBF 65%, #C9A84C 100%);
  --grad-gold: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #A07830 100%);
  --grad-cta: linear-gradient(135deg, #4B2D8C 0%, #C9A84C 100%);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.3);
  --shadow-purple: 0 20px 60px rgba(75, 45, 140, 0.4);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--purple-darkest);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }

/* ═══════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-primary), var(--gold-light), var(--gold-primary));
  background-size: 200% 100%;
  z-index: 10000;
  transition: width 0.06s linear;
  box-shadow: 0 0 12px rgba(201,168,76,0.7), 0 0 4px rgba(232,201,106,0.9);
  animation: progressShimmer 2.5s linear infinite;
}
@keyframes progressShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════
   CINEMATIC SCROLL REVEAL SYSTEM
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: scale(0.95) translateY(44px);
  filter: blur(7px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-54px) scale(0.96);
  filter: blur(7px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(54px) scale(0.96);
  filter: blur(7px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}
.stagger-1  { transition-delay: 0.10s; }
.stagger-2  { transition-delay: 0.20s; }
.stagger-3  { transition-delay: 0.30s; }
.stagger-4  { transition-delay: 0.40s; }
.stagger-5  { transition-delay: 0.50s; }
.stagger-6  { transition-delay: 0.60s; }

/* ═══════════════════════════════════════════
   CHAPTER DECORATIVE BACKGROUND NUMBERS
═══════════════════════════════════════════ */
.chapter-bg-num {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10rem, 22vw, 24rem);
  font-weight: 800;
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  color: currentColor;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(22, 13, 48, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 14px 5%;
}
.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 36px;
  transition: var(--transition);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}
.nav-logo svg { width: 28px; height: 28px; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.25s;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: left 0.32s cubic-bezier(0.22,1,0.36,1), right 0.32s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { left: 0; right: 0; }

.btn-nav {
  display: inline-block;
  background: var(--grad-cta);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

.nav-lang { position: relative; display: inline-flex; align-items: center; margin-left: 18px; }
.btn-lang {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.btn-lang:hover {
  background: rgba(255,255,255,0.11);
}
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: rgba(22, 13, 48, 0.98);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
  overflow: hidden;
  min-width: 160px;
  z-index: 1100;
}
.lang-menu[hidden] { display: none; }
.lang-menu button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.92);
  padding: 12px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-menu button:hover,
.lang-menu button:focus {
  background: rgba(201,168,76,0.14);
  color: var(--gold-light);
  outline: none;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: var(--transition); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 156px 5% 80px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(201,168,76,0.04) 40px, rgba(201,168,76,0.04) 41px),
    repeating-linear-gradient(120deg, transparent, transparent 40px, rgba(201,168,76,0.04) 40px, rgba(201,168,76,0.04) 41px),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 41px);
  animation: patternDrift 20s linear infinite;
}
@keyframes patternDrift {
  0%   { transform: translateX(0) translateY(0); }
  100% { transform: translateX(40px) translateY(40px); }
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  right: 5%; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateY(-50%) scale(1.08); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  color: var(--gold-light);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.hero-eyebrow:hover {
  background: rgba(201,168,76,0.2);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.hero-eyebrow svg { width: 14px; height: 14px; }
.hero-h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; color: #fff;
  margin-bottom: 24px; line-height: 1.12;
}
.hero-h1 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-copy { will-change: opacity; }

.btn-primary {
  background: var(--grad-gold);
  color: var(--purple-darkest);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold), 0 4px 12px rgba(0,0,0,0.3);
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  border-radius: inherit;
  transition: background 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(201,168,76,0.55), 0 8px 24px rgba(0,0,0,0.3);
}
.btn-primary:hover::after { background: rgba(255,255,255,0.08); }

.btn-ghost {
  background: transparent; color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover {
  border-color: var(--gold-light); color: var(--gold-light);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   WHATSAPP MOCKUP
═══════════════════════════════════════════ */
.wa-mockup-wrapper { display: flex; justify-content: center; align-items: center; position: relative; }
.wa-phone {
  width: 280px; background: #1a1a2e;
  border-radius: 36px; border: 2px solid rgba(201,168,76,0.3);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), var(--shadow-gold);
  position: relative;
  animation: phoneFloat 5s ease-in-out infinite;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.wa-phone:hover {
  box-shadow: 0 50px 100px rgba(0,0,0,0.6), 0 0 60px rgba(201,168,76,0.35);
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.wa-status-bar { background: #1a1a2e; padding: 8px 16px 4px; display: flex; justify-content: space-between; align-items: center; font-size: 0.65rem; color: rgba(255,255,255,0.7); }
.wa-header { background: #1f2c34; padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.wa-back { color: #25d366; font-size: 1.1rem; }
.wa-avatar { width: 36px; height: 36px; background: linear-gradient(135deg, #25d366, #128c7e); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.wa-contact-info { flex: 1; }
.wa-contact-name { color: #fff; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.wa-verified { background: #25d366; color: #fff; border-radius: 50%; width: 12px; height: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.55rem; }
.wa-status { color: #8696a0; font-size: 0.65rem; }
.wa-chat-area { background: #0b141a; min-height: 340px; padding: 12px 10px; position: relative; overflow: hidden; }
.wa-chat-area::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.wa-bubble-container { position: relative; z-index: 1; }
.wa-bubble { background: #1f2c34; color: #e9edef; border-radius: 0 12px 12px 12px; padding: 10px 12px; max-width: 88%; font-size: 0.72rem; line-height: 1.5; margin-bottom: 6px; opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease; position: relative; }
.wa-bubble.show { opacity: 1; transform: translateY(0); }
.wa-bubble-time { color: #8696a0; font-size: 0.58rem; text-align: right; margin-top: 4px; display: flex; align-items: center; justify-content: flex-end; gap: 3px; }
.wa-ticks { display: inline-flex; gap: 1px; transition: color 0.5s ease; }
.wa-ticks.double { color: #8696a0; }
.wa-ticks.blue   { color: #53bdeb; }
.wa-typing { display: flex; align-items: center; gap: 4px; padding: 10px 12px; background: #1f2c34; border-radius: 0 12px 12px 12px; width: 60px; opacity: 0; transition: opacity 0.3s; }
.wa-typing.show { opacity: 1; }
.wa-dot { width: 6px; height: 6px; background: #8696a0; border-radius: 50%; animation: waDot 1.2s ease-in-out infinite; }
.wa-dot:nth-child(2) { animation-delay: 0.2s; }
.wa-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes waDot { 0%, 100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1); } }

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
#trust { background: var(--purple-dark); padding: 36px 5%; border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); }
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-light); transition: background 0.3s, box-shadow 0.3s, transform 0.3s; }
.trust-item:hover .trust-icon { background: rgba(201,168,76,0.22); box-shadow: 0 0 20px rgba(201,168,76,0.3); transform: scale(1.1) rotate(8deg); }
.trust-icon svg { width: 20px; height: 20px; }
.trust-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.trust-stat-label { color: rgba(255,255,255,0.55); font-size: 0.75rem; letter-spacing: 0.04em; }
.trust-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.25); }

/* ═══════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════ */
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-primary); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; height: 1px; width: 28px; background: var(--gold-primary); opacity: 0.6; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.section-title.light { color: #fff; }
.section-title.dark  { color: var(--text-dark); }
.section-sub { font-size: 1rem; line-height: 1.7; max-width: 560px; }
.section-sub.light { color: rgba(255,255,255,0.65); }
.section-sub.dark  { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   PROBLEM SECTION  —  PAIN CARDS HOVER REVEAL
═══════════════════════════════════════════ */
#problem { background: var(--cream); padding: 100px 5%; position: relative; overflow: hidden; }
.problem-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.problem-header { text-align: center; margin-bottom: 70px; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.problem-illustration { display: flex; justify-content: center; align-items: center; }
.problem-illo-inner {
  width: 300px; height: 300px; background: var(--cream-dark);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  border: 2px solid rgba(160,120,48,0.2); position: relative;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.problem-illo-inner:hover { box-shadow: 0 0 50px rgba(201,168,76,0.2); transform: scale(1.03); }
.problem-illo-inner::after { content: ''; position: absolute; inset: -12px; border-radius: 50%; border: 1px dashed rgba(201,168,76,0.25); }
.problem-illo-icon { font-size: 3.5rem; animation: wobble 3s ease-in-out infinite; }
@keyframes wobble { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
.problem-illo-label { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--purple-rich); text-align: center; }

.pain-cards { display: flex; flex-direction: column; gap: 20px; }

/* ——— PAIN CARD HOVER REVEAL ——— */
.pain-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  display: flex; gap: 18px; align-items: flex-start;
  cursor: default;
  overflow: hidden;
  position: relative;
  transition:
    transform   0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow  0.4s ease,
    border-color 0.3s ease;
}
.pain-card::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.pain-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.22), 0 4px 16px rgba(0,0,0,0.07);
  border-color: var(--gold-primary);
}
.pain-card:hover::after {
  animation: shimmerCard 0.7s ease forwards;
}
@keyframes shimmerCard {
  0%   { left: -100%; }
  100% { left: 160%;  }
}

.pain-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(75,45,140,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-mid); flex-shrink: 0;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}
.pain-icon svg { width: 22px; height: 22px; }
.pain-card:hover .pain-icon {
  transform: rotate(360deg) scale(1.12);
  background: rgba(75,45,140,0.15);
}

.pain-title {
  font-weight: 600; color: var(--text-dark);
  margin-bottom: 4px; font-size: 0.95rem;
  transition: color 0.3s;
}
.pain-title::after {
  content: ' ↓';
  font-size: 0.72em; opacity: 0.3;
  font-weight: 400; letter-spacing: 0.05em;
  transition: opacity 0.3s, margin-left 0.3s;
}
.pain-card:hover .pain-title { color: var(--purple-rich); }
.pain-card:hover .pain-title::after { opacity: 0; }

.pain-desc {
  color: var(--text-muted); font-size: 0.85rem; line-height: 1.6;
  max-height: 0; overflow: hidden;
  opacity: 0; transform: translateY(10px);
  transition:
    max-height 0.55s cubic-bezier(0.34, 1.15, 0.64, 1) 0s,
    opacity    0.4s ease 0.12s,
    transform  0.4s ease 0.12s;
}
.pain-card:hover .pain-desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none), (max-width: 768px) {
  .pain-desc {
    max-height: 160px !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pain-title::after { display: none !important; }
  .pain-card { transform: none !important; }
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
#how-it-works { background: var(--purple-dark); padding: 100px 5%; overflow: hidden; position: relative; }
.hiw-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.hiw-header { text-align: center; margin-bottom: 80px; }
.steps-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  position: relative;
  transition: var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}
.step-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-gold);
}
.step-number {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--grad-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1rem;
  color: var(--purple-darkest); box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}
.step-icon {
  width: 64px; height: 64px; background: rgba(201,168,76,0.1); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--gold-light);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
}
.step-icon svg { width: 30px; height: 30px; }
.step-card:hover .step-icon { transform: scale(1.12) rotate(-6deg); background: rgba(201,168,76,0.18); }
.step-title { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.step-desc  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.step-connector { display: flex; align-items: center; justify-content: center; padding: 0 8px; padding-top: 80px; }
.connector-line { height: 2px; width: 60px; background: linear-gradient(90deg, rgba(201,168,76,0.3), var(--gold-primary)); position: relative; overflow: hidden; }
.connector-line::after { content: ''; position: absolute; top: 0; left: -100%; right: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(232,201,106,0.8), transparent); animation: lineShimmer 2.5s ease-in-out infinite; }
@keyframes lineShimmer { 0% { left: -100%; } 100% { left: 100%; } }
.connector-arrow { color: var(--gold-primary); margin-left: 2px; }

/* ═══════════════════════════════════════════
   MESSAGE SHOWCASE
═══════════════════════════════════════════ */
#showcase { background: var(--cream); padding: 100px 5%; }
.showcase-inner { max-width: 1100px; margin: 0 auto; }
.showcase-header { text-align: center; margin-bottom: 60px; }
.showcase-layout { display: grid; grid-template-columns: 1fr 360px 1fr; gap: 50px; align-items: center; }
.msg-tabs { display: flex; flex-direction: column; gap: 12px; }
.msg-tab {
  background: #fff; border: 1.5px solid transparent;
  border-radius: var(--radius-md); padding: 18px 20px;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.msg-tab:hover, .msg-tab.active { border-color: var(--gold-primary); background: rgba(201,168,76,0.05); }
.msg-tab.active { box-shadow: 0 4px 20px rgba(201,168,76,0.2); }
.msg-tab:hover { transform: translateX(4px); }
.tab-label { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.tab-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-primary); opacity: 0; transition: opacity 0.3s; }
.msg-tab.active .tab-dot { opacity: 1; }
.tab-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.showcase-phone { width: 280px; margin: 0 auto; }
.msg-info { display: flex; flex-direction: column; gap: 24px; }
.msg-feature { display: flex; gap: 16px; align-items: flex-start; transition: transform 0.3s ease; }
.msg-feature:hover { transform: translateX(5px); }
.msg-feature-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(75,45,140,0.08); display: flex; align-items: center; justify-content: center; color: var(--purple-mid); flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s; }
.msg-feature-icon svg { width: 20px; height: 20px; }
.msg-feature:hover .msg-feature-icon { transform: scale(1.15) rotate(-5deg); background: rgba(75,45,140,0.16); }
.msg-feature-title { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; margin-bottom: 4px; }
.msg-feature-desc { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

/* ═══════════════════════════════════════════
   FEATURES GRID  —  3D TILT
═══════════════════════════════════════════ */
#features { background: var(--purple-darkest); padding: 100px 5%; position: relative; overflow: hidden; }
.features-shimmer { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%); animation: shimmerLine 3s ease-in-out infinite; }
.features-shimmer-bottom { top: auto; bottom: 0; }
@keyframes shimmerLine { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.features-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.features-header { text-align: center; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feat-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.15);
  border-top: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.feat-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--shadow-gold);
  background: rgba(255,255,255,0.07);
}
.feat-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); margin-bottom: 20px;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, box-shadow 0.3s;
}
.feat-icon svg { width: 24px; height: 24px; }
.feat-card:hover .feat-icon {
  transform: scale(1.15) rotate(-8deg);
  background: rgba(201,168,76,0.2);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.feat-title { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.feat-desc { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

#pricing { background: rgba(19, 15, 36, 0.96); padding: 100px 5%; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 50px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.pricing-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.15);
  border-top: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  position: relative;
  overflow: hidden;
}
.pricing-header .section-copy {
  color: rgba(255,255,255,0.85);
}
.pricing-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.pricing-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--shadow-gold);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.pricing-card-top { margin-bottom: 24px; }
.pricing-label { display: inline-flex; color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.pricing-name { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.1; }
.pricing-price { font-size: 1rem; color: rgba(255,255,255,0.75); }
.pricing-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.75; }
.pricing-features li { position: relative; padding-left: 28px; }
.pricing-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-primary);
  font-size: 1rem;
  line-height: 1;
}
.pricing-note { max-width: 760px; margin: 32px auto 0; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   3D TILT SHINE OVERLAY (injected by JS)
═══════════════════════════════════════════ */
.tilt-shine {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
  transition: opacity 0.2s ease;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.14), transparent 60%);
}

/* ═══════════════════════════════════════════
   ANALYTICS
═══════════════════════════════════════════ */
#analytics { background: var(--cream); padding: 100px 5%; }
.analytics-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.analytics-copy .section-eyebrow { margin-bottom: 14px; }
.analytics-copy .section-title  { margin-bottom: 20px; }
.analytics-copy .section-sub    { margin-bottom: 40px; }
.metrics-row { display: flex; gap: 24px; flex-wrap: wrap; }
.metric-badge {
  background: var(--purple-dark); border-radius: var(--radius-md);
  padding: 18px 24px; text-align: center; min-width: 110px;
  position: relative; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.metric-badge::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-gold); }
.metric-badge:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(75,45,140,0.3); }
.metric-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
.metric-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.analytics-dashboard { background: var(--purple-dark); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-purple); border: 1px solid rgba(201,168,76,0.2); transition: transform 0.1s ease; }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.dash-title { color: #fff; font-weight: 600; font-size: 0.9rem; }
.dash-badge { background: rgba(201,168,76,0.15); color: var(--gold-light); border-radius: 50px; padding: 4px 12px; font-size: 0.7rem; font-weight: 500; }
.dash-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.dash-stat { background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 14px; text-align: center; transition: background 0.3s; }
.dash-stat:hover { background: rgba(255,255,255,0.08); }
.dash-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold-light); }
.dash-stat-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.dash-chart-area { background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 16px; }
.dash-chart-title { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 80px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.bar { width: 100%; border-radius: 4px 4px 0 0; background: var(--grad-gold); opacity: 0.8; animation: barGrow 1s ease forwards; transform-origin: bottom; }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bar-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.dash-bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.donut-wrap { background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); padding: 14px; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: background 0.3s; }
.donut-wrap:hover { background: rgba(255,255,255,0.06); }
.donut-chart { width: 70px; height: 70px; border-radius: 50%; background: conic-gradient(var(--gold-primary) 0% 92%, rgba(255,255,255,0.08) 92% 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.donut-chart::after { content: ''; width: 48px; height: 48px; border-radius: 50%; background: rgba(26,22,52,1); position: absolute; }
.donut-center { position: relative; z-index: 1; font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-weight: 700; color: var(--gold-light); }
.donut-label { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-align: center; text-transform: uppercase; letter-spacing: 0.05em; }
.read-donut .donut-chart { background: conic-gradient(var(--purple-light) 0% 78%, rgba(255,255,255,0.08) 78% 100%); }
.read-donut .donut-center { color: var(--purple-light); }

/* ═══════════════════════════════════════════
   TESTIMONIALS  —  3D TILT
═══════════════════════════════════════════ */
#testimonials { background: var(--purple-dark); padding: 100px 5%; overflow: hidden; }
.test-inner { max-width: 1100px; margin: 0 auto; }
.test-header { text-align: center; margin-bottom: 60px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.test-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; transition: border-color 0.4s ease, background 0.4s ease;
  transform-style: preserve-3d; will-change: transform; overflow: hidden;
}
.test-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.06); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--gold-primary); line-height: 0.5; margin-bottom: 16px; opacity: 0.7; transition: opacity 0.3s, transform 0.4s; }
.test-card:hover .quote-mark { opacity: 1; transform: scale(1.1); }
.test-text { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.test-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--gold-primary); font-size: 0.85rem; transition: transform 0.2s; }
.test-card:hover .star { animation: starPop 0.4s ease forwards; }
.test-card:hover .star:nth-child(1) { animation-delay: 0.0s; }
.test-card:hover .star:nth-child(2) { animation-delay: 0.05s; }
.test-card:hover .star:nth-child(3) { animation-delay: 0.10s; }
.test-card:hover .star:nth-child(4) { animation-delay: 0.15s; }
.test-card:hover .star:nth-child(5) { animation-delay: 0.20s; }
@keyframes starPop { 0% { transform: scale(1); } 50% { transform: scale(1.4) rotate(10deg); } 100% { transform: scale(1); } }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-cta); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.9rem; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.test-card:hover .test-avatar { transform: scale(1.12) rotate(-5deg); }
.test-name  { color: #fff; font-weight: 600; font-size: 0.88rem; }
.test-city  { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
#cta { background: var(--grad-hero); padding: 120px 5%; text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: -50%; background-image: repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px); animation: patternDrift 30s linear infinite reverse; }
.cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: #fff; margin-bottom: 20px; }
.cta-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 44px; line-height: 1.7; }
.btn-cta-big {
  background: var(--grad-gold); color: var(--purple-darkest);
  padding: 20px 52px; border-radius: 50px; font-weight: 700; font-size: 1.05rem;
  border: none; cursor: pointer; transition: box-shadow 0.3s ease;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.4);
  animation: ctaPulse 2.5s ease-in-out infinite;
  display: inline-block; position: relative; overflow: hidden;
}
.btn-cta-big::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn-cta-big:hover::after { background: rgba(255,255,255,0.12); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4), 0 8px 30px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 0 18px rgba(201,168,76,0), 0 8px 30px rgba(0,0,0,0.3); }
}
.cta-trust-line { margin-top: 24px; color: rgba(255,255,255,0.45); font-size: 0.78rem; letter-spacing: 0.04em; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-trust-dot  { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#footer { background: var(--purple-darkest); border-top: 1px solid rgba(201,168,76,0.15); padding: 60px 5% 36px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .nav-logo-text { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.83rem; line-height: 1.7; max-width: 240px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold-light); transition: var(--transition); cursor: pointer; }
.social-btn:hover { background: rgba(201,168,76,0.2); border-color: var(--gold-primary); transform: translateY(-3px) scale(1.1); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h5 { color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-bottom: 10px; transition: color 0.25s, transform 0.25s; }
.footer-col a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.3); font-size: 0.78rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .wa-mockup-wrapper { display: none; }
  .hero-glow { display: none; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .showcase-layout { grid-template-columns: 1fr; }
  .showcase-phone { order: -1; max-width: 280px; margin: 0 auto; }
  .msg-tabs { flex-direction: row; flex-wrap: wrap; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .analytics-inner { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .chapter-bg-num { display: none; }
}
@media (max-width: 768px) {
  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: rgba(22, 13, 48, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 24px 40px;
    gap: 32px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .nav-menu-wrapper.nav-active {
    right: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .nav-links a {
    font-size: 1.05rem;
    font-weight: 500;
  }
  .nav-lang {
    margin-left: 0;
  }
  .lang-menu {
    top: auto;
    bottom: calc(100% + 10px);
    right: 50%;
    transform: translateX(50%);
  }
  .btn-nav {
    width: 100%;
    text-align: center;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-illustration { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-inner { gap: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .metrics-row { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 2rem; }
  .btn-primary, .btn-ghost { padding: 13px 24px; font-size: 0.88rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-trust-line { flex-direction: column; gap: 8px; }
  .cta-trust-dot { display: none; }
}

/* ═══════════════════════════════════════════
   BOOK A DEMO MODAL
═══════════════════════════════════════════ */
.demo-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(22,13,48,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.demo-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
[hidden]:not(.demo-overlay) { display: none !important; }

.demo-modal {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.45);
  border-top: 4px solid var(--gold-primary);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  max-width: 660px; width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(22, 13, 48, 0.25), var(--shadow-gold);
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.demo-modal::-webkit-scrollbar {
  width: 6px;
}
.demo-modal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-xl);
}
.demo-modal::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.35);
  border-radius: 10px;
}
.demo-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 76, 0.55);
}
.demo-overlay.is-open .demo-modal { transform: scale(1) translateY(0); }

.demo-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(22, 13, 48, 0.05);
  border: 1px solid rgba(22, 13, 48, 0.1);
  color: var(--purple-darkest); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s;
}
.demo-modal-close:hover { background: rgba(201,168,76,0.15); color: var(--gold-deep); }

.demo-modal-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px; padding: 5px 14px;
  color: var(--gold-deep); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.demo-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 10px; line-height: 1.15;
}
.demo-modal-sub {
  color: var(--text-muted); font-size: 0.9rem;
  line-height: 1.6; margin-bottom: 32px;
}

.demo-form-container {
  width: 100%;
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(22, 13, 48, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 13, 48, 0.05);
}
.demo-form-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border: 3px solid rgba(201, 168, 76, 0.15);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: modalSpinner 0.8s linear infinite;
  z-index: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.demo-form-container.loaded::before {
  opacity: 0;
  visibility: hidden;
}
@keyframes modalSpinner {
  to { transform: rotate(360deg); }
}
.demo-form-container iframe {
  width: 100% !important;
  border: 0 !important;
  display: block;
  z-index: 1;
  background: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.demo-form-container.loaded iframe {
  opacity: 1;
}

.demo-success { text-align: center; padding: 40px 20px; }
.demo-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(37,211,102,0.1);
  border: 2px solid rgba(37,211,102,0.4);
  color: #25d366; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }
.demo-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--text-dark); margin-bottom: 12px;
}
.demo-success-msg { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

@media (max-width: 600px) {
  .demo-modal { padding: 32px 24px; }
  .demo-form-row { grid-template-columns: 1fr; }
  .demo-modal-title { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════
   SPREAD-INSPIRED EFFECTS
═══════════════════════════════════════════ */

/* —— Hero grain/noise overlay —— */
.hero-noise {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1; opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
}

/* —— Hero spotlight cursor —— */
.hero-spotlight {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
  transition: background 0.18s ease;
}

/* —— Extra hero floating orbs —— */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero-orb-2 {
  width: 520px; height: 520px;
  left: -180px; bottom: -160px;
  background: radial-gradient(circle, rgba(75,45,140,0.25) 0%, transparent 65%);
  animation: orbDrift 8s ease-in-out infinite;
}
.hero-orb-3 {
  width: 260px; height: 260px;
  right: 38%; top: 6%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  animation: orbDrift 5.5s ease-in-out infinite 2.2s;
}
@keyframes orbDrift {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
  50%       { transform: translateY(-28px) scale(1.07); opacity: 1; }
}

/* —— Continuous btn-primary shimmer —— */
.btn-primary::before {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.26), transparent);
  transform: skewX(-20deg);
  animation: btnShimmerLoop 4.5s ease-in-out infinite 0.8s;
  pointer-events: none;
}
@keyframes btnShimmerLoop {
  0%, 100% { left: -75%; opacity: 0; }
  8%  { opacity: 1; }
  42% { left: 130%; opacity: 0; }
  43%, 99% { left: 130%; opacity: 0; }
}

/* —— Marquee ticker —— */
#ticker {
  background: rgba(22,13,48,0.96);
  border-bottom: 1px solid rgba(201,168,76,0.13);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
}
#ticker::before,
#ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 110px; z-index: 2; pointer-events: none;
}
#ticker::before {
  left: 0;
  background: linear-gradient(to right, rgba(22,13,48,1), transparent);
}
#ticker::after {
  right: 0;
  background: linear-gradient(to left, rgba(22,13,48,1), transparent);
}
.ticker-track {
  display: flex; align-items: center;
  width: max-content;
  animation: tickerScroll 34s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 30px;
  color: rgba(255,255,255,0.38);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
}
.ticker-item:hover { color: rgba(201,168,76,0.75); }
.ticker-sep {
  color: var(--gold-primary);
  font-size: 0.5rem; opacity: 0.55;
}

/* —— Dot grid on features section —— */
#features::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.065) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none; z-index: 0;
}

/* —— Dot grid on how-it-works section —— */
#how-it-works::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none; z-index: 0;
}

/* ═══════════════════════════════════════════
   LIVE GOLD PRICE TICKER BANNER
   ═══════════════════════════════════════════ */
#gold-price-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: rgba(18, 9, 39, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1001;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ticker-live-status {
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.gold-live-dot {
  width: 7px; height: 7px;
  background: #25d366;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.gold-live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #25d366;
  opacity: 0;
  animation: dotPulse 2s infinite ease-out;
}

@keyframes dotPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.gold-live-label {
  font-size: 0.68rem;
  text-transform: uppercase;
}

.gold-ticker-prices-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
  justify-content: center;
  padding: 0 20px;
}

.gold-ticker-prices {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gold-price-item {
  color: rgba(255, 255, 255, 0.8);
}

.gold-price-item strong {
  color: #fff;
  font-weight: 600;
}

.gold-price-sep {
  color: var(--gold-primary);
  opacity: 0.4;
  font-weight: bold;
}

.price-trend {
  font-weight: 700;
  margin-left: 2px;
  font-size: 0.72rem;
}

.price-trend.up {
  color: #25d366;
}

.price-trend.down {
  color: #e05c5c;
}

.gold-settings-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: color 0.25s, background 0.25s, transform 0.3s;
}

.gold-settings-btn:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(45deg);
}

.gold-settings-btn svg {
  width: 14px; height: 14px;
}

/* ═══════════════════════════════════════════
   GOLD API KEY SETTINGS MODAL
   ═══════════════════════════════════════════ */
.gold-settings-overlay {
  position: fixed; inset: 0; z-index: 10005;
  background: rgba(22, 13, 48, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gold-settings-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.gold-settings-modal {
  background: linear-gradient(145deg, #1e1240, #2a1654);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-top: 3px solid var(--gold-primary);
  border-radius: var(--radius-lg, 24px);
  padding: 36px;
  max-width: 440px; width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), var(--shadow-gold);
  transform: scale(0.95) translateY(15px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.gold-settings-overlay.is-open .gold-settings-modal {
  transform: scale(1) translateY(0);
}

.gold-settings-close {
  position: absolute; top: 18px; right: 18px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s;
}

.gold-settings-close:hover {
  background: rgba(201, 168, 76, 0.15); color: var(--gold-light);
}

.gold-settings-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}

.gold-settings-desc {
  color: rgba(255, 255, 255, 0.6); font-size: 0.82rem;
  line-height: 1.5; margin-bottom: 20px;
}

.gold-settings-field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}

.gold-settings-field label {
  color: rgba(255, 255, 255, 0.7); font-size: 0.8rem;
  font-weight: 500;
}

.gold-settings-field input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm, 12px);
  padding: 10px 14px; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  width: 100%; box-sizing: border-box;
}

.gold-settings-field input:focus {
  border-color: var(--gold-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.gold-settings-save {
  background: var(--grad-gold); color: var(--purple-darkest);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-gold);
  width: 100%;
}

.gold-settings-save:hover {
  transform: translateY(-2px); box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

@media (max-width: 768px) {
  #gold-price-banner {
    padding: 0 16px;
  }
  .ticker-live-status {
    flex-shrink: 0;
    margin-right: 12px;
  }
  .gold-ticker-prices-wrap {
    overflow: hidden;
    position: relative;
    padding: 0;
    justify-content: flex-start;
    mask-image: linear-gradient(to right, transparent, black 15px, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15px, black 90%, transparent);
  }
  .gold-ticker-prices {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    animation: goldBannerMarquee 20s linear infinite;
    padding-left: 100%;
  }
  #btn-gold-settings {
    flex-shrink: 0;
    margin-left: 8px;
  }
}

@keyframes goldBannerMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ═══════════════════════════════════════════
   LIVE BULLION RATES BOARD
   ═══════════════════════════════════════════ */
#bullion-board {
  position: relative;
  background: var(--purple-darkest);
  padding: 80px 5% 60px;
  overflow: hidden;
}
.bullion-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.bullion-header {
  text-align: center;
  margin-bottom: 50px;
}
.bullion-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 36px;
  align-items: start;
}

/* --- Rates Table Card --- */
.rates-table-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius-lg, 24px);
  padding: 32px;
  box-shadow: var(--shadow-purple);
  backdrop-filter: blur(10px);
}
.table-responsive {
  overflow-x: auto;
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.rates-table th {
  font-size: 0.8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.rates-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  vertical-align: middle;
}
.rates-table tr:last-child td {
  border-bottom: none;
}
.rates-table .product-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.rates-table .rate-val {
  background: #128c7e;
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-block;
  min-width: 108px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.25);
  transition: transform 0.2s, background-color 0.2s, color 0.2s;
  border: none;
  cursor: default;
}
.rates-table .rate-val:hover {
  transform: scale(1.04);
}
.txt-center {
  text-align: center !important;
}
.stock-status {
  text-align: center;
  width: 80px;
}
.stock-check {
  color: #25d366;
  font-size: 1.1rem;
  font-weight: bold;
}
.stock-cross {
  color: #e05c5c;
  font-size: 1.1rem;
  font-weight: bold;
}

/* --- Mini Rates Column --- */
.mini-rates-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mini-rates-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius-lg, 24px);
  padding: 24px;
  box-shadow: var(--shadow-purple);
  backdrop-filter: blur(10px);
}
.mini-rates-card .card-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  font-size: 0.75rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: bold;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 16px;
}
.mini-rates-card .card-header span:not(:first-child) {
  text-align: center;
}
.mini-rates-card .card-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  margin-bottom: 10px;
}
.mini-rates-card .commodity-info {
  display: flex;
  flex-direction: column;
}
.mini-rates-card .commodity-info .name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}
.mini-rates-card .commodity-info .expiry {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}
.mini-rates-card .val-box {
  background: #128c7e;
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 6px;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  min-width: 80px;
  margin: 0 4px;
  box-shadow: 0 4px 10px rgba(18, 140, 126, 0.2);
  transition: color 0.2s, background-color 0.2s;
}
.mini-rates-card .val-box-inline {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.2s, background-color 0.2s;
}
.mini-rates-card .card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 2px;
}
.mini-rates-card .card-meta strong {
  font-weight: 600;
}
.c-green { color: #25d366 !important; }
.c-red { color: #e05c5c !important; }
.mt-12 { margin-top: 12px; }
.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 16px 0 12px;
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
  .bullion-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .rates-table-card {
    padding: 20px 14px;
  }
  .rates-table th {
    font-size: 0.7rem;
    padding-bottom: 12px;
  }
  .rates-table td {
    font-size: 0.8rem;
    padding: 10px 0;
  }
  .rates-table .rate-val {
    min-width: 84px;
    padding: 6px 8px;
    font-size: 0.82rem;
  }
}


