/* =============================================
   HEALING HEARTS — Design System & Styles
   ============================================= */

:root {
  /* Color Palette — Warm, Nurturing, Professional */
  --bg-primary: #faf8f5;
  --bg-secondary: #f3eeea;
  --bg-tertiary: #ebe4dd;
  --white: #ffffff;

  --sage: #7da696;
  --sage-light: #a8c5b8;
  --sage-lighter: #d4e5dc;
  --sage-bg: #eef5f1;

  --brown: #5e3a2e;
  --brown-light: #7d5a4e;
  --brown-lighter: #a08074;

  --rose: #c97b7b;
  --rose-dark: #b05a5a;
  --rose-light: #e8aaaa;
  --rose-bg: #fdf0f0;

  --gold: #c9a96e;
  --gold-light: #e0cb9c;

  --text-primary: #3d2c2e;
  --text-secondary: #6b5a5c;
  --text-muted: #9a8b8d;

  --card-bg: #ffffff;
  --card-border: rgba(93, 58, 46, 0.06);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 3rem;
  --sp-xl: 5rem;
  --sp-2xl: 8rem;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(61, 44, 46, 0.04);
  --shadow-sm: 0 2px 8px rgba(61, 44, 46, 0.06);
  --shadow-md: 0 4px 16px rgba(61, 44, 46, 0.08);
  --shadow-lg: 0 8px 32px rgba(61, 44, 46, 0.10);
  --shadow-xl: 0 16px 48px rgba(61, 44, 46, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.3s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
strong { font-weight: 600; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-primary); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }
p + p { margin-top: 1rem; }

/* ---- Container ---- */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Section Utilities ---- */
.section { padding: var(--sp-xl) 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 1rem;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto var(--sp-lg); }
.section-header .section-title { margin-bottom: 1rem; }
.section-header .section-desc { font-size: 1.15rem; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brown);
}
.brand-logo {
  height: 36px;
  width: auto;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--sage);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brown) !important; color: var(--white) !important; transform: translateY(-1px); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1010;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(212, 229, 220, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(253, 240, 240, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, var(--bg-primary) 0%, #f0ebe4 50%, var(--sage-bg) 100%);
}

/* Floating hearts */
.floating-hearts {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.float-heart {
  position: absolute;
  bottom: -10%;
  color: var(--rose-light);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: var(--float-opacity, 0.1); }
  90% { opacity: var(--float-opacity, 0.1); }
  100% { transform: translateY(-110vh) rotate(20deg) scale(0.6); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.hero-text { max-width: 560px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201, 123, 123, 0.12);
  color: var(--rose-dark);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.badge svg { flex-shrink: 0; }
.hero-title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.accent-text {
  color: var(--sage);
  position: relative;
  display: inline-block;
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 90%;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(125, 166, 150, 0.3);
}
.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 58, 46, 0.25);
}
.btn-soft {
  background: rgba(125, 166, 150, 0.12);
  color: var(--sage);
}
.btn-soft:hover {
  background: rgba(125, 166, 150, 0.2);
  transform: translateY(-2px);
}

/* Hero Trust Badges */
.hero-trust { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item i { color: var(--sage); font-size: 1.1rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-wrapper {
  position: relative;
  width: 400px;
  max-width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--sage-bg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Heart Favorite Component — adapted from React */
.heart-favorite {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.heart-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease);
  position: relative;
}
.heart-btn:active { transform: scale(0.9); }
.heart-btn:hover { box-shadow: var(--shadow-xl); }
.heart-icon {
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 1.5;
  transition: all 0.3s var(--ease);
}
.heart-btn.liked .heart-icon {
  fill: var(--rose);
  stroke: var(--rose);
}
.heart-btn.pulse { animation: heartPulse 0.4s var(--ease); }
@keyframes heartPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.heart-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.heart-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-xl);
  align-items: center;
}
.about-image-col { position: relative; }
.about-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-stat-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brown);
  color: var(--white);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.stat-number { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }
.stat-label { display: block; font-size: 0.8rem; opacity: 0.85; margin-top: 2px; }

.about-text-col .section-title { margin-bottom: 1.2rem; }
.about-text-col > p { margin-bottom: 1.2rem; }

