/* ============================================
   NutriVerve Health — Main Stylesheet v1.0
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --teal:          #0f766e;
  --teal-light:    #14b8a6;
  --teal-dark:     #0d6660;
  --green:         #22c55e;
  --green-light:   #4ade80;
  --purple-deep:   #3b0a45;
  --purple-mid:    #5b21b6;
  --purple-light:  #7c3aed;
  --off-white:     #f8faf7;
  --beige:         #f3efe6;
  --gold:          #facc15;
  --dark:          #111827;
  --gray-mid:      #6b7280;
  --gray-light:    #f3f4f6;
  --gray-border:   #e5e7eb;
  --white:         #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.18);

  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  --transition:      all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; }
p  { color: var(--gray-mid); line-height: 1.7; }

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(15,118,110,0.08);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.85rem; }
.section-header p  { max-width: 600px; margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--purple-mid));
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(15,118,110,.35); }

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--beige); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #eab308; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(250,204,21,.4); }

/* --- Badges --- */
.badge {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
}
.badge-teal   { background: rgba(15,118,110,.1);  color: var(--teal); }
.badge-purple { background: rgba(91,33,182,.1);   color: var(--purple-mid); }
.badge-green  { background: rgba(34,197,94,.1);   color: #15803d; }
.badge-gold   { background: rgba(250,204,21,.15); color: #92400e; }

/* ============================================
   HEADER
============================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248,250,247,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-border);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--purple-mid));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.05em;
  font-family: var(--font-heading);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.logo-text .brand-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 0.1rem; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--teal); background: rgba(15,118,110,.06); }
.nav-link.active { color: var(--teal); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.menu-toggle:hover { background: var(--gray-light); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  padding: 1rem 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 0.7rem 1rem; border-radius: 10px; font-size: 0.95rem; }
.mobile-nav .btn    { margin-top: 0.5rem; justify-content: center; }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-mid) 40%, var(--teal) 100%);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}
.hero-blob-1 {
  width: 650px; height: 650px;
  background: var(--green);
  top: -220px; right: -120px;
  animation: blobFloat 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 420px; height: 420px;
  background: var(--gold);
  bottom: -120px; left: -100px;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
.hero-blob-3 {
  width: 350px; height: 350px;
  background: var(--teal-light);
  top: 50%; left: 45%;
  transform: translate(-50%,-50%);
  animation: blobFloat 7s ease-in-out infinite;
}

.hero-watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 22rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-content { color: var(--white); }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 0.38rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: livePulse 2s infinite;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual — floating cards */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 380px;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  color: var(--white);
  transition: var(--transition);
}
.hero-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.16); }
.hero-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.hero-card h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.hero-card p { color: rgba(255,255,255,0.65); font-size: 0.75rem; }
.hero-card-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-card-wide .hero-card-icon { margin-bottom: 0; flex-shrink: 0; }

/* ============================================
   TRUST BAR
============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-mid);
  border-right: 1px solid var(--gray-border);
}
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--teal); font-size: 1rem; }

/* ============================================
   WHAT WE COVER
============================================ */
.what-we-cover { background: var(--off-white); }

.covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cover-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cover-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.cover-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cover-card:hover::before { transform: scaleX(1); }

.cover-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.ci-1 { background: rgba(15,118,110,.1); }
.ci-2 { background: rgba(91,33,182,.1); }
.ci-3 { background: rgba(34,197,94,.1); }
.ci-4 { background: rgba(250,204,21,.12); }
.ci-5 { background: rgba(239,68,68,.1); }
.ci-6 { background: rgba(59,130,246,.1); }

.cover-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; }
.cover-card p  { font-size: 0.85rem; }

/* ============================================
   FEATURED WELLNESS GUIDES
============================================ */
.featured-guides { background: var(--beige); }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.guide-card-top {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}
.gct-1 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.gct-2 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.gct-3 { background: linear-gradient(135deg, #fef3c7, #fde68a); }

.guide-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}
.guide-read-time {
  font-size: 0.72rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.guide-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
  line-height: 1.4;
}
.guide-card p   { font-size: 0.84rem; flex: 1; margin-bottom: 1.25rem; }
.guide-card .btn { align-self: flex-start; padding: 0.5rem 1.1rem; font-size: 0.82rem; }

/* ============================================
   PRODUCT REVIEW HUB
============================================ */
.review-hub { background: var(--white); }

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.48rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--gray-mid);
  background: var(--gray-light);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn:hover,
.filter-btn.active { background: var(--teal); color: var(--white); }

