:root {
  --parchment: #F0E6D2;
  --parchment-deep: #E5D7B8;
  --parchment-soft: #F5ECDA;
  --ink: #1F1410;
  --ink-deep: #14090A;
  --ink-soft: #3A2820;
  --ink-mute: #6B5A4F;
  --saffron: #C0231F;
  --saffron-bright: #D8352A;
  --saffron-deep: #97160F;
  --gold: #C9A656;
  --gold-soft: #D4B872;
  --gold-deep: #9B7A3F;
  --maroon: #2A0807;
  --maroon-deep: #190404;
  --cream: #FAF5E8;
  --success: #2E7D32;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cardo', Georgia, serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.65;
  font-size: 18px;
  overflow-x: hidden;
}

body::before {
  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.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

main { position: relative; z-index: 2; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

.devanagari { font-family: 'Tiro Devanagari Sanskrit', serif; }

/* === STICKY BAR === */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--maroon-deep);
  color: var(--cream);
  z-index: 100;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--gold-deep);
  box-shadow: 0 2px 14px rgba(0,0,0,0.25);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .info { display: flex; flex-direction: column; gap: 0.1rem; }
.sticky-bar .info .label {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 700;
}
.sticky-bar .info .value {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  color: var(--cream); font-weight: 500;
}
.sticky-bar .btn-sticky {
  background: var(--saffron); color: var(--cream);
  padding: 0.8rem 1.6rem; border-radius: 3px;
  font-family: 'Cardo', serif; font-size: 0.82rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  white-space: nowrap; border: 1px solid var(--saffron-deep);
}
.sticky-bar .btn-sticky:hover { background: var(--saffron-bright); transform: translateY(-1px); }
@media (max-width: 700px) {
  .sticky-bar { padding: 0.65rem 0.9rem; gap: 0.7rem; }
  .sticky-bar .info .label { display: none; }
  .sticky-bar .info .value { font-size: 0.92rem; }
  .sticky-bar .btn-sticky { padding: 0.65rem 1rem; font-size: 0.7rem; letter-spacing: 0.12em; }
}

/* === SECTIONS BASE === */
section { padding: 6rem 1.5rem; position: relative; }
.container { max-width: 1080px; margin: 0 auto; position: relative; }
.container-narrow { max-width: 760px; margin: 0 auto; position: relative; }

.eyebrow {
  font-family: 'Cardo', serif; font-size: 0.78rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--saffron); font-weight: 700;
  display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--gold-deep); }
.eyebrow.centered { display: flex; justify-content: center; }
.eyebrow.dark { color: var(--gold-soft); }
.eyebrow.dark::before, .eyebrow.dark::after { background: var(--gold); }

/* === BUTTONS === */
.btn-primary {
  display: inline-block; background: var(--saffron); color: var(--cream);
  padding: 1.2rem 2.4rem; border-radius: 4px; font-family: 'Cardo', serif;
  font-size: 1rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  text-decoration: none; transition: all 0.2s; border: 1px solid var(--saffron-deep);
  box-shadow: 0 4px 14px rgba(151, 22, 15, 0.25); cursor: pointer;
}
.btn-primary:hover { background: var(--saffron-bright); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(151, 22, 15, 0.35); }
.btn-primary.large { padding: 1.5rem 3rem; font-size: 1.1rem; letter-spacing: 0.2em; }
.btn-primary.huge { padding: 1.8rem 3.5rem; font-size: 1.2rem; letter-spacing: 0.2em; }
.btn-center { display: flex; justify-content: center; margin-top: 2.5rem; }

