/* ============================================
   CITRUBURN ADVERTORIAL — DESIGN SYSTEM
   Mobile-First | Max 800px | High Conversion
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg-page: #FAFAFA;
  --color-heading: #263238;
  --color-body: #37474F;
  --color-cta: #FF5722;
  --color-cta-hover: #E64A19;
  --color-pre-headline: #B71C1C;
  --color-placeholder-bg: #ECEFF1;
  --color-placeholder-border: #B0BEC5;
  --color-card-bg: #FFFFFF;
  --color-border-light: #CFD8DC;
  --color-badge: #FF5722;
  --color-footer-bg: #263238;
  --color-footer-text: #B0BEC5;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans Pro', 'Segoe UI', sans-serif;
  --base-size: 18px;
  --max-width: 800px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px rgba(38, 50, 56, 0.08);
  --shadow-elevated: 0 8px 32px rgba(38, 50, 56, 0.12);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: var(--base-size);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-body);
  background-color: var(--bg-page);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

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

a {
  color: var(--color-cta);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

a:hover {
  color: var(--color-cta-hover);
}


/* ============================================
   IMAGE PLACEHOLDER UTILITY
   ============================================ */
.img-placeholder {
  width: 100%;
  background-color: var(--color-placeholder-bg);
  border: 2px dashed var(--color-placeholder-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #78909C;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}


/* ============================================
   LAYOUT — CONTENT WRAPPER
   ============================================ */
.content-wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Reading Width Constraint */
.text-measure .content-wrap {
  max-width: 700px;
}


/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-smooth);
}

.site-header.header-scrolled {
  box-shadow: 0 2px 16px rgba(38, 50, 56, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 4vw, 1.1rem);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.header-logo span {
  color: var(--color-cta);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border: 1.5px solid var(--color-cta);
  border-radius: 50px;
  background: transparent;
  color: var(--color-cta);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-smooth);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.btn-ghost.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-ghost:hover {
  background: var(--color-cta);
  color: #fff;
}

.btn-ghost svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}


/* ============================================
   PRE-HEADLINE
   ============================================ */
.pre-headline {
  padding: 1.5rem 0 0.5rem;
  text-align: center;
}

.pre-headline p {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-pre-headline);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--color-pre-headline);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 2rem 0 2.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-image {
  /* Bulletproof Full-bleed strategy on mobile */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  
  border-radius: 0;
  box-shadow: none; 
  aspect-ratio: 8/7;
  background-color: #F8F9FA;
  margin-top: 1rem;
  object-fit: cover;
  object-position: center 20%; 
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: #78909C;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-meta svg {
  width: 14px;
  height: 14px;
  fill: #90A4AE;
}


/* ============================================
   AS SEEN ON BAR 
   ============================================ */
.as-seen-on-bar {
  padding: 0.75rem 0;
  background-color: #F8F9FA;
  border-bottom: 1px solid var(--color-border-light);
}

.as-seen-on-bar .content-wrap {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #9E9E9E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.6;
  opacity: 0.5;
}

/* ============================================
   AUTHOR BOX (HERO)
   ============================================ */
.author-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #CFD8DC;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #546E7A;
}

.author-info strong {
  color: var(--color-heading);
}


/* ============================================
   BODY CONTENT — THE PROBLEM
   ============================================ */
.body-content {
  padding: 1rem 0 2.5rem;
}

.body-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.body-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.body-content p:last-child {
  margin-bottom: 0;
}

/* Pull Quote */
.pull-quote {
  background-color: #FFF3E0;
  border-left: 4px solid #FF5722;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: #37474F;
  line-height: 1.65;
}

.pull-quote-source {
  font-weight: 400;
  font-size: 0.85rem;
  color: #78909C;
  font-style: normal;
}

.stat-callout {
  text-align: center;
  padding: 1.5rem;
  margin: 1.5rem 0;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.stat-callout .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-cta);
  line-height: 1;
}

.stat-callout .stat-label {
  font-size: 0.85rem;
  color: #78909C;
  margin-top: 0.4rem;
}


/* ============================================
   THE PIVOT — THE SOLUTION
   ============================================ */
.pivot {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--color-border-light);
}

.pivot h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1.5rem;
}

.pivot h2 span {
  color: var(--color-cta);
}

