/* ==========================================================================
   VisiFlora™ - Fully Blended, Clean, Fast & Easy Design System
   Continuous Fluid Geometry, Harmonious Tones & Grounded Rating Anchor
   ========================================================================== */

:root {
  /* Continuous Background Palette (Seamless transitions, no harsh breaks) */
  --bg-pure: #ffffff;
  --bg-canvas: #fafbfe;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-subtle: rgba(241, 245, 249, 0.7);
  --bg-indigo-soft: #f4f2ff;
  --bg-teal-soft: #f0fdf9;
  --bg-amber-soft: #fffbeb;

  /* Typography Palette */
  --text-main: #0f172a;       /* Deep Slate */
  --text-body: #334155;       /* Crisp Charcoal */
  --text-muted: #64748b;      /* Balanced Slate */
  --text-light: #94a3b8;

  /* Brand Accents (Exact harmony with official bottle) */
  --brand-indigo: #2e1065;    /* Deep Bottle Indigo */
  --brand-purple: #4c1d95;    /* Saffron Purple */
  --brand-purple-light: #6b21a8;
  --brand-blue: #3b82f6;      /* Electric Iris Blue */
  --brand-teal: #0d9488;      /* Botanical Leaf */

  /* High-Impact Eye-Catching Discount Accent */
  --discount-red: #ea580c;
  --discount-orange: #f97316;
  --discount-gold: #f59e0b;
  --discount-glow: 0 6px 25px rgba(249, 115, 22, 0.42), 0 2px 4px rgba(0, 0, 0, 0.08);

  /* Soft Blended Borders & Diffused Shadows */
  --border-blended: rgba(76, 29, 149, 0.08);
  --border-card: rgba(226, 232, 240, 0.85);
  --border-highlight: rgba(59, 130, 246, 0.25);
  
  --shadow-diffused-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-diffused-md: 0 10px 30px -4px rgba(46, 16, 101, 0.06), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --shadow-diffused-lg: 0 20px 45px -8px rgba(46, 16, 101, 0.1), 0 6px 16px -3px rgba(15, 23, 42, 0.04);
  --shadow-diffused-xl: 0 28px 65px -12px rgba(46, 16, 101, 0.16);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container-max: 1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-pure);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  /* Continuous unified canvas gradient: no disjointed stripes */
  background: radial-gradient(circle at 80% 8%, rgba(76, 29, 149, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.04) 0%, transparent 45%),
              radial-gradient(circle at 85% 55%, rgba(249, 115, 22, 0.03) 0%, transparent 45%),
              radial-gradient(circle at 20% 75%, rgba(13, 148, 136, 0.03) 0%, transparent 50%),
              linear-gradient(180deg, #ffffff 0%, #f9fafc 18%, #ffffff 35%, #fbfaff 50%, #ffffff 68%, #f8fafc 85%, #f4f6fb 100%);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* ==========================================================================
   Top Reassurance Strip (Integrated & Soft)
   ========================================================================== */
.top-strip {
  background: linear-gradient(90deg, #1e1b4b 0%, #2e1065 50%, #1e1b4b 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(30, 27, 75, 0.15);
}

.top-strip .strip-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.top-strip strong {
  color: #fcd34d;
}

/* ==========================================================================
   Hero Section: Seamless Blend with Centered Product Flow
   ========================================================================== */
.hero-clean {
  padding: 3rem 0 4.5rem;
  position: relative;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.brand-emblem {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand-indigo);
  letter-spacing: -0.02em;
}

.brand-emblem .target-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #2e1065 0%, #4338ca 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(67, 56, 202, 0.25);
}

.brand-emblem span span {
  color: var(--brand-blue);
  font-weight: 600;
}

.portal-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-teal);
  background: var(--bg-teal-soft);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.portal-verified .live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 6px var(--brand-teal);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-indigo-soft);
  border: 1px solid rgba(76, 29, 149, 0.15);
  color: var(--brand-purple);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
}

.hero-h1 .highlight-purple {
  color: var(--brand-purple);
  background: linear-gradient(120deg, rgba(76, 29, 149, 0.08) 0%, rgba(76, 29, 149, 0.02) 100%);
  padding: 0 0.25rem;
  border-radius: 4px;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.hero-desc strong {
  color: var(--text-main);
}

/* ==========================================================================
   EYE-CATCHING DISCOUNT BUTTON (Vibrant, Clickable, High Impact)
   ========================================================================== */
.btn-discount-eye-catching {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, var(--discount-red) 0%, var(--discount-orange) 50%, var(--discount-gold) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 1.15rem 2.5rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--discount-glow);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-discount-eye-catching::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: sweep-light 3.2s infinite;
}

