/* ============================================================
   MyPariva — Brand & Marketing CSS
   ============================================================ */

/* ── Google Fonts loaded in layout head ── */

/* ── Inner-page body override (warm blush bg replaces site.css default) ── */
body.mp-body {
  background-color: #FFF8FB !important;
  background-image: none !important;
}

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --mp-pink-600:   #E91E78;
  --mp-pink-500:   #F0529C;
  --mp-pink-400:   #F472B6;
  --mp-pink-100:   #FFE4F1;
  --mp-pink-50:    #FFF5FA;
  --mp-ink-900:    #1A1A2E;
  --mp-ink-700:    #3D3D56;
  --mp-ink-500:    #6B7280;
  --mp-ink-200:    #E5E7EB;
  --mp-bg:         #FFFFFF;
  --mp-success:    #10B981;
  --mp-warn:       #F59E0B;
  --mp-radius:     14px;
  --mp-radius-lg:  24px;
  --mp-shadow-sm:  0 1px 2px rgba(26,26,46,0.06);
  --mp-shadow-md:  0 8px 24px rgba(233,30,120,0.08);
  --mp-shadow-lg:  0 20px 48px rgba(233,30,120,0.12);
  --mp-gradient:   linear-gradient(135deg, #FFF5FA 0%, #FFE4F1 100%);
  --mp-gradient-cta: linear-gradient(135deg, #E91E78 0%, #C2185B 100%);
  --mp-nav-h:      72px;
}

/* ── Base Reset & Typography ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.mp-body {
  font-family: 'Inter', sans-serif;
  color: var(--mp-ink-900);
  background: #FFF8FB;
  -webkit-font-smoothing: antialiased;
}

body.mp-body h1,
body.mp-body h2,
body.mp-body h3,
body.mp-body h4,
body.mp-body h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--mp-ink-900);
  line-height: 1.2;
}

body.mp-body p { color: var(--mp-ink-700); line-height: 1.75; }

/* ── Focus rings ─────────────────────────────────────────────── */
body.mp-body *:focus-visible {
  outline: 2px solid var(--mp-pink-500);
  outline-offset: 2px;
}

/* ── Sections ────────────────────────────────────────────────── */
.mp-section {
  padding: 96px 0;
}
@media (max-width: 991.98px) { .mp-section { padding: 64px 0; } }
@media (max-width: 575.98px) { .mp-section { padding: 48px 0; } }

.mp-section-sm { padding: 64px 0; }
@media (max-width: 575.98px) { .mp-section-sm { padding: 40px 0; } }

/* ── Buttons ─────────────────────────────────────────────────── */
.mp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mp-gradient-cta);
  color: #fff;
  border: none;
  border-radius: var(--mp-radius);
  padding: 14px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(233,30,120,0.28);
}
.mp-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,30,120,0.38);
  text-decoration: none;
}

.mp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--mp-pink-600);
  border: 2px solid var(--mp-pink-600);
  border-radius: var(--mp-radius);
  padding: 12px 26px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.mp-btn-secondary:hover {
  background: var(--mp-pink-50);
  color: var(--mp-pink-600);
  transform: translateY(-1px);
  text-decoration: none;
}

.mp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--mp-pink-600);
  border: none;
  padding: 10px 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.mp-btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mp-pink-600);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.mp-btn-ghost:hover { color: var(--mp-pink-600); text-decoration: none; }
.mp-btn-ghost:hover::after { transform: scaleX(1); }

/* ── Cards ───────────────────────────────────────────────────── */
.mp-card {
  background: #fff;
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow-sm);
  padding: 28px;
  border: 1px solid var(--mp-ink-200);
  transition: box-shadow 0.22s, transform 0.22s;
}
.mp-card:hover {
  box-shadow: var(--mp-shadow-md);
  transform: translateY(-3px);
}

/* ── Chip / Pill ──────────────────────────────────────────────── */
.mp-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--mp-pink-100);
  color: var(--mp-pink-600);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── Section Labels ──────────────────────────────────────────── */
