/* ============================================================
   novia.css — Shared styles for all Her Daily Balance LP
   Critical CSS (hero, nav, fonts, variables) stays inline
   in each index.html for fastest above-the-fold render
   ============================================================ */

/* ------------------------------------------------------------
   UTILITY
   ------------------------------------------------------------ */
.label-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--lilac-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-headline {
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--purple-deep);
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ------------------------------------------------------------
   PAIN POINTS
   ------------------------------------------------------------ */
.pain-headline {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--lilac);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pain-card:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }

.pain-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lilac-pale);
  border-radius: var(--radius-sm);
}

.pain-title {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pain-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.pain-closing {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   PRODUCT INTRO
   ------------------------------------------------------------ */
.product-intro { text-align: center; }

.product-intro-headline {
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

.product-intro-sub {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.product-bottle-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.product-bottle-wrap img {
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(107,79,160,0.22));
}

.product-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,184,232,0.40) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.product-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-deep);
  background: var(--lilac-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

/* ------------------------------------------------------------
   7 HERBAL
   ------------------------------------------------------------ */
.herbs-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.herb-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.herb-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
}

.herb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--lilac), var(--purple));
}

.herb-card:hover { transform: translateY(-2px); }

.herb-icon {
  font-size: 26px;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--lilac-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}

.herb-featured-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-light);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
}

.herb-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 4px;
}

.herb-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.herb-closing {
  background: var(--cream-warm);
  border: 1px solid var(--lilac);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
}

.herb-closing p {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--purple-deep);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   TESTIMONIAL
   ------------------------------------------------------------ */
.testi-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testi-stars {
  color: #F5B800;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lilac), var(--purple));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

.testi-meta {
  font-size: 11px;
  color: var(--text-light);
}

.testi-verified {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  color: #25D366;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ------------------------------------------------------------
   TRUST SIGNALS
   ------------------------------------------------------------ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.trust-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.trust-item-icon { font-size: 24px; margin-bottom: 6px; }

.trust-item-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 2px;
}

.trust-item-sub {
  font-size: 10px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ------------------------------------------------------------
   HOW TO USE — STEPS
   ------------------------------------------------------------ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 23px; top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--lilac), transparent);
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--lilac));
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(107,79,160,0.25);
}

.step-title {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq-headline {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--purple);
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* ------------------------------------------------------------
   FINAL CTA
   ------------------------------------------------------------ */
.final-cta {
  background: linear-gradient(160deg, var(--purple-deep) 0%, var(--purple) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,184,232,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(184,150,12,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta-inner { position: relative; z-index: 1; }

.final-cta-karin {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(201,184,232,0.5);
  margin: 0 auto 20px;
  overflow: hidden;
  background: var(--lilac-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--purple);
}

.final-cta h2 {
  font-size: clamp(24px, 6vw, 32px);
  color: white;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

.final-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}

.final-micro {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-micro span::before { content: '· '; }
.final-micro span:first-child::before { content: ''; }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 24px 20px;
  font-size: 11px;
  line-height: 1.8;
}

.footer strong { color: rgba(255,255,255,0.8); }

/* ------------------------------------------------------------
   FADE UP ANIMATION
   ------------------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   RESPONSIVE — DESKTOP
   ------------------------------------------------------------ */
@media (min-width: 768px) {
  .container { max-width: 900px; padding: 0 48px; }
  .section { padding: 72px 0; }
  .hero-inner { max-width: 900px; }
  .hero-headline { max-width: 420px; font-size: 42px; }
  .hero-sub { max-width: 400px; }
  .btn-wa { max-width: 380px; }
  .trust-badges { max-width: 400px; }
  .pain-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .pain-closing { max-width: 680px; margin: 0 auto; }
  .herb-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .herb-closing { max-width: 680px; margin: 0 auto; }
  .testi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .trust-grid { grid-template-columns: repeat(6, 1fr); }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .steps::before { display: none; }
  .faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-intro-sub { max-width: 520px; }
  .final-cta p { max-width: 480px; margin-left: auto; margin-right: auto; }
  .final-cta .btn-wa { max-width: 400px; }
  .btn-reassure { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 360px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
