/* 
   iGenics Review Bridge Page Styles
   Matching Producer Site Aesthetics:
   - Primary Header/Navy Accent: #001e4a / #0a2540
   - CTA Highlight Color: #ffc000 (Vibrant Producer Yellow)
   - Fonts: Montserrat (Headings) + Roboto (Body)
   - Trust Badges & 180-Day Guarantee Styling
*/

:root {
  --primary-navy: #001e4a;
  --primary-navy-dark: #00122e;
  --accent-yellow: #ffc000;
  --accent-yellow-hover: #e6ac00;
  --dark-bg: #030f26;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --success-green: #16a34a;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

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

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

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

.text-center {
  text-align: center;
}

/* Top Sticky Trust Bar */
.trust-bar {
  background-color: var(--dark-bg);
  color: #fbbf24;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--accent-yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Header Area */
.main-header {
  background-color: var(--primary-navy);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
}

.logo img {
  height: 38px;
  width: auto;
}

.badge-trust {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-yellow);
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, var(--primary-navy) 0%, var(--dark-bg) 100%);
  color: var(--text-light);
  padding: 3rem 0 3.5rem;
}

.eyebrow {
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.eyebrow span {
  color: var(--accent-yellow);
  font-weight: 600;
}

.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 780px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
}

.micro-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* Layout Sections */
.section-white {
  background-color: #ffffff;
  padding: 3.5rem 0;
}

.section-gray {
  background-color: #f1f5f9;
  padding: 3.5rem 0;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
}

/* Producer Style Header Card (Header con fondo azul, texto blanco) */
.producer-header-card {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 1.25rem 2rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.producer-header-card h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0;
}

/* Quick Verdict Box */
.verdict-box {
  background: #ffffff;
  border: 2px solid var(--primary-navy);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.verdict-top {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.rating-badge {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-navy);
}

.verdict-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.verdict-pro h4 {
  color: var(--success-green);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.verdict-con h4 {
  color: #d97706;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.verdict-lists ul {
  list-style: none;
  padding-left: 0;
}

.verdict-lists li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #334155;
}

.verdict-lists li::before {
  content: "•";
  position: absolute;
  left: 0.4rem;
  font-weight: bold;
  color: var(--primary-navy);
}

/* CTA Buttons (Amarillo #ffc000, texto oscuro, efecto pulsing) */
.cta-button {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: var(--primary-navy-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 1.1rem 2.2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(255, 192, 0, 0.45);
  transition: all 0.25s ease-in-out;
  border: none;
  cursor: pointer;
  text-align: center;
}

.cta-button:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 192, 0, 0.6);
}

.cta-button.pulse {
  animation: pulse-animation 2.2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 192, 0, 0.7);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 14px rgba(255, 192, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 192, 0, 0);
  }
}

.cta-subtext {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.6rem;
  font-weight: 500;
}

/* Video Section */
.video-section-title {
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
}

.video-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 30, 74, 0.4);
  transition: background 0.3s ease;
}

.video-wrapper:hover .video-overlay {
  background: rgba(0, 30, 74, 0.25);
}

.play-button {
  width: 72px;
  height: 72px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.play-button svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-navy);
  margin-left: 4px;
}

.video-wrapper:hover .play-button {
  transform: scale(1.1);
}

.video-caption {
  color: #ffffff;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.video-below-copy {
  max-width: 680px;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  color: var(--text-muted);
}

/* Personal Story Layout */
.story-container {
  max-width: 850px;
  margin: 0 auto;
}

.story-title {
  font-size: 1.8rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
}

.story-body p {
  margin-bottom: 1.25rem;
  color: #334155;
}

.story-highlight-box {
  background-color: #f8fafc;
  border-left: 4px solid var(--primary-navy);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.8rem 0;
}

.story-highlight-box h4 {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.story-highlight-box ul {
  list-style: none;
  padding-left: 0;
}

.story-highlight-box li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #334155;
}

.story-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  border-left: 3px solid var(--accent-yellow);
  padding-left: 1rem;
  margin: 2rem 0;
}

/* Product Intro Grid */
.product-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.product-intro-text p {
  margin-bottom: 1.2rem;
  color: #334155;
}

.product-intro-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  max-height: 340px;
  object-fit: contain;
}

/* Ingredients Grid */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.ingredient-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ingredient-img-wrapper {
  height: 140px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f8fafc;
}

.ingredient-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-card h3 {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
}

.ingredient-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
}

.dosing-callout {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 1.8rem;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.dosing-callout p {
  font-size: 1.05rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

/* Honesty / Objections */
.honesty-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.honesty-title {
  font-size: 1.8rem;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 0.5rem;
}

.honesty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin: 1.8rem 0;
}

.honesty-box {
  padding: 1.5rem;
  border-radius: 8px;
}

.skip-box {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
}

.skip-box h4 {
  color: #dc2626;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.fit-box {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.fit-box h4 {
  color: #16a34a;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.honesty-box p {
  font-size: 0.95rem;
  color: #334155;
}

.honesty-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Guarantee Section */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.guarantee-badge img {
  width: 140px;
  height: auto;
}

.guarantee-text h3 {
  font-size: 1.6rem;
  color: #92400e;
  margin-bottom: 0.8rem;
}

.guarantee-text p {
  color: #78350f;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin: 2rem 0;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular {
  border-color: var(--accent-yellow);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.best-value {
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-lg);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-yellow);
  color: var(--primary-navy-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.value-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-navy);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.package-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.package-img img {
  max-height: 100%;
  object-fit: contain;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.package-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.package-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.pricing-cta {
  background: var(--primary-navy);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  text-align: center;
  transition: background 0.2s ease;
}

.pricing-cta.gold {
  background: var(--accent-yellow);
  color: var(--primary-navy-dark);
}

.pricing-cta:hover {
  opacity: 0.9;
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary-navy);
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8fafc;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.faq-answer p {
  font-size: 0.98rem;
  color: #334155;
  margin: 0;
}

/* Footer & Disclaimers */
.footer {
  background: var(--primary-navy-dark);
  color: #94a3b8;
  padding: 3rem 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.disclaimers p {
  margin-bottom: 0.75rem;
  text-align: justify;
}

/* Responsive Rules */
@media (max-width: 900px) {
  .product-intro-grid,
  .verdict-lists,
  .honesty-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .pricing-card.popular {
    transform: none;
  }

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