/* Naam Jap Counter — Stylesheet */

/* ============================================
   ROOT TOKENS
   ============================================ */
:root {
  --bg: #0a0706;
  --bg-soft: #110c09;
  --surface: #16100b;
  --surface-2: #1d160f;
  --line: rgba(255, 200, 140, 0.08);
  --line-strong: rgba(255, 200, 140, 0.18);

  --saffron: #FF9933;
  --saffron-glow: #FFB266;
  --saffron-deep: #E07A1A;
  --gold: #D4A574;
  --cream: #F5E6D3;

  --text: #F5E6D3;
  --text-soft: rgba(245, 230, 211, 0.72);
  --text-mute: rgba(245, 230, 211, 0.45);

  --shadow-glow: 0 0 60px rgba(255, 153, 51, 0.25);
  --shadow-card: 0 30px 80px -30px rgba(0,0,0,0.8);

  --font-deva: 'Tiro Devanagari Sanskrit', serif;
  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Background atmosphere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 153, 51, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212, 165, 116, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(224, 122, 26, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

main, header, footer, section { position: relative; z-index: 2; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10, 7, 6, 0.55);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease);
}

.nav.scrolled { padding: 12px 5vw; background: rgba(10, 7, 6, 0.85); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-deva);
  font-size: 22px;
  color: var(--saffron);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-brand .om {
  font-size: 28px;
  display: inline-block;
  text-shadow: 0 0 12px rgba(255, 153, 51, 0.5);
}

@keyframes breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255,153,51,0.5)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 18px rgba(255,153,51,0.9)); }
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-links a:hover { color: var(--saffron); }

.nav-cta {
  background: var(--saffron);
  color: #0a0706;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--saffron);
}

.nav-cta:hover {
  background: transparent;
  color: var(--saffron);
  box-shadow: 0 0 24px rgba(255,153,51,0.4);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--saffron);
  background: rgba(255, 153, 51, 0.06);
}

.nav-toggle:active { transform: scale(0.94); }

.hamburger-icon {
  width: 22px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.hamburger-icon span {
  position: absolute;
  left: 0;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  transition:
    top 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-icon span:nth-child(1) { top: 0;  width: 100%; transform-origin: center; }
.hamburger-icon span:nth-child(2) { top: 7px; width: 70%;  }
.hamburger-icon span:nth-child(3) { top: 14px; width: 45%; }

.nav-toggle:hover .hamburger-icon span:nth-child(2),
.nav-toggle:hover .hamburger-icon span:nth-child(3) { width: 100%; }

.nav-toggle.open .hamburger-icon span {
  transition:
    top 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.2s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.nav-toggle.open .hamburger-icon span:nth-child(1) {
  top: 7px;
  width: 100%;
  transform: rotate(45deg);
}

.nav-toggle.open .hamburger-icon span:nth-child(2) {
  opacity: 0;
  width: 0;
  left: 50%;
}

.nav-toggle.open .hamburger-icon span:nth-child(3) {
  top: 7px;
  width: 100%;
  transform: rotate(-45deg);
}

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5vw 56px;
  position: relative;
  overflow: hidden;
}

.mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 95vw);
  height: min(900px, 95vw);
  transform: translate(-50%, -50%);
  opacity: 0.18;
  animation: rotate 120s linear infinite;
  pointer-events: none;
}

@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.mandala-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(500px, 60vw);
  height: min(500px, 60vw);
  transform: translate(-50%, -50%);
  opacity: 0.10;
  animation: rotate-reverse 80s linear infinite;
  pointer-events: none;
}

@keyframes rotate-reverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }

.hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 1s var(--ease) 0.2s forwards;
}

.hero-om {
  font-family: var(--font-deva);
  font-size: clamp(80px, 14vw, 180px);
  color: var(--saffron);
  line-height: 1;
  min-height: clamp(80px, 14vw, 180px);
  margin-bottom: 12px;
  text-shadow:
    0 0 30px rgba(255, 153, 51, 0.5),
    0 0 80px rgba(255, 153, 51, 0.3);
  animation: breathe-large 5s ease-in-out infinite;
  opacity: 0;
  animation: fade-up 1.2s var(--ease) 0.4s forwards, breathe-large 5s ease-in-out 1.6s infinite;
}

@keyframes breathe-large {
  0%, 100% { text-shadow: 0 0 30px rgba(255,153,51,0.5), 0 0 80px rgba(255,153,51,0.3); }
  50% { text-shadow: 0 0 50px rgba(255,153,51,0.8), 0 0 120px rgba(255,153,51,0.5); }
}