.review-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review-cat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.review-cat-card:hover {
  background: var(--white);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-cat-icon { font-size: 1.9rem; flex-shrink: 0; }
.review-cat-card h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; margin-bottom: 0.18rem; }
.review-cat-card p  { font-size: 0.76rem; }

/* ============================================
   HOW WE REVIEW
============================================ */
.how-we-review {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-mid) 100%);
  position: relative;
  overflow: hidden;
}
.how-we-review::before {
  content: 'NV';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 28rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  right: -6rem;
  bottom: -9rem;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.how-we-review .section-header .label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}
.how-we-review .section-header h2 { color: var(--white); }
.how-we-review .section-header p  { color: rgba(255,255,255,0.68); }

.review-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.review-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.review-step:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }

.step-num {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0 auto 1rem;
}
.step-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.review-step h4 { color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.45rem; }
.review-step p  { color: rgba(255,255,255,0.62); font-size: 0.82rem; }

.review-disclaimer {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  max-width: 620px;
  margin: 0 auto;
}
.review-disclaimer p { color: rgba(255,255,255,0.58); font-size: 0.8rem; }

/* ============================================
   FEATURED EDITORIAL REVIEW
============================================ */
.featured-review { background: var(--off-white); }

.featured-review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 360px 1fr;
  border: 1px solid var(--gray-border);
}

.featured-review-img-wrap {
  background: linear-gradient(145deg, #f0fdf4, #e0f2fe, #ede9fe);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.featured-review-img-wrap::after {
  content: 'NutriVerve Health';
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(0,0,0,0.12);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.featured-review-img {
  max-width: 250px;
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.14));
  transition: transform 0.4s ease;
}
.featured-review-img:hover { transform: scale(1.04) rotate(-1deg); }

.featured-review-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-review-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.featured-review-body h2 { font-size: 1.7rem; margin-bottom: 1rem; }
.featured-review-body .fr-summary {
  font-size: 0.98rem;
  color: var(--gray-mid);
  font-style: italic;
  font-weight: 500;
  border-left: 3px solid var(--teal);
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.featured-review-body .fr-detail {
  color: var(--gray-mid);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ingredient-tags {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.ing-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--teal-dark);
  background: rgba(15,118,110,0.07);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15,118,110,0.14);
}

.fr-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   COMING SOON
============================================ */
.coming-soon { background: var(--beige); }

.coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cs-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px dashed var(--gray-border);
  text-align: center;
  transition: var(--transition);
}
.cs-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.cs-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.cs-icon { font-size: 3rem; margin-bottom: 0.9rem; }
.cs-card h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.45rem; }
.cs-card p  { font-size: 0.85rem; max-width: 280px; margin: 0 auto; }

/* ============================================
   WHY NUTRIVERVE
============================================ */
.why-nutriverve { background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-content h2 { margin-bottom: 0.9rem; }
.why-content > p { margin-bottom: 2rem; }

.why-list { display: flex; flex-direction: column; gap: 0.85rem; }
.why-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.why-check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
}
.why-item-text h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; margin-bottom: 0.15rem; }
.why-item-text p  { font-size: 0.82rem; }

/* Why Visual */
.why-visual { position: relative; height: 420px; }
.why-stack { position: relative; height: 100%; }

.wsc {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.wsc-1 {
  width: 230px;
  top: 0; left: 50%; transform: translateX(-50%) rotate(-4deg);
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  z-index: 1;
}
.wsc-1 h4 { color: var(--white); font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; }
.wsc-1 p  { color: rgba(255,255,255,0.65); font-size: 0.77rem; }
.wsc-2 {
  width: 250px;
  top: 140px; left: 50%; transform: translateX(-35%) rotate(2.5deg);
  background: var(--white);
  border: 1px solid var(--gray-border);
  z-index: 2;
}
.wsc-2 h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.15rem; }
.wsc-2 p  { font-size: 0.77rem; }
.wsc-3 {
  width: 240px;
  top: 275px; left: 50%; transform: translateX(-65%) rotate(-1.5deg);
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #bbf7d0;
  z-index: 3;
}
.wsc-3 h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.15rem; color: #166534; }
.wsc-3 p  { font-size: 0.77rem; color: #166534; opacity: 0.7; }
.wsc .card-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }

/* ============================================
   EDITORIAL DISCLAIMER
============================================ */
.editorial-disclaimer {
  background: linear-gradient(135deg, rgba(15,118,110,.05), rgba(91,33,182,.05));
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 3.5rem 0;
}
.disclaimer-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.disc-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.disclaimer-inner h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.disclaimer-inner p { font-size: 0.87rem; line-height: 1.8; }
.disclaimer-inner .aff-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-border);
  font-size: 0.8rem;
}

