/* ================================================================
   BLOOM HEALTH — Premium Women's Health Platform
   Complete Design System | HTML + CSS + JS + Bootstrap 5 Only
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ── Root Variables ───────────────────────────────────────── */
:root {
  --pink:        #e8557a;
  --pink-dark:   #c93d60;
  --pink-light:  #f9c5d2;
  --pink-pale:   #fef0f4;
  --purple:      #8b4e7a;
  --purple-dark: #6b3860;
  --purple-light:#c4a8d8;
  --purple-pale: #f0e8f8;
  --peach:       #f5a882;
  --peach-pale:  #fde8db;
  --mint:        #8ab8a4;
  --mint-pale:   #e8f4ef;
  --cream:       #fdf8f5;
  --white:       #ffffff;
  --dark:        #1a1226;
  --dark-mid:    #3d2450;
  --text-soft:   #6b4d7a;
  --text-muted:  #a890b8;
  --border-c:    rgba(200,160,200,0.18);
  --sh-sm:       0 2px 14px rgba(139,78,122,0.08);
  --sh-md:       0 8px 32px rgba(139,78,122,0.13);
  --sh-lg:       0 20px 60px rgba(139,78,122,0.18);
  --sh-pink:     0 8px 30px rgba(232,85,122,0.28);
  --r-sm:        8px;
  --r-md:        16px;
  --r-lg:        24px;
  --r-xl:        32px;
  --r-pill:      999px;
  --tr:          all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Poppins', -apple-system, sans-serif;
  --bg:          var(--cream);
  --card-bg:     var(--white);
  --glass:       rgba(255,255,255,0.72);
}

[data-theme="dark"] {
  --bg:          #0f0a18;
  --card-bg:     #1c1228;
  --glass:       rgba(28,18,40,0.82);
  --dark:        #f0e8f8;
  --dark-mid:    #d0b8e8;
  --text-soft:   #b09ac8;
  --text-muted:  #7a6090;
  --border-c:    rgba(180,140,200,0.12);
  --cream:       #0f0a18;
  --white:       #1c1228;
  --sh-sm:       0 2px 14px rgba(0,0,0,0.35);
  --sh-md:       0 8px 32px rgba(0,0,0,0.45);
  --sh-lg:       0 20px 60px rgba(0,0,0,0.55);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: var(--tr); }

