/* ============================================
   REJUVIT MENOPAUSE RELIEF - LANDING PAGE
   Nooro-Matched Layout with Decorative Elements
   ============================================ */

/* ---------- VARIABLES ---------- */
:root {
  --green-900: #2D1B4E;
  --green-800: #3C2568;
  --green-700: #5A3D8F;
  --green-600: #7B5CB5;
  --green-500: #9B7ED8;
  --green-400: #C5B4E3;
  --green-200: #DDD0F0;
  --green-100: #EDE6F7;
  --green-50: #F7F4FC;

  --gold-500: #EAB308;
  --gold-400: #FACC15;

  --red-500: #EF4444;
  --red-100: #FEE2E2;

  --orange-500: #F97316;
  --orange-100: #FFEDD5;

  --gray-900: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-500: #78716C;
  --gray-300: #D6D3D1;
  --gray-200: #E7E5E4;
  --gray-100: #F5F5F4;
  --gray-50: #FAFAF9;
  --white: #FFFFFF;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12), 0 16px 48px rgba(0,0,0,0.08);
  --transition: 0.3s ease;
}

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

/* ---------- LAYOUT ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { color: var(--gray-900); line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-title { text-align: center; margin-bottom: 8px; }
.section-sub {
  text-align: center; color: var(--gray-500); font-size: 1.05rem;
  margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.text-green { color: var(--green-600); }
.text-red { color: var(--red-500); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; border: none; border-radius: var(--radius-sm);
  padding: 14px 32px; transition: all var(--transition); cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); box-shadow: 0 4px 14px rgba(123, 92, 181, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 92, 181, 0.45);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
}
.btn-lg { padding: 18px 48px; font-size: 1.1rem; border-radius: var(--radius); }
.btn-block { width: 100%; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; border: 2px solid var(--gray-900);
  background: transparent; color: var(--gray-900); border-radius: var(--radius-sm);
  padding: 14px 32px; transition: all var(--transition); cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-outline:hover { background: var(--gray-900); color: var(--white); }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--green-900);
  color: var(--white);
  padding: 10px 16px;
}
.announcement-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.announcement-text { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px; }
.countdown { display: flex; align-items: center; gap: 8px; }
.countdown-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; opacity: 0.8;
}
.countdown-boxes { display: flex; gap: 6px; }
.countdown-box {
  background: rgba(255,255,255,0.15); border-radius: 4px;
  padding: 4px 8px; text-align: center; min-width: 40px;
}
.countdown-box span { display: block; font-size: 1rem; font-weight: 900; line-height: 1.2; }
.countdown-box small { display: block; font-size: 0.55rem; font-weight: 600; letter-spacing: 1px; opacity: 0.7; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 56px 0 48px;
  background: linear-gradient(180deg, #F7F4FC 0%, #F0EAF8 50%, #ffffff 100%);
  overflow: hidden;
}

/* Decorative circles - subtle */
.hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.decor-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(197, 180, 227, 0.2);
}
.dc-1 { width: 600px; height: 600px; top: -200px; left: -250px; }
.dc-2 { width: 500px; height: 500px; bottom: -150px; right: -200px; }
.dc-3 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.15; }

.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-logo {
  font-size: 1rem; font-weight: 900; color: var(--green-800);
  letter-spacing: 3px; margin-bottom: 24px; text-transform: uppercase;
}
.hero-logo sup { font-size: 0.5em; }
.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.3px;
}
.hero-cta {
  margin-bottom: 16px;
  padding: 18px 56px; font-size: 1.05rem;
  border-radius: var(--radius);
}
.hero-shipping {
  font-size: 0.82rem; color: var(--gray-500); font-weight: 500;
  letter-spacing: 0.3px;
}

/* Hero tag */
.hero-tag {
  display: inline-block; background: var(--green-100); color: var(--green-700);
  padding: 6px 16px; border-radius: 100px; font-size: 0.82rem;
  font-weight: 700; margin-bottom: 16px;
}