/* ============================================
   FAQ
============================================ */
.faq-section { background: var(--off-white); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(15,118,110,.4); }
.faq-item.open  { border-color: var(--teal); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition-fast);
}
.faq-question:hover { color: var(--teal); }

.faq-icon {
  width: 26px; height: 26px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--gray-mid);
}
.faq-item.open .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--gray-mid);
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================
   NEWSLETTER
============================================ */
.newsletter {
  background: linear-gradient(135deg, var(--teal), var(--purple-mid));
  position: relative;
  overflow: hidden;
}
.newsletter::before, .newsletter::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.newsletter::before {
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -80px;
}
.newsletter::after {
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.04);
  bottom: -160px; left: -60px;
}
.newsletter-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter p  { color: rgba(255,255,255,0.78); margin-bottom: 2rem; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.15); }
.newsletter-note { font-size: 0.74rem; color: rgba(255,255,255,0.5); margin-top: 0.9rem; }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.68); }

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .logo-text .brand-name { color: var(--white); }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 1.2rem; max-width: 270px; }

.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--teal); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  color: rgba(255,255,255,0.58);
  font-size: 0.83rem;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }

.footer-bottom { padding: 1.4rem 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.38); }

.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--purple-mid));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
  border: none;
  font-size: 1.1rem;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover   { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

/* ============================================
   INNER PAGES
============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid), var(--teal));
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px; right: -100px;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.9rem; }
.page-hero p  { color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto; }
.page-hero .page-label {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-content { padding: 5rem 0; background: var(--off-white); }
.prose-wrap { max-width: 820px; margin: 0 auto; }

.prose {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}
.prose .last-updated {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--gray-mid);
  background: var(--gray-light);
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
}
.prose h2 {
  font-size: 1.35rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-border);
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.prose p  { margin-bottom: 1rem; font-size: 0.93rem; }
.prose ul { list-style: disc; padding-left: 1.6rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.45rem; font-size: 0.93rem; color: var(--gray-mid); }
.prose a  { color: var(--teal); text-decoration: underline; }
.prose a:hover { color: var(--teal-dark); }

.prose .highlight-box {
  background: rgba(15,118,110,0.06);
  border: 1px solid rgba(15,118,110,0.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.prose .highlight-box p { font-size: 0.88rem; margin-bottom: 0; }

/* About specific */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.av-card {
  background: var(--off-white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
}
.av-card .av-icon { font-size: 1.8rem; margin-bottom: 0.65rem; }
.av-card h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; }
.av-card p  { font-size: 0.8rem; }

/* Contact specific */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(15,118,110,0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.18rem; }
.contact-item a  { color: var(--teal); font-size: 0.88rem; }
.contact-item p  { font-size: 0.83rem; }
.contact-item a:hover { text-decoration: underline; }

.contact-note {
  background: linear-gradient(135deg, rgba(15,118,110,.06), rgba(91,33,182,.06));
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-note h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.contact-note p  { font-size: 0.85rem; }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-22px) rotate(6deg); }
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.65; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 4rem 0; }
  .hero-visual { display: none; }
  .hero-subtitle { max-width: 100%; margin: 0 auto 2rem; }
  .hero-actions  { justify-content: center; }
  .covers-grid   { grid-template-columns: repeat(2, 1fr); }
  .review-steps  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .featured-review-card { grid-template-columns: 280px 1fr; }
  .why-inner     { grid-template-columns: 1fr; }
  .why-visual    { display: none; }
}

@media (max-width: 768px) {
  .site-nav, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }

  .covers-grid,
  .guides-grid,
  .review-steps { grid-template-columns: 1fr; }

  .review-categories-grid { grid-template-columns: 1fr 1fr; }
  .featured-review-card   { grid-template-columns: 1fr; }
  .featured-review-img-wrap { height: 240px; padding: 1.5rem; }
  .featured-review-body   { padding: 1.75rem; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 1.75rem; }
  .newsletter-form  { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-border); width: 100%; justify-content: center; padding: 0.6rem 1rem; }
  .trust-item:last-child { border-bottom: none; }
  .section-padding { padding: 3.5rem 0; }
  .prose { padding: 1.75rem; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .featured-review-actions { flex-direction: column; }
  .featured-review-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .covers-grid { grid-template-columns: 1fr; }
  .review-categories-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .fr-actions { flex-direction: column; }
  .fr-actions .btn { width: 100%; justify-content: center; }
}