/* ── Preloader ────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  animation: preScale 1.2s ease-in-out infinite;
}
.pre-bar {
  width: 160px; height: 3px;
  background: var(--pink-light);
  border-radius: var(--r-pill); overflow: hidden;
}
.pre-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: var(--r-pill);
  animation: preLoad 1.5s ease-in-out infinite;
}
@keyframes preScale { 0%,100%{transform:scale(1)} 50%{transform:scale(1.12)} }
@keyframes preLoad {
  0%{width:0;margin-left:0}
  60%{width:100%;margin-left:0}
  100%{width:0;margin-left:100%}
}

/* ── Navbar ───────────────────────────────────────────────── */
.bh-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(200%);
  -webkit-backdrop-filter: blur(22px) saturate(200%);
  border-bottom: 1px solid var(--border-c);
  transition: var(--tr);
}
.bh-nav.scrolled { box-shadow: var(--sh-md); }
.bh-nav .navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: var(--pink) !important;
  letter-spacing: -0.01em;
}
.brand-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.bh-nav .nav-link {
  font-weight: 500; font-size: 0.88rem;
  color: var(--dark-mid) !important;
  padding: 8px 13px !important;
  border-radius: var(--r-sm);
  transition: var(--tr);
  letter-spacing: 0.01em;
}
.bh-nav .nav-link:hover,
.bh-nav .nav-link.active { color: var(--pink) !important; background: var(--pink-pale); }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--r-pill) !important;
  font-weight: 600 !important;
  box-shadow: var(--sh-pink) !important;
  transition: var(--tr) !important;
}
.btn-nav-cta:hover { transform: translateY(-2px) !important; }
.btn-dark-mode {
  background: none;
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-pill);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-soft);
  font-size: 16px; transition: var(--tr);
}
.btn-dark-mode:hover { border-color: var(--pink); color: var(--pink); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 90px 0 70px;
  background: var(--bg);
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.28;
  animation: blobFloat 9s ease-in-out infinite;
}
.blob-1 { width:550px;height:550px; background:radial-gradient(circle,var(--pink-light),transparent); top:-100px;right:-100px; }
.blob-2 { width:420px;height:420px; background:radial-gradient(circle,var(--purple-light),transparent); bottom:-80px;left:-80px; animation-delay:-3.5s; }
.blob-3 { width:300px;height:300px; background:radial-gradient(circle,var(--peach-pale),transparent); top:50%;left:45%; animation-delay:-6s; }
@keyframes blobFloat {
  0%,100%{transform:translate(0,0)scale(1)}
  33%{transform:translate(18px,-22px)scale(1.04)}
  66%{transform:translate(-14px,14px)scale(0.96)}
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-pale);
  border: 1px solid rgba(232,85,122,0.22);
  color: var(--pink-dark);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.6)} }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.14; letter-spacing: -0.025em;
  color: var(--dark); margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .ital { font-style: italic; color: var(--pink); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-soft);
  max-width: 540px; margin-bottom: 36px;
  line-height: 1.85;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary-bh {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none;
  padding: 14px 30px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: var(--tr);
  box-shadow: var(--sh-pink);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-primary-bh:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(232,85,122,0.42); color: #fff; }
.btn-outline-bh {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent;
  border: 2px solid var(--border-c);
  color: var(--dark-mid); padding: 13px 28px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: var(--tr);
  text-decoration: none;
}
.btn-outline-bh:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-3px); }
.hero-stats {
  display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 46px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem; color: var(--pink); line-height: 1;
}
.stat-lbl { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 3px; }

/* Hero Float Cards */
.hero-right { position: relative; height: 520px; }
.flt-card {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--sh-md);
  animation: floatAnim 5s ease-in-out infinite;
  min-width: 190px;
}
.flt-card:nth-child(1){top:8%;right:4%;animation-delay:0s;}
.flt-card:nth-child(2){top:40%;right:18%;animation-delay:-2s;}
.flt-card:nth-child(3){bottom:12%;right:2%;animation-delay:-4s;}
.flt-card:nth-child(4){top:22%;left:4%;animation-delay:-1.5s;}
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-13px)} }
.flt-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 8px;
}
.flt-title { font-weight: 700; font-size: 0.84rem; color: var(--dark); }
.flt-sub { font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }

/* ── Section Commons ──────────────────────────────────────── */
.bh-section { padding: 80px 0; }
.bh-section-sm { padding: 50px 0; }
.sec-badge {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-dark);
  padding: 5px 16px; border-radius: var(--r-pill);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: 1px solid rgba(232,85,122,0.16);
  margin-bottom: 12px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  color: var(--dark); line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.sec-title .ital { font-style: italic; color: var(--pink); }
.sec-sub {
  font-size: 0.97rem; color: var(--text-soft);
  max-width: 540px; margin: 0 auto 48px;
  line-height: 1.82;
}
.divider-line {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: var(--r-pill); margin: 14px 0 30px;
}
.divider-line.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Tool Cards ───────────────────────────────────────────── */
.tool-card {
  background: var(--card-bg);
  border: 1px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  height: 100%; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: var(--tr); cursor: pointer;
  box-shadow: var(--sh-sm);
  text-decoration: none; color: inherit;
}
.tool-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.tool-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: rgba(232,85,122,0.28);
  color: inherit;
}
.tool-card:hover::before { transform: scaleX(1); }
.tc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  transition: var(--tr);
}
.tool-card:hover .tc-icon { transform: scale(1.1); }
.tc-cat {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 7px;
}
.tool-card h3 {
  font-family: var(--font-head);
  font-size: 1.08rem; color: var(--dark);
  margin-bottom: 8px; line-height: 1.3;
  font-weight: 700;
}
.tool-card p {
  font-size: 0.848rem; color: var(--text-soft);
  line-height: 1.65; flex: 1; margin-bottom: 18px;
}
.tc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 700;
  transition: var(--tr);
}
.tc-link i { transition: transform 0.22s ease; }
.tool-card:hover .tc-link i { transform: translateX(4px); }