/* === HERO === */
.hero {
  background: var(--maroon-deep); color: var(--cream);
  padding: 7rem 1.5rem 5rem; min-height: 100vh;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(192,35,31,0.16) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: 50%; right: -10%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(201,166,86,0.08) 0%, transparent 60%);
  pointer-events: none; transform: translateY(-50%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem;
  align-items: center; position: relative; z-index: 2; width: 100%;
}
.hero-content .eyebrow { color: var(--gold-soft); margin-bottom: 2rem; }
.hero-content .eyebrow::before, .hero-content .eyebrow::after { background: var(--gold-deep); }
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem); color: var(--cream);
  margin-bottom: 1.8rem; font-weight: 500; letter-spacing: -0.015em;
}
.hero h1 em { font-style: italic; color: var(--saffron-bright); font-weight: 500; }
.hero-subhead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--parchment);
  line-height: 1.55; font-style: italic; font-family: 'Cormorant Garamond', serif;
  max-width: 560px; margin-bottom: 2.5rem; font-weight: 400;
}
.hero-bullets { list-style: none; margin-bottom: 2.5rem; }
.hero-bullets li {
  padding: 0.55rem 0; padding-left: 2rem; position: relative;
  color: var(--parchment); font-size: 1rem;
}
.hero-bullets li::before { content: '◆'; position: absolute; left: 0; top: 0.55rem; color: var(--saffron-bright); font-size: 0.85rem; }
.hero-bullets li strong { color: var(--cream); font-weight: 700; }

/* Hero Offer Card */
.offer-card {
  background: var(--parchment); color: var(--ink);
  padding: 2.5rem 2rem; border-radius: 6px; border: 1px solid var(--gold);
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.offer-card::before {
  content: ''; position: absolute; inset: 6px;
  border: 1px solid var(--saffron); border-radius: 3px; pointer-events: none;
}
.offer-card .offer-label {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--saffron-deep); font-weight: 700; text-align: center;
  margin-bottom: 1.2rem; position: relative;
}
.offer-card .offer-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; text-align: center;
  margin-bottom: 1.5rem; color: var(--maroon); position: relative; font-weight: 600;
}
.offer-card .offer-divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 1.5rem; position: relative; }
.offer-card .price-block { text-align: center; margin-bottom: 1.5rem; position: relative; }
.offer-card .price-main {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--saffron-deep);
  font-weight: 700; display: block; line-height: 1; margin-bottom: 0.3rem;
}
.offer-card .price-pix { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
.offer-card .price-installments { font-family: 'Cardo', serif; font-size: 1rem; color: var(--ink-soft); margin-top: 0.8rem; font-style: italic; }
.offer-card .price-installments strong { color: var(--ink); font-style: normal; font-weight: 700; }
.offer-card .btn-primary { display: block; width: 100%; text-align: center; position: relative; margin-bottom: 1.2rem; }
.offer-card .seal {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-size: 0.78rem; color: var(--ink-mute); letter-spacing: 0.05em; text-align: center;
  position: relative; padding-top: 0.5rem; border-top: 1px solid var(--parchment-deep);
}
.offer-card .seal svg { flex-shrink: 0; color: var(--success); }
@media (max-width: 900px) {
  .hero { padding: 6rem 1.2rem 4rem; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .offer-card { max-width: 420px; margin: 0 auto; }
}

/* === TESTIMONIALS === */
.testimonials { background: var(--parchment); border-top: 1px solid var(--parchment-deep); }
.testimonials h2 { text-align: center; font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 0.6rem; color: var(--maroon); }
.testimonials .lede {
  text-align: center; font-style: italic; color: var(--ink-soft);
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin: 0 auto 3.5rem; max-width: 580px;
}
.text-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.testimonial-card {
  background: var(--parchment-soft); border: 1px solid var(--parchment-deep);
  border-left: 3px solid var(--saffron); padding: 2rem 1.8rem; border-radius: 2px;
}
.testimonial-card .quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); line-height: 0.5; margin-bottom: 0.5rem; }
.testimonial-card p {
  font-style: italic; color: var(--ink-soft); line-height: 1.55; margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.08rem;
}
.testimonial-card .person { display: flex; align-items: center; gap: 0.85rem; padding-top: 1.2rem; border-top: 1px solid var(--parchment-deep); }
.testimonial-card .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--maroon); font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 1.1rem; border: 1px solid var(--gold-deep);
}
.testimonial-card .info .name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.05rem; color: var(--maroon); }
.testimonial-card .info .role { font-size: 0.78rem; color: var(--ink-mute); letter-spacing: 0.08em; }
.credentials-strip {
  display: flex; justify-content: center; align-items: center; gap: 2.5rem;
  padding: 2rem 1rem; border-top: 1px solid var(--gold-deep); border-bottom: 1px solid var(--gold-deep);
  margin-top: 2rem; flex-wrap: wrap;
}
.credentials-strip .credential { display: flex; align-items: center; gap: 0.7rem; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--ink-soft); font-weight: 500; }
.credentials-strip .credential::before { content: '◆'; color: var(--saffron); font-size: 0.7rem; }