.hero-title {
  font-family: var(--font-deva);
  font-size: clamp(42px, 7vw, 88px);
  color: var(--cream);
  line-height: 1.1;
  min-height: clamp(46px, 7.7vw, 97px);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 1s var(--ease) 0.6s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--text);
  font-style: italic;
  margin-bottom: 8px;
  opacity: 0;
  animation: fade-up 1s var(--ease) 0.8s forwards;
  max-width: 700px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--saffron);
  letter-spacing: 0.06em;
  margin: 0 0 22px;
  opacity: 0;
  animation: fade-up 1s var(--ease) 0.7s forwards;
}

.hero-subtagline {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--text-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 1s var(--ease) 1.0s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up 1s var(--ease) 1.2s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--saffron);
  color: #0a0706;
  box-shadow: 0 10px 40px -10px rgba(255,153,51,0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -10px rgba(255,153,51,0.7);
  background: var(--saffron-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(255,153,51,0.05);
}

.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: clamp(20px, 5vw, 80px);
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up 1s var(--ease) 1.4s forwards;
}

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

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}

.hero-stat-divider {
  width: 1px;
  background: var(--line-strong);
  align-self: stretch;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating diyas */
.diya {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 10px var(--saffron), 0 0 20px var(--saffron-glow);
  pointer-events: none;
  opacity: 0;
  animation: float-up 8s linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-100px) translateX(40px); opacity: 0; }
}

/* ============================================
   SECTION SHELL
   ============================================ */
section {
  padding: 72px 5vw;
  position: relative;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--saffron);
  font-weight: 400;
}

.section-lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.section-head {
  max-width: 1300px;
  margin: 0 auto;
}

.container { max-width: 1300px; margin: 0 auto; }

/* ============================================
   LIVE MALA DEMO
   ============================================ */
.mala-section {
  background: linear-gradient(180deg, transparent, rgba(255,153,51,0.03), transparent);
  text-align: center;
  padding: 72px 5vw;
}

.mala-section .section-eyebrow { justify-content: center; }
.mala-section .section-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.mala-section .section-lede { margin-left: auto; margin-right: auto; text-align: center; }

.mala-demo {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
}

.bead-circle {
  position: relative;
  width: min(380px, 80vw);
  height: min(380px, 80vw);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.bead-ring,
.bead-ring-2 {
  display: none;
}

.bead-progress {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--saffron) 0%, var(--saffron) var(--progress, 0%), transparent var(--progress, 0%));
  -webkit-mask: radial-gradient(circle, transparent 47%, black 49%);
          mask: radial-gradient(circle, transparent 47%, black 49%);
  transition: --progress 0.3s ease;
}

.bead-button {
  position: relative;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--saffron-glow), var(--saffron) 50%, var(--saffron-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow:
    inset 0 -20px 40px rgba(0,0,0,0.3),
    inset 0 10px 20px rgba(255,255,255,0.15),
    0 30px 60px -20px rgba(255,153,51,0.6),
    0 0 80px rgba(255,153,51,0.3);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.bead-button:active, .bead-button.tapped {
  transform: scale(0.96);
  box-shadow:
    inset 0 -20px 40px rgba(0,0,0,0.3),
    inset 0 10px 20px rgba(255,255,255,0.15),
    0 10px 30px -10px rgba(255,153,51,0.4),
    0 0 50px rgba(255,153,51,0.5);
}

.bead-om {
  font-family: var(--font-deva);
  font-size: clamp(64px, 9vw, 96px);
  color: #2a1505;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(255,255,255,0.3);
  user-select: none;
}

.bead-tap-hint {
  display: none;
}

.ripple {
  position: absolute;
  border: 2px solid var(--saffron);
  border-radius: 50%;
  pointer-events: none;
  animation: ripple-out 0.8s var(--ease) forwards;
}

@keyframes ripple-out {
  from { width: 80%; height: 80%; opacity: 0.8; }
  to { width: 130%; height: 130%; opacity: 0; }
}

.mala-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 600px;
}

.mala-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s var(--ease);
}

.mala-stat:hover { border-color: var(--line-strong); }

.mala-stat-icon {
  width: 22px;
  height: 22px;
  color: var(--saffron);
  opacity: 0.65;
  margin: 0 auto 12px;
  display: block;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.mala-stat:hover .mala-stat-icon {
  opacity: 1;
  transform: scale(1.1) rotate(-4deg);
}

.mala-stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 6px;
  transition: transform 0.2s var(--ease);
}

.mala-stat-num.bumped { transform: scale(1.15); }

.mala-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.mala-controls {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.sound-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--saffron);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  padding: 0;
}

.sound-toggle:hover {
  background: rgba(255,153,51,0.08);
  border-color: var(--saffron);
  transform: scale(1.05);
}

.sound-toggle svg { width: 18px; height: 18px; }
.sound-toggle .icon-off { display: none; }
.sound-toggle.muted .icon-on { display: none; }
.sound-toggle.muted .icon-off { display: block; }
.sound-toggle.muted { color: var(--text-mute); border-color: var(--line); }