/* Icon color variants */
.ic-pink  { background: var(--pink-pale);   color: var(--pink); }
.ic-purple{ background: var(--purple-pale); color: var(--purple); }
.ic-peach { background: var(--peach-pale);  color: var(--peach); }
.ic-mint  { background: var(--mint-pale);   color: var(--mint); }
.lnk-pink  { color: var(--pink); }
.lnk-purple{ color: var(--purple); }
.lnk-peach { color: var(--peach); }
.lnk-mint  { color: var(--mint); }
.cat-pink  { color: var(--pink); }
.cat-purple{ color: var(--purple); }
.cat-peach { color: var(--peach); }
.cat-mint  { color: var(--mint); }

/* ── Search + Filter Bar ──────────────────────────────────── */
.search-wrap {
  max-width: 460px; margin: 0 auto 28px;
  background: var(--card-bg);
  border: 1.5px solid var(--border-c);
  border-radius: var(--r-pill);
  display: flex; overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--tr);
}
.search-wrap:focus-within { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,85,122,0.12); }
.search-wrap input {
  flex: 1; background: none; border: none; outline: none;
  padding: 12px 20px; color: var(--dark);
  font-family: var(--font-body); font-size: 0.9rem;
}
.search-wrap input::placeholder { color: var(--text-muted); }
.search-wrap button {
  background: var(--pink); border: none;
  padding: 12px 20px; color: #fff; cursor: pointer;
  font-size: 16px; transition: var(--tr);
}
.search-wrap button:hover { background: var(--pink-dark); }
.filter-btns {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
}
.fbtn {
  padding: 7px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-c);
  background: var(--card-bg); color: var(--text-soft);
  font-size: 0.81rem; font-weight: 600;
  cursor: pointer; transition: var(--tr);
  font-family: var(--font-body);
}
.fbtn:hover, .fbtn.active {
  background: var(--pink); border-color: var(--pink); color: #fff;
}

/* ── Feature Cards ────────────────────────────────────────── */
.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 32px 26px; text-align: center;
  box-shadow: var(--sh-sm); transition: var(--tr);
  height: 100%;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feat-icon {
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 27px; margin: 0 auto 20px;
}
.feat-card h4 { font-weight: 700; font-size: 1.02rem; color: var(--dark); margin-bottom: 10px; }
.feat-card p { font-size: 0.86rem; color: var(--text-soft); line-height: 1.72; margin: 0; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline-track {
  display: flex; overflow-x: auto; gap: 0; padding: 20px 0 30px;
  scrollbar-width: thin; scrollbar-color: var(--pink-light) transparent;
}
.tl-week {
  flex: 0 0 auto; text-align: center;
  padding: 0 5px; cursor: pointer; transition: var(--tr);
}
.tl-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 5px; font-size: 0.68rem; font-weight: 700;
  color: var(--text-muted); background: var(--border-c);
  position: relative; transition: var(--tr);
}
.tl-dot::after {
  content: ''; position: absolute; top: 50%; left: 100%;
  width: 10px; height: 2px; background: var(--border-c);
  transform: translateY(-50%);
}
.tl-week:last-child .tl-dot::after { display: none; }
.tl-week.tri1 .tl-dot { background: var(--pink-pale); border: 2px solid var(--pink); color: var(--pink); }
.tl-week.tri2 .tl-dot { background: var(--purple-pale); border: 2px solid var(--purple); color: var(--purple); }
.tl-week.tri3 .tl-dot { background: var(--peach-pale); border: 2px solid var(--peach); color: var(--peach); }
.tl-week:hover .tl-dot { transform: scale(1.25); box-shadow: var(--sh-sm); }
.tl-emoji { font-size: 0.68rem; }