@keyframes sweep-light {
  0% { left: -80%; }
  30% { left: 130%; }
  100% { left: 130%; }
}

.btn-discount-eye-catching:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(249, 115, 22, 0.55), 0 3px 8px rgba(0, 0, 0, 0.12);
  filter: brightness(1.05);
}

.btn-discount-eye-catching:active {
  transform: translateY(0) scale(0.99);
}

.btn-discount-eye-catching .pill-save {
  background: #ffffff;
  color: #c2410c;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

.hero-action-group {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-action-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-guarantee-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-guarantee-text svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Trust Badges Strip */
.trust-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-blended);
}

.trio-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trio-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.trio-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.trio-label small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
}

/* ==========================================================================
   PRODUCT COLUMN: BOTTLE + RATING COLUMN JUST BENEATH IT
   ========================================================================== */
.hero-product-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-bottle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  width: 100%;
}

.bottle-glow-backdrop {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(76, 29, 149, 0.08) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-bottle-img {
  position: relative;
  z-index: 1;
  max-width: 350px;
  width: 100%;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.12));
  transition: transform 0.4s var(--ease);
}

.hero-bottle-wrap:hover .hero-bottle-img {
  transform: translateY(-4px) scale(1.02);
}

/* Elegant floating guarantee badge on top-right of bottle */
.floating-seal-badge {
  position: absolute;
  top: 15px;
  right: 5px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 29, 149, 0.15);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.95rem;
  box-shadow: var(--shadow-diffused-md);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.seal-days {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e1065 0%, #4f46e5 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-text strong {
  font-size: 0.8rem;
  color: var(--text-main);
  display: block;
  line-height: 1.2;
}

.seal-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RATING COLUMN JUST BENEATH THE PRODUCT
   ========================================================================== */
.product-rating-card {
  width: 100%;
  max-width: 370px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(76, 29, 149, 0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-diffused-md);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  z-index: 2;
}

.product-rating-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-diffused-lg);
  border-color: rgba(76, 29, 149, 0.25);
}

.rating-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-bottom: 0.55rem;
}

.star-cluster {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.rating-score {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rating-score strong {
  font-size: 1.05rem;
  color: var(--text-main);
}

.rating-meta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-left: -7px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.avatar-dot:first-child {
  margin-left: 0;
}

.avatar-dot.a1 { background: #2e1065; }
.avatar-dot.a2 { background: #4f46e5; }
.avatar-dot.a3 { background: #0d9488; }
.avatar-dot.a4 { background: #ea580c; font-size: 0.75rem; }

.rating-desc {
  font-size: 0.78rem;
  line-height: 1.25;
}

.rating-desc strong {
  color: var(--text-main);
  display: block;
}

.rating-desc span {
  color: #059669;
  font-weight: 600;
}

/* ==========================================================================
   Quick Jump Navigation Strip: Floating Blended Pill
   ========================================================================== */
.quick-jump-bar {
  padding: 0.6rem 0;
  position: sticky;
  top: 15px;
  z-index: 900;
}

.jump-bar-inner {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(76, 29, 149, 0.1);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-diffused-md);
  padding: 0.5rem 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.jump-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
}

.jump-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.jump-links a:hover {
  background: var(--bg-indigo-soft);
  color: var(--brand-purple);
}

.jump-links a.jump-cta {
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
  padding: 0.35rem 1rem;
  font-weight: 800;
}

/* ==========================================================================
   Seamless Content Sections (Zero Harsh Divider Lines)
   ========================================================================== */
.site-section {
  padding: 5.5rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem;
}

.section-head .tag-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-purple);
  margin-bottom: 0.6rem;
  background: var(--bg-indigo-soft);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(76, 29, 149, 0.12);
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================================================
   Humanized Story Section with Leica Portrait
   ========================================================================== */
.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.portrait-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-diffused-lg);
  border: 1px solid var(--border-blended);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.portrait-card:hover img {
  transform: scale(1.02);
}

.portrait-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.35rem 1.6rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.92) 100%);
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.5;
}

