/* ═══════════════════════════════════════════════════
   PUNJABI SADI MAA BOLI — styles.css
   Design: Warm editorial, cultural depth, WCAG AA+
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
  --saffron: #FF9933;
  --saffron-dark: #E07800;
  --saffron-light: #FFF3E0;
  --saffron-glow: rgba(255,153,51,.25);
  --navy: #000080;
  --navy-mid: #0000BB;
  --navy-light: #E8EAF6;
  --wheat: #F5DEB3;
  --wheat-light: #FFFBF3;
  --white: #ffffff;
  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0,0,128,.06);
  --shadow-md: 0 6px 24px rgba(0,0,128,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,128,.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --max-width: 1200px;
  --font-display: 'Baloo Tamma 2', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-gurmukhi: 'Noto Sans Gurmukhi', sans-serif;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET + BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── TYPOGRAPHY ────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--navy); }
.punjabi-inline { font-family: var(--font-gurmukhi); font-style: normal; color: var(--saffron-dark); }

/* ── UTILITIES ─────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  background: var(--saffron-light);
  border: 1px solid rgba(255,153,51,.3);
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 16px var(--saffron-glow);
}
.btn-primary:hover {
  background: var(--saffron-dark);
  box-shadow: 0 8px 28px var(--saffron-glow);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

.btn-full { width: 100%; justify-content: center; padding: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }

/* ── NAVIGATION ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,128,.08);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.nav-logo span {
  display: block;
  font-family: var(--font-gurmukhi);
  font-size: .7rem;
  font-weight: 400;
  color: var(--saffron-dark);
}
.nav-links {
  display: none;
  gap: 2rem;
}
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--saffron-dark); }
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding: 7rem 1.25rem 4rem;
  position: relative;
  overflow: visible;
  background: linear-gradient(160deg, #FFFBF3 0%, #FFF3E0 30%, #E8EAF6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(255,153,51,.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(0,0,128,.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255,153,51,.08) 0%, transparent 50%);
  /* Subtle pattern overlay */
  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='%23FF9933' fill-opacity='0.04'%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"),
    radial-gradient(circle at 15% 30%, rgba(255,153,51,.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(0,0,128,.06) 0%, transparent 50%);
}

.hero-characters {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.char-guppu {
  width: 120px;
  height: auto;
  transform: translateY(0px);
  animation: float 4s ease-in-out infinite;
}
.char-bebe {
  width: 130px;
  height: auto;
  transform: translateY(0px);
  animation: float 4s ease-in-out infinite .8s;
}
@media (min-width: 768px) {
  .char-guppu { width: 150px; }
  .char-bebe { width: 165px; }
}
@media (min-width: 1024px) {
  .char-guppu { width: 180px; }
  .char-bebe { width: 195px; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.steam {
  animation: steam 2s ease-in-out infinite;
}
@keyframes steam {
  0%, 100% { opacity: .4; transform: translateY(0); }
  50% { opacity: .8; transform: translateY(-4px); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--saffron-dark);
  background: var(--white);
  border: 1px solid rgba(255,153,51,.3);
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.2); }
}

.hero-gurmukhi {
  font-family: var(--font-gurmukhi);
  font-size: clamp(2rem, 7vw, 3.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,128,.08);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--saffron-dark);
  margin-top: -.5rem;
}