/* ── Calendar ─────────────────────────────────────────────── */
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; }
.cal-hd { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); text-align: center; padding: 4px 0; text-transform: uppercase; letter-spacing: 0.05em; }
.cal-day {
  aspect-ratio: 1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.76rem; font-weight: 600; color: var(--text-soft);
  cursor: pointer; transition: var(--tr);
}
.cal-day:hover { background: var(--pink-pale); color: var(--pink); }
.cal-day.period-day { background: rgba(232,85,122,0.14); color: var(--pink); }
.cal-day.fertile-day { background: rgba(139,78,122,0.12); color: var(--purple); }
.cal-day.ovul-day { background: var(--pink); color: #fff; font-weight: 800; }
.cal-day.today { outline: 2.5px solid var(--pink); outline-offset: 2px; }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-c);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: var(--tr);
  height: 100%; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); color: inherit; }
.blog-img-wrap {
  height: 190px; display: flex; align-items: center; justify-content: center;
  font-size: 65px; position: relative; overflow: hidden;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat-tag {
  display: inline-block; background: var(--pink-pale); color: var(--pink-dark);
  padding: 3px 12px; border-radius: var(--r-pill);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1.07rem; color: var(--dark);
  margin-bottom: 10px; line-height: 1.4; font-weight: 700;
}
.blog-card p { font-size: 0.858rem; color: var(--text-soft); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.blog-meta { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 12px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 28px; height: 100%;
  box-shadow: var(--sh-sm); transition: var(--tr);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.testi-stars { color: #f5b732; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 0.9rem; color: var(--text-soft); line-height: 1.82; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testi-loc { font-size: 0.76rem; color: var(--text-muted); }

/* ── FAQ Accordion ────────────────────────────────────────── */
.bh-accordion .accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border-c) !important;
  border-radius: var(--r-md) !important;
  margin-bottom: 12px; overflow: hidden;
}
.bh-accordion .accordion-button {
  background: var(--card-bg); color: var(--dark);
  font-weight: 600; font-size: 0.95rem;
  box-shadow: none !important;
  border-radius: var(--r-md) !important;
  padding: 18px 24px;
}
.bh-accordion .accordion-button:not(.collapsed) {
  background: var(--pink-pale); color: var(--pink-dark);
}
.bh-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8557a'%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");
}
.bh-accordion .accordion-body {
  color: var(--text-soft); font-size: 0.9rem;
  line-height: 1.82; padding: 4px 24px 20px;
}

/* ── Newsletter ───────────────────────────────────────────── */
.nl-section {
  background: linear-gradient(135deg, var(--pink-dark), var(--purple-dark));
  position: relative; overflow: hidden;
}
.nl-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.nl-section .sec-title { color: #fff; }
.nl-form {
  display: flex; gap: 12px; max-width: 470px;
  margin: 0 auto; flex-wrap: wrap; position: relative; z-index: 1;
}
.nl-input {
  flex: 1; min-width: 210px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.26);
  border-radius: var(--r-pill); padding: 13px 22px;
  color: #fff; font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: var(--tr);
}
.nl-input::placeholder { color: rgba(255,255,255,0.58); }
.nl-input:focus { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.52); }
.nl-btn {
  background: #fff; color: var(--pink-dark);
  border: none; border-radius: var(--r-pill);
  padding: 13px 28px; font-weight: 700;
  font-size: 0.9rem; cursor: pointer; transition: var(--tr);
  white-space: nowrap;
}
.nl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }

/* ── Counter Section ──────────────────────────────────────── */
.counter-num {
  font-family: var(--font-head);
  font-size: 2.8rem; color: var(--pink); line-height: 1;
}
.counter-suf { font-size: 1.6rem; }
.counter-lbl { font-size: 0.9rem; color: var(--text-soft); font-weight: 500; margin-top: 6px; }

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--card-bg);
  border: 1px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  display: flex; gap: 30px; flex-wrap: wrap;
  justify-content: center; align-items: center;
  box-shadow: var(--sh-sm);
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: 22px; color: var(--pink); }
.trust-text { font-size: 0.82rem; font-weight: 600; color: var(--dark-mid); }

/* ── Footer ───────────────────────────────────────────────── */
.bh-footer {
  background: var(--dark); color: var(--text-muted);
  padding: 64px 0 0;
}
[data-theme="dark"] .bh-footer { background: #060310; }
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem; color: var(--pink);
  text-decoration: none; margin-bottom: 16px;
}
.footer-brand-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
}
.footer-desc { font-size: 0.87rem; color: #7a6585; line-height: 1.8; max-width: 270px; }
.footer-h { color: var(--purple-light); font-weight: 700; font-size: 0.83rem; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #7a6585; font-size: 0.87rem; text-decoration: none; transition: var(--tr); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--pink); transform: translateX(3px); }
.social-row { display: flex; gap: 9px; margin-top: 20px; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #7a6585; font-size: 15px;
  text-decoration: none; transition: var(--tr);
}
.soc-btn:hover { background: var(--pink); border-color: var(--pink); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 44px; padding: 20px 0;
  text-align: center; font-size: 0.81rem; color: #4a3355;
}
.footer-bottom a { color: var(--pink); text-decoration: none; }

/* ── Scroll Top ───────────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border: none; border-radius: 50%; color: #fff;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-pink); transition: var(--tr);
  opacity: 0; visibility: hidden; transform: translateY(12px);
}
#scrollTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTop:hover { transform: translateY(-4px); }

/* ── Health Tip Float ─────────────────────────────────────── */
.tip-float {
  position: fixed; bottom: 30px; left: 30px; z-index: 998;
  background: var(--glass); backdrop-filter: blur(14px);
  border: 1px solid var(--border-c); border-radius: var(--r-lg);
  padding: 14px 18px; max-width: 250px;
  box-shadow: var(--sh-md);
  display: flex; gap: 12px; align-items: flex-start;
  animation: fadeUp 0.5s 2s ease both;
}
.tip-emoji { font-size: 24px; flex-shrink: 0; margin-top: 1px; }
.tip-badge { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--pink); margin-bottom: 3px; }
.tip-txt { font-size: 0.78rem; color: var(--text-soft); line-height: 1.52; }
.tip-close { position: absolute; top: 8px; right: 10px; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 14px; line-height: 1; padding: 0; }
@media(max-width:576px){.tip-float{display:none}}

/* ── Reveal Animations ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── Calculator Page ──────────────────────────────────────── */
.calc-hero-sec {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--purple-pale) 100%);
  padding: 80px 0 55px;
}
[data-theme="dark"] .calc-hero-sec {
  background: linear-gradient(135deg, rgba(232,85,122,0.08) 0%, rgba(139,78,122,0.08) 100%);
}
.calc-hero-sec h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.9rem);
  color: var(--dark); line-height: 1.2; margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.calc-hero-sec p { font-size: 1rem; color: var(--text-soft); max-width: 570px; line-height: 1.82; }

