/* ============================================
   YogArunyam — Premium SaaS Design System
   Palette: Trust Blue · Fresh Teal · Clean Neutrals
   Type: DM Sans + Cormorant Garamond brand accents
   ============================================ */

/* ─── TOKENS ─── */
:root {
  --bg-deep:      #FFFFFF;
  --bg-mid:       #F7FBF8;
  --bg-card:      #FFFFFF;
  --bg-card-alt:  #EEF8F1;
  --cream:        #0D2818; /* Darker green for main text */
  --cream-muted:  #4A6C5B; /* Softer green for muted text */
  --gold:         #2A6F44; /* Darker, richer green for accents */
  --gold-light:   #8BC34A; /* Brighter accent for highlights */
  --gold-dim:     #1E4D2B; /* Deep green for links */
  --mint-pale:    #D4F4CD;
  --mint-soft:    #E8F5E9; /* Softer mint for backgrounds */
  --mist:         #BBE1EA;
  --white:        #FFFFFF;
  --danger:       #9F3A3A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;

  --shadow-card:  0 18px 50px rgba(20, 35, 29, 0.08);
  --shadow-pop:   0 28px 90px rgba(20, 35, 29, 0.18);
  --shadow-gold:  0 16px 48px rgba(124, 178, 125, 0.22);

  --transition:   0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-fast: 0.18s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(210, 244, 230, 0.7), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(187, 225, 234, 0.42), transparent 26%),
    var(--bg-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── CONTAINER ─── */
.container {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, #315F45 0%, #7CB27D 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  box-shadow: 0 14px 34px rgba(124, 178, 125, 0.28);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #244D37 0%, #6DA16F 100%);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--gold-dim);
  padding: 13px 27px;
  border: 1.5px solid rgba(49, 95, 69, 0.2);
}
.btn--outline:hover {
  border-color: rgba(124, 178, 125, 0.52);
  color: #244D37;
  background: rgba(210, 244, 230, 0.42);
  box-shadow: 0 12px 30px rgba(20, 35, 29, 0.06);
}

.btn--sm { padding: 9px 18px; font-size: 0.875rem; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--xl { padding: 20px 44px; font-size: 1.15rem; }

/* ─── SHARED SECTION STRUCTURE ─── */
.section {
  padding-block: clamp(64px, 10vw, 120px);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-eyebrow, .hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: var(--cream);
}
.section-title em {
  font-style: italic;
  background: linear-gradient(100deg, #315F45 0%, #7CB27D 54%, #A9DBCA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  margin-top: 14px;
  color: var(--cream-muted);
  font-size: 1rem;
}

.section-cta {
  text-align: center;
  margin-top: clamp(32px, 4vw, 56px);
}

.link {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link:hover { color: var(--gold-light); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(13, 31, 26, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: padding var(--transition-fast);
}
.nav.nav--scrolled { padding: 12px 0; }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav__logo:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background: linear-gradient(
    180deg,
    #FFFFFF 0%,
    #F8FAFC 62%,
    #EEF2F7 100%
  );
  overflow: hidden;
}

/* Subtle radial glow behind content */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(169, 219, 202, 0.42) 0%, transparent 70%);
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: url('') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

/* ─── Breath Line (Signature Element) ─── */
.breath-line {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0;
  animation: breathFadeIn 2s ease 1.5s forwards;
}
.breath-line svg { width: 100%; height: 80px; }

.breath-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: breathDraw 3s ease 1.8s forwards, breathPulse 6s ease-in-out 4.8s infinite;
}

@keyframes breathFadeIn {
  to { opacity: 1; }
}
@keyframes breathDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes breathPulse {
  0%, 100% { opacity: 0.45; transform: scaleY(1); }
  50%       { opacity: 0.2;  transform: scaleY(0.5); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-block: 40px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.045em;
}
.hero__headline em {
  font-style: italic;
  background: linear-gradient(100deg, #315F45 0%, #7CB27D 54%, #A9DBCA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subhead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--cream-muted);
  max-width: 660px;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  margin-bottom: 40px;
}
.trust-bar__item {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream-muted);
  text-transform: uppercase;
}
.trust-bar__divider {
  color: #7CB27D;
  font-size: 1.1rem;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero__microcopy {
  font-size: 0.8rem;
  color: var(--cream-muted);
  letter-spacing: 0.02em;
}

/* ============================================
   PAS (PROBLEM / AGITATION / SOLUTION)
   ============================================ */
.pas { background: var(--bg-mid); }

.pas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pas__card {
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(49, 95, 69, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pas__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pas__card--bad {
  background: var(--bg-card-alt);
  border-color: rgba(239, 68, 68, 0.14);
}
.pas__card--good {
  background: var(--bg-card);
  border-color: rgba(124, 178, 125, 0.26);
}

.pas__icon { font-size: 2rem; margin-bottom: 14px; }

.pas__card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.pas__card--bad .pas__card-title { color: #334155; }

.pas__card-text {
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.pas__card--good .pas__card-text { color: var(--cream); }

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--bg-deep); }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid rgba(49, 95, 69, 0.1);
  background: var(--bg-card);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

/* Decoy — Middle card pops */
.pricing-card--popular {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
  z-index: 2;
}
.pricing-card--popular:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 70px rgba(201, 168, 76, 0.35);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #315F45, #7CB27D);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.pricing-card--popular .pricing-card__tier { color: var(--gold); }

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.25;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pricing-card__period {
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.pricing-card__then {
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-bottom: 16px;
  min-height: 1.4em;
}
.pricing-card__save {
  background: rgba(210, 244, 230, 0.64);
  color: var(--gold-dim);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.pricing-card__best-for {
  font-size: 0.8rem;
  color: var(--gold-dim);
  font-style: italic;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(49, 95, 69, 0.1);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-card__features li {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.5;
}
.pricing-card--popular .pricing-card__features li { color: var(--cream); }

.pricing-card__proof {
  background: rgba(210, 244, 230, 0.48);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--cream-muted);
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card__bonus {
  font-size: 0.85rem;
  color: var(--cream-muted);
  background: rgba(212, 244, 205, 0.4);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.pricing-card__bonus strong { color: var(--gold); }

.pricing-card__urgency {
  font-size: 0.8rem;
  color: var(--cream-muted);
  margin-bottom: 24px;
}
.urgency-text { color: var(--danger); font-weight: 600; }

.pricing-card__btn { width: 100%; text-align: center; }

.pricing__microcopy {
  text-align: center;
  margin-top: 36px;
  color: var(--cream-muted);
  font-size: 0.9rem;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison { background: var(--bg-mid); }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(49, 95, 69, 0.09);
  vertical-align: middle;
}

.comparison-table thead th {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--bg-card-alt);
  letter-spacing: 0.02em;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover td { background: rgba(30,136,229,0.035); }

.compare-label {
  font-weight: 500;
  color: var(--cream-muted);
  white-space: nowrap;
}

.compare-highlight {
  background: rgba(210, 244, 230, 0.6) !important;
  color: var(--gold-dim) !important;
  font-weight: 500;
}
thead .compare-highlight {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold) !important;
}

/* ============================================
   RISK REVERSAL
   ============================================ */
.risk { background: var(--bg-deep); }

.risk__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.risk-card {
  border: 1px solid rgba(49, 95, 69, 0.1);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--bg-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.risk-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 178, 125, 0.36);
  box-shadow: var(--shadow-card);
}

.risk-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(124, 178, 125, 0.24);
  line-height: 1;
  margin-bottom: 14px;
}

.risk-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.risk-card__text {
  color: var(--cream-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}

.risk__microcopy {
  text-align: center;
  margin-top: 48px;
  color: var(--gold-dim);
  font-size: 0.9rem;
  font-style: italic;
  max-width: 480px;
  margin-inline: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-mid); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-card__flag { font-size: 1.5rem; }

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  border: none;
  flex: 1;
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,0.08);
}
.testimonial-card__name {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
}
.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--cream-muted);
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--bg-deep); }

.about__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about__image-col { position: sticky; top: 120px; }

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(140deg, #FFFFFF 0%, #EEF2F7 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 178, 125, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__image-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
}

.about__title { margin-bottom: 24px; }

.about__text {
  color: var(--cream-muted);
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.75;
}
.about__text--em {
  color: var(--cream);
  font-style: italic;
  margin-top: 4px;
}

.about__list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__list li {
  color: var(--cream-muted);
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}
.about__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(124, 178, 125, 0.26);
  border-radius: 50px;
  background: rgba(210, 244, 230, 0.55);
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg-mid); }

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(15,23,42,0.08);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  gap: 16px;
  transition: color var(--transition-fast);
}
.faq-item__question:hover { color: var(--gold); }
.faq-item__question[aria-expanded="true"] { color: var(--gold); }