/* === FOR WHOM === */
.for-whom { background: var(--parchment-soft); border-top: 1px solid var(--parchment-deep); }
.for-whom h2 { text-align: center; font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 0.5rem; color: var(--maroon); }
.for-whom .lede { text-align: center; font-style: italic; color: var(--ink-soft); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 3.5rem; }
.for-whom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.for-whom-col { background: var(--parchment); border: 1px solid var(--parchment-deep); padding: 2.5rem 2rem; border-radius: 4px; position: relative; }
.for-whom-col.yes { border-top: 3px solid var(--saffron); }
.for-whom-col.no { border-top: 3px solid var(--ink-mute); background: var(--parchment-deep); }
.for-whom-col h3 { font-size: 1.3rem; font-family: 'Cardo', serif; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.8rem; text-align: center; }
.for-whom-col.yes h3 { color: var(--saffron-deep); }
.for-whom-col.no h3 { color: var(--ink-mute); }
.for-whom-col ul { list-style: none; }
.for-whom-col ul li { padding: 0.8rem 0; padding-left: 2.2rem; position: relative; border-bottom: 1px solid var(--parchment-deep); font-size: 1rem; line-height: 1.5; }
.for-whom-col ul li:last-child { border-bottom: none; }
.for-whom-col.yes ul li::before { content: '✓'; position: absolute; left: 0; top: 0.6rem; color: var(--saffron); font-size: 1.3rem; font-weight: 700; }
.for-whom-col.no ul li::before { content: '✗'; position: absolute; left: 0.2rem; top: 0.7rem; color: var(--ink-mute); font-size: 1.2rem; font-weight: 700; }
.for-whom-closer { text-align: center; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--ink-soft); max-width: 640px; margin: 0 auto 2rem; }
@media (max-width: 760px) { .for-whom-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* === CONTENT SECTIONS === */
.content-section { position: relative; }
.content-section.parchment { background: var(--parchment); }
.content-section.parchment-soft { background: var(--parchment-soft); }
.content-section.dark { background: var(--maroon-deep); color: var(--cream); }
.content-section.dark h2 { color: var(--cream); }
.content-section.dark h2 em { color: var(--saffron-bright); }
.content-section.dark .lede, .content-section.dark p { color: var(--parchment); }
.content-section.dark .eyebrow { color: var(--gold-soft); }
.content-section.dark .eyebrow::before, .content-section.dark .eyebrow::after { background: var(--gold); }
.content-section h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); margin-bottom: 1.5rem; color: var(--maroon); letter-spacing: -0.015em; }
.content-section h2 em { font-style: italic; color: var(--saffron-deep); font-weight: 500; }
.content-section .centered { text-align: center; }
.content-section .centered .eyebrow { display: inline-flex; }
.content-section p { margin-bottom: 1.5rem; font-size: 1.08rem; line-height: 1.7; color: var(--ink-soft); }
.content-section p strong { color: var(--ink); font-weight: 700; }
.content-section p em { color: var(--saffron-deep); font-style: italic; }
.content-section.dark p strong { color: var(--cream); }
.content-section.dark p em { color: var(--saffron-bright); }

.discovery-emphasis {
  text-align: center; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-style: italic; color: var(--saffron-deep);
  padding: 2.5rem 1rem; margin: 2.5rem 0 0; border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold); line-height: 1.4;
}

/* === PURUSHARTHAS === */
.purusharthas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 3rem 0 0; }
.pur-card {
  background: rgba(245, 236, 218, 0.05); border: 1px solid var(--gold-deep);
  border-radius: 4px; padding: 2rem 1.5rem; text-align: center; transition: background 0.25s, transform 0.25s; position: relative;
}
.pur-card:hover { background: rgba(201,166,86,0.12); transform: translateY(-4px); }
.pur-card .pur-sanskrit { font-family: 'Tiro Devanagari Sanskrit', serif; font-size: 1.5rem; color: var(--saffron-bright); margin-bottom: 0.5rem; }
.pur-card .pur-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--cream); font-weight: 600; margin-bottom: 0.2rem; }
.pur-card .pur-tag { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; margin-bottom: 1rem; }
.pur-card p { font-size: 0.92rem; color: var(--parchment); line-height: 1.5; margin: 0; }
@media (max-width: 860px) { .purusharthas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .purusharthas-grid { grid-template-columns: 1fr; } }