.portrait-banner strong {
  color: #fcd34d;
}

.story-text-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-blended);
  box-shadow: var(--shadow-diffused-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-text-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.story-text-card p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
}

.story-callout-clean {
  background: var(--bg-indigo-soft);
  border-left: 4px solid var(--brand-purple);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-callout-clean p {
  color: var(--brand-indigo);
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ==========================================================================
   Gut-Eye Axis Medical Breakdown
   ========================================================================== */
.axis-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.axis-diagram-box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-diffused-md);
  border: 1px solid var(--border-blended);
  text-align: center;
}

.axis-diagram-box img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.axis-diagram-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  font-style: italic;
}

.axis-steps-col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-blended);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-diffused-sm);
  display: flex;
  gap: 1.25rem;
  transition: all 0.25s var(--ease);
}

.step-card:hover {
  transform: translateX(4px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-diffused-md);
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-indigo-soft);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(76, 29, 149, 0.15);
}

.step-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.step-info p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   22-in-1 Ingredient Matrix (Seamless Frosted Cards)
   ========================================================================== */
.ingredients-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.matrix-quadrant {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border-blended);
  box-shadow: var(--shadow-diffused-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}

.matrix-quadrant:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 29, 149, 0.3);
  box-shadow: var(--shadow-diffused-md);
}

.quadrant-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-indigo-soft);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.matrix-quadrant h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.quadrant-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-purple);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.quadrant-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quadrant-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.quadrant-list li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 3px;
}

.quadrant-list li strong {
  color: var(--text-main);
}

/* ==========================================================================
   Exact Pricing & Packages (Fast & Easy Choice)
   ========================================================================== */
.pricing-section-clean {
  padding: 5.5rem 0;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.pack-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 2.4rem 2rem;
  border: 1px solid var(--border-blended);
  box-shadow: var(--shadow-diffused-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
}

.pack-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-diffused-lg);
}

/* Doctor's Choice 6 Bottles Tier (Featured) */
.pack-card.featured-doctor {
  border: 2px solid var(--brand-purple);
  box-shadow: 0 16px 45px -8px rgba(76, 29, 149, 0.22), 0 4px 15px rgba(0, 0, 0, 0.05);
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  transform: scale(1.03);
  z-index: 2;
}

.pack-card.featured-doctor:hover {
  transform: scale(1.04) translateY(-4px);
}

.ribbon-pill {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2e1065 0%, #4c1d95 100%);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1.4rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(76, 29, 149, 0.4);
  white-space: nowrap;
}

.ribbon-pill-amber {
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.pack-top {
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 1.25rem;
}

.pack-top h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.pack-top .supply-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pack-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.pack-visual img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.pack-card:hover .pack-visual img {
  transform: scale(1.05);
}

.pack-pricing-data {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bottle-rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.bottle-rate .dollar {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
}

.bottle-rate .num {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.bottle-rate .per {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pack-savings-tag {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(220, 38, 38, 0.2);
  margin-top: 0.5rem;
}

.pack-savings-tag.green {
  background: #ecfdf5;
  color: #059669;
  border-color: rgba(5, 150, 105, 0.2);
}

.pack-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pack-perks li {
  font-size: 0.9rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pack-perks li svg {
  color: #10b981;
  flex-shrink: 0;
}

.pack-perks li.bonus-line {
  color: var(--brand-purple);
  font-weight: 700;
}

.pack-perks li.disabled-line {
  color: var(--text-light);
}

.pack-perks li.disabled-line svg {
  color: #cbd5e1;
}

/* Full Width Card Button */
.btn-card-checkout {
  width: 100%;
  padding: 1.05rem 1rem;
  font-size: 1.1rem;
}

.card-foot-secure {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ==========================================================================
   3 Free Digital Bonus Guides
   ========================================================================== */
.bonus-card-wrap {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  border: 1px solid var(--border-blended);
  box-shadow: var(--shadow-diffused-md);
}

.bonus-top-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 2.5rem;
}

.bonus-top-banner h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.bonus-top-banner p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.bonus-top-banner img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-diffused-sm);
}

.bonus-items-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bonus-single-card {
  background: #ffffff;
  border: 1px solid var(--border-blended);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-diffused-sm);
}

.bonus-badge-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--brand-indigo);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.bonus-single-card h4 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.bonus-single-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.bonus-cost-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.bonus-cost-row .retail-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bonus-cost-row .free-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #059669;
  text-transform: uppercase;
}