.faq-item__icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition-fast);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold-dim);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition-fast);
}
.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after  { width: 1.5px; height: 10px; }

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon::before,
.faq-item__question[aria-expanded="true"] .faq-item__icon::after { background: var(--gold); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition);
}
.faq-item__answer.is-open {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 26px 22px;
  color: var(--cream-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 168, 232, 0.2), transparent 30%),
    linear-gradient(150deg, #14231D 0%, #315F45 65%, #0F1F18 100%);
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(169, 219, 202, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta__overlay { position: absolute; inset: 0; pointer-events: none; }

.final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-inline: auto;
}

.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.12;
}

.final-cta__subhead {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 32px;
  font-style: italic;
}

.final-cta__body {
  color: #CBD5E1;
  margin-bottom: 16px;
  font-size: 1rem;
}

.final-cta__choices {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 32px;
  text-align: left;
  display: inline-block;
}
.final-cta__choices li {
  color: #CBD5E1;
  margin-bottom: 8px;
  font-size: 1rem;
}

.final-cta__microcopy {
  margin-top: 16px;
  font-size: 0.82rem;
  color: #CBD5E1;
}

.final-cta__ps {
  margin-top: 40px;
  color: #7DD3FC;
  font-size: 0.9rem;
  font-style: italic;
  max-width: 500px;
  margin-inline: auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.final-cta__ps em { color: #E0F2FE; font-style: italic; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #080F0D;
  padding: 40px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--cream-muted);
  font-style: italic;
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--gold-dim);
  margin-top: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-card--popular {
    grid-column: span 2;
    transform: none;
  }
  .pricing-card--popular:hover { transform: translateY(-4px); }

  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__image-col {
    position: relative;
    top: auto;
    max-width: 300px;
  }
  .about__image-placeholder {
    aspect-ratio: 1;
  }
}