.hero-emotion {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  max-width: 500px;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-left: 4px solid var(--saffron);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.hero-emotion em { color: var(--saffron-dark); font-weight: 600; }

.hero-sub {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Waveform */
.waveform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.waveform-label {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.waveform-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
}
.waveform-bars span {
  display: block;
  width: 4px;
  background: var(--saffron);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}
.waveform-bars span:nth-child(2n) { background: var(--navy); animation-delay: .1s; }
.waveform-bars span:nth-child(3n) { animation-delay: .2s; }
.waveform-bars span:nth-child(4n) { animation-delay: .35s; }
.waveform-bars span:nth-child(5n) { animation-delay: .15s; }
@keyframes wave {
  0%, 100% { height: 8px; }
  50% { height: 28px; }
}
.waveform-bars span:nth-child(1)  { animation-duration: 0.9s; }
.waveform-bars span:nth-child(2)  { animation-duration: 1.1s; }
.waveform-bars span:nth-child(3)  { animation-duration: 0.8s; }
.waveform-bars span:nth-child(4)  { animation-duration: 1.3s; }
.waveform-bars span:nth-child(5)  { animation-duration: 1.0s; }
.waveform-bars span:nth-child(6)  { animation-duration: 0.7s; }
.waveform-bars span:nth-child(7)  { animation-duration: 1.4s; }
.waveform-bars span:nth-child(8)  { animation-duration: 0.9s; }
.waveform-bars span:nth-child(9)  { animation-duration: 1.2s; }
.waveform-bars span:nth-child(10) { animation-duration: 0.85s; }
.waveform-bars span:nth-child(11) { animation-duration: 1.05s; }
.waveform-bars span:nth-child(12) { animation-duration: 0.75s; }
.waveform-bars span:nth-child(13) { animation-duration: 1.15s; }
.waveform-bars span:nth-child(14) { animation-duration: 0.95s; }
.waveform-bars span:nth-child(15) { animation-duration: 1.25s; }

/* Hero SEO text */
.hero-seo-text {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding: 1.75rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  gap: 1rem;
}
.hero-seo-text p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.hero-seo-text strong { color: var(--navy); }
@media (min-width: 768px) {
  .hero-seo-text { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── TRUST STRIP ────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 1.25rem 1.25rem;
}
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  font-weight: 400;
}
.trust-item strong { color: var(--white); }
.trust-divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,.2);
  display: none;
}
@media (min-width: 640px) { .trust-divider { display: block; } }

/* ── SECTION SHARED ─────────────────────────────── */
.reveal-section { padding: 5rem 1.25rem; }
@media (min-width: 768px) { .reveal-section { padding: 6.5rem 1.25rem; } }

/* Reveal animations */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PROBLEM SECTION ────────────────────────────── */
.problem-section {
  background: var(--wheat-light);
  text-align: center;
}
.problem-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .problem-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .problem-cards { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.problem-icon {
  width: 80px; height: 80px;
  margin-bottom: 1.25rem;
}
.problem-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .625rem;
}
.problem-card-text {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.problem-quote {
  font-style: italic;
  font-size: .875rem;
  color: var(--text-muted);
  border-left: 3px solid var(--saffron);
  padding-left: .875rem;
  font-family: var(--font-gurmukhi);
}

.problem-resolve {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.problem-resolve strong { color: var(--navy); }

/* ── HOW IT WORKS ───────────────────────────────── */
.how-section {
  background: var(--white);
  text-align: center;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .how-steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
}
.how-connector {
  display: none;
  align-self: flex-start;
  margin-top: 5.5rem;
  opacity: .5;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .how-connector { display: flex; } }

.how-step {
  background: var(--wheat-light);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  max-width: 320px;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255,153,51,.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,153,51,.25);
  line-height: 1;
  margin-bottom: .5rem;
}
.step-icon { width: 60px; height: 60px; margin-bottom: 1rem; }
.step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .625rem;
}
.step-desc {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.step-features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.step-features li {
  font-size: .8rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.step-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-weight: 700;
}
.how-cta { text-align: center; }

/* ── STORIES ────────────────────────────────────── */
.stories-section {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--white) 100%);
  text-align: center;
}
.story-cards {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .story-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .story-cards { grid-template-columns: repeat(3, 1fr); } }

.story-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.featured-card {
  border-color: var(--saffron);
  box-shadow: 0 4px 20px var(--saffron-glow);
}
.featured-badge {
  position: absolute;
  top: .875rem;
  right: .875rem;
  z-index: 2;
  background: var(--saffron);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}

.story-card-art {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.story-card-art svg { width: 100%; height: 100%; object-fit: cover; }

.story-card-body { padding: 1.5rem; }
.story-meta {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: .75rem;
}
.story-age {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--border);
  padding: .2rem .6rem;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.story-lang {
  font-family: var(--font-gurmukhi);
  font-size: .75rem;
  color: var(--saffron-dark);
  background: var(--saffron-light);
  padding: .2rem .6rem;
  border-radius: var(--radius-pill);
}
.story-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.story-desc {
  font-size: .85rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.story-words {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.word-chip {
  font-family: var(--font-gurmukhi);
  font-size: .72rem;
  color: var(--navy);
  background: var(--navy-light);
  border: 1px solid rgba(0,0,128,.12);
  padding: .25rem .65rem;
  border-radius: var(--radius-pill);
  cursor: default;
}
.word-chip em {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-muted);
  font-size: .65rem;
  margin-left: .3rem;
}

/* ── AUDIO PLAYER ───────────────────────────────── */
.audio-player {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .75rem 1rem;
  background: var(--wheat-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,153,51,.2);
}

.play-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px var(--saffron-glow);
}
.play-btn:hover {
  background: var(--saffron-dark);
  transform: scale(1.08);
  box-shadow: 0 4px 16px var(--saffron-glow);
}
.play-btn.playing {
  background: var(--navy);
  animation: glow-pulse 1.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,128,.3); }
  50% { box-shadow: 0 0 0 8px rgba(0,0,128,0); }
}

