/* ═══════════════════════════════════════════════════════════════
   LUNARA — PUMPING LOG FEATURE PAGE (page-specific styles)
   Route: /features/pumping-log
   Depends on global tokens from assets/frontend/css/lunara.css:
   --ink, --ink-dark, --cream, --lavender, --lav-deep, --text-dark,
   --glass-bg, --glass-border, --shadow-soft, --radius-card
   NOTE: global --mint resolves to a dark green (#348161), not pale
   mint — this file never relies on var(--mint); pale-mint accents
   are hardcoded as #c3e0d4 instead. Page-local tokens are prefixed
   --pl- to avoid clashing with globals.
═══════════════════════════════════════════════════════════════ */


body.page-features-pumping nav.site-nav.scrolled {
  padding:16px 48px;
  background:rgba(28,22,36,0.92);
  backdrop-filter:blur(28px) saturate(1.4);
  -webkit-backdrop-filter:blur(28px) saturate(1.4);
  border-bottom:1px solid rgba(200,191,231,0.12);
  box-shadow:0 2px 40px rgba(0,0,0,0.28);
}
body.page-features-pumping .nav-links a:hover, body.page-features-pumping .nav-links a.active{
    color: #fdf9f4;
}
body.page-features-pumping .nav-links a {
    color: rgba(253, 249, 244, 0.65);
}
body.page-features-pumping .nav-cta {
    background: linear-gradient(135deg, #8b7cba, #c98472);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(139, 124, 186, 0.40);
}

body.page-features-pumping {
  background: var(--ink);
  color: rgba(253, 249, 244, 0.90);
}

body.page-features-pumping h1,
body.page-features-pumping h2,
body.page-features-pumping h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}

body.page-features-pumping em {
  font-style: italic;
  background: linear-gradient(135deg, var(--lavender), var(--pl-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.page-features-pumping .pl-section {
  padding: 88px 0;
}

@media (max-width: 760px) {
  body.page-features-pumping .pl-section { padding: 56px 0; }
}

/* ── Ambient orbs ─────────────────────────────────────────────── */
.pl-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.pl-orb-1 { width: 480px; height: 480px; top: -140px; left: -120px; background: rgba(139,124,186,0.20); animation: plOrbFloat 26s ease-in-out infinite; }
.pl-orb-2 { width: 380px; height: 380px; top: 20%; right: -140px; background: rgba(203,161,90,0.16); animation: plOrbFloat 22s ease-in-out infinite reverse; }
.pl-orb-3 { width: 420px; height: 420px; bottom: -160px; left: 10%; background: rgba(200,191,231,0.14); animation: plOrbFloat 30s ease-in-out infinite; }
.pl-orb-4 { width: 300px; height: 300px; bottom: 30%; right: 8%; background: rgba(184,207,196,0.12); animation: plOrbFloat 24s ease-in-out infinite reverse; }

@keyframes plOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -24px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .pl-orb { animation: none; }
}

/* ── Page meta line (freshness + E-E-A-T) ─────────────────────── */
body.page-features-pumping .pl-page-meta {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 12px;
  color: rgba(253, 249, 244, 0.40);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pl-page-meta-sep { color: rgba(253, 249, 244, 0.18); }

/* ── Hero ──────────────────────────────────────────────────────── */
.pl-hero {
  position: relative;
  z-index: 1;
  padding:50px;
}
.pl-hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .pl-hero { padding: 140px 0 64px; }
  .pl-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.pl-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #c3e0d4;
  margin-bottom: 20px;
}

.pl-hero-h1 {
  font-size: clamp(42px, 5.2vw, 68px);
  color: rgba(253, 249, 244, 0.95);
  margin-bottom: 22px;
}

.pl-hero-answer {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(253, 249, 244, 0.70);
  max-width: 560px;
  margin-bottom: 28px;
}
.pl-hero-answer strong { color: rgba(253, 249, 244, 0.92); font-weight: 500; }

.pl-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.pl-hero-pill {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(200, 191, 231, 0.08);
  border: 1px solid rgba(200, 191, 231, 0.20);
  color: rgba(253, 249, 244, 0.80);
}

.pl-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.pl-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pl-trust-chip {
  font-size: 12px;
  color: rgba(253, 249, 244, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(253, 249, 244, 0.14);
}

/* ── Hero phone mockup ────────────────────────────────────────── */
.pl-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.pl-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 40%, rgba(139,124,186,0.30), transparent 65%);
  filter: blur(30px);
  z-index: 0;
  animation: plGlowPulse 8s ease-in-out infinite;
}
@keyframes plGlowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.pl-phone-frame {
  position: relative;
  z-index: 2;
  width: 320px;
  max-width: 100%;
  background: linear-gradient(160deg, rgba(30, 24, 40, 0.92), rgba(20, 16, 28, 0.96));
  border: 1.5px solid rgba(200, 191, 231, 0.20);
  border-radius: 36px;
  padding: 22px 20px 26px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  animation: plPhoneFloat 7s ease-in-out infinite;
}
@keyframes plPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.pl-phone-island {
  display: block;
  width: 90px;
  height: 22px;
  background: #0d0a12;
  border-radius: 14px;
  margin: 0 auto 16px;
}
.pl-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(253, 249, 244, 0.85);
  margin-bottom: 16px;
}
.pl-phone-header-age {
  font-size: 10px;
  color: rgba(200, 191, 231, 0.45);
}