.mp-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mp-pink-600);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.mp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
  height: var(--mp-nav-h);
}
.mp-nav--scrolled {
  border-bottom-color: var(--mp-ink-200);
  box-shadow: 0 2px 16px rgba(26,26,46,0.07);
}
.mp-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mp-nav-logo img { height: 44px; width: auto; }
.mp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-nav-links a {
  color: var(--mp-ink-700);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.16s, background 0.16s;
}
.mp-nav-links a:hover {
  color: var(--mp-pink-600);
  background: var(--mp-pink-50);
}
.mp-nav-actions { display: flex; align-items: center; gap: 10px; }

/* Mobile hamburger */
.mp-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--mp-pink-50);
  border: 1.5px solid var(--mp-pink-100);
  border-radius: 10px;
  cursor: pointer;
  padding: 6px 10px;
  color: var(--mp-pink-600);
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
}
.mp-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--mp-ink-200);
  padding: 16px 0;
}
.mp-mobile-menu.open { display: block; }
.mp-mobile-menu a {
  display: block;
  color: var(--mp-ink-700);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  transition: color 0.16s, background 0.16s;
}
.mp-mobile-menu a:hover { color: var(--mp-pink-600); background: var(--mp-pink-50); }
.mp-mobile-menu .mp-mobile-ctas {
  display: flex;
  gap: 10px;
  padding: 12px 24px 0;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .mp-nav-links { display: none; }
  .mp-nav-actions .mp-btn-primary,
  .mp-nav-actions .mp-btn-secondary { display: none; }
  .mp-nav-toggle { display: flex; }
}

/* Page offset for fixed nav */
.mp-page-content { padding-top: var(--mp-nav-h); }

/* ═══════════════════════════════════════════════════════════════
   LANDING — HERO
   ═══════════════════════════════════════════════════════════════ */
.mp-hero {
  background: var(--mp-gradient);
  padding: 80px 0 80px;
  overflow: hidden;
  position: relative;
}
.mp-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,120,0.06) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.mp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.mp-hero-sub {
  font-size: 1.1rem;
  color: var(--mp-ink-700);
  line-height: 1.75;
  max-width: 500px;
}
.mp-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mp-ink-500);
}
.mp-trust-strip span { display: flex; align-items: center; gap: 5px; }