.mantra-current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  margin-bottom: 4px;
  max-width: 600px;
}

.mantra-current-line {
  flex: 0 0 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron) 50%, transparent);
  opacity: 0.5;
}

.mantra-current-text { flex: 0 1 auto; }

.mantra-display {
  font-family: var(--font-deva);
  color: var(--saffron);
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 8px;
  min-height: 1.3em;
  line-height: 1.3;
  text-shadow: 0 0 24px rgba(255, 153, 51, 0.25);
}

.mantra-meaning {
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  min-height: 1.4em;
}

.mala-celebration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.mala-celebration.show { display: flex; }

.mala-celebration-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 153, 51, 0.18), transparent 55%),
    rgba(10, 7, 6, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: backdrop-fade 2.6s ease;
}

.mala-celebration-content {
  position: relative;
  text-align: center;
  animation: celebration-pop 2.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mala-celebration-num {
  font-family: var(--font-deva);
  font-size: clamp(120px, 22vw, 260px);
  color: var(--saffron);
  line-height: 1;
  font-weight: 400;
  text-shadow:
    0 0 50px rgba(255, 153, 51, 0.85),
    0 0 110px rgba(255, 153, 51, 0.55),
    0 0 200px rgba(255, 153, 51, 0.3);
}

.mala-celebration-label {
  font-family: var(--font-deva);
  font-size: clamp(22px, 3.2vw, 36px);
  color: var(--cream);
  margin-top: 18px;
  letter-spacing: 0.03em;
}

.mala-celebration-sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.85;
}

@keyframes celebration-pop {
  0%   { transform: scale(0.55); opacity: 0; }
  18%  { transform: scale(1.08); opacity: 1; }
  32%  { transform: scale(1);    opacity: 1; }
  82%  { transform: scale(1);    opacity: 1; }
  100% { transform: scale(1.12); opacity: 0; }
}

@keyframes backdrop-fade {
  0%   { opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: var(--surface-2);
}

.feature-card:hover::before { opacity: 1; }

.feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border-color: rgba(255,153,51,0.2);
}

.feature-card.featured:hover { border-color: var(--saffron); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,153,51,0.1);
  border: 1px solid rgba(255,153,51,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--saffron);
  transition: all 0.3s var(--ease);
}

.feature-card:hover .feature-icon {
  background: rgba(255,153,51,0.18);
  transform: rotate(-4deg) scale(1.05);
}

.feature-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }

.feature-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.feature-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  padding: 4px 10px;
  border: 1px solid rgba(255,153,51,0.3);
  border-radius: 999px;
}

@media (max-width: 700px) {
  .feature-card.featured { grid-column: span 1; }
}

/* ============================================
   MANTRA LIBRARY
   ============================================ */
.mantra-section { padding-top: 36px; }

.mantra-carousel {
  margin-top: 32px;
  position: relative;
}

.mantra-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mantra-track::-webkit-scrollbar { display: none; }

.mantra-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.mantra-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,153,51,0.15), transparent 70%);
  transition: all 0.4s var(--ease);
}

.mantra-card:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
}

.mantra-card:hover::after { transform: scale(1.5); }

.mantra-deva {
  font-family: var(--font-deva);
  font-size: 28px;
  color: var(--saffron);
  line-height: 1.4;
  margin-bottom: 16px;
  min-height: 80px;
}

.mantra-translit {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 12px;
}

.mantra-deity {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.mantra-meaning-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

.mantra-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.mantra-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--saffron);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mantra-nav-btn:hover {
  background: var(--saffron);
  color: #0a0706;
  transform: scale(1.05);
}

/* ============================================
   SANKALP CALCULATOR
   ============================================ */
.sankalp-section {
  background: linear-gradient(180deg, transparent, rgba(212,165,116,0.03), transparent);
}

.sankalp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .sankalp-wrap { grid-template-columns: 1fr; gap: 60px; }
}

.sankalp-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.control-group label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: block;
  margin-bottom: 14px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font-body);
}

.chip:hover { border-color: var(--saffron); color: var(--saffron); }

.chip.active {
  background: var(--saffron);
  color: #0a0706;
  border-color: var(--saffron);
  font-weight: 600;
}

.custom-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.custom-input:focus { border-color: var(--saffron); }

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line-strong);
  border-radius: 999px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--saffron);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255,153,51,0.5);
  transition: transform 0.2s var(--ease);
}

.range-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

.range-value {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
}

.range-value-main {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--saffron);
}

.range-value-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* Sankalp display ring */
.sankalp-display {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ring-wrap {
  position: relative;
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  margin-bottom: 40px;
}

.ring-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 8px solid var(--surface-2);
}

.ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: var(--surface-2);
  stroke-width: 8;
}