.pl-timer-display {
  text-align: center;
  margin-bottom: 14px;
}
.pl-timer-clock {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: #fdf9f4;
  line-height: 1;
}
.pl-timer-label {
  font-size: 11px;
  color: #c3e0d4;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.pl-side-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.pl-side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(253, 249, 244, 0.55);
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid rgba(200, 191, 231, 0.18);
  background: rgba(255, 255, 255, 0.03);
  cursor: default;
}
.pl-side-btn span { font-size: 11px; font-weight: 400; color: rgba(253, 249, 244, 0.45); }
.pl-side-btn.active {
  border-color: rgba(139, 124, 186, 0.45);
  background: rgba(139, 124, 186, 0.14);
  color: #fdf9f4;
}

.pl-total-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #c3e0d4;
  background: rgba(195, 224, 212, 0.08);
  border: 1px solid rgba(195, 224, 212, 0.22);
  border-radius: 12px;
  padding: 9px 12px;
  margin-bottom: 16px;
}
.pl-total-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c3e0d4;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(195, 224, 212, 0.7);
}

.pl-log-list { display: flex; flex-direction: column; gap: 8px; }
.pl-log-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pl-log-item.pl-log-visible { opacity: 1; transform: translateX(0); }
.pl-log-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: #8b7cba; }
.pl-log-type { flex: 1; color: rgba(253, 249, 244, 0.80); }
.pl-log-time { color: rgba(253, 249, 244, 0.40); }

.pl-float-card {
  position: absolute;
  z-index: 3;
  background: rgba(28, 22, 36, 0.92);
  border: 1px solid rgba(200, 191, 231, 0.22);
  border-radius: 16px;
  padding: 12px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: plFloatBob 6s ease-in-out infinite;
}
.pl-float-a { top: -14px; right: -10px; animation-delay: 0.3s; }
.pl-float-b { bottom: 10px; left: -24px; animation-delay: 1.1s; }
@keyframes plFloatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.pl-float-top { font-size: 12px; color: #c3e0d4; margin-bottom: 2px; }
.pl-float-mid { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: rgba(253, 249, 244, 0.9); }
.pl-float-sub { font-size: 10px; color: rgba(253, 249, 244, 0.45); margin-top: 2px; }

@media (max-width: 640px) {
   .pl-hero { padding: 50px 0 64px; }
  .pl-float-card { display: none; }
}

/* ── Key takeaways + jump links (TL;DR / AEO block) ───────────── */
.pl-takeaways-section {
  position: relative;
  z-index: 1;
  padding: 8px 0 44px;
}
.pl-takeaways {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(200, 191, 231, 0.18);
  border-radius: var(--radius-card, 20px);
  padding: 26px 28px;
  margin-bottom: 20px;
}
.pl-takeaways-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #c3e0d4;
  margin-bottom: 14px;
}
.pl-takeaways-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
@media (max-width: 760px) {
  .pl-takeaways-list { grid-template-columns: 1fr; }
}
.pl-takeaways-list li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(253, 249, 244, 0.72);
  padding-left: 20px;
  position: relative;
}
.pl-takeaways-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pl-gold);
  font-weight: 700;
}
.pl-takeaways-list strong { color: rgba(253, 249, 244, 0.92); font-weight: 500; }