/* Hero testimonial carousel */
.hero-carousel {
  margin-top: 24px; max-width: 420px;
}
.carousel-track { position: relative; min-height: 80px; }
.carousel-slide {
  display: none; opacity: 0; transition: opacity 0.5s ease;
}
.carousel-slide.active { display: block; opacity: 1; }
.mini-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 14px 16px;
  box-shadow: var(--shadow);
}
.mini-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.mini-text { flex: 1; }
.mini-text p {
  font-size: 0.85rem; line-height: 1.5; color: var(--gray-700);
  margin-bottom: 4px;
}
.mini-text cite {
  font-size: 0.78rem; font-weight: 600; color: var(--gray-900);
  font-style: normal;
}
.mini-stars {
  color: var(--gold-500); font-size: 0.75rem; letter-spacing: 1px;
  margin-left: 6px;
}
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 12px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-300); cursor: pointer;
  transition: background var(--transition);
}
.dot.active { background: var(--green-600); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; display: flex; justify-content: center;
}
.hero-main-img {
  width: 100%; max-height: 520px; border-radius: var(--radius-lg);
  margin: 0 auto; object-fit: cover;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.1));
}

/* Floating stat badges - clean, minimal */
.float-badge {
  position: absolute; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(90,61,143,0.15);
  border-radius: var(--radius); padding: 10px 16px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); line-height: 1.2;
}
.float-badge strong {
  display: block; font-size: 1.4rem; color: var(--green-700);
  font-weight: 900; line-height: 1;
}
.float-badge small {
  display: block; font-size: 0.6rem; font-weight: 600; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px;
}
.fb-left { bottom: 12%; left: -8%; }
.fb-right { top: 8%; right: -5%; }

/* ============ FOUNDER ============ */
.founder-section { padding: 80px 0; background: var(--white); }

.founder-intro {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 48px; align-items: start; margin-bottom: 48px;
}
.founder-portrait {
  background: var(--green-50); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); text-align: center;
}
.founder-img { width: 100%; height: 280px; object-fit: cover; object-position: center top; }
.founder-label {
  padding: 12px 16px; background: var(--green-700); color: var(--white);
}
.founder-label strong { display: block; font-size: 1.1rem; }
.founder-label span { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }

.founder-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.founder-text > p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; }

.symptom-list { margin-bottom: 12px; }
.symptom-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0; font-size: 0.95rem; color: var(--gray-700);
}
.x-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--red-100); color: var(--red-500);
  border-radius: 50%; font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.aside-text { font-style: italic; color: var(--gray-500); margin-top: 8px; }

/* Founder story */
.founder-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center; margin-bottom: 48px;
}
.story-text p { font-size: 1rem; line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.story-ba img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* Tried everything */
.tried-section { max-width: 800px; margin: 0 auto; text-align: center; }
.tried-title { font-size: 1.2rem; color: var(--red-500); font-weight: 800; margin-bottom: 16px; }
.tried-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; margin-bottom: 24px; }
.tried-grid ul li { padding: 4px 0; font-size: 0.95rem; font-weight: 600; }
.tried-img-wrap { margin: 24px 0; text-align: center; }
.crossed-img { max-width: 360px; margin: 0 auto; border-radius: var(--radius); }
.tried-section > p { font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }

/* ============ DISCOVERY CALLOUT ============ */
.discovery-section {
  padding: 48px 0 60px;
  background: var(--green-50);
}
.discovery-box {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  background: var(--white); border: 2px dashed var(--green-500);
  border-radius: var(--radius-lg); padding: 40px 48px;
  box-shadow: var(--shadow);
}
.discovery-left h2 { margin-bottom: 20px; font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.discovery-checks li {
  padding: 6px 0; font-size: 1rem; line-height: 1.6;
}
.discovery-right {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; text-align: center;
}
.disc-icon-item { text-align: center; }
.disc-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-100); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 8px;
}
.disc-icon-item span { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); line-height: 1.3; }