.ring-progress {
  fill: none;
  stroke: var(--saffron);
  stroke-width: 8;
  stroke-linecap: butt;
  transition: stroke-dashoffset 0.8s var(--ease);
}

.bead-circle .ring-progress {
  display: none;
}

.bead-string {
  fill: none;
  stroke: rgba(255, 200, 140, 0.18);
  stroke-width: 0.25;
  stroke-dasharray: 0.4 1.4;
}

.mala-dots {
  pointer-events: none;
}

.mala-bead {
  fill: url(#beadEmpty);
  transition: r 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0.3px 0.4px rgba(0,0,0,0.5));
}

.mala-bead.filled {
  fill: url(#beadFilled);
  filter: drop-shadow(0 0.3px 0.6px rgba(0,0,0,0.6));
}

.mala-bead.just-tapped {
  fill: url(#beadJustTapped);
  r: 1.7;
  filter: drop-shadow(0 0 2px rgba(255, 178, 102, 0.9));
}

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ring-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--saffron);
  line-height: 1;
}

.ring-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 8px;
}

.sankalp-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
  max-width: 380px;
}

.summary-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: border-color 0.3s var(--ease);
}

.summary-cell:hover { border-color: var(--line-strong); }

.summary-cell-icon {
  width: 20px;
  height: 20px;
  color: var(--saffron);
  opacity: 0.7;
  margin: 0 auto 10px;
  display: block;
}

.summary-cell-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
}

.summary-cell-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  text-align: center;
  position: relative;
  padding: 24px 16px;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 80px;
  color: rgba(255,153,51,0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
}

.step-icon svg { width: 40px; height: 40px; stroke-width: 1.2; }

.step-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 14px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   ANALYTICS PREVIEW
   ============================================ */
.analytics-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .analytics-section { grid-template-columns: 1fr; }
}

.analytics-mock {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.analytics-streak {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.weekly-total {
  text-align: right;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.weekly-total-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--saffron);
  line-height: 1;
}

.weekly-total-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 6px;
}

.flame-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, #FF6B1A, #FF9933);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: flamePulse 3s ease-in-out infinite;
  box-shadow: 0 6px 20px -4px rgba(255, 107, 26, 0.5);
}

@keyframes flamePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 20px -4px rgba(255, 107, 26, 0.5); }
  50% { transform: scale(1.06); box-shadow: 0 8px 28px -4px rgba(255, 107, 26, 0.75); }
}

.streak-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--cream);
  line-height: 1;
}

.streak-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
}

.chart-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  height: 200px;
  margin-bottom: 16px;
  padding: 24px 4px 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.chart-wrap::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  border-top: 1px dashed var(--line);
  opacity: 0.4;
  pointer-events: none;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  border-radius: 8px 8px 2px 2px;
  position: relative;
  min-height: 4px;
  transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s var(--ease);
  box-shadow: 0 -2px 8px rgba(255, 153, 51, 0.18);
  opacity: 0.55;
  transform-origin: bottom;
  animation: chartBarGrow 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes chartBarGrow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); }
}

.chart-bar.empty {
  background: transparent;
  border: 1px dashed var(--line-strong);
  box-shadow: none;
  opacity: 0.3;
}

.chart-bar.empty .chart-bar-val { color: var(--text-mute); opacity: 0.4; }

.chart-bar.today {
  background: linear-gradient(180deg, var(--saffron-glow) 0%, var(--saffron) 100%);
  box-shadow:
    0 -2px 12px rgba(255, 153, 51, 0.55),
    0 0 30px rgba(255, 153, 51, 0.4);
  position: relative;
  opacity: 1;
}

.chart-bar.today::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--saffron-glow);
  animation: todayPulse 2.4s ease-in-out infinite;
}

@keyframes todayPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.4); opacity: 0.6; }
}

.chart-bar-val {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--cream);
  font-weight: 600;
  font-family: var(--font-display);
}

.chart-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 180px;
  margin-bottom: 16px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,153,51,0.04), transparent);
  border-radius: 14px;
  border: 1px dashed var(--line-strong);
}

.chart-empty.show { display: flex; }
.chart-wrap.hide { display: none; }

.chart-empty-icon {
  font-size: 36px;
  margin-bottom: 12px;
  opacity: 0.6;
}

.chart-empty-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 6px;
}

.chart-empty-text {
  font-size: 13px;
  color: var(--text-mute);
  max-width: 280px;
  line-height: 1.6;
}

.chart-days {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.chart-day {
  flex: 1;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.lifetime-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

.lifetime-icon {
  width: 22px;
  height: 22px;
  color: var(--saffron);
  opacity: 0.7;
  margin: 0 auto 10px;
  display: block;
}

.lifetime-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 6px;
}

.lifetime-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ============================================
   PHONE MOCKUP
   ============================================ */
.phone-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .phone-showcase { grid-template-columns: 1fr; }
}