@media (max-width: 768px) {
  .pas__grid,
  .risk__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .pricing-card--popular {
    grid-column: span 1;
    border-width: 2px;
  }

  .trust-bar { gap: 8px 14px; }
  .trust-bar__divider { display: none; }

  .hero__cta-group { align-items: stretch; }
  .btn--lg, .btn--xl { text-align: center; }
}

@media (max-width: 480px) {
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th,
  .comparison-table td { padding: 12px 14px; }

  .hero__headline { font-size: 2.1rem; }
  .section-title { font-size: 1.75rem; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .breath-path { animation: none; stroke-dashoffset: 0; }
  .breath-line { opacity: 0.3; animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* Ad-landing refinement: tighter pricing, stronger contrast, calm premium motion */
:root {
  --bg-deep: #fffdf7;
  --bg-mid: #f1f7f0;
  --bg-card: #ffffff;
  --bg-card-alt: #edf7ef;
  --cream: #122419;
  --cream-muted: #40564a;
  --gold: #c07a2d;
  --gold-light: #e3b36c;
  --gold-dim: #1f6a49;
  --mint-pale: #d9efd8;
  --mint-soft: #eaf7ec;
  --mist: #d8ece8;
  --shadow-card: 0 18px 48px rgba(18, 36, 25, 0.1);
  --shadow-pop: 0 30px 90px rgba(18, 36, 25, 0.18);
  --shadow-gold: 0 20px 58px rgba(31, 106, 73, 0.17), 0 12px 34px rgba(192, 122, 45, 0.16);
}

body.yoga-site,
body {
  background:
    linear-gradient(180deg, #fffdf7 0%, #f1f7f0 44%, #fffdf7 100%),
    repeating-linear-gradient(135deg, rgba(31, 106, 73, 0.04) 0 1px, transparent 1px 20px);
}

.section {
  padding-block: clamp(46px, 7vw, 86px);
}

.section-header {
  margin-bottom: clamp(26px, 4.5vw, 44px);
}

.hero {
  min-height: min(760px, calc(100svh - 108px));
  padding-top: 70px;
  background:
    linear-gradient(115deg, rgba(255, 253, 247, 0.98) 0%, rgba(241, 247, 240, 0.95) 58%, rgba(216, 236, 232, 0.88) 100%);
}

.hero::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 90px, rgba(31, 106, 73, 0.05) 91px 92px, transparent 93px 180px),
    linear-gradient(140deg, rgba(227, 179, 108, 0.16), transparent 42%);
  animation: pricingAura 18s ease-in-out infinite alternate;
}

@keyframes pricingAura {
  from { background-position: 0 0, 0 0; }
  to { background-position: 90px 0, 30px 18px; }
}

.breath-path {
  stroke: #1f6a49;
}

.hero__headline,
.section-title {
  letter-spacing: 0;
  color: var(--cream);
}

.hero__headline em,
.section-title em {
  background: linear-gradient(100deg, #1f6a49 0%, #c07a2d 58%, #6f4a98 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__subhead {
  margin-bottom: 24px;
  color: var(--cream-muted);
}

.trust-bar {
  margin-bottom: 28px;
  gap: 8px 12px;
}

.trust-bar__item {
  padding: 7px 11px;
  border: 1px solid rgba(31, 106, 73, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: #284c3a;
}

.trust-bar__divider {
  display: none;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 48px;
  text-align: center;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.35) 45%, transparent 76%);
  transform: translateX(-120%);
  transition: transform 0.72s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn--primary {
  background: linear-gradient(135deg, #1f6a49 0%, #2f8a63 52%, #c07a2d 100%);
  box-shadow: 0 16px 38px rgba(31, 106, 73, 0.22), 0 4px 14px rgba(192, 122, 45, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #18543a 0%, #287657 52%, #a76424 100%);
}

.btn--outline {
  border-color: rgba(31, 106, 73, 0.28);
  background: rgba(255, 255, 255, 0.7);
  color: #1f5d42;
}

.btn--outline:hover {
  border-color: rgba(192, 122, 45, 0.46);
  background: #fffdf7;
  color: #7b4d1d;
}

.pricing__grid {
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(22px, 2.3vw, 30px);
  border-color: rgba(31, 106, 73, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.98));
  box-shadow: 0 10px 30px rgba(18, 36, 25, 0.06);
}

.pricing-card:hover {
  transform: translateY(-7px);
  border-color: rgba(192, 122, 45, 0.3);
  box-shadow: 0 24px 64px rgba(18, 36, 25, 0.14);
}

.pricing-card--popular {
  border-color: rgba(31, 106, 73, 0.78);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px) scale(1.025);
}

.pricing-card--popular::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(192, 122, 45, 0.2);
  border-radius: calc(var(--radius-lg) - 7px);
  pointer-events: none;
}

.pricing-card--popular:hover {
  transform: translateY(-13px) scale(1.025);
  box-shadow: 0 28px 76px rgba(18, 36, 25, 0.18);
}

.popular-badge {
  background: linear-gradient(135deg, #1f6a49, #c07a2d);
  box-shadow: 0 10px 24px rgba(18, 36, 25, 0.18);
  animation: badgeBreath 4.8s ease-in-out infinite;
}

@keyframes badgeBreath {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-3px); }
}

.pricing-card__name {
  margin-bottom: 14px;
}

.pricing-card__amount {
  color: #1f6a49;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.pricing-card__then,
.pricing-card__best-for {
  color: var(--cream-muted);
}

.pricing-card__then {
  margin-bottom: 12px;
}

.pricing-card__best-for {
  margin-bottom: 14px;
  padding-bottom: 14px;
}

.pricing-card__features {
  gap: 8px;
  margin-bottom: 18px;
}

.pricing-card__features li {
  position: relative;
  padding-left: 22px;
  color: #40564a;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f6a49, #c07a2d);
  box-shadow: 0 0 0 4px rgba(31, 106, 73, 0.08);
}

.pricing-card__proof,
.pricing-card__bonus {
  background: rgba(237, 247, 239, 0.88);
  border-color: #c07a2d;
}

.pricing-card__btn {
  margin-top: auto;
}

.pricing__microcopy {
  margin-top: 22px;
}

.pricing__microcopy.text-center {
  margin-top: 24px !important;
  padding: 14px 18px !important;
  border-color: rgba(31, 106, 73, 0.18) !important;
  background:
    linear-gradient(135deg, rgba(237, 247, 239, 0.96), rgba(255, 253, 247, 0.96)) !important;
  color: #214734 !important;
  box-shadow: 0 14px 36px rgba(18, 36, 25, 0.08);
}

.comparison-table tbody tr:hover td {
  background: rgba(31, 106, 73, 0.045);
}

.compare-highlight {
  background: rgba(237, 247, 239, 0.82) !important;
  color: #1f5d42 !important;
}

.risk-card,
.testimonial-card,
.pas__card,
.faq-item {
  border-color: rgba(31, 106, 73, 0.13);
  box-shadow: 0 8px 26px rgba(18, 36, 25, 0.055);
}

.risk-card:hover,
.testimonial-card:hover,
.pas__card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 122, 45, 0.28);
  box-shadow: 0 22px 58px rgba(18, 36, 25, 0.12);
}