/* ============ PROBLEM SECTION ============ */
.problem-section { padding: 80px 0; background: var(--white); }
.problem-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 48px; align-items: center;
}
.problem-text h2 { margin-bottom: 20px; }
.problem-text p { margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.problem-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ============ PRODUCT SHOWCASE ============ */
.showcase-section {
  position: relative; padding: 80px 0;
  background: linear-gradient(180deg, var(--green-50) 0%, #E8E0F5 40%, var(--green-50) 100%);
  overflow: hidden;
}
.showcase-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.dc-4 { width: 450px; height: 450px; top: 50px; right: -200px; background: rgba(197, 180, 227, 0.3); }
.dc-5 { width: 500px; height: 500px; bottom: -100px; left: -220px; background: rgba(197, 180, 227, 0.3); }
.decor-arrow {
  position: absolute; width: 80px; height: 80px;
  border: 4px solid rgba(197, 180, 227, 0.5); border-radius: 50%;
  border-top-color: transparent; border-left-color: transparent;
}
.da-1 { top: 120px; right: 80px; transform: rotate(45deg); }
.da-2 { bottom: 100px; left: 60px; transform: rotate(-135deg); }

.showcase-section .container { position: relative; z-index: 1; }

.showcase-top {
  display: grid; grid-template-columns: 200px 1fr 200px;
  gap: 24px; align-items: center; margin-bottom: 48px; text-align: center;
}
.showcase-bottle-left img,
.showcase-bottle-right img {
  max-height: 280px; margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}
.showcase-bottle-right img { transform: scaleX(-1); }
.showcase-heading h2 { margin-bottom: 12px; }
.showcase-heading p { color: var(--gray-500); font-size: 1rem; }

/* Ingredient cards */
.ingredient-cards-row {
  display: flex; gap: 16px; margin-bottom: 16px;
  justify-content: center; flex-wrap: wrap;
}
.ing-card {
  flex: 1; min-width: 260px; max-width: 360px;
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--green-200);
  transition: all var(--transition);
}
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ing-header {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); padding: 12px 20px;
  font-weight: 700; font-size: 0.95rem;
  display: flex; justify-content: space-between; align-items: center;
}
.ing-header span { font-weight: 600; font-size: 0.8rem; opacity: 0.9; }
.ing-body { padding: 16px 20px; }
.ing-img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 12px; display: block; }
.ing-body p { font-size: 0.9rem; line-height: 1.6; color: var(--gray-700); }

/* Probiotic cards */
.probiotic-heading {
  text-align: center; margin: 40px 0 8px;
  font-size: 1.3rem; font-weight: 800;
}
.probiotic-sub {
  text-align: center; color: var(--gray-500);
  font-size: 0.95rem; margin-bottom: 24px;
}
.ing-probiotic { border-color: var(--orange-500); }
.ing-header-fire {
  background: linear-gradient(135deg, var(--orange-500), #ea580c);
}

.showcase-cta { text-align: center; margin-top: 40px; }
.cta-micro { font-size: 0.82rem; color: var(--gray-500); margin-top: 12px; }

/* ============ URGENCY ============ */
.urgency-section { padding: 60px 0; background: var(--white); }
.urgency-box {
  display: grid; grid-template-columns: auto 1fr;
  gap: 32px; align-items: center;
  background: linear-gradient(135deg, var(--green-50) 0%, #fef3c7 100%);
  border: 3px solid var(--orange-500);
  border-radius: var(--radius-lg); padding: 40px;
  max-width: 900px; margin: 0 auto;
}
.urgency-img img {
  max-height: 240px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}
.urgency-content h3 { font-size: 1.2rem; margin-bottom: 16px; line-height: 1.5; }
.urgency-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 20px;
}
.urgency-badge-img { width: 64px; height: 64px; flex-shrink: 0; object-fit: contain; }
.urgency-detail p { font-size: 0.9rem; line-height: 1.6; color: var(--gray-700); }
.urgency-content .cta-micro { margin-top: 8px; }

/* ============ GUARANTEE ============ */
.guarantee-section { padding: 80px 0; background: var(--gray-50); }
.guarantee-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 48px; align-items: center;
  max-width: 900px; margin: 0 auto;
}
.guarantee-seal {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--gray-900);
  box-shadow: 0 4px 24px rgba(234, 179, 8, 0.3);
  border: 4px solid var(--white); outline: 3px solid var(--gold-500);
}
.seal-days { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.seal-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; text-align: center; line-height: 1.3; }