.player-track { flex: 1; display: flex; flex-direction: column; gap: .35rem; }
.progress-bar {
  height: 6px;
  background: rgba(0,0,128,.1);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--saffron);
  border-radius: 3px;
  width: 0%;
  transition: width .1s linear;
  position: relative;
}
.progress-thumb {
  width: 12px; height: 12px;
  background: var(--saffron-dark);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.audio-player:hover .progress-thumb { opacity: 1; }

.playing .progress-fill { background: var(--navy); }
.playing .progress-thumb { background: var(--navy-mid); }

.player-times {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── LEAD MAGNET ────────────────────────────────── */
.lead-section {
  padding: 5rem 1.25rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #000060 100%);
}
.lead-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,153,51,.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.lead-inner {
  position: relative; z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .lead-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* Guide mockup */
.lead-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.guide-mockup {
  position: relative;
  max-width: 280px;
  width: 100%;
}
.guide-mockup svg { filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.guide-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(255,153,51,.3) 0%, transparent 60%);
  pointer-events: none;
}

.guide-stats {
  display: flex;
  gap: 2rem;
}
.guide-stat {
  text-align: center;
  color: var(--white);
}
.guide-stat strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--saffron);
}
.guide-stat span {
  font-size: .75rem;
  opacity: .7;
}

/* Form */
.lead-form-side { color: var(--white); }
.lead-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}
.lead-subtitle {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
}
.social-proof strong { color: var(--saffron); }
.proof-avatars { display: flex; }
.proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.4);
  margin-left: -8px;
}
.proof-avatar:first-child { margin-left: 0; }

.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: .45rem;
}
.form-input {
  width: 100%;
  padding: .875rem 1.1rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition), background var(--transition);
}
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus {
  outline: none;
  border-color: var(--saffron);
  background: rgba(255,255,255,.15);
}
.form-input.error {
  border-color: #FF6B6B;
  animation: shake .4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.field-error {
  display: block;
  font-size: .75rem;
  color: #FF8A80;
  margin-top: .35rem;
  min-height: 1.1em;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  margin-top: .875rem;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  border: 1px solid rgba(76,175,80,.4);
}
.success-icon { display: flex; justify-content: center; margin-bottom: 1rem; }
.form-success h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.form-success p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
}

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonials-section {
  background: var(--wheat-light);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stars { display: flex; gap: 2px; }
.testimonial-text {
  font-size: .875rem;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: .875rem;
  color: var(--navy);
  font-weight: 600;
}
.author-info span {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ── FAQ ────────────────────────────────────────── */
.faq-section { background: var(--white); text-align: center; }
.faq-container { max-width: 780px; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; text-align: left; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--saffron);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: transparent;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--wheat-light); }
.faq-question[aria-expanded="true"] { background: var(--saffron-light); }
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--saffron-dark);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  background: var(--saffron-light);
}
.faq-answer p {
  font-size: .875rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ── FINAL CTA ──────────────────────────────────── */
.final-cta {
  padding: 6rem 1.25rem;
  background: linear-gradient(135deg, #FF9933 0%, #E07800 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,.12) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-gurmukhi {
  font-family: var(--font-gurmukhi);
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
  letter-spacing: .05em;
}
.final-cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
}
.final-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.25rem;
}
.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 1.25rem 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2.5fr 1fr 1fr 1.8fr; gap: 3rem; } }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .35rem;
  line-height: 1.2;
}
.footer-logo span {
  display: block;
  font-family: var(--font-gurmukhi);
  font-size: .8rem;
  color: var(--saffron);
  font-weight: 400;
}
.footer-tagline {
  font-size: .8rem;
  color: var(--saffron);
  font-style: italic;
  margin-bottom: .875rem;
}
.footer-desc {
  font-size: .8rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-links { display: flex; gap: .625rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(255,153,51,.1);
}

.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links-col a {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--saffron); }

