/* Provant Labs LFSP - GLP-1 Hair Loss */
/* Light theme, Manrope + Inter, mobile-first */

:root {
  --brand: #516274;       /* Steel Blue — accents */
  --brand-light: #EDF1F5; /* Ice Blue */
  --brand-dark: #2C3E50;  /* Deep Mineral */
  --text: #171B22;        /* Graphite — primary text */
  --text-light: #3A4A5A;  /* Graphite softened */
  --text-muted: #8A95A2;  /* Slate — tertiary */
  --bg: #FFFFFF;          /* White background */
  --bg-alt: #F2F4F7;      /* Cool Grey — alt sections */
  --bg-card: #FFFFFF;
  --bg-testimonial: #F2F4F7;
  --border: #D8DDE3;
  --success: #516274;     /* Steel Blue for badges */
  --warning: #516274;     /* Steel Blue — replaces gold */
  --cta-bg: #2C3E50;      /* Deep Mineral — CTA */
  --cta-hover: #3A4A5A;
  --save-badge: #2C3E50;  /* Deep Mineral */
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1080px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

a {
  color: var(--brand-light);
  text-decoration: none;
}

/* ==================== LAYOUT ==================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 48px 0;
}

section.alt-bg {
  background: var(--bg-alt);
}

section.brand-bg {
  background: var(--brand);
}

section.brand-bg-soft {
  background: var(--bg-alt);
  border-top: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
}

section.brand-bg-soft h2 {
  color: var(--brand-dark);
}

section.brand-bg-soft p {
  color: var(--text-light);
}

section.brand-bg-soft .cta-btn {
  background: var(--brand-dark);
}

/* ==================== TYPOGRAPHY ==================== */

h1, h2, h3 {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
}

h1 {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

h1 .highlight {
  color: var(--warning);
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--text);
}

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

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

.text-brand {
  color: var(--brand);
}

strong {
  font-weight: 600;
  color: var(--text);
}

/* ==================== HERO ==================== */

.hero {
  padding: 40px 0 48px;
  background: var(--bg);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.hero-image-col {
  flex-shrink: 0;
}

.hero-product-img {
  max-width: 440px;
  width: 100%;
  border-radius: 16px;
}

.hero-text-col {
  max-width: 560px;
}

.hero h1 {
  font-size: 1.75rem;
  margin: 0 0 12px;
}

.hero .subheadline {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero .subheadline em {
  font-style: normal;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 8px;
}

/* ==================== HERO TRUST BAR ==================== */

.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.hero-stars {
  color: var(--warning);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ==================== TRUST BADGE ==================== */

.trust-badge {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ==================== MEDIA BAR ==================== */

.media-bar {
  padding: 14px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.media-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.media-bar-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0;
}

.media-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.media-logo {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .media-bar .container {
    flex-direction: column;
    gap: 8px;
  }
  .media-logos {
    gap: 16px;
  }
}

/* ==================== CTA BUTTONS ==================== */

.cta-btn {
  display: inline-block;
  background: var(--cta-bg);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.cta-btn:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  color: #fff;
}

.cta-btn-full {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  padding: 16px 16px;
  font-size: 0.95rem;
}

.cta-section {
  text-align: center;
  padding: 32px 0;
}

/* ==================== PROBLEM DIAGNOSIS ==================== */

.problem-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.not-this-line {
  padding-left: 20px;
  text-indent: -20px;
  color: var(--text);
}

.underline-emphasis {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.venn-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-top: 32px;
  box-shadow: var(--shadow);
}

.venn-container {
  margin: 24px auto 0;
  text-align: center;
  max-width: 540px;
}

.venn-svg {
  max-width: 480px;
  margin: 0 auto;
}

.venn-labels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.venn-label {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: left;
}

.venn-label h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.venn-label p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: var(--text-light);
}

.venn-number {
  font-weight: 700;
}

.key-insight {
  background: var(--bg);
  border-left: 4px solid var(--brand);
  padding: 20px 24px;
  margin-top: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* ==================== EXPERT QUOTE ==================== */

.expert-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}

.expert-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--border);
}

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

.expert-content blockquote {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
  color: var(--text-light);
}

.expert-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.expert-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0;
}

.expert-badge {
  display: inline-block;
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 20px;
}

@media (max-width: 639px) {
  .expert-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }

  .expert-info {
    justify-content: center;
  }
}

/* ==================== BENEFITS ==================== */

.benefit-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.benefit-section:last-of-type {
  border-bottom: none;
}

.benefit-number {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-image {
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--bg-alt);
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.benefit-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-light);
}

.benefit-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ==================== TESTIMONIAL CALLOUT ==================== */

.testimonial-callout {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0 0;
  border-left: 3px solid var(--warning);
}

.testimonial-callout p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-light);
}

.testimonial-callout .name {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--warning);
}

/* ==================== STAT CALLOUT ==================== */