/* === METHOD PILLARS === */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 3rem 0 0; }
.pillar-card {
  background: var(--parchment-soft); border-top: 3px solid var(--saffron);
  border-bottom: 1px solid var(--parchment-deep); border-left: 1px solid var(--parchment-deep);
  border-right: 1px solid var(--parchment-deep); padding: 2rem 1.8rem; border-radius: 2px; position: relative;
}
.pillar-card .pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: var(--saffron); line-height: 1; position: absolute; top: 1.2rem; right: 1.5rem; opacity: 0.18; }
.pillar-card h3 { font-family: 'Cardo', serif; font-size: 0.82rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--saffron-deep); margin-bottom: 0.8rem; font-weight: 700; position: relative; }
.pillar-card .pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--maroon); margin-bottom: 1rem; font-weight: 600; line-height: 1.15; position: relative; }
.pillar-card p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.6; margin: 0; position: relative; }

/* === MODULES === */
.offer-detail { background: var(--parchment-soft); }
.offer-detail h2 { text-align: center; margin-bottom: 0.5rem; }
.lives-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 3rem 0; }
.live-card { background: var(--parchment); border: 1px solid var(--parchment-deep); padding: 2rem 1.7rem; border-radius: 3px; position: relative; overflow: hidden; }
.live-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--saffron), var(--gold)); }
.live-card .live-number { font-family: 'Cormorant Garamond', serif; font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--saffron-deep); font-weight: 700; margin-bottom: 0.4rem; }
.live-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--maroon); margin-bottom: 0.4rem; line-height: 1.15; font-weight: 600; }
.live-card .live-subtitle { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--saffron-deep); font-size: 1.02rem; margin-bottom: 1rem; }
.live-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* === PRICE ANCHOR === */
.price-anchor { background: var(--maroon-deep); color: var(--cream); padding: 5rem 1.5rem; text-align: center; position: relative; }
.price-anchor::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(192,35,31,0.12) 0%, transparent 60%); pointer-events: none; }
.price-anchor .container { position: relative; z-index: 2; }
.price-anchor .eyebrow { color: var(--gold-soft); }
.price-anchor .eyebrow::before, .price-anchor .eyebrow::after { background: var(--gold); }
.price-anchor h2 { color: var(--cream); font-size: clamp(2rem, 3.8vw, 2.8rem); margin-bottom: 1rem; }
.price-anchor .lede { color: var(--parchment); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; margin-bottom: 2.5rem; }
.includes-list { max-width: 580px; margin: 0 auto 3rem; text-align: left; list-style: none; border-top: 1px solid rgba(201,166,86,0.3); border-bottom: 1px solid rgba(201,166,86,0.3); padding: 1rem 0; }
.includes-list li { padding: 0.85rem 0; padding-left: 2.5rem; position: relative; color: var(--parchment); font-size: 1.05rem; border-bottom: 1px solid rgba(201,166,86,0.15); }
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before { content: '✓'; position: absolute; left: 0.4rem; top: 0.85rem; color: var(--saffron-bright); font-size: 1.2rem; font-weight: 700; }
.includes-list li strong { color: var(--cream); font-weight: 700; }
.price-stack { max-width: 480px; margin: 0 auto 2rem; background: rgba(245, 236, 218, 0.06); border: 1px solid var(--gold); border-radius: 4px; padding: 2.5rem 2rem; }
.price-stack::before { content: ''; display: block; width: 50px; height: 1px; background: var(--gold); margin: 0 auto 1.5rem; }
.price-stack .price-main { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--saffron-bright); font-weight: 700; line-height: 1; margin-bottom: 0.3rem; }
.price-stack .price-pix-tag { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; margin-bottom: 1.2rem; }
.price-stack .or { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--parchment); margin: 0.8rem 0; font-size: 0.95rem; }
.price-stack .price-installments { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--cream); margin-bottom: 0.4rem; font-weight: 600; }
.price-stack .price-installments-note { font-size: 0.82rem; color: var(--gold-soft); letter-spacing: 0.1em; margin-bottom: 0; }
.guarantee-seal { display: inline-flex; align-items: center; gap: 1rem; background: rgba(245, 236, 218, 0.08); border: 1px solid var(--gold-deep); border-radius: 4px; padding: 1.2rem 1.8rem; margin-top: 2rem; }
.guarantee-seal .seal-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--saffron); display: flex; align-items: center; justify-content: center; color: var(--cream); font-weight: 700; font-size: 1.05rem; font-family: 'Cormorant Garamond', serif; border: 1px solid var(--gold); }
.guarantee-seal .seal-text { text-align: left; color: var(--parchment); font-size: 0.95rem; line-height: 1.4; }
.guarantee-seal .seal-text strong { display: block; color: var(--cream); font-weight: 700; margin-bottom: 0.2rem; font-size: 1rem; }