.footer-newsletter p { font-size: .82rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-form {
  display: flex;
  gap: .5rem;
  margin-bottom: .625rem;
}
.footer-input {
  flex: 1;
  padding: .65rem .875rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
}
.footer-input::placeholder { color: rgba(255,255,255,.4); }
.footer-input:focus { outline: none; border-color: var(--saffron); }
.footer-submit {
  width: 40px; height: 40px;
  background: var(--saffron);
  border-radius: var(--radius-sm);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.footer-submit:hover { background: var(--saffron-dark); }
.footer-privacy { font-size: .72rem; color: rgba(255,255,255,.35); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--saffron); }

/* ── STICKY MOBILE CTA ──────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 2px solid var(--saffron);
  padding: .875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  animation: slideUp .3s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.sticky-cta span {
  font-size: .85rem;
  color: var(--text-body);
  font-weight: 500;
}
@media (min-width: 768px) { .sticky-cta { display: none !important; } }
/* ═══════════════════════════════════════════════════
   PUNJABI SADI MAA BOLI — styles_additions.css
   ADD THIS TO THE END OF YOUR styles.css
   ═══════════════════════════════════════════════════ */

/* ── ANNOUNCEMENT BAR ───────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, var(--navy) 0%, #000060 100%);
  color: var(--white);
  padding: .6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 101;
  font-size: .82rem;
}
.announce-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 1;
  justify-content: center;
}
.announce-emoji { font-size: 1rem; }
.announce-link {
  color: var(--saffron);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.announce-link:hover { color: #FFD700; }
.announce-close {
  color: rgba(255,255,255,.6);
  padding: .25rem;
  border-radius: 4px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.announce-close:hover { color: var(--white); }
.announce-bar.hidden { display: none; }
/* Shift nav down when bar is present */
.has-announce-bar .nav { top: 0; }

/* ── UPDATED NAV EXTRAS ─────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .625rem;
}

/* Language toggle */
.lang-toggle {
  display: none;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--border);
  border: 1.5px solid var(--border);
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
}
.lang-toggle:hover {
  border-color: var(--saffron);
  color: var(--saffron-dark);
}
.lang-toggle.active { background: var(--saffron-light); border-color: var(--saffron); }
.lang-sep { color: var(--border); }
.lang-pa { font-family: var(--font-gurmukhi); }
@media (min-width: 768px) { .lang-toggle { display: flex; } }

/* Hamburger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 768px) { .nav-burger { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.mobile-menu:not([hidden]) { transform: translateX(0); }
.mobile-menu[hidden] { display: block !important; } /* override hidden for animation */
.mobile-menu-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mobile-menu-close {
  align-self: flex-end;
  padding: .4rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.mobile-link {
  display: block;
  padding: .9rem .75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.mobile-link:hover {
  color: var(--saffron-dark);
  background: var(--saffron-light);
  border-radius: var(--radius-sm);
}
.mobile-menu-tagline {
  margin-top: auto;
  padding-top: 2rem;
  font-family: var(--font-gurmukhi);
  font-size: .85rem;
  color: var(--text-muted);
  text-align: center;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
  backdrop-filter: blur(4px);
}
.mobile-overlay[hidden] { display: none; }

/* ── CHARACTERS SECTION ─────────────────────────── */
.characters-section {
  background: linear-gradient(180deg, #FFFBF3 0%, var(--wheat-light) 100%);
  text-align: center;
  overflow: hidden;
}
.chars-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .chars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .chars-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) {
  .chars-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.char-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.char-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.char-primary { border-color: var(--saffron); }

.char-card-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 130px;
  z-index: 0;
}
.guppu-bg { background: linear-gradient(135deg, #E8EAF6 0%, #C5CAE9 100%); }
.bebe-bg  { background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%); }
.jeeto-bg { background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%); }
.bawa-bg  { background: linear-gradient(135deg, #ECEFF1 0%, #CFD8DC 100%); }
.preet-bg { background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%); }

.char-avatar-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 1.25rem;
  height: 200px;
}
.char-avatar-svg {
  width: 100px;
  height: 180px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.12));
  transition: transform var(--transition);
}
.char-card:hover .char-avatar-svg { transform: scale(1.05) translateY(-4px); }