.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}
.value-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--sage-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--sage);
}
.value-item h4 { margin-bottom: 2px; }
.value-item p { font-size: 0.92rem; margin: 0; }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section { background: var(--sage-bg); padding: var(--sp-lg) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-icon { font-size: 2rem; color: var(--sage); margin-bottom: 0.8rem; }
.stat-big-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.stat-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

/* =============================================
   RESOURCES SECTION
   ============================================= */
.resources-section { background: var(--bg-primary); }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.resource-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}
.resource-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.resource-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--sage);
}
.resource-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sage);
  background: var(--sage-bg);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.resource-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  color: var(--text-primary);
}
.resource-card p {
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}
.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sage);
  margin-top: auto;
  transition: var(--transition);
}
.resource-card:hover .resource-link { color: var(--brown); gap: 10px; }

/* =============================================
   JOURNEY SECTION
   ============================================= */
.journey-section { background: var(--bg-secondary); }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.journey-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.journey-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.journey-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--sage-lighter);
  line-height: 1;
  opacity: 0.5;
}
.journey-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--rose-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--rose);
  margin-bottom: 1.2rem;
}
.journey-card h3 { margin-bottom: 0.6rem; }
.journey-card p { font-size: 0.95rem; margin: 0; }

/* =============================================
   CTA / SUPPORT SECTION
   ============================================= */
.cta-section { padding: var(--sp-xl) 0; }
.cta-box {
  background: linear-gradient(135deg, var(--brown) 0%, #4a2920 100%);
  border-radius: var(--radius-xl);
  padding: 0;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.cta-hearts {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201, 123, 123, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201, 123, 123, 0.1) 0%, transparent 40%);
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
  padding: var(--sp-lg);
}
.cta-title { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-text { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin-bottom: 1.5rem; }
.cta-features { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}
.cta-feature i { color: var(--sage-light); }

.cta-action { text-align: center; }
.phone-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  color: var(--brown);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: left;
}
.phone-button i { font-size: 1.5rem; color: var(--sage); }
.phone-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
}
.phone-sub { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.phone-button:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }

.cta-alt { margin-top: 1.5rem; }
.cta-alt p { color: rgba(255, 255, 255, 0.7); font-size: 0.88rem; margin: 0; }
.cta-alt strong { color: rgba(255, 255, 255, 0.95); }

/* =============================================
   STORIES / TESTIMONIALS
   ============================================= */
.stories-section { background: var(--bg-primary); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.story-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.story-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.story-card.featured {
  background: var(--brown);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg);
}
.story-card.featured .story-text { color: rgba(255, 255, 255, 0.9); }
.story-card.featured .story-detail { color: rgba(255, 255, 255, 0.6); }
.story-card.featured .story-name { color: var(--white); }
.story-card.featured .story-quote i { color: var(--rose-light); }
.story-card.featured .story-avatar { background: var(--sage); }

.story-quote { margin-bottom: 1rem; }
.story-quote i { font-size: 1.8rem; color: var(--sage-light); }
.story-text { font-size: 1rem; font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; }
.story-author { display: flex; align-items: center; gap: 0.8rem; }
.story-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sage);
}
.story-name { display: block; font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.story-detail { display: block; font-size: 0.82rem; color: var(--text-muted); }

/* =============================================
   SELF-CARE SECTION
   ============================================= */
.selfcare-section { background: var(--sage-bg); }
.selfcare-layout { display: flex; flex-direction: column; gap: var(--sp-lg); }
.selfcare-text-col { max-width: 600px; margin: 0 auto; text-align: center; }
.selfcare-text-col .section-title { margin-bottom: 1rem; }
.selfcare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.selfcare-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}
.selfcare-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.selfcare-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--rose-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--rose);
  margin-bottom: 1rem;
}
.selfcare-card h4 { margin-bottom: 0.5rem; }
.selfcare-card p { font-size: 0.92rem; margin: 0; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { background: var(--bg-primary); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-xl);
  align-items: start;
}
.faq-header .section-title { margin-bottom: 1rem; text-align: left; }
.faq-header p { text-align: left; }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--sage-light); }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--sage-light); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  list-style: none;
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { flex: 1; padding-right: 1rem; }
.faq-chevron { color: var(--sage); transition: transform 0.3s var(--ease); font-size: 1.1rem; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.5rem; }
.faq-answer p { font-size: 0.95rem; margin: 0; line-height: 1.7; }