.final-cta {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 18px),
    linear-gradient(150deg, #122419 0%, #1f6a49 54%, #5a3f79 100%);
}

.final-cta::before {
  background:
    linear-gradient(110deg, rgba(227, 179, 108, 0.18), transparent 46%),
    linear-gradient(290deg, rgba(216, 236, 232, 0.16), transparent 40%);
  animation: finalCalm 14s ease-in-out infinite alternate;
}

@keyframes finalCalm {
  from { transform: translate(-50%, -50%) rotate(0deg); opacity: 0.72; }
  to { transform: translate(-50%, -50%) rotate(4deg); opacity: 1; }
}

.final-cta__ps {
  color: #f0d19b;
}

.final-cta__ps em {
  color: #fff8e8;
}

@media (max-width: 1024px) {
  .pricing-card--popular {
    transform: none;
  }

  .pricing-card--popular:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 18px;
  }

  .section {
    padding-block: 44px;
  }

  .hero {
    min-height: auto;
    padding-block: 52px 44px;
  }

  .hero__content {
    padding-block: 22px;
  }

  .hero__headline {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
  }

  .hero__subhead {
    line-height: 1.62;
  }

  .pricing__grid {
    gap: 14px;
  }

  .pricing-card {
    padding: 22px;
  }

  .pricing-card__amount {
    font-size: 2.45rem;
  }

  .btn--lg,
  .btn--xl,
  .pricing-card__btn {
    width: 100%;
  }

  .comparison-table {
    min-width: 720px;
  }

  .table-wrap {
    margin-inline: -4px;
  }

  .final-cta__choices {
    display: block;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero__headline,
  .section-title {
    overflow-wrap: anywhere;
  }

  .popular-badge {
    top: -12px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .popular-badge,
  .final-cta::before {
    animation: none !important;
  }
}

/* Light genuine pricing finish */
:root {
  --bg-deep: #fffefa;
  --bg-mid: #f3f8f2;
  --bg-card: rgba(255, 255, 255, 0.94);
  --bg-card-alt: #edf6ef;
  --cream: #13261c;
  --cream-muted: #506457;
  --gold: #8f6f42;
  --gold-light: #d9bd83;
  --gold-dim: #2f7554;
  --mint-pale: #dff1dc;
  --mint-soft: #eef8ef;
  --mist: #e6f4f5;
  --shadow-card: 0 16px 42px rgba(37, 73, 53, 0.08);
  --shadow-pop: 0 26px 76px rgba(37, 73, 53, 0.14);
  --shadow-gold: 0 18px 48px rgba(47, 117, 84, 0.16);
}

body.yoga-site,
body {
  background:
    linear-gradient(120deg, rgba(255, 254, 250, 0.98) 0%, rgba(243, 248, 242, 0.94) 48%, rgba(230, 244, 245, 0.9) 100%),
    repeating-linear-gradient(115deg, rgba(47, 117, 84, 0.034) 0 1px, transparent 1px 34px);
  position: relative;
  isolation: isolate;
}

body.yoga-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg, transparent 0%, rgba(223, 241, 220, 0.48) 22%, transparent 48%),
    linear-gradient(260deg, transparent 0%, rgba(246, 229, 220, 0.42) 30%, transparent 60%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.5), rgba(230, 244, 245, 0.32));
  background-size: 180% 180%, 170% 170%, 100% 100%;
  animation: pricingLivingLight 22s ease-in-out infinite alternate;
  pointer-events: none;
}