.guarantee-text h2 { margin-bottom: 12px; font-size: 1.5rem; }
.guarantee-text > p { color: var(--gray-500); margin-bottom: 24px; }
.guarantee-list { display: flex; flex-direction: column; gap: 16px; }
.g-item { display: flex; align-items: flex-start; gap: 12px; }
.g-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--green-100);
  color: var(--green-700); border-radius: 50%; font-size: 0.75rem;
  font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.g-item strong { display: block; color: var(--gray-900); font-size: 0.95rem; }
.g-item p { font-size: 0.88rem; color: var(--gray-500); margin: 0; }

/* ============ SOCIAL PROOF ============ */
.social-proof { padding: 80px 0; background: var(--white); }
.fb-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.fb-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px;
  transition: box-shadow var(--transition);
}
.fb-card:hover { box-shadow: var(--shadow-md); }
.fb-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.fb-av-img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.fb-av {
  width: 42px; height: 42px; background: var(--green-100);
  color: var(--green-700); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.fb-top strong { font-size: 0.95rem; color: var(--gray-900); }
.fb-v { font-size: 0.75rem; color: var(--green-600); font-weight: 600; }
.fb-card > p { font-size: 0.95rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 12px; }
.fb-bottom { display: flex; gap: 16px; font-size: 0.8rem; color: var(--gray-500); }
.fb-like { color: var(--green-600); font-weight: 600; }

/* ============ PRICING ============ */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
}
.pricing-urgency { text-align: center; margin-bottom: 12px; }
.pricing-urgency-title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; font-style: italic;
  color: var(--green-700); margin-bottom: 20px;
}
.pricing-countdown {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 16px;
}
.pricing-badge {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #C5B4E3, #9B7ED8);
  color: var(--white); font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center; line-height: 1.1;
  box-shadow: 0 2px 12px rgba(123,92,181,0.3);
}
.pricing-timer-boxes {
  display: flex; gap: 8px;
}
.pricing-timer-box {
  background: var(--green-900); color: var(--white);
  border-radius: 8px; padding: 10px 14px; text-align: center;
  min-width: 60px;
}
.pricing-timer-box span {
  display: block; font-size: 1.5rem; font-weight: 800; line-height: 1;
}
.pricing-timer-box small {
  font-size: 0.6rem; letter-spacing: 1px; opacity: 0.8; text-transform: uppercase;
}
.pricing-scarcity {
  font-size: 0.92rem; color: var(--gray-700);
}
.offer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 840px; margin: 0 auto;
}
.offer-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.offer-card:hover { box-shadow: var(--shadow-lg); }
.offer-featured {
  border-color: var(--green-500);
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 40%);
  box-shadow: var(--shadow-md);
}
.offer-ribbon {
  background: var(--green-600); color: var(--white); text-align: center;
  padding: 8px; font-size: 0.8rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
}
.offer-head { padding: 20px 24px 0; text-align: center; }
.offer-freq { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; }
.offer-head h3 { font-size: 1.4rem; }
.offer-featured .offer-head h3 { color: var(--green-700); }
.offer-body { padding: 16px 24px 28px; }
.offer-img {
  height: auto; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
  background: transparent; border-radius: var(--radius);
  padding: 8px; margin-left: -24px; margin-right: -24px;
}
.offer-img img { width: 100%; max-height: 320px; object-fit: contain; }