/* Phone mockup placeholder */
.mp-phone-mockup {
  position: relative;
  background: #fff;
  border-radius: 36px;
  box-shadow: var(--mp-shadow-lg), 0 0 0 6px rgba(233,30,120,0.08);
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
  padding: 20px;
  border: 6px solid #f3f4f6;
}
.mp-phone-notch {
  width: 90px; height: 10px;
  background: var(--mp-ink-200);
  border-radius: 999px;
  margin: 0 auto 16px;
}
.mp-phone-card {
  background: var(--mp-gradient);
  border-radius: var(--mp-radius);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.mp-phone-card-label { font-size: 0.7rem; font-weight: 700; color: var(--mp-pink-600); margin-bottom: 2px; }
.mp-phone-card-value { font-size: 1.1rem; font-weight: 800; color: var(--mp-ink-900); }
.mp-phone-notification {
  background: #fff;
  border: 1px solid var(--mp-ink-200);
  border-radius: var(--mp-radius);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.72rem;
  color: var(--mp-ink-700);
}
.mp-phone-notification-icon {
  width: 28px; height: 28px;
  background: var(--mp-pink-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--mp-pink-600);
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════════════════════════════════════ */
.mp-proof-bar {
  background: #fff;
  border-top: 1px solid var(--mp-ink-200);
  border-bottom: 1px solid var(--mp-ink-200);
  padding: 28px 0;
}
.mp-proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.mp-proof-stat { text-align: center; }
.mp-proof-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--mp-pink-600);
  line-height: 1;
}
.mp-proof-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mp-ink-500);
  margin-top: 4px;
}
.mp-proof-divider {
  width: 1px; height: 40px;
  background: var(--mp-ink-200);
}
@media (max-width: 575.98px) {
  .mp-proof-divider { display: none; }
  .mp-proof-stats { gap: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   PILLARS / FEATURE GRID
   ═══════════════════════════════════════════════════════════════ */
.mp-pillar-icon {
  width: 52px; height: 52px;
  background: var(--mp-pink-100);
  border-radius: var(--mp-radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--mp-pink-600);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.mp-pillar-icon svg { width: 24px; height: 24px; stroke-width: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ═══════════════════════════════════════════════════════════════ */
.mp-steps { position: relative; }
.mp-step-number {
  width: 48px; height: 48px;
  background: var(--mp-gradient-cta);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(233,30,120,0.28);
}
.mp-step-connector {
  width: 2px;
  background: var(--mp-pink-100);
  flex: 1;
  min-height: 32px;
  margin-left: 23px;
}

/* ═══════════════════════════════════════════════════════════════
   ALTERNATING FEATURE SECTION
   ═══════════════════════════════════════════════════════════════ */
.mp-feature-img {
  background: var(--mp-gradient);
  border-radius: var(--mp-radius-lg);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   PRIVACY BAND
   ═══════════════════════════════════════════════════════════════ */
.mp-privacy-band {
  background: var(--mp-gradient);
  padding: 64px 0;
  text-align: center;
}
.mp-privacy-band h2 { font-size: 1.8rem; }
.mp-privacy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}
.mp-privacy-item-icon {
  width: 40px; height: 40px;
  background: var(--mp-pink-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.mp-privacy-item-icon svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════
   ARTICLE / HEALTH CARDS
   ═══════════════════════════════════════════════════════════════ */
.mp-article-card {
  background: #fff;
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow-sm);
  border: 1px solid var(--mp-ink-200);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.mp-article-card:hover {
  box-shadow: var(--mp-shadow-md);
  transform: translateY(-4px);
}
.mp-article-card-img {
  height: 180px;
  background: var(--mp-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--mp-pink-600);
}
.mp-article-card-body { padding: 20px; }
.mp-article-card-tag {
  font-size: 0.72rem; font-weight: 700;
  color: var(--mp-pink-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.mp-article-card h4 {
  font-size: 1rem; font-weight: 700;
  line-height: 1.4; margin-bottom: 10px;
  color: var(--mp-ink-900);
}
.mp-article-card p { font-size: 0.85rem; color: var(--mp-ink-500); margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.mp-testimonial {
  background: #fff;
  border-radius: var(--mp-radius-lg);
  box-shadow: var(--mp-shadow-sm);
  border: 1px solid var(--mp-ink-200);
  padding: 28px 24px;
}
.mp-testimonial-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 12px; }
.mp-testimonial-text {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--mp-ink-700);
  margin-bottom: 20px;
}
.mp-testimonial-author { display: flex; align-items: center; gap: 12px; }
.mp-testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mp-pink-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--mp-pink-600);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.mp-testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--mp-ink-900); }
.mp-testimonial-loc { font-size: 0.78rem; color: var(--mp-ink-500); }

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.mp-accordion .accordion-item {
  border: 1px solid var(--mp-ink-200);
  border-radius: var(--mp-radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.mp-accordion .accordion-button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--mp-ink-900);
  background: #fff;
  padding: 18px 22px;
  box-shadow: none;
}
.mp-accordion .accordion-button:not(.collapsed) {
  color: var(--mp-pink-600);
  background: var(--mp-pink-50);
  box-shadow: none;
}
.mp-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E91E78'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.mp-accordion .accordion-body {
  font-size: 0.93rem;
  color: var(--mp-ink-700);
  line-height: 1.75;
  padding: 0 22px 18px;
  background: var(--mp-pink-50);
}

/* FAQ ToC sidebar */
.mp-faq-toc { position: sticky; top: calc(var(--mp-nav-h) + 24px); }
.mp-faq-toc a {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mp-ink-500);
  text-decoration: none;
  padding: 8px 14px;
  border-left: 2px solid transparent;
  transition: color 0.16s, border-color 0.16s;
}
.mp-faq-toc a:hover,
.mp-faq-toc a.active {
  color: var(--mp-pink-600);
  border-left-color: var(--mp-pink-600);
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════ */
.mp-cta-band {
  background: var(--mp-gradient-cta);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.mp-cta-band::before,
.mp-cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.mp-cta-band::before { width: 400px; height: 400px; top: -150px; left: -100px; }
.mp-cta-band::after  { width: 300px; height: 300px; bottom: -120px; right: -80px; }
.mp-cta-band h2 { color: #fff !important; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.mp-cta-band h3 { color: #fff !important; }
.mp-cta-band p  { color: rgba(255,255,255,0.88) !important; font-size: 1.05rem; }
.mp-cta-band .mp-btn-primary {
  background: #fff;
  color: var(--mp-pink-600);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.mp-cta-band .mp-btn-primary:hover { color: var(--mp-pink-600); }
.mp-cta-band .mp-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.mp-cta-band .mp-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.mp-footer {
  background: var(--mp-ink-900);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.mp-footer-logo img { height: 38px; }
.mp-footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.mp-footer h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.mp-footer ul { list-style: none; padding: 0; margin: 0; }
.mp-footer ul li { margin-bottom: 10px; }
.mp-footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.16s;
}
.mp-footer ul a:hover { color: #fff; }
.mp-footer-social { display: flex; gap: 12px; margin-top: 16px; }
.mp-footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.mp-footer-social a:hover { background: var(--mp-pink-600); color: #fff; }
.mp-footer-social svg { width: 16px; height: 16px; }
.mp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.mp-footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.mp-footer-bottom a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS PAGE
   ═══════════════════════════════════════════════════════════════ */
.mp-compact-hero {
  background: var(--mp-gradient);
  padding: 64px 0 48px;
  text-align: center;
}
.mp-compact-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }

.mp-step-card {
  background: #fff;
  border-radius: var(--mp-radius-lg);
  box-shadow: var(--mp-shadow-sm);
  border: 1px solid var(--mp-ink-200);
  padding: 40px;
}

.mp-whatsapp-bubble {
  background: #dcf8c6;
  border-radius: 0 16px 16px 16px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #1a1a1a;
  max-width: 280px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: relative;
}
.mp-whatsapp-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border-width: 8px 8px 0 0;
  border-style: solid;
  border-color: #dcf8c6 transparent;
}
.mp-whatsapp-time { font-size: 0.68rem; color: #7e9e8a; text-align: right; margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */
.mp-team-card {
  background: #fff;
  border-radius: var(--mp-radius);
  border: 1px solid var(--mp-ink-200);
  padding: 24px;
  text-align: center;
  box-shadow: var(--mp-shadow-sm);
  transition: box-shadow 0.22s, transform 0.22s;
}
.mp-team-card:hover { box-shadow: var(--mp-shadow-md); transform: translateY(-2px); }
.mp-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--mp-gradient);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--mp-pink-600);
}
.mp-team-name { font-weight: 700; font-size: 0.96rem; color: var(--mp-ink-900); }
.mp-team-title { font-size: 0.8rem; color: var(--mp-pink-600); font-weight: 600; margin: 4px 0; }
.mp-team-bio { font-size: 0.82rem; color: var(--mp-ink-500); line-height: 1.5; }

.mp-value-card {
  background: var(--mp-pink-50);
  border: 1px solid var(--mp-pink-100);
  border-radius: var(--mp-radius-lg);
  padding: 32px 28px;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.mp-contact-info-card {
  background: var(--mp-gradient);
  border-radius: var(--mp-radius-lg);
  padding: 36px 32px;
  height: 100%;
}
.mp-contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.mp-contact-info-item:last-child { margin-bottom: 0; }
.mp-contact-info-icon {
  width: 40px; height: 40px;
  background: var(--mp-pink-600);
  border-radius: var(--mp-radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.mp-contact-info-icon svg { width: 18px; height: 18px; }
.mp-contact-info-label { font-size: 0.75rem; font-weight: 700; color: var(--mp-ink-500); text-transform: uppercase; letter-spacing: 0.06em; }
.mp-contact-info-value { font-size: 0.9rem; color: var(--mp-ink-900); font-weight: 500; }

.mp-form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mp-ink-700);
  margin-bottom: 6px;
}
.mp-form-control {
  border: 1.5px solid var(--mp-ink-200);
  border-radius: var(--mp-radius);
  padding: 12px 16px;
  font-size: 0.93rem;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
  background: #fff;
  color: var(--mp-ink-900);
}
.mp-form-control:focus {
  outline: none;
  border-color: var(--mp-pink-500);
  box-shadow: 0 0 0 3px rgba(240,82,156,0.12);
}
.mp-form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--mp-radius);
  padding: 16px 20px;
  color: #065f46;
  font-weight: 600;
  display: none;
}
.mp-form-success.show { display: flex; align-items: center; gap: 10px; }

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
   ═══════════════════════════════════════════════════════════════ */
.mp-legal-toc {
  position: sticky;
  top: calc(var(--mp-nav-h) + 24px);
  max-height: calc(100vh - var(--mp-nav-h) - 48px);
  overflow-y: auto;
  padding-right: 8px;
}
.mp-legal-toc::-webkit-scrollbar { width: 4px; }
.mp-legal-toc::-webkit-scrollbar-thumb { background: var(--mp-pink-100); border-radius: 4px; }
.mp-legal-toc h6 {
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mp-ink-500); margin-bottom: 12px;
}
.mp-toc-link {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mp-ink-500);
  text-decoration: none;
  padding: 6px 12px;
  border-left: 2px solid transparent;
  transition: color 0.16s, border-color 0.16s;
  border-radius: 0 4px 4px 0;
}
.mp-toc-link:hover,
.mp-toc-link.active {
  color: var(--mp-pink-600);
  border-left-color: var(--mp-pink-600);
  background: var(--mp-pink-50);
}

.mp-legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mp-ink-900);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--mp-ink-200);
}
.mp-legal-content h2:first-child { margin-top: 0; border-top: none; }
.mp-legal-content p, .mp-legal-content li { font-size: 0.93rem; color: var(--mp-ink-700); line-height: 1.8; }
.mp-legal-content ul { padding-left: 20px; }
.mp-legal-content li { margin-bottom: 6px; }