.char-badge-tag {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--saffron);
  color: var(--white);
  padding: .2rem .65rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.bebe-tag  { background: #9B59B6; }
.jeeto-tag { background: #388E3C; }
.bawa-tag  { background: #37474F; }
.preet-tag { background: #E91E63; }

.char-info { padding: 1.25rem; }
.char-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}
.char-name span {
  font-family: var(--font-gurmukhi);
  font-size: .85rem;
  color: var(--saffron-dark);
  font-weight: 400;
  margin-left: .3rem;
}
.char-age {
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: .625rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
}
.char-desc {
  font-size: .82rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: .875rem;
}
.char-traits {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .875rem;
}
.trait {
  font-size: .7rem;
  font-weight: 600;
  background: var(--saffron-light);
  color: var(--saffron-dark);
  border: 1px solid rgba(255,153,51,.25);
  padding: .2rem .6rem;
  border-radius: var(--radius-pill);
}
.char-quote {
  font-style: italic;
  font-size: .78rem;
  color: var(--text-muted);
  border-left: 3px solid var(--saffron);
  padding-left: .75rem;
  font-family: var(--font-gurmukhi);
  line-height: 1.5;
}

/* ── PODCAST SECTION ────────────────────────────── */
.podcast-section {
  background: var(--navy);
  color: var(--white);
  text-align: left;
}
.podcast-section .section-label { color: var(--saffron); background: rgba(255,153,51,.15); border-color: rgba(255,153,51,.3); }
.podcast-section .section-title { color: var(--white); }
.podcast-section .section-subtitle { color: rgba(255,255,255,.7); }
.podcast-inner {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .podcast-inner {
    grid-template-columns: 380px 1fr;
    align-items: start;
    gap: 4rem;
  }
}

.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: 1.5rem;
}
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: .35rem .875rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
}
.platform-chip:hover {
  background: rgba(255,153,51,.15);
  border-color: var(--saffron);
  color: var(--saffron);
}

.podcast-episodes {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.episode-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.episode-card:hover {
  background: rgba(255,153,51,.1);
  border-color: rgba(255,153,51,.3);
  transform: translateX(4px);
}
.featured-ep {
  border-color: var(--saffron);
  background: rgba(255,153,51,.1);
}
.ep-number {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  color: var(--saffron);
  letter-spacing: .08em;
  min-width: 36px;
  flex-shrink: 0;
}
.ep-body { flex: 1; }
.ep-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
  flex-wrap: wrap;
}
.ep-type {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(255,153,51,.15);
  padding: .15rem .55rem;
  border-radius: var(--radius-pill);
}
.ep-duration, .ep-age {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
}
.ep-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}
.ep-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  margin-bottom: .5rem;
}
.ep-words {
  font-family: var(--font-gurmukhi);
  font-size: .78rem;
  color: var(--saffron);
  opacity: .8;
}
.ep-play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(255,153,51,.3);
}
.ep-play-btn:hover {
  background: var(--saffron-dark);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(255,153,51,.5);
}

.podcast-cta { text-align: center; }
@media (min-width: 1024px) { .podcast-cta { text-align: left; } }
.podcast-note {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-top: .625rem;
}

/* ── PRICING SECTION ────────────────────────────── */
.pricing-section {
  background: var(--wheat-light);
  text-align: center;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .25rem;
  gap: .25rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.billing-btn {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--transition);
}
.billing-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,128,.2);
}
.save-badge {
  background: #4CAF50;
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-featured {
  border-color: var(--saffron);
  box-shadow: 0 4px 24px var(--saffron-glow);
  background: linear-gradient(180deg, var(--white) 0%, #FFFBF3 100%);
}
@media (min-width: 768px) { .price-featured { transform: scale(1.03); } }
@media (min-width: 768px) { .price-featured:hover { transform: scale(1.03) translateY(-4px); } }

.price-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  padding: .3rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: .04em;
}
.price-tier {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .875rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  margin-bottom: .625rem;
}
.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
}
.price-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-period {
  font-size: .85rem;
  color: var(--text-muted);
  margin-left: .25rem;
}
.price-desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.75rem;
}
.price-features li {
  font-size: .85rem;
  color: var(--text-body);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}
.feat-yes::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
}
.feat-no {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: .6;
}
.feat-no::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.price-cta { width: 100%; justify-content: center; }
.price-trial {
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .625rem;
}

/* Guarantee */
.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border: 1.5px solid rgba(255,153,51,.3);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: left;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}
.guarantee-icon { flex-shrink: 0; }
.pricing-guarantee strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .35rem;
}
.pricing-guarantee p {
  font-size: .875rem;
  color: var(--text-body);
  line-height: 1.6;
}