.phone-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.phone-aura {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,153,51,0.22), rgba(255,153,51,0.08) 40%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  animation: aura-breathe 5s ease-in-out infinite;
}

@keyframes aura-breathe {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

.phone {
  width: min(280px, 80vw);
  height: 580px;
  border-radius: 42px;
  background: #050302;
  border: 8px solid #1a1410;
  padding: 12px 8px;
  position: relative;
  box-shadow:
    0 70px 120px -30px rgba(0,0,0,0.85),
    0 0 100px rgba(255,153,51,0.18),
    inset 0 1px 2px rgba(255,255,255,0.06);
  margin: 0 auto;
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}

.phone:hover { transform: rotateY(0deg) rotateX(0deg); }

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 10px;
  height: 18px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  font-family: -apple-system, system-ui, sans-serif;
  letter-spacing: 0.02em;
}

.phone-status-right {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--cream);
}

.phone::before {
  display: none;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px 14px 14px;
}

.phone-status {
  padding: 0 4px;
}

.phone-header {
  text-align: center;
  margin-bottom: 18px;
}

.phone-title {
  font-family: var(--font-deva);
  color: var(--saffron);
  font-size: 16px;
}

.phone-mantra {
  font-family: var(--font-deva);
  color: var(--saffron);
  font-size: 12px;
  margin-top: 4px;
}

.phone-bead {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--saffron-glow), var(--saffron), var(--saffron-deep));
  margin: 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-deva);
  font-size: 48px;
  color: #2a1505;
  box-shadow: 0 10px 30px -5px rgba(255,153,51,0.6);
  animation: pulse-phone 3s ease-in-out infinite;
}

@keyframes pulse-phone {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.phone-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 12px;
}

.phone-stat {
  text-align: center;
  padding: 8px 6px;
  background: var(--surface);
  border-radius: 10px;
  flex: 1;
  margin: 0 3px;
}

.phone-stat-num {
  font-family: var(--font-display);
  color: var(--saffron);
  font-size: 16px;
  line-height: 1;
}

.phone-stat-lbl {
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 3px;
}

.phone-nav {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border-radius: 14px;
  display: flex;
  padding: 8px;
  justify-content: space-around;
}

.phone-nav-item {
  font-size: 7px;
  color: var(--text-mute);
  padding: 4px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-nav-item.active { color: var(--saffron); }

/* ============================================
   QUOTES
   ============================================ */
.quote-section {
  text-align: center;
  padding: 80px 5vw;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--saffron);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -40px;
}

.quote-text {
  font-family: var(--font-deva);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 30px;
}

.quote-attribution {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.1em;
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download-section {
  text-align: center;
  padding: 96px 5vw;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,153,51,0.15), transparent 60%);
  pointer-events: none;
}

.download-wrap { position: relative; max-width: 700px; margin: 0 auto; }

.download-title {
  font-family: var(--font-deva);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--saffron);
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(255,153,51,0.4);
}

.download-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text);
  margin-bottom: 14px;
}

.download-promise {
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  background: var(--saffron);
  color: #0a0706;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  box-shadow: 0 20px 60px -10px rgba(255,153,51,0.5);
  transition: all 0.3s var(--ease);
}

.download-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 30px 80px -10px rgba(255,153,51,0.7);
  background: var(--saffron-glow);
}

.download-icon { font-size: 28px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 56px 5vw 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-om {
  font-family: var(--font-deva);
  color: var(--saffron);
  font-size: 40px;
  margin-bottom: 16px;
  animation: breathe 4s ease-in-out infinite;
  display: inline-block;
}

.footer-text {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-mute);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}

.footer-links a:hover { color: var(--saffron); }

.footer-copy {
  color: var(--text-mute);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 7, 6, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s var(--ease), visibility 0.7s, backdrop-filter 0.7s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s var(--ease), visibility 0.4s, backdrop-filter 0.4s;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cream);
  text-decoration: none;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s var(--ease);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-menu a:nth-child(1) { transition-delay: 0.30s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.10s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.05s; }

.mobile-menu.open a:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.40s; }

.mobile-menu a:hover { color: var(--saffron); }

/* ============================================
   MANTRA PICKER MODAL
   ============================================ */
.mantra-picker {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.mantra-picker.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.picker-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 2, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.picker-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8), 0 0 60px rgba(255,153,51,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s var(--ease);
}

.mantra-picker.open .picker-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.picker-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--cream);
}

.picker-title em {
  font-style: italic;
  color: var(--saffron);
}

.picker-close {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.picker-close:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: rotate(90deg);
}

.picker-list {
  overflow-y: auto;
  padding: 14px 14px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--saffron) transparent;
  flex: 1 1 auto;
  min-height: 0;
}

.picker-list::-webkit-scrollbar { width: 4px; }
.picker-list::-webkit-scrollbar-track { background: transparent; }
.picker-list::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 999px; }