/* Offer Card Slider */
.offer-slider { margin-bottom: 16px; margin-left: -24px; margin-right: -24px; }
.offer-slider-main {
  position: relative; overflow: hidden; border-radius: var(--radius);
}
.offer-slide {
  width: 100%; display: none; object-fit: contain;
}
.offer-slide.active { display: block; }
.offer-slider-thumbs {
  display: flex; gap: 6px; justify-content: center;
  padding: 10px 8px 0;
}
.offer-thumb {
  width: 56px; height: 56px; object-fit: cover;
  border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; opacity: 0.5; transition: all 0.2s;
}
.offer-thumb.active { border-color: var(--green-600); opacity: 1; }
.offer-thumb:hover { opacity: 0.85; }
.offer-perks { margin-bottom: 20px; border-top: 1px solid var(--gray-200); }
.offer-perks li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
}
.perk-y { color: var(--green-600); font-weight: 700; font-size: 0.9rem; }
.perk-n { color: var(--red-500); font-weight: 700; font-size: 0.9rem; }
.perk-dim { color: var(--gray-500); }
.offer-price {
  display: flex; align-items: baseline; justify-content: center;
  gap: 8px; margin-bottom: 16px;
}
.price-was { font-size: 1.1rem; color: var(--gray-500); }
.price-was s { color: var(--red-500); }
.price-now { font-size: 2.2rem; font-weight: 900; color: var(--green-700); }
.price-dark { color: var(--gray-900); }
.price-per { font-size: 0.9rem; color: var(--gray-500); font-weight: 500; }
.offer-trust {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 16px; font-size: 0.78rem; color: var(--green-700); font-weight: 600;
}
.offer-trust-muted { color: var(--gray-500); }
.offer-ship {
  margin-top: 16px; text-align: center; font-size: 0.8rem;
  color: var(--gray-700); background: var(--green-50);
  padding: 8px 12px; border-radius: var(--radius-sm);
  border: 1px dashed var(--green-500);
}
.ship-timer { font-weight: 800; color: var(--red-500); }

/* ============ FAQ ============ */
.faq-section { padding: 80px 0; background: var(--gray-50); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden; transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none;
  text-align: left; font-size: 1rem; font-weight: 600;
  color: var(--gray-900); gap: 16px;
}
.faq-icon {
  font-size: 1.5rem; font-weight: 400; color: var(--green-600);
  flex-shrink: 0; transition: transform var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-a { max-height: 500px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.95rem; line-height: 1.7; color: var(--gray-500); }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-600) 100%);
  color: var(--white);
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 32px; font-size: 1.05rem; }
.final-cta .btn-primary {
  background: var(--white); color: var(--green-800);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.final-cta .btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}
.final-sub { margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ============ FOOTER ============ */
.site-footer {
  padding: 48px 0 32px; background: var(--gray-900);
  color: rgba(255,255,255,0.6);
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-size: 1.3rem; font-weight: 900; color: var(--white); letter-spacing: 2px; }
.footer-logo sup { font-size: 0.5em; }
.footer-brand p { font-size: 0.85rem; margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-disc { font-size: 0.78rem; line-height: 1.7; color: rgba(255,255,255,0.4); }
.footer-disc p { margin-bottom: 8px; }

/* ============ FACILITY ============ */
.facility-section {
  padding: 60px 0; background: var(--green-50); text-align: center;
}
.facility-img-wrap {
  max-width: 320px; margin: 24px auto;
  border-radius: 50% / 40%; overflow: hidden;
  border: 3px solid var(--green-500);
  box-shadow: var(--shadow-md);
}
.facility-photo {
  width: 100%; height: 240px; object-fit: cover; object-position: center;
}
.facility-badges {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 20px; flex-wrap: wrap;
}
.facility-badges span {
  font-size: 0.85rem; font-weight: 700; color: var(--green-700);
}

/* ============ TIMELINE ============ */
.timeline-section {
  padding: 80px 0;
  background: var(--white);
}
.timeline-wrap {
  position: relative; max-width: 800px; margin: 48px auto 0;
}
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, var(--green-500), var(--green-400));
  transform: translateX(-50%); z-index: 0;
}
.timeline-row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 16px; align-items: center; margin-bottom: 32px;
  position: relative; z-index: 1;
}
.timeline-right .timeline-marker { text-align: right; }
.timeline-left .timeline-marker { text-align: left; }
.timeline-marker span {
  display: inline-block; background: var(--green-700); color: var(--white);
  padding: 6px 16px; border-radius: 100px; font-size: 0.8rem;
  font-weight: 700; white-space: nowrap;
}
.timeline-dot {
  width: 36px; height: 36px; background: var(--green-600);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.8rem;
  border: 3px solid var(--white); box-shadow: var(--shadow);
  flex-shrink: 0;
}
.timeline-card {
  background: var(--white); border: 1px solid var(--green-200);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
}
.timeline-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--green-700); }
.timeline-card p { font-size: 0.88rem; line-height: 1.6; color: var(--gray-500); }