.pl-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.pl-toc-label {
  font-size: 12px;
  color: rgba(253, 249, 244, 0.40);
  margin-right: 4px;
}
.pl-toc a {
  font-size: 12.5px;
  color: rgba(200, 191, 231, 0.75);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(200, 191, 231, 0.18);
  background: rgba(139, 124, 186, 0.06);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pl-toc a:hover {
  color: #fdf9f4;
  border-color: rgba(200, 191, 231, 0.40);
  background: rgba(139, 124, 186, 0.16);
}

/* ── Social proof strip ──────────────────────────────────────── */
.pl-proof { position: relative; z-index: 1; padding: 40px 0; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(200,191,231,0.10); border-bottom: 1px solid rgba(200,191,231,0.10); }
.pl-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 760px) {
  .pl-proof-strip { grid-template-columns: repeat(2, 1fr); }
}
.pl-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--pl-gold);
  margin-bottom: 4px;
}
.pl-proof-label { font-size: 12px; color: rgba(253, 249, 244, 0.50); }

/* ── Section labels / lede text ──────────────────────────────── */
.section-label-lav  { color: var(--lav-deep, #8b7cba); }
.section-label-gold { color: var(--pl-gold-deep); }
.section-label-sage { color: #3d9276; }

body.page-features-pumping .pl-lede {
  font-size: 16px;
  color: var(--pl-ink-soft);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 32px;
}
body.page-features-pumping .pl-body-text {
  color: var(--pl-ink-mid);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 580px;
}
.pl-body-text-dark { color: rgba(253, 249, 244, 0.65) !important; }

/* ── Two-column layout ───────────────────────────────────────── */
.pl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .pl-two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Stat callout ─────────────────────────────────────────────── */
.pl-stat-callout {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(240, 201, 184, 0.12);
  border: 1px solid rgba(240, 201, 184, 0.30);
  border-radius: var(--radius-card, 20px);
  padding: 18px 22px;
  margin-top: 8px;
}
.pl-stat-callout-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.15;
  color: var(--pl-gold-deep);
  flex-shrink: 0;
}
.pl-stat-callout-text {
  font-size: 14px;
  color: var(--pl-ink-mid);
  line-height: 1.6;
}

.pl-quote-card {
  background: var(--glass-bg, rgba(255,255,255,0.55));
  border: 1.5px solid var(--glass-border, rgba(255,255,255,0.75));
  border-radius: var(--radius-card, 20px);
  padding: 32px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.pl-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--pl-ink-mid);
  line-height: 1.5;
  margin-bottom: 16px;
}
.pl-quote-source { font-size: 12px; color: var(--pl-ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── How it works — feature cards ────────────────────────────── */
.pl-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .pl-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pl-card-grid { grid-template-columns: 1fr; }
}
.pl-feature-card {
  background: var(--glass-bg, rgba(255,255,255,0.55));
  border: 1.5px solid var(--glass-border, rgba(255,255,255,0.75));
  border-radius: var(--radius-card, 20px);
  padding: 26px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.pl-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft, 0 8px 40px rgba(140,120,180,0.10));
}
.pl-feature-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--lav-deep, #8b7cba);
  margin-bottom: 4px;
}
.pl-feature-card-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--pl-ink-mid);
  margin-bottom: 10px;
}
.pl-feature-card-desc {
  font-size: 13px;
  color: var(--pl-ink-soft);
  line-height: 1.6;
}