.mp-tldr-box {
  background: var(--mp-pink-50);
  border: 1.5px solid var(--mp-pink-100);
  border-left: 4px solid var(--mp-pink-600);
  border-radius: var(--mp-radius);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.mp-tldr-box h5 {
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mp-pink-600); margin-bottom: 8px;
}
.mp-tldr-box p { font-size: 0.92rem; color: var(--mp-ink-700); margin: 0; line-height: 1.7; }

.mp-disclaimer-badge {
  background: #FEF3C7;
  border: 1.5px solid #FCD34D;
  border-radius: var(--mp-radius);
  padding: 14px 20px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #92400E;
  margin-bottom: 32px;
  display: flex; align-items: flex-start; gap: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   MEDICAL DISCLAIMER PAGE
   ═══════════════════════════════════════════════════════════════ */
.mp-warn-hero {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  padding: 64px 0 48px;
  text-align: center;
}
.mp-warn-hero h1 { color: #92400E; }
.mp-not-list {
  list-style: none;
  padding: 0;
}
.mp-not-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--mp-ink-200);
  font-size: 0.93rem;
  color: var(--mp-ink-700);
}
.mp-not-list li:last-child { border-bottom: none; }
.mp-not-icon {
  width: 22px; height: 22px;
  background: #FEE2E2; color: #DC2626;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 0.7rem;
}
.mp-emergency-band {
  background: #FEF2F2;
  border: 2px solid #FCA5A5;
  border-radius: var(--mp-radius-lg);
  padding: 28px 32px;
  text-align: center;
}
.mp-emergency-band h4 { color: #DC2626; font-size: 1.1rem; }
.mp-emergency-band p { color: #7F1D1D; font-size: 0.93rem; margin: 0; }

.mp-mental-health-band {
  background: var(--mp-gradient);
  border-radius: var(--mp-radius-lg);
  padding: 24px 28px;
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP MOCKUP / STEP ILLUSTRATIONS
   ═══════════════════════════════════════════════════════════════ */
.mp-ui-mockup {
  background: #fff;
  border-radius: var(--mp-radius-lg);
  box-shadow: var(--mp-shadow-lg);
  overflow: hidden;
  border: 1px solid var(--mp-ink-200);
}
.mp-ui-mockup-bar {
  background: var(--mp-gradient);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
}
.mp-ui-mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}
.mp-ui-mockup-body { padding: 20px; }

/* ═══════════════════════════════════════════════════════════════
   GENERAL UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.mp-gradient-text {
  background: var(--mp-gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mp-divider {
  border: none;
  border-top: 1px solid var(--mp-ink-200);
  margin: 0;
}
.mp-highlight {
  background: var(--mp-pink-100);
  color: var(--mp-pink-600);
  border-radius: 6px;
  padding: 0 5px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .mp-hero { padding: 56px 0; }
  .mp-step-card { padding: 28px 20px; }
  .mp-contact-info-card { margin-bottom: 24px; }
}

@media (max-width: 575.98px) {
  .mp-hero h1 { font-size: 1.9rem; }
  .mp-cta-band { padding: 56px 0; }
  .mp-footer { padding: 48px 0 0; }
  .mp-legal-toc { display: none; }
  .mp-btn-primary, .mp-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   INNER APP PAGES — nav extras & bottom navigation
   ═══════════════════════════════════════════════════════════════ */

/* Profile avatar icon in nav */
.mp-nav-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mp-pink-50);
  border: 1.5px solid var(--mp-pink-100);
  transition: background 0.18s;
  text-decoration: none;
}
.mp-nav-avatar:hover { background: var(--mp-pink-100); }