.pricing-school-note {
  font-size: .875rem;
  color: var(--text-muted);
}
.pricing-school-note a {
  color: var(--saffron-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════
   MEGA MENU — horizontal nav with dropdowns
   ═══════════════════════════════════════════════════ */

/* Override nav to fit mega menu */
.nav {
  padding: .75rem 1.5rem !important;
  gap: 1rem;
}

/* Horizontal mega nav row */
.mega-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: .15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
@media (min-width: 900px) {
  .mega-nav { display: flex; }
}

.mega-item {
  position: relative;
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .45rem .75rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-body);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}
.mega-trigger:hover,
.mega-trigger[aria-expanded="true"] {
  color: var(--navy);
  background: var(--saffron-light);
}
.mega-plain {
  display: inline-flex;
  align-items: center;
  padding: .45rem .75rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.mega-plain:hover {
  color: var(--navy);
  background: var(--saffron-light);
}
.trigger-arrow {
  transition: transform var(--transition);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.mega-trigger[aria-expanded="true"] .trigger-arrow {
  transform: rotate(180deg);
}

/* Dropdown panels */
.mega-panel {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,128,.12);
  min-width: 520px;
  z-index: 200;
  animation: dropIn .2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-panel-inner {
  display: flex;
  gap: 0;
  padding: 1.5rem;
}

.mega-col {
  flex: 1;
  min-width: 180px;
  padding: 0 1rem;
  border-right: 1px solid var(--border);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; padding-right: 0; }

.mega-col-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .875rem;
}

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  padding: .5rem .625rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
  margin-bottom: .2rem;
}
.mega-link:hover { background: var(--saffron-light); }
.mega-link-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.mega-link strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.mega-link em {
  display: block;
  font-size: .75rem;
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Featured col inside dropdown */
.mega-col-featured { min-width: 200px; }
.mega-feature-card {
  background: var(--saffron-light);
  border: 1px solid rgba(255,153,51,.25);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}
.mega-feature-icon { font-size: 2rem; margin-bottom: .5rem; }
.mega-feature-card strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.mega-feature-card p {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: .875rem;
}

/* Characters panel */
.chars-panel {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  padding: 1.25rem !important;
}
.chars-panel-cta {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
}
.char-mini-card {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem .75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.char-mini-card:hover {
  border-color: var(--saffron);
  background: var(--saffron-light);
  transform: translateY(-2px);
}
.char-mini-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.char-mini-card strong {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}
.char-mini-card em {
  display: block;
  font-size: .7rem;
  font-style: normal;
  color: var(--text-muted);
}

/* Podcast episode links */
.ep-link { align-items: center !important; }
.ep-num-mini {
  font-size: .65rem;
  font-weight: 800;
  color: var(--saffron-dark);
  background: var(--saffron-light);
  padding: .15rem .45rem;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: .06em;
}

/* Platform list in podcast dropdown */
.platform-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.platform-row {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-body);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
}
.platform-row:hover {
  border-color: var(--saffron);
  background: var(--saffron-light);
}

/* Nav actions area */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 900px) { .nav-burger { display: none; } }

/* Lang toggle */
.lang-toggle {
  display: none;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--border);
  border: 1.5px solid var(--border);
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
}
.lang-toggle:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.lang-sep { color: #ccc; }
.lang-pa { font-family: var(--font-gurmukhi); }
@media (min-width: 900px) { .lang-toggle { display: flex; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.mobile-menu:not([hidden]) { transform: translateX(0); }
.mobile-menu[hidden] { display: block !important; }
.mobile-menu-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mobile-menu-close {
  align-self: flex-end;
  padding: .4rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mob-section { border-bottom: 1px solid var(--border); }
.mob-acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .875rem .5rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.mob-acc-body { padding: 0 .5rem .75rem; }
.mobile-link {
  display: block;
  padding: .6rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.mobile-link:hover { color: var(--saffron-dark); background: var(--saffron-light); }
.mobile-link-top {
  display: block;
  padding: .875rem .5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
  backdrop-filter: blur(4px);
}
.mobile-overlay[hidden] { display: none; }
.mobile-menu-tagline {
  margin-top: auto;
  padding-top: 2rem;
  font-family: var(--font-gurmukhi);
  font-size: .85rem;
  color: var(--text-muted);
  text-align: center;
}