/* ── Stage benchmark table ────────────────────────────────────── */
.pl-stage-table-wrap {
  overflow-x: auto;
  background: var(--glass-bg, rgba(255,255,255,0.55));
  border: 1.5px solid var(--glass-border, rgba(255,255,255,0.75));
  border-radius: var(--radius-card, 20px);
  padding: 8px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.pl-stage-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 14px;
}
.pl-stage-table caption {
  text-align: left;
  font-size: 12px;
  color: var(--pl-ink-soft);
  padding: 12px 16px 6px;
}
.pl-stage-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pl-ink-soft);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(139, 124, 186, 0.18);
}
.pl-stage-table td {
  padding: 14px 16px;
  color: var(--pl-ink-mid);
  border-bottom: 1px solid rgba(139, 124, 186, 0.10);
  line-height: 1.5;
}
.pl-stage-cell { font-weight: 500; color: var(--text-dark, #2a2230); white-space: nowrap; }
.pl-stage-current { background: rgba(203, 161, 90, 0.10); }
.pl-stage-current td { border-bottom-color: rgba(203, 161, 90, 0.30); }
.pl-stage-current .pl-stage-cell { color: var(--pl-gold-deep); }

.pl-table-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--pl-ink-soft);
}

/* ── Medical disclaimer ──────────────────────────────────────── */
.pl-medical-disclaimer {
  font-size: 13px;
  color: var(--pl-ink-soft);
  font-style: italic;
  max-width: 640px;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 2px solid rgba(232, 169, 138, 0.5);
}
.pl-final-disclaimer {
  font-size: 12px;
  color: rgba(253, 249, 244, 0.35);
  max-width: 560px;
  margin: 20px auto 0;
}

/* ── Milk stash cards ──────────────────────────────────────────── */
.pl-stash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .pl-stash-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pl-stash-grid { grid-template-columns: 1fr; }
}
.pl-stash-card {
  background: rgba(139, 124, 186, 0.08);
  border: 1.5px solid rgba(139, 124, 186, 0.22);
  border-radius: var(--radius-card, 20px);
  padding: 22px 20px;
}
.pl-stash-icon { font-size: 24px; margin-bottom: 8px; }
.pl-stash-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--text-dark, #2a2230); margin-bottom: 4px; }
.pl-stash-window { font-size: 13px; font-weight: 500; color: var(--pl-gold-deep); margin-bottom: 8px; }
.pl-stash-desc { font-size: 13px; color: var(--pl-ink-soft); line-height: 1.6; }

/* ── AI insight section (gold, premium/intelligent) ──────────── */
.pl-ai-section { background: var(--ink); position: relative; z-index: 1; }
.pl-ai-panel {
  background: linear-gradient(160deg, rgba(203,161,90,0.14), rgba(28,22,36,0.92));
  border: 1.5px solid rgba(203, 161, 90, 0.30);
  border-radius: var(--radius-card, 20px);
  padding: 32px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.pl-ai-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.pl-ai-flow-icon { font-size: 22px; }
.pl-ai-flow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pl-gold);
  opacity: 0.5;
  animation: plFlowPulse 1.8s ease-in-out infinite;
}
.pl-ai-flow-dot:nth-child(3) { animation-delay: 0.2s; }
.pl-ai-flow-dot:nth-child(4) { animation-delay: 0.4s; }
@keyframes plFlowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
.pl-ai-insight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(203, 161, 90, 0.22);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.pl-ai-insight-card:last-child { margin-bottom: 0; }
.pl-ai-insight-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pl-gold);
  margin-bottom: 6px;
}
.pl-ai-insight-text {
  font-size: 14px;
  color: rgba(253, 249, 244, 0.80);
  line-height: 1.6;
}