body.yoga-site::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(47, 117, 84, 0.035) 89px 90px, transparent 91px 178px),
    repeating-linear-gradient(0deg, transparent 0 96px, rgba(143, 111, 66, 0.026) 97px 98px, transparent 99px 194px);
  opacity: 0.6;
  animation: pricingPeacefulGrid 28s linear infinite;
  pointer-events: none;
}

body.yoga-site > * {
  position: relative;
  z-index: 1;
}

@keyframes pricingLivingLight {
  from { background-position: 0% 35%, 100% 65%, center; }
  to { background-position: 90% 10%, 10% 90%, center; }
}

@keyframes pricingPeacefulGrid {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-44px, -32px, 0); }
}

.hero,
.pas,
.pricing,
.comparison,
.risk,
.testimonials,
.about,
.faq {
  background: transparent;
}

.hero {
  background:
    linear-gradient(115deg, rgba(255, 254, 250, 0.92), rgba(238, 248, 239, 0.76)),
    repeating-linear-gradient(90deg, transparent 0 90px, rgba(47, 117, 84, 0.032) 91px 92px, transparent 93px 180px);
}

.hero::before {
  background:
    linear-gradient(115deg, rgba(223, 241, 220, 0.42), transparent 46%),
    linear-gradient(285deg, rgba(230, 244, 245, 0.46), transparent 52%);
  animation: pricingAura 20s ease-in-out infinite alternate;
}