/* Right-aligned rows: marker | dot | card */
.timeline-right { grid-template-columns: auto auto 1fr; }
/* Left-aligned rows: card | dot | marker */
.timeline-left { grid-template-columns: 1fr auto auto; }

.timeline-bottle {
  position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
}
.timeline-bottle img {
  max-height: 300px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}
.timeline-cta { text-align: center; margin-top: 48px; }

/* ============ EDUCATIONAL ============ */
.edu-section {
  padding: 80px 0; background: var(--white);
}
.edu-section .section-title { margin-bottom: 48px; }
.edu-block {
  display: flex; gap: 32px; align-items: flex-start;
  margin-bottom: 48px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.edu-block:last-of-type { margin-bottom: 0; }
.edu-img {
  width: 300px; min-width: 300px; border-radius: 0;
  box-shadow: none; object-fit: contain; height: auto; max-height: 300px;
}
.edu-img-right { order: 2; }
.edu-img-left { order: -1; }
.edu-block p { font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }

.edu-belief {
  background: var(--green-50); border-radius: var(--radius-lg);
  padding: 40px; margin-top: 48px; max-width: 100%;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.edu-belief-text h3 { font-size: 1.2rem; margin-bottom: 16px; line-height: 1.5; }
.edu-belief-text p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.edu-belief-img img {
  max-height: 280px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* ============ HOW TO USE ============ */
.howto-section { padding: 80px 0; background: var(--gray-50); }
.howto-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 32px 0;
}
.howto-number {
  font-size: 1.8rem; color: var(--green-600); font-weight: 900;
}
.howto-line {
  width: 120px; height: 2px; border-top: 2px dashed var(--green-400);
}
.howto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; text-align: center;
}
.howto-card { padding: 16px; }
.howto-img-wrap {
  width: 180px; height: 180px; margin: 0 auto 20px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 3px solid var(--green-400); box-shadow: var(--shadow);
}
.howto-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.howto-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--green-700); }
.howto-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ============ COMPARISON TABLE ============ */
.comparison-section { padding: 80px 0; background: var(--white); }
.comp-table-wrap {
  max-width: 700px; margin: 48px auto 0;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.comp-vs {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; padding: 24px; background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.comp-vs-left, .comp-vs-right {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.9rem; flex: 1; text-align: center;
}
.comp-bottle { max-height: 180px; object-fit: contain; }
.comp-generic-bottle { font-size: 2.5rem; }
.comp-vs-badge {
  width: 40px; height: 40px; background: var(--green-600); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.8rem;
}
.comp-heading {
  text-align: center; padding: 16px; font-weight: 700;
  color: var(--green-700); font-size: 1rem;
  border-bottom: 1px solid var(--gray-200); background: var(--green-50);
}
.comp-row {
  display: grid; grid-template-columns: 50px 1fr 50px;
  align-items: center; padding: 12px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.comp-row:last-child { border-bottom: none; }
.comp-feature { text-align: center; font-size: 0.9rem; font-weight: 600; color: var(--gray-900); }
.comp-y {
  text-align: center; color: var(--green-600); font-weight: 700; font-size: 1.2rem;
}
.comp-n {
  text-align: center; color: var(--red-500); font-weight: 700; font-size: 1.2rem;
}
.comp-y-bad {
  text-align: center; color: var(--red-500); font-weight: 700; font-size: 1.2rem;
}
.comp-row-bad { background: var(--red-100); }
.comp-row-bad .comp-feature { color: var(--red-500); }
.comp-row-bad .comp-n { color: var(--green-600); }

/* ============ SUPPLEMENT FACTS ============ */
.suppfacts-section {
  position: relative; padding: 60px 0;
  background: var(--green-50); overflow: hidden;
}
.suppfacts-section .container { position: relative; z-index: 1; }
.suppfacts-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center; max-width: 800px;
  margin: 32px auto 0;
}
.suppfacts-label {
  text-align: center;
}
.suppfacts-img {
  max-width: 350px; border: 2px solid var(--gray-300);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.suppfacts-bottle img {
  max-height: 300px; margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* ============ REJUVIT PROMISE ============ */
.promise-section {
  padding: 48px 0; background: var(--green-50);
}
.promise-title {
  text-align: center; font-size: 1.5rem; font-weight: 800;
  color: var(--gray-900); margin-bottom: 32px;
}
.promise-icons {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.promise-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center;
}
.promise-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--green-800); display: flex;
  align-items: center; justify-content: center;
  color: var(--green-800);
}
.promise-circle svg { width: 36px; height: 36px; }
.promise-item span {
  font-size: 0.82rem; font-weight: 600; color: var(--gray-700);
}

/* seal styles consolidated above in hero visual section */

/* ============ REVIEW SUMMARY ============ */
.rv-summary {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
  padding: 24px 32px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  box-shadow: var(--shadow); margin-bottom: 32px;
}
.rv-summary-left { text-align: center; }
.rv-big-rating {
  font-size: 3rem; font-weight: 900; color: var(--gray-900); line-height: 1;
}
.rv-stars-row {
  color: var(--gold-500); font-size: 1.2rem; letter-spacing: 2px; margin: 4px 0;
}
.rv-total { font-size: 0.78rem; color: var(--green-600); font-weight: 600; }

.rv-bar-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
}
.rv-bar-label { font-size: 0.7rem; color: var(--gold-500); min-width: 65px; letter-spacing: 1px; }
.rv-bar {
  flex: 1; height: 10px; background: var(--gray-100);
  border-radius: 5px; overflow: hidden;
}
.rv-bar-fill {
  height: 100%; background: var(--green-600); border-radius: 5px;
}
.rv-bar-4 { background: var(--green-500); }
.rv-bar-3 { background: #3b82f6; }
.rv-bar-2 { background: var(--orange-500); }
.rv-bar-1 { background: var(--red-500); }
.rv-bar-count {
  font-size: 0.72rem; color: var(--gray-500); min-width: 44px; text-align: right;
}

.rv-photo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.rv-photo-grid img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}

/* ============ REVIEW CARDS ============ */
.rv-list {
  display: flex; flex-direction: column; gap: 0;
}
.rv-card {
  padding: 24px 32px; border-bottom: 1px solid var(--gray-200);
}
.rv-card:last-child { border-bottom: none; }
.rv-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 8px;
}
.rv-card-user {
  display: flex; align-items: center; gap: 12px;
}
.rv-initials {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
}
.rv-card-user strong { font-size: 0.92rem; color: var(--gray-900); }
.rv-verified {
  font-size: 0.75rem; color: var(--green-600); font-weight: 600;
}
.rv-location { font-size: 0.72rem; color: var(--gray-500); }
.rv-date { font-size: 0.78rem; color: var(--gray-500); }
.rv-card-stars {
  color: var(--gold-500); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px;
}
.rv-card-title {
  font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px;
}
.rv-card-text {
  font-size: 0.9rem; line-height: 1.7; color: var(--gray-700);
  font-style: italic; margin-bottom: 12px;
}
.rv-card-photos {
  display: flex; gap: 8px;
}
.rv-card-photos img {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  object-fit: cover;
}