.calc-box {
  background: var(--card-bg);
  border: 1px solid var(--border-c);
  border-radius: var(--r-xl);
  padding: 38px 34px;
  box-shadow: var(--sh-md);
}
.calc-box h2 {
  font-family: var(--font-head);
  font-size: 1.35rem; color: var(--dark); margin-bottom: 26px;
}
.form-label { font-weight: 600; font-size: 0.87rem; color: var(--dark-mid); margin-bottom: 7px; }
.form-control, .form-select {
  background: var(--bg); border: 1.5px solid var(--border-c);
  border-radius: var(--r-md); color: var(--dark);
  padding: 12px 16px; font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--tr);
}
.form-control:focus, .form-select:focus {
  background: var(--card-bg); border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,85,122,0.12); color: var(--dark);
}
.btn-calc {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; border-radius: var(--r-pill);
  padding: 13px 30px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: var(--tr); width: 100%;
  font-family: var(--font-body); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-calc:hover { transform: translateY(-2px); box-shadow: var(--sh-pink); }
.result-box {
  background: linear-gradient(135deg, var(--pink-pale), var(--purple-pale));
  border: 1.5px solid rgba(232,85,122,0.2);
  border-radius: var(--r-lg); padding: 26px 22px;
  margin-top: 22px; display: none;
  animation: fadeUp 0.4s ease;
}
.result-box.show { display: block; }
.res-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 5px; }
.res-val { font-family: var(--font-head); font-size: 1.85rem; color: var(--pink); line-height: 1.15; margin-bottom: 4px; }
.res-note { font-size: 0.8rem; color: var(--text-soft); }
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:480px){.res-grid{grid-template-columns:1fr}}
.res-item {
  background: var(--card-bg); border-radius: var(--r-md);
  padding: 15px; text-align: center; box-shadow: var(--sh-sm);
}

/* Article Styles */
.article-sec { padding: 78px 0; background: var(--bg); }
.article-body h2 {
  font-family: var(--font-head);
  font-size: 1.55rem; color: var(--dark);
  margin: 34px 0 13px; letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: 1.18rem; color: var(--dark); margin: 22px 0 9px;
}
.article-body p { color: var(--text-soft); line-height: 1.88; margin-bottom: 15px; font-size: 0.95rem; }
.article-body ul { color: var(--text-soft); line-height: 1.88; margin-bottom: 15px; font-size: 0.95rem; padding-left: 22px; }
.article-body ul li { margin-bottom: 7px; }

.faq-item { border-bottom: 1px solid var(--border-c); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-weight: 700; color: var(--dark); margin-bottom: 0;
  font-size: 0.95rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q i { color: var(--pink); transition: var(--tr); }
.faq-a { color: var(--text-soft); font-size: 0.88rem; line-height: 1.82; margin-top: 8px; display: none; }

.disc-box {
  background: var(--pink-pale);
  border: 1px solid rgba(232,85,122,0.2);
  border-radius: var(--r-md); padding: 15px 20px;
  display: flex; gap: 12px; align-items: flex-start;
}
.disc-box i { color: var(--pink); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.disc-box p { margin: 0; font-size: 0.83rem; color: var(--dark-mid); line-height: 1.72; }

/* ── Page Specific ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--pink-pale), var(--purple-pale));
  padding: 80px 0 55px;
}
[data-theme="dark"] .page-hero {
  background: linear-gradient(135deg, rgba(232,85,122,0.07), rgba(139,78,122,0.07));
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--dark); margin-bottom: 14px; line-height: 1.2;
}
.page-hero p { font-size: 1rem; color: var(--text-soft); max-width: 560px; line-height: 1.8; }

/* ── Responsive ───────────────────────────────────────────── */
@media(max-width:992px){
  .bh-section{padding:60px 0}
  .hero-section{padding:65px 0 45px;min-height:auto}
  .hero-right{display:none}
  .calc-box{padding:26px 20px}
  .hero-stats{gap:20px}
}
@media(max-width:768px){
  .trust-bar{padding:20px 18px}
  .nl-form{flex-direction:column}
  .nl-input{min-width:100%}
  .res-grid{grid-template-columns:1fr}
}
@media(max-width:576px){
  .filter-btns{gap:6px}
  .fbtn{padding:6px 14px;font-size:0.78rem}
  .hero-stats{gap:18px}
  .stat-num{font-size:1.6rem}
}