/* === FAQ === */
.faq { background: var(--parchment); }
.faq h2 { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--parchment-deep); }
.faq-question { padding: 1.5rem 0; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--maroon); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; user-select: none; transition: color 0.2s; }
.faq-question::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--saffron-deep); }
.faq-question .toggle { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--saffron-deep); display: flex; align-items: center; justify-content: center; color: var(--saffron-deep); font-size: 1.1rem; font-weight: 700; transition: transform 0.2s, background 0.2s; }
.faq-item[open] .toggle { transform: rotate(45deg); background: var(--saffron); color: var(--cream); }
.faq-answer { padding: 0 0 1.8rem; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }

/* === FINAL CTA === */
.final-cta { background: var(--maroon-deep); color: var(--cream); text-align: center; padding: 7rem 1.5rem 5rem; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(192,35,31,0.18) 0%, transparent 65%); pointer-events: none; }
.final-cta .container { position: relative; z-index: 2; }
.final-cta .om { font-family: 'Tiro Devanagari Sanskrit', serif; font-size: 5rem; color: var(--saffron-bright); margin-bottom: 1rem; line-height: 1; }
.final-cta .eyebrow { color: var(--gold-soft); justify-content: center; display: inline-flex; }
.final-cta .eyebrow::before, .final-cta .eyebrow::after { background: var(--gold); }
.final-cta h2 { color: var(--cream); font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 2rem; }
.final-cta h2 em { font-style: italic; color: var(--saffron-bright); font-weight: 500; }
.final-cta p { color: var(--parchment); font-size: 1.1rem; line-height: 1.7; max-width: 640px; margin: 0 auto 1.5rem; }
.final-mantra { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(201,166,86,0.2); }
.final-mantra .devanagari { font-size: 2.4rem; color: var(--saffron-bright); line-height: 1.2; margin-bottom: 0.5rem; }
.final-mantra .translit { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--gold-soft); margin-bottom: 1.5rem; }
.final-mantra .signature { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--parchment); }

/* === FOOTER === */
footer { background: var(--ink-deep); color: var(--gold-soft); text-align: center; padding: 2.5rem 1.5rem; font-size: 0.82rem; letter-spacing: 0.1em; border-top: 1px solid var(--gold-deep); }
footer .links { margin-top: 0.5rem; font-size: 0.78rem; opacity: 0.7; }
footer .links a { color: var(--gold-soft); text-decoration: none; margin: 0 0.5rem; }
footer .links a:hover { color: var(--saffron-bright); }

@media (max-width: 700px) {
  section { padding: 4.5rem 1.2rem; }
  .hero { padding: 5.5rem 1.2rem 3.5rem; }
  .container { padding: 0 0.3rem; }
  .for-whom-col { padding: 2rem 1.5rem; }
  .live-card, .pillar-card, .testimonial-card { padding: 1.8rem 1.4rem; }
  .price-stack { padding: 2rem 1.2rem; }
  .price-stack .price-main { font-size: 2.6rem; }
  .credentials-strip { gap: 1rem; flex-direction: column; }
  .btn-primary.huge { padding: 1.4rem 2.4rem; font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto; } }