/* Admin Masters dropdown */
.mp-nav-links li { position: relative; }
.dropdown-toggle-custom {
  color: var(--mp-ink-700);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.16s, background 0.16s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-toggle-custom:hover { color: var(--mp-pink-600); background: var(--mp-pink-50); }
.mp-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--mp-ink-200);
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow-md);
  padding: 6px 0;
  z-index: 1060;
}
.mp-dropdown a {
  display: block;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mp-ink-700);
  text-decoration: none;
  transition: background 0.14s, color 0.14s;
}
.mp-dropdown a:hover { background: var(--mp-pink-50); color: var(--mp-pink-600); }
.mp-nav-links li:hover .mp-dropdown { display: block; }

/* ── Mobile Bottom Navigation ── */
.mp-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1040;
  background: #fff;
  border-top: 1px solid var(--mp-pink-100);
  box-shadow: 0 -4px 20px rgba(233,30,120,0.10);
  padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom, 0px));
  justify-content: space-around;
  align-items: center;
}
.mp-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  color: var(--mp-ink-500);
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  padding: 0.25rem 0.6rem;
  border-radius: 0.75rem;
  transition: color 0.18s, background 0.18s;
  min-width: 52px;
  text-align: center;
}
.mp-bottom-nav-item i { font-size: 1.35rem; line-height: 1; }
.mp-bottom-nav-item:hover,
.mp-bottom-nav-item:focus,
.mp-bottom-nav-item.active {
  color: var(--mp-pink-600);
  background: var(--mp-pink-50);
  text-decoration: none;
}
.mp-bottom-nav-center {
  background: var(--mp-gradient-cta);
  color: #fff !important;
  border-radius: 50%;
  width: 54px; height: 54px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  box-shadow: 0 4px 16px rgba(233,30,120,0.38);
  margin-bottom: 0.85rem;
  gap: 0; padding: 0;
  transition: transform 0.18s, box-shadow 0.18s;
}
.mp-bottom-nav-center span { display: none; }
.mp-bottom-nav-center i { font-size: 1.5rem; }
.mp-bottom-nav-center:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(233,30,120,0.50);
  color: #fff !important;
}