/* =============================================
   SEND LOVE SECTION
   ============================================= */
.love-section { padding: var(--sp-lg) 0 var(--sp-xl); }
.love-box {
  text-align: center;
  background: var(--rose-bg);
  border-radius: var(--radius-xl);
  padding: var(--sp-lg);
  border: 1px solid rgba(201, 123, 123, 0.15);
}
.love-box h2 { margin-bottom: 0.8rem; }
.love-box > p { max-width: 520px; margin: 0 auto 2rem; }
.love-heart-wrapper { position: relative; display: inline-block; }
.love-heart-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease);
}
.love-heart-btn svg { fill: var(--rose); transition: transform 0.3s var(--ease-bounce); }
.love-heart-btn:hover { box-shadow: var(--shadow-xl); }
.love-heart-btn:active { transform: scale(0.9); }
.love-heart-btn.love-active { animation: heartPulse 0.6s var(--ease); }
.love-heart-btn.love-active svg { transform: scale(1.2); }
.love-counter {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}
.love-counter span { font-weight: 700; color: var(--rose); }
.love-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

/* Particle burst animation */
.particle {
  position: absolute;
  animation: particleBurst 0.6s var(--ease) forwards;
}
@keyframes particleBurst {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--sp-lg) 0 var(--sp-md);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-logo {
  height: 32px;
  width: auto;
  border-radius: 4px;
}
.footer-tagline { font-size: 0.92rem; color: rgba(255, 255, 255, 0.6); line-height: 1.6; max-width: 320px; }
.footer-links-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-links-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: var(--sp-md);
  text-align: center;
}
.footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children */
.resources-grid .resource-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.resources-grid .resource-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.resources-grid .resource-card.reveal:nth-child(4) { transition-delay: 0.15s; }
.resources-grid .resource-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.resources-grid .resource-card.reveal:nth-child(6) { transition-delay: 0.35s; }

.journey-grid .journey-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.journey-grid .journey-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.journey-grid .journey-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.stories-grid .story-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.stories-grid .story-card.reveal:nth-child(3) { transition-delay: 0.2s; }

.stats-grid .stat-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.stats-grid .stat-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.stats-grid .stat-card.reveal:nth-child(4) { transition-delay: 0.24s; }

.selfcare-grid .selfcare-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.selfcare-grid .selfcare-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.selfcare-grid .selfcare-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.selfcare-grid .selfcare-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.selfcare-grid .selfcare-card.reveal:nth-child(6) { transition-delay: 0.40s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { max-width: 100%; margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-logo-wrapper { width: 320px; padding: 2rem; margin: 0 auto; }
  .heart-favorite { bottom: -15px; right: calc(50% - 180px); }

  .about-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .about-image { height: 380px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .selfcare-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-features { justify-content: center; }

  .faq-layout { grid-template-columns: 1fr; }
  .faq-header { text-align: center; }
  .faq-header .section-title, .faq-header p { text-align: center; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s var(--ease);
    z-index: 1005;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--card-border);
  }
  .nav-links a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }

  .section { padding: var(--sp-lg) 0; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-logo-wrapper { width: 260px; padding: 1.5rem; }
  .heart-favorite { bottom: -10px; right: calc(50% - 150px); }

  .resources-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .selfcare-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-card { padding: 1.5rem 1rem; }
  .stat-big-number { font-size: 1.8rem; }

  .cta-inner { padding: 2rem; gap: 2rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand-col { text-align: center; }
  .footer-tagline { max-width: 100%; margin: 0 auto; }
  .footer-links-col { text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-trust { flex-direction: column; align-items: center; gap: 0.8rem; }
  .hero-logo-wrapper { width: 220px; padding: 1.2rem; }

  .phone-button { flex-direction: column; text-align: center; padding: 1.2rem 1.5rem; }
  .phone-number { font-size: 1.2rem; }

  .about-stat-badge { right: 10px; bottom: -15px; padding: 1rem 1.2rem; }
  .stat-number { font-size: 1.4rem; }

  .love-heart-btn { width: 72px; height: 72px; }
  .love-heart-btn svg { width: 36px; height: 36px; }
}