.pivot .img-placeholder {
  aspect-ratio: 1 / 1;
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

.pivot-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.pivot p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.ingredient-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.ingredient-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ECEFF1;
  font-size: 0.95rem;
}

.ingredient-list li:last-child {
  border-bottom: none;
}

.ingredient-list li svg {
  width: 22px;
  height: 22px;
  fill: var(--color-cta);
  flex-shrink: 0;
  margin-top: 2px;
}

.ingredient-list li strong {
  color: var(--color-heading);
}


/* ============================================
   LA SINERGIA TERMOGÉNICA (INGREDIENTE GRID)
   ============================================ */
.synergy-grid {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border-light);
  background-color: var(--bg-page);
}

.synergy-grid h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1.5rem;
}

.synergy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .synergy-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.synergy-card {
  background: #FFFFFF;
  border: 1px solid #ECEFF1;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.synergy-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.synergy-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.synergy-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.synergy-content p {
  font-size: 0.85rem;
  margin: 0;
  color: #546E7A;
  line-height: 1.4;
}

/* ============================================
   SOCIAL PROOF — TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border-light);
}

.testimonials h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-body);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  border-top: 1px solid #F1F3F5;
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ECEFF1;
}

.testimonial-author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
}


/* ============================================
   GUARANTEE BOX
   ============================================ */
.guarantee {
  padding: 2.5rem 0;
}

.guarantee-box {
  background: #F8F9FA;
  border: 3px solid #4CAF50;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.guarantee-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.guarantee-box p {
  font-size: 0.9rem;
  color: #546E7A;
  line-height: 1.65;
  margin: 0;
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--color-border-light);
}

.faq h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-item {
  border: 1px solid #ECEFF1;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #FFFFFF;
  transition: box-shadow var(--transition-smooth);
}

.faq-item[open] {
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition-smooth);
}

.faq-item summary:hover {
  background: #F8F9FA;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: #90A4AE;
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
}

.faq-item[open] summary::after {
  content: '\2212';
  color: var(--color-cta);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #546E7A;
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   BONUS TAG (Pricing Cards)
   ============================================ */
.bonus-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4CAF50;
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}


/* ============================================
   TRUST SYMBOLS ROW (Below Pricing Grid)
   ============================================ */
.trust-symbols-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #78909C;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-badge svg {
  color: #90A4AE;
}


/* ============================================
   SCIENTIFIC REFERENCES
   ============================================ */
.references {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border-light);
  background: #FAFBFC;
}

.references h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 1rem;
}

.references-sources {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.references-sources span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: #B0BEC5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.references-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 0;
}

.references-list li {
  font-size: 10px;
  line-height: 1.55;
  color: #78909C;
  margin-bottom: 0.5rem;
}

.references-list li em {
  font-style: italic;
}

.references-list li a {
  color: var(--color-cta);
  text-decoration: none;
}

.references-list li a:hover {
  text-decoration: underline;
}


/* ============================================
   VALIDATION TIERS
   ============================================ */
.validation {
  padding: 2.5rem 0;
}

.validation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.validation-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.validation-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.validation-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9); /* Green tint */
  border-radius: 50%;
}

.validation-card .card-icon svg {
  width: 40px;
  height: 40px;
  fill: #4CAF50; /* Medical Green */
}

.validation-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.validation-card p {
  font-size: 0.85rem;
  color: #78909C;
  line-height: 1.55;
}


/* ============================================
   PRICING TABLE
   ============================================ */
.pricing {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--color-border-light);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.pricing-header p {
  font-size: 0.9rem;
  color: #78909C;
}

/* FOMO Counter */
.fomo-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.4rem 1rem;
  background: #FFF3E0;
  border: 1px solid #FFE0B2;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #BF360C;
  animation: fomo-pulse 2.5s ease-in-out infinite;
}

.fomo-counter strong {
  font-weight: 900;
  color: #D32F2F;
}

.fomo-counter svg {
  flex-shrink: 0;
}

@keyframes fomo-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Mobile: featured card comes first */
.pricing-card[data-tier="popular"] { order: -1; }

.product-render-container {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-bottom: 0.75rem;
}

.product-render-container img {
  background-color: #F8F9FA;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.bestseller-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
  color: #E65100;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(230, 81, 0, 0.15);
}