/* ============ OFFER CARD LINE ITEMS ============ */
.offer-badge-tag {
  display: inline-block; background: var(--green-600); color: var(--white);
  padding: 3px 12px; border-radius: 4px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.offer-line-items {
  list-style: none; padding: 0; margin: 0 0 16px;
  border-top: 1px solid var(--gray-200);
}
.offer-line {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 0.85rem;
}
.offer-line-icon {
  color: var(--gray-400); font-size: 0.5rem; flex-shrink: 0;
}
.offer-line-text { flex: 1; color: var(--gray-900); font-weight: 500; }
.offer-line-price {
  font-size: 0.82rem; color: var(--gray-500); font-weight: 600;
  text-align: right;
}
.offer-line-price s { color: var(--red-500); }
.offer-free-tag {
  background: var(--green-600); color: var(--white) !important;
  padding: 2px 6px; border-radius: 3px; font-size: 0.6rem !important;
  font-weight: 800; letter-spacing: 0.5px;
}
.offer-line-free .offer-line-text { color: var(--green-700); font-weight: 600; }
.offer-line-disabled {
  opacity: 0.4; text-decoration: line-through;
}
.offer-qty {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; font-size: 0.85rem; font-weight: 600; color: var(--gray-700);
}
.qty-selector {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 32px; height: 32px; border: none; background: var(--gray-100);
  font-size: 1rem; font-weight: 600; color: var(--gray-700);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--gray-200); }