/* Extra bottom padding so content doesn't hide behind bottom nav */
@media (max-width: 991.98px) {
  .mp-page-content { padding-bottom: 5rem; }
}

/* ── Override site.css typography with brand fonts ── */
body.mp-body,
body.mp-body p,
body.mp-body span,
body.mp-body input,
body.mp-body select,
body.mp-body textarea,
body.mp-body button {
  font-family: 'Inter', system-ui, sans-serif;
}
body.mp-body h1,
body.mp-body h2,
body.mp-body h3,
body.mp-body h4,
body.mp-body h5,
body.mp-body h6,
body.mp-body .fw-bold,
body.mp-body .fw-semibold {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Inner app warmth — cards pop off the warm body bg ── */
body.mp-body .card,
body.mp-body .mp-card {
  background: #fff;
  border: 1px solid var(--mp-ink-200);
}

/* Warm top accent strip on inner pages */
body.mp-body .mp-page-content > .container > *:first-child {
  margin-top: 0;
}

/* Dashboard / inner page section header warmth */
.mp-inner-hero {
  background: linear-gradient(135deg, #FFF0F7 0%, #FFE4F1 60%, #FFF5FA 100%);
  border-radius: var(--mp-radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  border: 1px solid var(--mp-pink-100);
}
.mp-inner-hero h1,
.mp-inner-hero h2 {
  color: var(--mp-ink-900);
  margin-bottom: 4px;
}
.mp-inner-hero p { color: var(--mp-ink-500); margin: 0; font-size: 0.92rem; }

/* Warm summary stat chips used in dashboards */
.mp-stat-chip {
  background: #fff;
  border: 1.5px solid var(--mp-pink-100);
  border-radius: var(--mp-radius);
  padding: 16px 20px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
}
.mp-stat-chip:hover { box-shadow: var(--mp-shadow-md); transform: translateY(-2px); }
.mp-stat-chip-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--mp-pink-600); line-height: 1;
}
.mp-stat-chip-label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--mp-ink-500); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* Warm table headers in admin/data tables */
body.mp-body .table thead th {
  background: var(--mp-pink-50);
  color: var(--mp-ink-700);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--mp-pink-100);
}
body.mp-body .table tbody tr:hover td {
  background: #FFF8FB;
}

/* Warm form controls in inner pages */
body.mp-body .form-control,
body.mp-body .form-select {
  border: 1.5px solid var(--mp-ink-200);
  border-radius: 10px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.18s, box-shadow 0.18s;
}
body.mp-body .form-control:focus,
body.mp-body .form-select:focus {
  border-color: var(--mp-pink-500);
  box-shadow: 0 0 0 3px rgba(240,82,156,0.10);
}

/* Warm primary buttons in inner pages */
body.mp-body .btn-primary {
  background: var(--mp-gradient-cta) !important;
  border: none !important;
  border-radius: var(--mp-radius) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(233,30,120,0.25);
  transition: transform 0.18s, box-shadow 0.18s;
}
body.mp-body .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233,30,120,0.35) !important;
}

/* Warm badge/pill overrides */
body.mp-body .badge.bg-primary { background: var(--mp-pink-600) !important; }
body.mp-body .badge.bg-light   { background: var(--mp-pink-50) !important; color: var(--mp-pink-600) !important; }