.stat-callout {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0 0;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-callout .stat-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--warning);
  display: block;
}

.stat-callout p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ==================== WARNING SIGNS ==================== */

.warning-list {
  list-style: none;
  padding: 0;
}

.warning-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

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

.warning-list li::before {
  content: "\26A0";
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.warning-box {
  background: rgba(81, 98, 116, 0.08);
  border: 1px solid rgba(81, 98, 116, 0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}

.warning-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ==================== TIMELINE ==================== */

.timeline {
  position: relative;
  padding-left: 32px;
  margin: 24px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--warning);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--warning);
}

.timeline-item h3 {
  font-size: 1rem;
  color: var(--warning);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.timeline-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.timeline-wrapper .timeline {
  flex: 1;
}

.timeline-product {
  flex: 0 0 200px;
  text-align: center;
}

.timeline-product-img {
  max-width: 200px;
  border-radius: var(--radius);
}

@media (max-width: 640px) {
  .timeline-wrapper {
    flex-direction: column;
  }
  .timeline-product {
    flex: none;
    margin-top: 16px;
  }
  .timeline-product-img {
    max-width: 140px;
    margin: 0 auto;
  }
}

/* ==================== HOW TO USE ==================== */

.how-to-use-section {
  padding: 40px 24px;
  background: var(--bg);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.how-to-use-line {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 8px;
}

.how-to-use-sub {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ==================== COMPARISON TABLE ==================== */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.comparison-table th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.comparison-table tr:nth-child(even) {
  background: var(--bg-alt);
}

.comparison-table .col-other {
  color: var(--text-muted);
}

.comparison-table .col-provant {
  color: var(--text);
  font-weight: 500;
}

.comparison-table .row-label {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* ==================== INGREDIENTS ==================== */

.ingredient-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.ingredient-card h3 {
  color: var(--warning);
}

.ingredient-card p {
  color: var(--text-light);
}

/* ==================== BULLET PITCH ==================== */

section.brand-bg .container {
  color: #fff;
}

.pitch-list {
  list-style: none;
  padding: 0;
}

.pitch-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

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

.pitch-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
}

/* ==================== PRICING ==================== */

.pricing-grid {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  margin-top: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 16px 20px 8px;
  margin-left: -20px;
  margin-right: -20px;
}

.pricing-grid::-webkit-scrollbar {
  display: none;
}

.pricing-card {
  min-width: calc(100vw - 56px);
  flex: 0 0 auto;
  scroll-snap-align: center;
  border: 2px solid var(--border);
  border-radius: 16px;
  text-align: center;
  position: relative;
  background: var(--bg-alt);
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.popular {
  border-color: var(--brand-dark);
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.18);
}

.pricing-badge-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: #fff;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  z-index: 2;
}

.pricing-badge-flag.badge-green {
  background: var(--success);
}

.pricing-badge-flag.badge-brand {
  background: var(--brand-dark);
}

.discount-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.pricing-header {
  background: var(--brand);
  padding: 20px 16px 16px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px 14px 0 0;
}

.pricing-header-featured {
  background: var(--brand-dark);
}

.supply-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.per-serving {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}

.free-shipping-tag {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-style: italic;
  font-size: 0.8rem;
  padding: 2px 12px;
  border-radius: 12px;
  margin-top: 4px;
}

.pricing-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-product-img {
  max-width: 260px;
  height: 220px;
  object-fit: contain;
  margin: 8px auto 16px;
  display: block;
}

.retail-savings {
  min-height: 44px;
  margin-bottom: 8px;
}

.price-block {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.retail-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.retail-price s {
  color: var(--text-muted);
}

.instant-savings {
  font-size: 0.85rem;
  color: var(--warning);
  font-weight: 600;
}

.pricing-card .price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 2px;
}

.price-total {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.purchase-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 4px;
}

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.trust-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text-muted);
  max-width: 80px;
  text-align: center;
  margin: 0 auto;
}

.trust-svg {
  width: 20px;
  height: 20px;
  color: var(--warning);
}

.discount-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 0;
  font-style: italic;
}

/* ==================== REVIEWS ==================== */