.picker-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 18px 16px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.picker-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--saffron);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), top 0.35s var(--ease), bottom 0.35s var(--ease);
}

.picker-item:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
  transform: translateX(2px);
}

.picker-item:hover::before { transform: scaleY(0.5); }

.picker-item.selected {
  border-color: var(--saffron);
  background: linear-gradient(95deg, rgba(255,153,51,0.10) 0%, rgba(255,153,51,0.03) 60%);
  box-shadow: 0 4px 24px -8px rgba(255,153,51,0.25);
}

.picker-item.selected::before {
  transform: scaleY(1);
  top: 12px;
  bottom: 12px;
}

.picker-item.selected::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--saffron);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 153, 51, 0.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0706' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.picker-item-deva {
  font-family: var(--font-deva);
  color: var(--saffron);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.3;
  max-width: 45%;
}

.picker-item-info {
  flex: 1;
  min-width: 0;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.picker-item-name {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream);
  font-size: 15px;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.picker-item-deity {
  color: var(--text-mute);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.picker-item.selected:has(.picker-item-delete)::after {
  right: 56px;
  width: 20px;
  height: 20px;
  background-size: 12px;
}

.picker-item-delete {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-mute);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.picker-item-delete:hover {
  border-color: #ff5555;
  color: #ff5555;
}

.picker-footer {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.picker-add-btn {
  width: 100%;
  background: transparent;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  padding: 14px;
  color: var(--saffron);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.picker-add-btn:hover {
  border-color: var(--saffron);
  background: rgba(255,153,51,0.05);
}

.picker-add-form {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.picker-add-form.open { display: flex; }

.picker-input {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s var(--ease);
  width: 100%;
}

.picker-input.deva-input {
  font-family: var(--font-deva);
  font-size: 18px;
  color: var(--saffron);
}

.picker-input:focus { border-color: var(--saffron); }

.picker-form-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.picker-btn-save, .picker-btn-cancel {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  letter-spacing: 0.04em;
}

.picker-btn-save {
  background: var(--saffron);
  color: #0a0706;
}

.picker-btn-save:hover { background: var(--saffron-glow); }

.picker-btn-cancel {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--line-strong);
}

.picker-btn-cancel:hover { border-color: var(--saffron); color: var(--saffron); }

.picker-empty-hint {
  text-align: center;
  color: var(--text-mute);
  font-size: 12px;
  padding: 18px 8px 14px;
  font-style: italic;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .mantra-picker { padding: 0; align-items: flex-end; }
  .picker-panel {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    max-height: 90vh;
    transform: translateY(100%);
  }
  .mantra-picker.open .picker-panel {
    transform: translateY(0);
  }
  .picker-item-deva { font-size: 16px; max-width: 40%; }
}

/* ============================================
   ABOUT / CONTENT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--saffron);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.about-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 10px;
}

.about-card p:last-child { margin-bottom: 0; }

.about-card strong { color: var(--cream); font-weight: 600; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  margin-top: 36px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 21px);
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: color 0.3s var(--ease);
}

.faq-question:hover { color: var(--saffron); }

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  transition: all 0.3s var(--ease);
  position: relative;
}

.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; transition: transform 0.3s var(--ease); }

.faq-item.open .faq-toggle { background: var(--saffron); color: #0a0706; border-color: var(--saffron); }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}

.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================
   NAAM BURST, Radhe at click location
   ============================================ */
.naam-burst {
  position: fixed;
  font-family: var(--font-deva);
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--saffron);
  pointer-events: none;
  z-index: 9999;
  user-select: none;
  -webkit-user-select: none;
  text-shadow:
    0 0 12px rgba(255, 153, 51, 0.7),
    0 0 24px rgba(255, 153, 51, 0.4);
  animation: naam-float 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  white-space: nowrap;
  font-weight: 400;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

@keyframes naam-float {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  18% {
    transform: translate(-50%, -90%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -240%) scale(1.15);
    opacity: 0;
  }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--saffron);
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--saffron);
}

/* ============================================
   MOBILE, TABLET & PHONE BREAKPOINTS
   ============================================ */
@media (max-width: 900px) {
  section { padding: 60px 5vw; }
  .mala-section { padding: 60px 5vw; }
  .quote-section { padding: 64px 5vw; }
  .download-section { padding: 72px 5vw; }
  .section-lede { margin-bottom: 28px; }
  .mala-demo { margin-top: 24px; gap: 22px; }
  .features-grid { margin-top: 28px; }
  .mantra-carousel { margin-top: 24px; }
  .steps { margin-top: 28px; gap: 12px; }
  .phone-showcase { margin-top: 28px; gap: 36px; }
  .analytics-section { gap: 40px; }
  .sankalp-wrap { margin-top: 28px; gap: 40px; }
  .step-num { font-size: 60px; margin-bottom: 12px; }
  .step-icon { width: 50px; height: 50px; margin-bottom: 16px; }
  .step-icon svg { width: 32px; height: 32px; }
}

@media (max-width: 768px) {
  .nav { padding: 14px 5vw; }
  .nav.scrolled { padding: 10px 5vw; }
  .hero { padding: 90px 5vw 44px; }
  .hero-stats { margin-top: 36px; gap: 18px; }
  .hero-stat-divider { display: none; }
  .hero-ctas { gap: 12px; }
  .btn { padding: 14px 24px; font-size: 14px; }
  .mala-stats { gap: 10px; }
  .mala-stat { padding: 14px 10px; border-radius: 14px; }
  .feature-card { padding: 24px 20px; }
  .feature-card.featured { grid-column: span 1; }
  .mantra-card { flex: 0 0 280px; padding: 26px 22px; }
  .mantra-deva { font-size: 24px; min-height: 60px; }
  .ring-wrap { margin-bottom: 28px; }
  .summary-cell { padding: 14px 10px; }
  .summary-cell-num { font-size: 18px; }
  .phone { height: 520px; }
  .quote-text { line-height: 1.5; }
  .quote-mark { font-size: 80px; margin-bottom: -24px; }
  .download-title { line-height: 1.1; }
  .footer-links { gap: 18px; }
}

@media (max-width: 480px) {
  section { padding: 48px 5vw; }
  .mala-section { padding: 48px 5vw; }
  .quote-section { padding: 52px 5vw; }
  .download-section { padding: 60px 5vw; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .nav-brand { font-size: 18px; gap: 8px; }
  .nav-brand .om { font-size: 22px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.14em; margin-bottom: 18px; }
  .hero-stats { gap: 28px; }
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 22px 20px; }
  .mantra-card { flex: 0 0 260px; padding: 22px 18px; }
  .mantra-deva { font-size: 22px; min-height: 52px; }
  .step { padding: 18px 12px; }
  .step-num { font-size: 48px; margin-bottom: 8px; }
  .step-icon { margin-bottom: 14px; }
  .step-title { font-size: 20px; }
  .step-desc { font-size: 13px; }
  .sankalp-summary { gap: 12px; }
  .summary-cell { padding: 12px 8px; border-radius: 12px; }
  .summary-cell-num { font-size: 16px; }
  .summary-cell-label { font-size: 9px; letter-spacing: 0.14em; }
  .chip { padding: 8px 14px; font-size: 13px; }
  .download-btn { padding: 16px 28px; font-size: 15px; }
  .footer-links { gap: 14px; }
  .footer-links a { font-size: 11px; }
  .mala-stat-num { font-size: 26px; }
  .mala-stat-label { font-size: 9px; letter-spacing: 0.15em; }
  .ring-num { font-size: 36px; }
  .phone { height: 480px; width: min(240px, 80vw); }
  .phone-bead { width: 110px; height: 110px; font-size: 38px; }
  .chart-wrap { height: 140px; }
  .quote-text { font-size: 22px; }
}
/* ============================================
   LEGAL / CONTACT PAGES
   ============================================ */
.legal-page {
  padding: 130px 5vw 80px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.legal-container {
  max-width: 820px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.legal-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.legal-title em {
  font-style: italic;
  color: var(--saffron);
  font-weight: 400;
}

.legal-meta {
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.legal-content {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--cream);
  margin: 44px 0 16px;
  letter-spacing: -0.005em;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--saffron);
  margin: 28px 0 10px;
}

.legal-content p { margin-bottom: 16px; }

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.legal-content li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-content a {
  color: var(--saffron);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 153, 51, 0.35);
  transition: border-color 0.25s var(--ease);
}

.legal-content a:hover { border-bottom-color: var(--saffron); }

.legal-content strong { color: var(--cream); font-weight: 600; }

.legal-content code {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9em;
  color: var(--saffron);
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 153, 51, 0.1);
  border: 1px solid rgba(255, 153, 51, 0.25);
  color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.contact-card-icon svg { width: 22px; height: 22px; }

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--cream);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.contact-card .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--saffron);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
}