/* ==========================================================================
   Real Testimonials & Verified Stories
   ========================================================================== */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-box-clean {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  border: 1px solid var(--border-blended);
  box-shadow: var(--shadow-diffused-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}

.testimonial-box-clean:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-diffused-md);
  border-color: rgba(76, 29, 149, 0.25);
}

.rating-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.testimonial-box-clean h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.testimonial-box-clean p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e1065 0%, #4338ca 100%);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.reviewer-info strong {
  font-size: 0.92rem;
  color: var(--text-main);
  display: block;
}

.reviewer-info span {
  font-size: 0.76rem;
  color: #059669;
  font-weight: 600;
}

/* ==========================================================================
   60-Day Guarantee Box (Upper Page Trust Banner)
   ========================================================================== */
.guarantee-upper-section {
  padding: 2.25rem 0 3.5rem;
  position: relative;
}

.guarantee-container {
  background: linear-gradient(135deg, #1e1b4b 0%, #2e1065 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3.25rem 3.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-diffused-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.guarantee-container::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.guarantee-big-seal {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--brand-indigo);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.25);
  margin: 0 auto;
  border: 4px solid #f59e0b;
}

.guarantee-big-seal .days-num {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--brand-indigo);
}

.guarantee-big-seal .seal-sub {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #c2410c;
}

.guarantee-details h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.guarantee-details p {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Interactive FAQ Accordion
   ========================================================================== */
.faq-container-clean {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-row {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-blended);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-diffused-sm);
  transition: all 0.25s var(--ease);
}

.faq-row.active {
  border-color: var(--brand-purple);
  box-shadow: var(--shadow-diffused-md);
}

.faq-toggle {
  width: 100%;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-main);
  cursor: pointer;
  background: none;
}

.faq-toggle svg {
  color: var(--brand-purple);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-row.active .faq-toggle svg {
  transform: rotate(180deg);
}

.faq-content-pane {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  transition: max-height 0.35s ease-out, padding 0.3s ease;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-row.active .faq-content-pane {
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   Clean, Blended White Footer
   ========================================================================== */
.site-footer-clean {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  color: var(--text-body);
  border-top: 1px solid var(--border-blended);
  padding: 5rem 0 3rem;
}

.footer-columns-3 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-about h4 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brand-indigo);
  margin-bottom: 0.85rem;
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 1.25rem;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-badges span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-blended);
}

.footer-nav-col h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.2rem;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav-links a:hover {
  color: var(--brand-purple);
}

.footer-contact-details {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.footer-contact-details strong {
  color: var(--text-main);
}

.disclaimer-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--border-blended);
  border-bottom: 1px solid var(--border-blended);
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.disclaimer-strip p {
  margin-bottom: 0.75rem;
}

.disclaimer-strip p:last-child {
  margin-bottom: 0;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Checkout Modal Simulation
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: var(--shadow-diffused-xl);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease);
}

.modal-overlay.active .modal-dialog {
  transform: scale(1);
}

.modal-close-x {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s;
  cursor: pointer;
}

.modal-close-x:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-action-group {
    align-items: center;
  }

  .hero-action-row {
    justify-content: center;
  }

  .trust-trio {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-product-column {
    max-width: 420px;
    margin: 0 auto;
  }

  .story-columns {
    grid-template-columns: 1fr;
  }

  .axis-split {
    grid-template-columns: 1fr;
  }

  .ingredients-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards-container {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .pack-card.featured-doctor {
    transform: none;
  }

  .pack-card.featured-doctor:hover {
    transform: translateY(-4px);
  }

  .bonus-top-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bonus-items-3 {
    grid-template-columns: 1fr;
  }

  .testimonials-row {
    grid-template-columns: 1fr;
  }

  .guarantee-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .footer-columns-3 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .brand-row {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .hero-h1 {
    font-size: 2.1rem;
  }

  .ingredients-matrix {
    grid-template-columns: 1fr;
  }

  .bonus-card-wrap {
    padding: 2rem 1.25rem;
  }

  .jump-links {
    gap: 0.5rem;
  }

  .jump-links a {
    font-size: 0.78rem;
    padding: 0.25rem 0.55rem;
  }
}