.hero__headline em,
.section-title em {
  background: linear-gradient(100deg, #2f7554 0%, #6c9f7b 48%, #8f6f42 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__eyebrow,
.section-eyebrow {
  color: #6d5a37;
}

.breath-path {
  stroke: #6c9f7b;
}

.trust-bar__item {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(47, 117, 84, 0.12);
  color: #385c48;
}

.btn--primary {
  background: linear-gradient(135deg, #2f7554 0%, #6c9f7b 100%);
  box-shadow: 0 14px 32px rgba(47, 117, 84, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #285f47 0%, #5c8d6f 100%);
}

.btn--outline {
  background: rgba(255, 254, 250, 0.74);
  border-color: rgba(47, 117, 84, 0.24);
  color: #2f7554;
}

.btn--outline:hover {
  background: rgba(238, 248, 239, 0.88);
  color: #285f47;
}

.pricing-card,
.pas__card,
.risk-card,
.testimonial-card,
.faq-item,
.table-wrap {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.91), rgba(255, 254, 250, 0.87));
  border-color: rgba(47, 117, 84, 0.12);
  backdrop-filter: blur(10px);
}

.pricing-card--popular {
  border-color: rgba(108, 159, 123, 0.72);
  box-shadow: 0 18px 48px rgba(47, 117, 84, 0.15);
}

.popular-badge {
  background: linear-gradient(135deg, #2f7554, #6c9f7b);
}

.pricing-card__amount,
.testimonial-card__name,
.pricing-card__bonus strong {
  color: #2f7554;
}

.pricing-card__features li::before {
  background: linear-gradient(135deg, #6c9f7b, #8f6f42);
  box-shadow: 0 0 0 4px rgba(108, 159, 123, 0.12);
}

.pricing-card__proof,
.pricing-card__bonus,
.compare-highlight {
  background: rgba(238, 248, 239, 0.88) !important;
}

.about__image-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 117, 84, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.95), rgba(238, 248, 239, 0.9));
  box-shadow: 0 24px 70px rgba(37, 73, 53, 0.16);
}

.about__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 1.1s ease, filter 1.1s ease;
}