.contact-card .contact-link:hover { color: var(--saffron-glow); }

/* ============================================
   CONTACT FORM (rebuilt, scoped under .contact-form)
   ============================================ */
.contact-form {
  margin-top: 28px;
  margin-bottom: 30px;
  background: linear-gradient(180deg, rgba(255, 153, 51, 0.025) 0%, rgba(22, 16, 11, 0.6) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 36px 34px;
  position: relative;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.8);
}

.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.25), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .contact-form { padding: 24px 20px; border-radius: 18px; }
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) {
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

.contact-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.contact-form .form-group label {
  display: block !important;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
  font-weight: 600;
  transition: color 0.3s var(--ease);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  display: block !important;
  width: 100% !important;
  background: rgba(10, 7, 6, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 15px 18px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(245, 230, 211, 0.25);
}

.contact-form .form-group input:hover,
.contact-form .form-group select:hover,
.contact-form .form-group textarea:hover {
  border-color: rgba(255, 200, 140, 0.3);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--saffron);
  background: rgba(29, 22, 15, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.08);
}

.contact-form .form-group:focus-within label {
  color: var(--saffron);
}

.contact-form .form-group input.error,
.contact-form .form-group textarea.error,
.contact-form .form-group select.error {
  border-color: #e85555;
  background: rgba(232, 85, 85, 0.04);
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}

.contact-form .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none' stroke='%23FF9933' stroke-width='1.6'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.contact-form .form-group select option {
  background: var(--bg);
  color: var(--cream);
  padding: 10px;
}