.pricing-card {
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  border: 2px solid #ECEFF1;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

/* Featured card */
.pricing-card.featured {
  border-color: #E65100;
  background: #FFFBF0;
  box-shadow: 0 4px 24px rgba(230, 81, 0, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #E65100;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-tier-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #90A4AE;
  margin-bottom: 0.25rem;
}

.pricing-supply {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.pricing-supply span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #90A4AE;
  margin-top: 0.15rem;
}

/* ---- HERO PRICE (Per Bottle — Anchoring) ---- */
.pricing-hero-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-heading);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-hero-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 900;
  color: #90A4AE;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.pricing-card.featured .pricing-hero-price {
  color: #E65100;
}

/* ---- Savings ---- */
.pricing-savings {
  font-size: 0.85rem;
  font-weight: 800;
  color: #D32F2F;
  margin: 0.5rem 0 1rem;
}

/* ---- Perks List (6-bottle only) ---- */
.pricing-perks {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0.5rem;
  text-align: left;
  display: inline-block;
}

.pricing-perks li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #37474F;
  margin-bottom: 0.35rem;
}

.pricing-perks li svg {
  flex-shrink: 0;
}

/* ---- Bonus inline (3-bottle) ---- */
.pricing-bonus-inline {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1565C0;
  margin: 0.5rem 0 0.25rem;
}

/* ---- CTA Buttons ---- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: #4CAF50;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.25);
}

.btn-cta:hover {
  background: #43A047;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.btn-cta-featured {
  background: #E65100;
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.3);
  font-size: 1rem;
  padding: 1rem 1.5rem;
}

.btn-cta-featured:hover {
  background: #BF360C;
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
}

/* ---- Total Price (Post-CTA, small) ---- */
.pricing-total {
  font-size: 0.78rem;
  color: #78909C;
  margin-top: 0.6rem;
  font-weight: 600;
}

.pricing-total del {
  color: #B0BEC5;
  font-weight: 400;
  margin-right: 0.25rem;
}

.total-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #000;
}

/* Urgency micro-copy */
.urgency-tag {
  font-size: 11px;
  text-align: center;
  color: #E53935;
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-footer-bg);
  padding: 2rem 0;
  text-align: center;
}

.site-footer p {
  font-size: 0.75rem;
  color: var(--color-footer-text);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--color-footer-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-smooth);
}

.footer-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  margin-top: 1.25rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-top: 1px solid rgba(176, 190, 197, 0.2);
  font-size: 10px;
  color: #90A4AE;
  line-height: 1.5;
  text-align: justify;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer p {
  margin-bottom: 0.75rem;
  font-size: 10px;
}  


/* ============================================
   STICKY CTA — MOBILE ONLY
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border-light);
  box-shadow: 0 -4px 20px rgba(38, 50, 56, 0.1);
  padding: 0.4rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;

  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity var(--transition-smooth),
              transform var(--transition-smooth);
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.25;
  flex: 1;
}

.sticky-cta-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  color: #78909C;
}

.btn-sticky {
  flex-shrink: 0;
  padding: 0.85rem 1.25rem;
  background: var(--color-cta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 3px 12px rgba(255, 87, 34, 0.35);
  animation: pulse-gentle 2.5s ease-in-out infinite;
}

.btn-sticky:hover {
  background: var(--color-cta-hover);
}

@keyframes pulse-gentle {
  0%, 100% { box-shadow: 0 3px 12px rgba(255, 87, 34, 0.35); }
  50% { box-shadow: 0 3px 20px rgba(255, 87, 34, 0.55); }
}

/* Safe area for sticky CTA on mobile */
body {
  padding-bottom: 65px;
}

/* Prevent Double CTA on mobile */
@media (max-width: 767px) {
  body.sticky-cta-active .btn-ghost {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (≥768px)
   ============================================ */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .header-inner {
    height: 64px;
  }

  .header-logo {
    font-size: 1.25rem;
  }

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

  .hero-image {
    /* Restore constrained boxing for Desktop */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    object-position: center 20%;
  }

  .body-content h2,
  .pivot h2,
  .pricing-header h2 {
    font-size: 1.75rem;
  }

  .validation-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }

  .pricing-card.featured {
    transform: scale(1.04);
  }

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

  /* Reset mobile order on desktop */
  .pricing-card[data-tier="popular"] {
    order: 0;
  }

  /* Hide sticky CTA on desktop */
  .sticky-cta {
    display: none;
  }
}