.about__image-placeholder:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.about__image-placeholder::after {
  content: "B.Sc. Yoga | Shantikunj, Haridwar";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(108, 159, 123, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 254, 250, 0.82);
  color: #2f7554;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.final-cta {
  background:
    repeating-linear-gradient(135deg, rgba(47, 117, 84, 0.035) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, rgba(238, 248, 239, 0.94), rgba(255, 254, 250, 0.96) 58%, rgba(230, 244, 245, 0.9));
}

.final-cta::before {
  background:
    linear-gradient(115deg, rgba(223, 241, 220, 0.58), transparent 48%),
    linear-gradient(280deg, rgba(246, 229, 220, 0.42), transparent 52%);
}

.final-cta__headline {
  color: #13261c;
}

.final-cta__subhead,
.final-cta__body,
.final-cta__choices li,
.final-cta__microcopy {
  color: #506457;
}

.final-cta__ps {
  color: #6d5a37;
  border-top-color: rgba(47, 117, 84, 0.14);
}

.final-cta__ps em {
  color: #2f7554;
}

@media (max-width: 1024px) {
  .about__image-placeholder {
    aspect-ratio: 4 / 5;
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .about__image-col {
    margin-inline: auto;
  }

  .about__image-placeholder {
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.yoga-site::before,
  body.yoga-site::after {
    animation: none !important;
  }
}

/* Stabilize pricing layout: live background must not affect stacking or icons */
body.yoga-site,
body {
  background:
    linear-gradient(120deg, rgba(255, 254, 250, 0.98) 0%, rgba(243, 248, 242, 0.94) 48%, rgba(230, 244, 245, 0.9) 100%),
    repeating-linear-gradient(115deg, rgba(47, 117, 84, 0.034) 0 1px, transparent 1px 34px);
  background-size: 180% 180%, 100% 100%;
  animation: pricingPageLightDrift 24s ease-in-out infinite alternate;
  isolation: auto;
}

body.yoga-site::before,
body.yoga-site::after {
  display: none !important;
}

body.yoga-site > * {
  position: static;
  z-index: auto;
}

.stick_it {
  position: sticky !important;
  top: 0 !important;
  z-index: 1001 !important;
}

.desktop-nav {
  position: sticky !important;
  top: 76px !important;
  z-index: 1000 !important;
}

#overlay {
  position: fixed !important;
  z-index: 900 !important;
}

.side-nav {
  position: fixed !important;
  z-index: 1200 !important;
}

.hero__content,
.final-cta__inner {
  position: relative;
  z-index: 2;
}

.pas__icon,
.popular-badge i,
.site-footer i,
.testimonial-card__flag {
  display: inline-grid;
  place-items: center;
  line-height: 1;
  font-style: normal;
}

.pas__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(238, 248, 239, 0.92);
}

.pas__icon--bad {
  color: #8a4b4b;
}

.pas__icon--good {
  color: #2f7554;
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@keyframes pricingPageLightDrift {
  from { background-position: 0% 40%, 0 0; }
  to { background-position: 100% 60%, 34px 22px; }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.yoga-site,
  body {
    animation: none !important;
  }
}