.review-aggregate {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.review-aggregate-stars {
  color: var(--brand);
  font-size: 1.6rem;
  letter-spacing: 3px;
}

.review-aggregate-score {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.review-aggregate-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-stars {
  color: var(--brand);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-verified {
  font-size: 0.72rem;
  font-weight: 600;
  color: #2E7D32;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.review-result {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.review-card blockquote {
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--text-light);
  flex-grow: 1;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.review-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}

.review-context {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==================== FINAL CTA ==================== */

.final-cta {
  text-align: center;
  padding: 48px 0;
  background: var(--brand);
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 24px;
}

.final-cta .cta-btn {
  background: #FFFFFF;
  color: var(--brand);
}

.final-cta .cta-btn:hover {
  background: #fff;
}

.final-cta .ps-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-top: 16px;
  font-style: italic;
}

/* ==================== CITATIONS ==================== */

.citations {
  background: var(--bg-alt);
  padding: 48px 0;
}

.citations h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.citation-item {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 2px solid var(--border);
  line-height: 1.5;
}

/* ==================== DISCLAIMER ==================== */

.disclaimer {
  text-align: center;
  padding: 32px 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
}

/* ==================== ANGER SECTION ==================== */

.anger-section {
  background: var(--bg-alt);
  border-top: 3px solid var(--warning);
  border-bottom: 3px solid var(--warning);
}

.anger-section h2 {
  color: var(--warning);
}

.anger-section p strong {
  color: var(--warning);
}

/* ==================== BEFORE / AFTER ==================== */

.ba-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.ba-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.ba-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.ba-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ba-label-after {
  background: var(--brand);
}

.ba-caption {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

.ba-name {
  font-style: normal;
  font-weight: 600;
  color: var(--brand);
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ==================== WHO IS PROVANT LABS ==================== */

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-text p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.about-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.about-icon svg {
  width: 28px;
  height: 28px;
}

.about-value-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text);
}

.about-value-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==================== IMAGINE SECTION ==================== */

.imagine-section {
  background: var(--bg-alt);
  padding: 48px 0;
}

.imagine-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 24px auto;
  text-align: left;
}

.imagine-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 1.02rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

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

.imagine-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--warning);
  font-weight: 700;
  font-size: 1.2rem;
}

.imagine-closer {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  color: var(--warning);
  margin-top: 24px;
}

/* ==================== COST COMPARISON ==================== */

.cost-anchor {
  margin: 24px 0 20px;
}

.cost-old {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cost-old s {
  text-decoration-color: var(--text-muted);
}

.cost-new {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0;
}

.cost-note {
  color: var(--text-muted);
  font-weight: 400;
}

.cost-reason {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.urgency-bar {
  max-width: 520px;
  margin: 0 auto 28px;
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.urgency-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.urgency-trust {
  white-space: nowrap;
}

.urgency-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.urgency-batch {
  color: var(--text);
  white-space: nowrap;
}

.urgency-progress {
  width: 100%;
  height: 5px;
  background: #F0E0DE;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.urgency-progress-fill {
  height: 100%;
  background: #C0392B;
  border-radius: 3px;
}

.urgency-note {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ==================== DATA CHART ==================== */

.data-chart {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}

.data-chart-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.data-chart-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.data-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.data-bar-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 90px;
  text-align: right;
}

.data-bar-track {
  flex: 1;
  height: 24px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
}

.data-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease-out;
}

.data-bar-placebo {
  background: var(--border);
}

.data-bar-active {
  background: var(--brand-dark);
}

.data-bar-value {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  min-width: 40px;
}

.data-chart-source {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ==================== CUSTOMER AGGREGATE ==================== */


/* ==================== FAQ ==================== */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  font-style: italic;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ==================== STICKY MOBILE CTA ==================== */

.sticky-cta {
  display: none;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 639px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 12px 16px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
    z-index: 999;
  }

  .sticky-cta .cta-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: var(--radius);
  }

  .disclaimer {
    padding-bottom: 80px;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    margin-bottom: 16px;
    padding: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .comparison-table tr:nth-child(even) {
    background: var(--bg-alt);
  }

  .comparison-table td {
    padding: 4px 0;
    border-bottom: none;
  }

  .comparison-table td.row-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--warning);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }

  .comparison-table td.col-other {
    font-size: 0.85rem;
    padding: 6px 0 6px 12px;
    border-left: 2px solid var(--border);
    margin-bottom: 6px;
  }

  .comparison-table td.col-other::before {
    content: "Others: ";
    font-weight: 600;
    color: var(--text-muted);
  }

  .comparison-table td.col-provant {
    font-size: 0.85rem;
    padding: 6px 0 6px 12px;
    border-left: 2px solid var(--warning);
    color: var(--text);
  }

  .comparison-table td.col-provant::before {
    content: "Provant: ";
    font-weight: 600;
    color: var(--warning);
  }
}

@media (min-width: 640px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.85rem; }

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

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-product-img {
    max-width: 480px;
  }

  .venn-labels {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .venn-label {
    flex: 1;
    min-width: 200px;
  }

  .pricing-grid {
    overflow-x: visible;
    padding: 16px 0 8px;
    margin-left: 0;
    margin-right: 0;
  }

  .pricing-card {
    min-width: 0;
    flex: 1;
  }

  .pricing-card.popular {
    transform: scale(1.03);
    z-index: 2;
  }

  .pricing-card.popular:hover {
    transform: scale(1.05);
  }

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

  .benefit-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
  }

  .benefit-image {
    width: 55%;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .benefit-text {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 64px 0;
  }
}