.qty-num {
  width: 32px; height: 32px; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.9rem;
  background: var(--white);
}
.offer-trust-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 10px; font-size: 0.72rem; color: var(--gray-500); font-weight: 600;
}
.offer-trust-row span { white-space: nowrap; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-main-img { max-height: 380px; border-radius: var(--radius-lg); }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-social-proof { justify-content: center; }
  .hero-cta { margin-left: auto; margin-right: auto; }
  .float-badge { display: none; }
  .founder-intro { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 280px; margin: 0 auto; }
  .founder-story { grid-template-columns: 1fr; }
  .discovery-box { grid-template-columns: 1fr; }
  .discovery-right { grid-template-columns: repeat(4, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-img { order: -1; text-align: center; }
  .problem-img img { max-width: 400px; margin: 0 auto; }
  .showcase-top { grid-template-columns: 1fr; }
  .showcase-bottle-left, .showcase-bottle-right { display: none; }
  .urgency-box { grid-template-columns: 1fr; text-align: center; }
  .urgency-img img { max-height: 180px; margin: 0 auto; }
  .urgency-detail { flex-direction: column; align-items: center; text-align: center; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-seal-wrap { display: flex; justify-content: center; }
  .offer-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .timeline-row { grid-template-columns: auto auto 1fr !important; }
  .timeline-left { grid-template-columns: 1fr auto auto !important; }
  .timeline-bottle { display: none; }
  .edu-block { flex-direction: column; }
  .edu-img { width: 100%; min-width: unset; order: 0 !important; height: 240px; }
  .edu-belief { grid-template-columns: 1fr; text-align: center; }
  .edu-belief-img img { max-height: 200px; margin: 0 auto; }
  .suppfacts-grid { grid-template-columns: 1fr; text-align: center; }
  .suppfacts-bottle { display: none; }
}

@media (max-width: 768px) {
  .announcement-inner { flex-direction: column; gap: 8px; }
  .fb-grid { grid-template-columns: 1fr; }
  .ingredient-cards-row { flex-direction: column; align-items: center; }
  .ing-card { max-width: 100%; min-width: unset; }
  .discovery-right { grid-template-columns: 1fr 1fr; }
  .tried-grid { grid-template-columns: 1fr; }
  .howto-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .timeline-row { gap: 8px; }
  .timeline-card p { font-size: 0.82rem; }
  .footer-top { flex-direction: column; text-align: center; gap: 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .dc-1, .dc-2 { opacity: 0.3; }
  .rv-summary { grid-template-columns: 1fr; text-align: center; }
  .rv-summary-right { display: none; }
  .rv-card { padding: 16px; }
  .promise-icons { gap: 20px; }
  .promise-circle { width: 56px; height: 56px; }
  .promise-circle svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 16px 32px; font-size: 1rem; }
  .dc-1, .dc-2, .dc-4, .dc-5 { display: none; }
  .showcase-top { gap: 16px; }
}