/* ── Mid-page CTA (3rd conversion placement) ──────────────────── */
.pl-mid-cta {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(203, 161, 90, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.pl-mid-cta-trust {
  font-size: 13px;
  color: rgba(253, 249, 244, 0.45);
}

/* ── Testimonials ─────────────────────────────────────────────── */
.pl-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .pl-testimonial-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
  }
  .pl-testimonial-card { scroll-snap-align: center; }
}
.pl-testimonial-card {
  background: var(--glass-bg, rgba(255,255,255,0.55));
  border: 1.5px solid var(--glass-border, rgba(255,255,255,0.75));
  border-radius: var(--radius-card, 20px);
  padding: 26px 24px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: transform 0.3s ease;
}
.pl-testimonial-card:hover { transform: translateY(-4px); }
.pl-test-stars { color: var(--pl-gold); font-size: 14px; margin-bottom: 12px; }
.pl-test-quote { font-size: 14px; color: var(--pl-ink-mid); line-height: 1.7; margin-bottom: 16px; }
.pl-test-author { font-size: 13px; font-weight: 500; color: var(--text-dark, #2a2230); margin-bottom: 8px; }
.pl-test-tag {
  display: inline-block;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(139, 124, 186, 0.10);
  color: var(--lav-deep, #8b7cba);
}

/* ── Inline contextual links (within body paragraphs) ─────────── */
.pl-inline-link {
  color: var(--lav-deep, #8b7cba);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 124, 186, 0.35);
  transition: border-color 0.25s ease;
}
.pl-inline-link:hover { border-bottom-color: rgba(139, 124, 186, 0.8); }

/* ── Internal links line ─────────────────────────────────────── */
.pl-internal-links {
  margin-top: 32px;
  font-size: 14px;
  color: var(--pl-ink-soft);
  line-height: 1.9;
  max-width: 760px;
}
.pl-internal-links a { color: var(--lav-deep, #8b7cba); text-decoration: none; border-bottom: 1px solid rgba(139,124,186,0.35); }
.pl-internal-links a:hover { border-bottom-color: rgba(139,124,186,0.8); }

/* ── FAQ (glass card, lavender accent — overrides lunara.css's
   default open/close mechanism, which keys off .faq-item.open;
   this page's accordion JS toggles .open on .faq-a directly) ──── */
.faq-disclaimer {
  border-left: 3px solid rgba(139, 124, 186, 0.55);
  background: rgba(139, 124, 186, 0.08);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--pl-ink-soft);
  font-style: italic;
  line-height: 1.6;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass-bg, rgba(255, 255, 255, 0.55));
  border: 1.5px solid var(--glass-border, rgba(255, 255, 255, 0.75));
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-soft, 0 8px 40px rgba(140, 120, 180, 0.10));
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark, #2a2230);
  background: transparent;
  border: none;
  text-align: left;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.25s ease;
}
.faq-q:hover { background: rgba(139, 124, 186, 0.06); }
.faq-icon {
  font-size: 18px;
  color: var(--lav-deep, #8b7cba);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 500px; }
.faq-a-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--pl-ink-mid);
  line-height: 1.75;
}

/* ── Final CTA ────────────────────────────────────────────────── */
.pl-final-cta {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(160deg, #1c1624, #110e1a);
}
/* Override global .cta-eyebrow / .cta-trust for this dark section —
   lunara.css defaults them to var(--text-dark), which is near-black
   and unreadable on this section's dark gradient background. */
.pl-final-cta .cta-eyebrow {
  color: rgba(195, 224, 212, 0.70);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pl-final-cta .cta-trust {
  color: rgba(253, 249, 244, 0.45);
  font-size: 13px;
}
.pl-cta-h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: rgba(253, 249, 244, 0.95);
  margin: 16px auto 18px;
  max-width: 640px;
}
.pl-cta-sub {
  font-size: 16px;
  color: rgba(253, 249, 244, 0.60);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.pl-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.pl-badge-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.pl-badge {
  font-size: 13px;
  color: rgba(253, 249, 244, 0.75);
  border: 1px solid rgba(253, 249, 244, 0.20);
  border-radius: 999px;
  padding: 9px 18px;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.pl-badge:hover {
  border-color: rgba(203, 161, 90, 0.55);
  color: var(--pl-gold);
}