.contact-form .form-privacy {
  color: var(--text-mute);
  font-size: 13px;
  line-height: 1.7;
  margin: 8px 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form .form-privacy::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF9933' stroke-width='1.5'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.7;
}

.contact-form .form-privacy a {
  color: var(--saffron);
  border-bottom: 1px solid rgba(255, 153, 51, 0.35);
}

.contact-form .form-privacy a:hover {
  border-bottom-color: var(--saffron);
}

.contact-form .form-submit {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 15px 38px;
  min-width: 190px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-form .form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.contact-form .form-submit:not(:disabled):hover {
  transform: translateY(-2px);
}

.form-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: form-spin 0.7s linear infinite;
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

.contact-form .form-status {
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  display: none;
  animation: form-status-in 0.4s var(--ease);
}

@keyframes form-status-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-form .form-status.success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 153, 51, 0.08);
  border: 1px solid rgba(255, 153, 51, 0.3);
  color: var(--saffron);
}

.contact-form .form-status.success::before {
  content: '🪔';
  flex-shrink: 0;
  font-size: 18px;
}

.contact-form .form-status.error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(232, 85, 85, 0.07);
  border: 1px solid rgba(232, 85, 85, 0.3);
  color: #ffa5a5;
}

.contact-form .form-status.error::before {
  content: '⚠';
  flex-shrink: 0;
  font-size: 16px;
}

/* Honeypot — absolutely must be hidden from real users */
.contact-form .form-honeypot,
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}


/* ============================================
   TAP-NAAM FAB
   ============================================ */
.naam-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: var(--bg);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px -8px rgba(255, 153, 51, 0.55), 0 2px 6px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.naam-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px -8px rgba(255, 153, 51, 0.7), 0 4px 10px rgba(0,0,0,0.4);
}

.naam-fab:active { transform: scale(0.95); }

.naam-fab::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  opacity: 0;
  animation: fab-pulse 2.8s ease-out infinite;
  pointer-events: none;
}

@keyframes fab-pulse {
  0%   { opacity: 0; transform: scale(1); }
  50%  { opacity: 0.45; }
  100% { opacity: 0; transform: scale(1.5); }
}

.naam-fab-icon {
  font-family: var(--font-deva), var(--font-display), serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: var(--bg);
}

.naam-fab-picker {
  position: fixed;
  bottom: 94px;
  right: 24px;
  width: 300px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.75);
  z-index: 199;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.naam-fab-picker.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.naam-fab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.naam-fab-header h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.naam-fab-close {
  background: none;
  border: none;
  color: var(--text-mute);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.naam-fab-close:hover { background: var(--bg); color: var(--saffron); }

.naam-fab-hint {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.55;
  margin: 4px 0 14px;
}

.naam-fab-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--saffron);
  font-family: var(--font-deva), var(--font-display), serif;
  font-size: 19px;
  text-align: center;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  box-sizing: border-box;
}

.naam-fab-input:focus {
  border-color: var(--saffron);
  background: var(--surface);
}

.naam-fab-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.naam-fab-presets button {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--saffron);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-deva), serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.naam-fab-presets button:hover {
  background: rgba(255, 153, 51, 0.08);
  border-color: var(--saffron);
  transform: translateY(-1px);
}

.naam-fab-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.naam-fab-btn-secondary,
.naam-fab-btn-primary {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease);
}

.naam-fab-btn-secondary {
  background: transparent;
  color: var(--text-mute);
  border: 1px solid var(--line-strong);
}

.naam-fab-btn-secondary:hover {
  color: var(--cream);
  border-color: var(--text-mute);
}

.naam-fab-btn-primary {
  background: var(--saffron);
  color: var(--bg);
}

.naam-fab-btn-primary:hover {
  background: var(--saffron-glow);
}

.naam-fab-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .naam-fab {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
  .naam-fab-icon { font-size: 24px; }
  .naam-fab-picker {
    width: calc(100vw - 36px);
    right: 18px;
    bottom: 82px;
  }
}
