/* ===================================
           GLOBAL RESET & BASE STYLES
           =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ================================================
               STRATOS COLOR SCHEME - Blue, Black, Gray
               ================================================ */

  /* PRIMARY BLUES (Main Brand Colors) */
  --primary-blue: #08579b;
  --primary-blue-dark: #06467c;
  --primary-blue-darker: #06355c;
  --primary-blue-medium: #074a84;

  /* ACCENT BLUES (Bright Highlights) */
  --accent-blue: #0071e3;
  --accent-blue-light: #1c8cf9;
  --accent-blue-medium: #26699b;

  /* BACKGROUND BLUES (Light Sections) */
  --bg-blue-lightest: #edf5fc;
  --bg-blue-light: #d7eeff;
  --bg-blue-medium: #cce2f9;
  --bg-blue-alt: #b4cce1;
  --bg-blue-hover: #84abcd;

  /* DARK COLORS (Black/Dark Sections) */
  --dark-primary: #101215;
  --dark-middle: #191c20; /* NEW: Between #101215 and #212529 */
  --dark-black: #0d0d0d;
  --dark-gray: #212529;
  --dark-medium: #343a40;

  /* NEUTRAL GRAYS */
  --gray-darkest: #495057;
  --gray-dark: #6c757d;
  --gray-medium: #828c95;
  --gray-light: #adb5bd;
  --gray-lighter: #ced4da;
  --gray-border: #dee2e6;
  --gray-bg-light: #e9ecef;
  --gray-bg-lightest: #f8f9fa;

  /* WHITE */
  --white: #ffffff;

  /* ACCENT COLORS (CTAs & Special) */
  --accent-yellow: #ffd814; /* Original yellow for main CTAs ✅ */
  --accent-yellow-dark: #f7ca00;
  --accent-yellow-darker: #fcd200;
  --accent-red: #d72429;

  /* ORANGE (Small Accents Only - 5% usage) */
  --orange-accent: #ee8100;
  --orange-accent-dark: #720b0b;

  /* UI STATUS COLORS */
  --success-green: #198754;
  --success-green-light: #d1e7dd;
  --danger-red: #dc3545;
  --danger-red-light: #f8d7da;
  --warning-yellow: #ffc107;
  --warning-yellow-light: #fff3cd;
  --info-blue: #0dcaf0;
  --info-blue-light: #cff4fc;

  /* GRADIENTS */
  --gradient-blue-dark: linear-gradient(135deg, #06355c 30%, #08579b);
  --gradient-blue-hero: linear-gradient(135deg, #0f4c75 0%, #1b6ca8 100%);
  --gradient-blue-light: linear-gradient(135deg, #edf5fc 0%, #d7eeff 100%);

  /* Legacy mappings for compatibility */
  --primary-black: #1a1a1a; /* Fixed: was #08579b (blue), now proper dark gray/black */
  --dark-gray-old: #1a1a1a;
  --medium-gray: #4a4a4a;
  --light-gray: #edf5fc;
  --orange-start: #ffd814;
  --orange-end: #f7ca00;
  --gradient-orange: #ffd814;
  --gradient-orange-radial: #ffd814;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #212529;
  --gray-900: #111827;

  /* Typography */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Montserrat", -apple-system, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-padding: 20px;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
           TYPOGRAPHY
           =================================== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

strong {
  font-weight: 700;
  color: var(--gray-900);
}

/* Mobile Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
}

/* ===================================
           LAYOUT CONTAINERS
           =================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 4rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

.section-gray {
  background-color: var(--bg-blue-lightest);
}

.section-dark {
  background-color: var(--dark-gray);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }

  .section-tight {
    padding: 1.5rem 0;
  }
}

.text-center {
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
           BUTTONS
           =================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 216, 20, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 216, 20, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark-gray);
  border: 2px solid var(--medium-gray);
}

.btn-secondary:hover {
  background: var(--bg-blue-lightest);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ===================================
           HERO SECTION (SPLIT LAYOUT)
           =================================== */
.hero {
  background: var(--gradient-blue-dark); /* Stratos blue gradient */
  background-image: url("assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 5rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* 60/40 split - więcej space dla H1 */
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero .subtitle {
  font-size: 1.5rem;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.hero-image {
  text-align: center;
}

.hero .product-image {
  max-width: 450px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(8, 87, 155, 0.4));
}

@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.25rem;
  }

  .hero .product-image {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.125rem;
  }

  .hero .product-image {
    max-width: 280px;
  }
}

/* ===================================
           SYSTEM INTRO SECTION
           =================================== */
.system-intro {
  background: var(--white);
  padding: 4rem 0;
}

.system-intro h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.system-intro .intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--gray-700);
}

.system-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.system-feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-blue-lightest);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.system-feature-item:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(8, 87, 155, 0.15);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .system-features {
    grid-template-columns: 1fr;
  }
}

.system-feature-item .feature-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}

.system-feature-item h4 {
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.system-feature-item p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ===================================
           INGREDIENTS SECTION
           =================================== */
.ingredients-section {
  background: var(--bg-blue-lightest);
  padding: 4rem 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ingredient-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(8, 87, 155, 0.15);
}

.ingredient-image {
  max-width: 180px;
  width: 100%;
  height: 180px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.ingredient-card h3 {
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.dosage {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #ee8100, #c66d00);
  color: var(--white);
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0.5rem 0 1rem;
  box-shadow: 0 2px 8px rgba(238, 129, 0, 0.3);
}

.ingredient-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 0;
}

/* ===================================
           SEXUAL PERFORMANCE SECTION
           =================================== */
/* ===================================
           SEXUAL PERFORMANCE - DARK SECTION
           =================================== */
/* ===================================
           SEXUAL PERFORMANCE - 3 PART STRUCTURE (Stratos Style)
           =================================== */

/* PART 1: Header with Arrow Down (Dark Background) */
.sexual-performance-header {
  background: var(--dark-primary);
  padding: 5rem 0 0 0;
  position: relative;
}

.sexual-performance-header-content {
  padding-bottom: 5rem;
}

.sexual-performance-header h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
}

.sexual-performance-header h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Blue gradient for key words */
.sexual-performance-header h3 .highlight {
  background: linear-gradient(135deg, #1c8cf9, #08579b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sexual-performance-header .content-text {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #b0b0b0;
}

/* Arrow Down SVG (Stratos Style) */
.section-arrow-down {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.section-arrow-down svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.section-arrow-down .shape-fill {
  fill: #ffffff;
}

/* PART 2 & 3: Two Sections - 2x2 Grid (3-Step Gradient) */
.sexual-performance-boxes {
  padding: 4rem 0;
}

/* First section - MIDDLE (between header and last section) */
.sexual-performance-boxes.first {
  background: var(--white); /* #FFFFFF biały */
}

/* Second section - DARK GRAY (lightest - gradient down) */
.sexual-performance-boxes.second {
  background: linear-gradient(135deg, #0f4c75 0%, #1b6ca8 100%);
}

.mechanism-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mechanism-item {
  text-align: center;
  background: transparent;
  border-radius: 12px;
  padding: 1.5rem;
}

.mechanism-graphic {
  width: 100%;
  aspect-ratio: 416 / 230;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #0a0a0a;
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(8, 87, 155, 0.15);
}

.mechanism-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mechanism-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.mechanism-item p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* White section: black text */
.sexual-performance-boxes.first .mechanism-item h4 {
  color: #1a1a1a;
}
.sexual-performance-boxes.first .mechanism-item p {
  color: #444444;
}

/* Blue section: white text */
.sexual-performance-boxes.second .mechanism-item h4 {
  color: #ffffff;
}
.sexual-performance-boxes.second .mechanism-item p {
  color: #dce8f0;
}

@media (max-width: 768px) {
  .sexual-performance-header {
    padding: 4rem 0.75rem 0 0.75rem;
  }

  .sexual-performance-header-content {
    padding-bottom: 4rem;
  }

  .sexual-performance-header h2 {
    font-size: 2rem;
  }

  .sexual-performance-header h3 {
    font-size: 1.25rem;
  }

  .sexual-performance-boxes {
    padding: 2rem 0;
  }

  .mechanism-grid-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mechanism-item {
    padding: 0.75rem;
  }

  .mechanism-graphic {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-arrow-down {
    height: 40px;
  }

  .section-arrow-down svg {
    height: 40px;
  }
}

/* ===================================
           HOW IT WORKS - ALTERNATING SECTIONS
           =================================== */

/* Header Section - Introduces the 3 Steps */
.steps-header {
  background: var(--white);
  padding: 4rem 0 2rem 0;
}

.steps-header .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.steps-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.steps-header p {
  font-size: 1.25rem;
  color: var(--gray-700);
}

/* Step Section Base */
.step-section {
  padding: 5rem 0;
}

.step-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Step 1: White BG, Text Left, Image Right */
.step-section-1 {
  background: var(--white);
}

/* Step 2: Dark BG, Image Left, Text Right */
.step-section-2 {
  background: var(--dark-gray);
}

.step-section-2 .container {
  grid-template-columns: 1fr 1fr;
}

/* Dark Section - White Text (More Specific Selectors) */
.step-section-2 .step-content h3 {
  color: var(--white);
}

.step-section-2 .step-content p {
  color: var(--white);
}

.step-section-2 .step-benefits li {
  color: var(--white);
}

.step-section-2 .check-icon {
  color: var(--accent-blue-light);
}

/* Step 3: White BG, Text Left, Image Right */
.step-section-3 {
  background: var(--bg-blue-lightest);
}

/* Text Content */
.step-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-black);
}

.step-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.step-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-benefits li {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-benefits .check-icon {
  color: var(--success-green);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Image Container */
.step-image {
  text-align: center;
}

.step-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile-only image (inside step-content, below h3) */
.step-image-mobile {
  display: none;
}

.step-image-mobile img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

/* Image Left Layout (Step 2) */
.step-section-2 .step-image {
  order: -1; /* Move image to left */
}

/* Responsive */
@media (max-width: 968px) {
  .steps-header h2 {
    font-size: 2rem;
  }

  .steps-header p {
    font-size: 1.125rem;
  }

  .step-section .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .step-section .step-image {
    display: none; /* Hide desktop image on mobile */
  }

  .step-image-mobile {
    display: block; /* Show inline image below h3 on mobile */
  }

  .step-content h3 {
    font-size: 2rem;
  }

  .step-content p,
  .step-benefits li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .steps-header {
    padding: 3rem 0 1.5rem 0;
  }

  .steps-header h2 {
    font-size: 1.75rem;
  }

  .steps-header p {
    font-size: 1rem;
  }

  .step-section {
    padding: 3rem 0;
  }

  .step-content h3 {
    font-size: 1.75rem;
  }
}

/* ===================================
           BENEFITS SECTION
           =================================== */
.benefits-section {
  background: var(--white);
  padding: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-blue-lightest);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(8, 87, 155, 0.15);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: block;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card h4 {
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--gray-700);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ===================================
           FREE E-BOOKS SECTION
           =================================== */
/* ===================================
           EBOOK SECTION - MASTER VERSION
           =================================== */
.ebook-section-dark {
  background: #171717;
  padding: 50px 0;
}

.section-title-white {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}

.section-subtitle-white {
  text-align: center;
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2.5rem; /* Reduced from 4rem */
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}

.ebook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; /* Reduced from 3rem */
  max-width: 1000px;
  margin: 0 auto 2rem; /* Reduced bottom margin from 3rem */
}

.ebook-card-dark {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.75rem; /* Reduced from 2.5rem */
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative; /* For absolute badge */
  border: 3px solid var(--primary-blue);
}

.bonus-badge-dark {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #ee8100,
    #c66d00
  ); /* Orange gradient like 500mg */
  color: #ffffff; /* White text on orange */
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  /* ABSOLUTE POSITIONING - overlaid on image */
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(238, 129, 0, 0.3); /* Orange shadow */
}

.ebook-cover-full {
  width: 100%;
  height: auto;
  margin: 0 0 1rem 0; /* Reduced from 1.5rem */
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ebook-title-dark {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}

.ebook-subtitle-dark {
  font-style: italic;
  color: #666666;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  font-size: 0.95rem;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}

.retail-price-clean {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0; /* Changed from 0.5rem - now inline */
  margin-right: 1.5rem; /* Space between price and "Today FREE" */
  display: inline-block; /* Inline layout */
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}

.price-strike-clean {
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
}

.today-free-clean {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem 0; /* Reduced bottom margin from 1.5rem */
  display: inline-block; /* Inline layout with retail price */
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}

.free-text-clean {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ee8100; /* Orange like 500mg dosage */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ebook-description-dark {
  color: #444444;
  line-height: 1.6;
  font-size: 0.95rem;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}

.total-bonus-simple {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem 0;
}

.bonus-value-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}

.value-strike-simple {
  text-decoration: line-through;
  font-size: 1.3rem;
  font-weight: 700;
  color: #cccccc;
}

.cta-button-bonus-simple {
  display: inline-block;
  background: var(--accent-yellow);
  color: #000000;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 216, 20, 0.3);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}

.cta-button-bonus-simple:hover {
  background: linear-gradient(135deg, #ff9000, #d67700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 20, 0.4);
}

@media (max-width: 768px) {
  .section-title-white {
    font-size: 2rem;
  }

  .ebook-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ebook-card-dark {
    padding: 1.5rem; /* Reduced from 2rem to match desktop reduction */
  }

  .free-text-clean {
    font-size: 1.3rem;
  }
}

/* ===================================
           TESTIMONIALS SECTION
           =================================== */
.testimonials-section {
  background: var(--bg-blue-lightest);
  padding: 4rem 0;
}

.testimonials-hero-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto 3rem;
  max-width: 800px;
}

.testimonials-hero-images img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonials-hero-images img:hover {
  transform: translateY(-5px);
}

.testimonials-hero-images img:nth-child(3) {
  width: 180px;
  height: 180px;
  border: 3px solid var(--primary-orange);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.testimonial-portrait {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.testimonial-stars {
  color: var(--primary-orange);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-800);
  margin: 1rem 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.testimonial-product-img {
  width: 60px;
  height: auto;
}

.testimonial-purchase-info {
  flex: 1;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.testimonial-date {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.testimonial-package {
  font-size: 0.875rem;
  color: var(--primary-orange);
  font-weight: 600;
}

/* ===================================
           PRICING SECTION - STRATOS OPTIMIZED ⭐
           =================================== */
.pricing-section {
  background: var(--white); /* Changed from light-gray to white */
  padding: 2.5rem 0; /* Compressed: 4rem → 2.5rem (-37.5%) */
}

.section-header {
  text-align: center;
  margin-bottom: 1rem; /* Compressed: 2rem → 1rem (-50%) */
}

.section-header h2 {
  font-size: 2rem; /* Compressed: 2.5rem → 2rem (-20%) */
  font-weight: 800;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem; /* Compressed: 3rem → 1.5rem (-50%) */
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0.75rem 1.5rem 1.5rem 1.5rem; /* Compressed: 1.25/2/2.5rem → 0.75/1.5/1.5rem */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 30px rgba(8, 87, 155, 0.2);
}

.pricing-card.featured {
  background: #e3f2fd;
  border: 3px solid var(--info-blue);
}

.pricing-header {
  margin-bottom: 0.75rem; /* Compressed: 1.5rem → 0.75rem (-50%) */
}

.package-name {
  font-size: 1.5rem; /* Compressed: 1.75rem → 1.5rem (-14%) */
  font-weight: 800;
  color: #08579b; /* Blue for all packages */
  margin-bottom: 0.5rem;
}

/* Featured package title - darker blue */
.pricing-card.featured .package-name {
  color: #0071e3;
}

.package-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* Package badge - REMOVED per request */

.package-bottles {
  margin: 0.5rem 0; /* Compressed: 1rem → 0.5rem (-50%) */
}

.package-bottles img {
  max-width: 200px;
  height: 200px; /* Compressed: 240px → 200px (Stratos style, fixed height for ALL packages) */
  object-fit: contain; /* Maintain aspect ratio */
}

.pricing-amount {
  margin: 0.5rem 0; /* Compressed: 0.75rem → 0.5rem (-33%) */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.price-per-bottle {
  font-size: 3rem; /* Compressed: 3.5rem → 3rem (-14%) */
  font-weight: 800;
  color: var(--primary-black);
  line-height: 1;
}

.price-label {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* LEFT ALIGN */
  justify-content: center;
  text-align: left; /* LEFT ALIGN */
  line-height: 1.2;
}

.price-label-per {
  display: block;
}

.price-label-bottle {
  display: block;
}

.savings {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-black);
  margin: 0.5rem 0; /* Compressed: 1rem → 0.5rem (-50%) */
}

/* Wrapper for savings + bonus to maintain consistent height */
.savings-bonus-wrapper {
  min-height: 90px; /* Space for savings + bonus indicator */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem; /* Minimal space between savings and bonus */
}

/* ⭐ FIXED HEIGHT: 24px */
.bonus-indicator {
  background: var(--info-blue);
  color: var(--white);
  padding: 0;
  height: 24px;
  line-height: 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  margin: 0.5rem 0; /* Compressed: 1rem → 0.5rem (-50%) */
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-indicator-none {
  padding: 0;
  height: 24px;
  line-height: 24px;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-btn {
  background: #f7ca00; /* Yellow CTA */
  color: var(--primary-black);
  padding: 0.75rem 1.5rem; /* Compressed: 1rem 2rem → 0.75rem 1.5rem */
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 800;
  margin-top: 0.5rem; /* Reduced space from savings/bonus above */
  text-decoration: none;
  display: block;
  margin: 1rem 0; /* Compressed: 1.5rem → 1rem */
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background: #e5ba00; /* Darker on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(247, 202, 0, 0.4);
}

/* Pulse animation for featured package CTA */
.pricing-card.featured .add-to-cart-btn {
  animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 202, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(247, 202, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 202, 0, 0);
  }
}

.money-back-guarantee {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin: 0.5rem 0; /* Reduced 50%: 1rem → 0.5rem */
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem 0; /* Reduced 50%: 1rem → 0.5rem */
  flex-wrap: wrap;
}

.total-price {
  font-size: 1rem;
  color: var(--gray-700);
  margin: 0.5rem 0; /* Reduced 50%: 1rem → 0.5rem */
  line-height: 1.5; /* Reduced from 1.8 for better balance */
}

.total-price .original {
  text-decoration: line-through;
  color: var(--gray-500);
}

.total-price .final {
  font-weight: 700;
  color: var(--primary-black);
}

.shipping-info {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.75rem; /* Reduced from 1.5rem for better balance */
  display: block;
}

/* ⭐ STRATOS OPTIMIZATION: Większy social proof */
.social-proof {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-proof p {
  font-size: 1.25rem; /* ZWIĘKSZONE z 0.875rem → 1.25rem ⭐ */
  color: var(--gray-700);
  margin: 0;
}

.social-proof strong {
  font-weight: 800;
  color: var(--primary-black);
  font-size: 1.5rem; /* Jeszcze większy rating */
}

.star-icon {
  color: #ffd700;
  font-size: 1.5rem;
}

/* Social Proof in Pricing Section - MORE SPACE BELOW ⭐ */
.social-proof-pricing {
  text-align: center;
  margin-top: 2rem; /* Compressed: 4rem → 2rem (-50%) */
  padding: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.social-proof-pricing p {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin: 0;
}

.social-proof-pricing strong {
  font-weight: 800;
  color: var(--primary-black);
  font-size: 1.3rem;
}

/* ===================================
           RESPONSIVE
           =================================== */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .price-per-bottle {
    font-size: 3rem;
  }

  .social-proof p {
    font-size: 1.125rem;
  }

  .social-proof strong {
    font-size: 1.375rem;
  }
}
/* ===================================
           VS THEM COMPARISON - STRATOS STYLE ⭐
           =================================== */
.vs-them-section {
  background: linear-gradient(135deg, #0f4c75 0%, #1b6ca8 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.vs-them-section .section-header h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.vs-them-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

/* Two-column layout: Image LEFT, Table RIGHT */
.vs-them-wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto 0; /* REDUCED: 3rem → 2rem top margin */
  padding: 0 1rem;
}

/* LEFT: Product Image Container */
.vs-them-image {
  flex: 0 0 45%;
  position: relative;
}

.vs-them-image-frame {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  overflow: hidden;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.vs-them-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* RIGHT: Comparison Table Container */
.vs-them-table {
  flex: 0 0 50%;
}

.comparison-table {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

/* Table headers - Light Blue Columns for Products */
.comparison-table thead {
  background: var(--white);
}

.comparison-table th {
  padding: 1rem 1rem; /* REDUCED: 1.5rem → 1rem vertical */
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-bottom: 2px solid var(--gray-200);
}

.comparison-table th:first-child {
  background: var(--white);
  color: var(--gray-800);
  text-align: left;
  padding-left: 1.5rem;
}

.comparison-table th:nth-child(2) {
  background: #c7e6f5; /* Light blue for PRIMAL ORIGIN */
  color: #0f4c75;
}

.comparison-table th:nth-child(3) {
  background: var(--white);
  color: var(--gray-800);
}

/* Table body rows */
.comparison-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 0.875rem 1rem; /* REDUCED: 1.25rem → 0.875rem vertical */
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-800);
  padding-left: 1.5rem;
}

/* Product column - light blue background */
.comparison-table tbody td:nth-child(2) {
  background: rgba(199, 230, 245, 0.3);
}

/* Icons */
.check-icon {
  color: var(--success-green);
  font-size: 1.75rem;
  font-weight: 700;
}

.x-icon {
  color: var(--danger-red);
  font-size: 1.75rem;
  font-weight: 700;
}

.question-icon {
  color: var(--gray-400);
  font-size: 1.5rem;
}

/* Responsive - Mobile Stack */
@media (max-width: 968px) {
  .vs-them-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .vs-them-image,
  .vs-them-table {
    flex: 0 0 100%;
  }

  .vs-them-image-frame {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .vs-them-section {
    padding: 3rem 0;
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem; /* REDUCED: 1rem → 0.75rem vertical */
  }

  .comparison-table td:first-child {
    padding-left: 1rem;
  }

  .comparison-table th:first-child {
    padding-left: 1rem;
  }
}

/* ===================================
           FAQ SECTION (ACCORDION)
           =================================== */
.faq-section {
  background: var(--bg-blue-lightest);
  padding: 4rem 0;
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 700;
  color: var(--primary-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: var(--bg-blue-lightest);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--medium-gray);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  color: var(--gray-700);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer-content {
  padding-top: 0.5rem;
}

/* ===================================
           GUARANTEE SECTION
           =================================== */
.guarantee-section {
  background: var(--white);
  padding: 4rem 0;
}

.guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-blue-lightest);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.guarantee-badge {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  box-shadow: 0 6px 25px rgba(255, 216, 20, 0.4);
}

.guarantee-box h2 {
  margin-bottom: 1.5rem;
}

.guarantee-box p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
}

/* ===================================
           FOOTER
           =================================== */
.footer {
  background: #000000; /* Czarne tło */
  color: #ffffff; /* Biały tekst */
  padding: 3rem 0 2rem;
}

/* Logo EPIC X */
.footer-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.epicx-logo {
  max-width: 180px;
  height: auto;
}

/* German Disclaimer Text */
.footer-disclaimer {
  font-size: 12px; /* 12px jak wymagane */
  line-height: 1.7;
  max-width: 1200px;
  margin: 0 auto 2rem;
  color: #ffffff; /* Biały */
  text-align: center;
}

.footer-disclaimer p {
  margin: 0;
}

/* Footer Links - Horizontal */
.footer-links {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-link {
  color: #ffffff; /* Biały */
  text-decoration: none;
  margin: 0 0.8rem;
  font-size: 12px; /* 12px */
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #4a90e2; /* Light blue on hover */
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .epicx-logo {
    max-width: 140px;
  }

  .footer-disclaimer {
    font-size: 11px; /* Slightly smaller on mobile */
    padding: 0 1rem;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .footer-link {
    font-size: 11px;
    margin: 0;
  }
}

/* ===================================
           RESPONSIVE
           =================================== */
@media (max-width: 768px) {
  .pricing-grid,
  .benefits-grid,
  .ingredients-grid,
  .steps-grid,
  .testimonials-grid,
  .ebooks-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-box {
    padding: 2rem 1.5rem;
  }

  .testimonials-hero-images {
    gap: 0.5rem;
    width: 100%;
  }

  .testimonials-hero-images img {
    flex: 1;
    width: 0;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .testimonials-hero-images img:nth-child(3) {
    flex: 1.3;
    width: 0;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===================================
           GERMAN MARKET HERO SECTION CSS
           =================================== */
/* ===== TOP CREDIBILITY BAR ===== */
.top-credibility-bar {
  background: #d4e8e0;
  padding: 0.875rem 0;
  text-align: center;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.credibility-text {
  margin: 0;
  color: #2d3748;
  font-weight: 500;
}

.cred-item.highlight {
  font-weight: 700;
  color: #08579b;
}

.separator {
  margin: 0 0.75rem;
  opacity: 0.5;
}

/* ===== NAVIGATION BAR ===== */
.main-nav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: static;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #08579b, #0071e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text {
  font-size: inherit;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-menu a {
  color: #2d3748;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #08579b;
}

.nav-cta {
  background: linear-gradient(135deg, #ffd814, #f7ca00);
  color: #000000;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(255, 216, 20, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 216, 20, 0.4);
  background: linear-gradient(135deg, #f7ca00, #fcd200);
}

/* ===== HERO SECTION ===== */
.hero-german {
  background:
    linear-gradient(
      135deg,
      rgba(6, 53, 92, 0.7) 0%,
      rgba(8, 87, 155, 0.7) 100%
    ),
    url("bg-hero.webp") center / cover no-repeat;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

/* 40/60 Grid */
.hero-grid-50-50 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===== PRODUCT SIDE (LEFT) ===== */
.hero-product-side {
  position: relative;
}

.product-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

/* Product Image Placeholder */
.hero-product-img {
  position: relative;
  z-index: 2;
  max-width: 480px;
  max-height: 520px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

/* Placeholder Bottle */
.product-placeholder {
  width: 400px;
  height: 500px;
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  border-radius: 50px 50px 60px 60px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-placeholder::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
  border-radius: 10px 10px 0 0;
}

.product-placeholder-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #08579b, #0071e3);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  width: 80%;
}

.product-placeholder-label h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-placeholder-label p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Natural Elements Placeholders */
.natural-element {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.6;
}

/* Glow Behind Product */
.product-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 216, 20, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

/* ===== CONTENT SIDE (RIGHT) ===== */
.hero-content-side {
  color: white;
}

.hero-h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: white;
}

.hero-subheadline {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

/* ===== TRUST BADGES ROW ===== */
.trust-badges-row {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.badge-circle {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: #2d3748;
  padding: 0.5rem;
}

.badge-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .badge-img {
    width: 65px;
    height: 65px;
  }
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 968px) {
  .container {
    padding: 0 1.5rem;
  }

  .credibility-text {
    font-size: 0.75rem;
  }

  .separator {
    margin: 0 0.5rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }

  .hero-german {
    padding: 1.5rem 0;
  }

  .hero-grid-50-50 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-product-side {
    order: 1;
  }

  .hero-content-side {
    order: 2;
    text-align: center;
  }

  .hero-h1 {
    font-size: 2rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .trust-badges-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 235px;
    margin-left: auto;
    margin-right: auto;
  }

  .badge-circle {
    width: 65px;
    height: 65px;
    font-size: 0.625rem;
  }

  .product-placeholder {
    width: 300px;
    height: 380px;
  }

  .product-container {
    min-height: auto;
  }

  .hero-product-img {
    max-width: 100%;
    max-height: none;
  }

  .natural-element {
    width: 80px !important;
    height: 80px !important;
  }

  .product-glow {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 640px) {
  .cred-item:not(.highlight) {
    display: none;
  }

  .cred-item:last-child {
    display: inline;
  }

  .separator {
    display: none;
  }

  .credibility-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
}

/* CLINICAL EVIDENCE SECTION STYLES */
.clinical-evidence {
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  padding: 5rem 0;
}

.clinical-evidence .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #08579b;
  text-align: center;
  margin-bottom: 1rem;
}

.clinical-evidence .section-intro {
  text-align: center;
  font-size: 1.125rem;
  color: #495057;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Main Study Card */
.study-main-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(8, 87, 155, 0.08);
  margin-bottom: 3rem;
}

.study-title {
  font-size: 1.75rem;
  color: #08579b;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Study Metadata */
.study-metadata {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-icon {
  font-size: 1.5rem;
}

.meta-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
}

.meta-value {
  font-size: 1rem;
  color: #212529;
  font-weight: 600;
}

/* Results Visualization */
.results-visualization {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.results-heading {
  font-size: 1.25rem;
  color: #08579b;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.result-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.result-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #495057;
}

.result-bar-container {
  background: #e9ecef;
  border-radius: 20px;
  height: 36px;
  position: relative;
  overflow: hidden;
}

.result-bar {
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  transition: width 1s ease-out;
}

.result-bar-active {
  background: linear-gradient(90deg, #198754 0%, #20c997 100%);
}

.result-bar-placebo {
  background: linear-gradient(90deg, #adb5bd 0%, #ced4da 100%);
}

.result-percentage {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.statistical-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #198754;
  font-weight: 600;
}

/* Methodology Details (Expandable) */
.methodology-details {
  margin: 2rem 0;
  border: 2px solid #08579b;
  border-radius: 8px;
  overflow: hidden;
}

.methodology-summary {
  background: #edf5fc;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.125rem;
  color: #08579b;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.methodology-summary:hover {
  background: #d7eeff;
}

.methodology-content {
  padding: 2rem;
  background: white;
}

.methodology-content h4 {
  color: #08579b;
  font-size: 1.125rem;
  margin: 1.5rem 0 0.75rem;
}

.methodology-content h4:first-child {
  margin-top: 0;
}

.methodology-list {
  list-style: none;
  padding-left: 0;
}

.methodology-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.6;
  color: #495057;
}

.methodology-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #08579b;
  font-weight: 700;
}

/* Study Limitations Box (CRITICAL FOR GERMAN MARKET) */
.study-limitations-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

.limitations-heading {
  color: #856404;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.limitations-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.limitations-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: #856404;
  font-weight: 500;
}

.limitations-list li:before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.honesty-statement {
  font-style: italic;
  color: #856404;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid #ffc107;
}

/* Ingredient Research Section */
.ingredient-research-section {
  margin-top: 4rem;
}

.ingredient-research-heading {
  font-size: 2rem;
  color: #08579b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.ingredient-research-intro {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 2rem;
}

.ingredient-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.ingredient-research-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(8, 87, 155, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.ingredient-research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(8, 87, 155, 0.15);
}

.ingredient-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ingredient-icon {
  font-size: 2rem;
}

.ingredient-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.ingredient-name {
  font-size: 1.25rem;
  color: #08579b;
  margin: 0;
}

/* Study Meta Badges - NEW */
.study-meta-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.study-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-foundation {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.badge-established {
  background: linear-gradient(135deg, #198754 0%, #20c997 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(25, 135, 84, 0.3);
}

.badge-recent {
  background: linear-gradient(135deg, #0071e3 0%, #00c2ff 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

.study-validation {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 600;
  font-style: italic;
}

.study-citation {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.study-result {
  font-size: 0.95rem;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.study-link-btn {
  display: inline-block;
  color: #08579b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.study-link-btn:hover {
  color: #06467c;
  text-decoration: underline;
}

/* Evidence Quality Note */
.evidence-quality-note {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 3rem;
  border: 2px solid #dee2e6;
}

.evidence-quality-note h4 {
  color: #08579b;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.evidence-quality-note ul {
  margin: 1rem 0;
  padding-left: 2rem;
  color: #495057;
}

.evidence-quality-note ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .clinical-evidence {
    padding: 3rem 0;
  }

  .study-main-card {
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }

  .study-card-top {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(8, 87, 155, 0.08);
    margin-bottom: 1.5rem;
  }

  .study-card-top .study-metadata {
    margin-bottom: 0;
  }

  .results-visualization {
    margin: 0 0 1.5rem;
    padding: 0;
  }

  .methodology-details {
    margin: 0 0 1.5rem;
  }

  .study-metadata {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .result-row {
    grid-template-columns: 100px 1fr;
    gap: 0.5rem;
  }

  .result-bar-container {
    height: 32px;
  }

  .ingredient-cards-grid {
    grid-template-columns: 1fr;
  }

  .clinical-evidence .section-heading {
    font-size: 1.75rem;
  }
}

/* IS THIS RIGHT FOR ME? SECTION STYLES */
.product-fit-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 0;
}

.fit-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #08579b;
  text-align: center;
  margin-bottom: 1rem;
}

.fit-intro {
  text-align: center;
  font-size: 1.125rem;
  color: #495057;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Decision Grid */
.fit-decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.fit-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fit-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fit-icon {
  font-size: 2rem;
}

.fit-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.fit-yes {
  border-left: 4px solid #198754;
}

.fit-yes .fit-card-header h3 {
  color: #198754;
}

.fit-no {
  border-left: 4px solid #dc3545;
}

.fit-no .fit-card-header h3 {
  color: #dc3545;
}

.fit-list {
  list-style: none;
  padding-left: 0;
}

.fit-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.6;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
}

.fit-list li:last-child {
  border-bottom: none;
}

.fit-yes .fit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #198754;
  font-weight: 700;
  font-size: 1.25rem;
}

.fit-no .fit-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Unsure Box */
.fit-unsure-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.fit-unsure-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fit-unsure-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #856404;
  margin: 0;
}

.fit-unsure-content p {
  color: #856404;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.fit-unsure-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.fit-unsure-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: #856404;
}

.fit-unsure-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.fit-important {
  padding-top: 1rem;
  border-top: 1px solid #ffc107;
  font-style: italic;
}

/* Realistic Expectations */
.expectations-section {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(8, 87, 155, 0.08);
  margin-bottom: 3rem;
}

.expectations-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #08579b;
  text-align: center;
  margin-bottom: 2rem;
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.expectations-card {
  padding: 1.5rem;
  border-radius: 8px;
}

.expectations-can {
  background: #d1e7dd;
  border-left: 4px solid #198754;
}

.expectations-cannot {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
}

.expectations-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.expectations-can h4 {
  color: #198754;
}

.expectations-cannot h4 {
  color: #dc3545;
}

.expectations-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.expectations-card ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: #212529;
  line-height: 1.6;
}

.expectations-can ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #198754;
  font-weight: 700;
}

.expectations-cannot ul li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: 700;
}

/* CTA Box */
.fit-cta-box {
  background: linear-gradient(135deg, #08579b 0%, #0071e3 100%);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
}

.fit-cta-text {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.btn-fit-cta {
  display: inline-block;
  background: #ffd814;
  color: #1a1a1a;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
}

.btn-fit-cta:hover {
  background: #f7ca00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 20, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-fit-section {
    padding: 3rem 0;
  }

  .fit-main-heading {
    font-size: 1.75rem;
  }

  .fit-decision-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fit-card {
    padding: 1.5rem;
  }

  .expectations-section {
    padding: 0.75rem;
  }

  .expectations-grid {
    grid-template-columns: 1fr;
  }

  .fit-cta-box {
    padding: 2rem 1.5rem;
  }

  .fit-cta-text {
    font-size: 1.125rem;
  }
}

/* CUSTOMER REVIEWS SECTION STYLES */
.customer-reviews-section {
  background: linear-gradient(135deg, #eef6ff 0%, #d7eeff 100%);
  padding: 5rem 0;
}

.reviews-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #08579b;
  text-align: center;
  margin-bottom: 1rem;
}

.reviews-intro {
  text-align: center;
  font-size: 1.125rem;
  color: #495057;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* RATING DISTRIBUTION CARD (CRITICAL FOR GERMAN MARKET) */
.rating-distribution-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(8, 87, 155, 0.08);
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

/* Left: Average Score */
.distribution-left {
  text-align: center;
  border-right: 2px solid #e9ecef;
  padding-right: 2rem;
}

.average-score {
  margin-bottom: 1.5rem;
}

.average-number {
  font-size: 4rem;
  font-weight: 700;
  color: #08579b;
  line-height: 1;
}

.average-stars {
  font-size: 2rem;
  color: #ffc107;
  margin: 0.5rem 0;
}

.average-label {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
}

.total-reviews {
  font-size: 0.95rem;
  color: #495057;
  font-weight: 500;
}

/* Right: Distribution Bars */
.distribution-right {
  flex: 1;
}

.distribution-heading {
  font-size: 1.5rem;
  color: #08579b;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.rating-row {
  display: grid;
  grid-template-columns: 50px 1fr 120px;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.rating-label {
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
}

.bar-outer {
  background: #e9ecef;
  height: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  transition: width 1s ease-out;
  border-radius: 12px;
}

.bar-5 {
  background: linear-gradient(90deg, #198754 0%, #20c997 100%);
}
.bar-4 {
  background: linear-gradient(90deg, #28a745 0%, #85c88a 100%);
}
.bar-3 {
  background: linear-gradient(90deg, #ffc107 0%, #ffd93d 100%);
}
.bar-2 {
  background: linear-gradient(90deg, #fd7e14 0%, #ffa559 100%);
}
.bar-1 {
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%);
}

.rating-count {
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
}

/* TESTIMONIALS GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.positive-review {
  border-left: 4px solid #198754;
}

.critical-review {
  border-left: 4px solid #ffc107;
  background: #fffef8;
}

/* Review Header */
.review-header {
  margin-bottom: 1rem;
}

.review-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-name {
  font-weight: 700;
  color: #212529;
  font-size: 1.125rem;
}

.review-location {
  font-size: 0.875rem;
  color: #6c757d;
}

.review-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #08579b;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 1.5rem;
}

/* Review Footer */
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.review-date {
  font-size: 0.875rem;
  color: #6c757d;
}

.review-badge {
  font-size: 0.875rem;
  color: #198754;
  font-weight: 600;
}

/* Honesty Statement Box */
.reviews-honesty-box {
  background: white;
  border-left: 4px solid #08579b;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(8, 87, 155, 0.08);
}

.reviews-honesty-box h4 {
  font-size: 1.25rem;
  color: #08579b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.reviews-honesty-box p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.reviews-honesty-box p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .customer-reviews-section {
    padding: 3rem 0;
  }

  .reviews-main-heading {
    font-size: 1.75rem;
  }

  .rating-distribution-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .distribution-left {
    border-right: none;
    border-bottom: 2px solid #e9ecef;
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .average-number {
    font-size: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .reviews-honesty-box {
    padding: 1.5rem;
  }
}

/* GUARANTEE SECTION - TRUST-LAYERED VERSION */
.guarantee-section {
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  padding: 5rem 0;
  position: relative;
}

.guarantee-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #08579b;
  text-align: center;
  margin-bottom: 3rem;
}

/* TRUST SIGNAL #1: Stats */
.guarantee-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(8, 87, 155, 0.08);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #08579b;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: #6c757d;
  font-weight: 500;
}

/* MAIN PROMISE BOX */
.guarantee-promise-box {
  background: linear-gradient(135deg, #08579b 0%, #0a6bb8 100%);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  box-shadow: 0 10px 40px rgba(8, 87, 155, 0.2);
  position: relative;
  text-align: center;
}

.guarantee-badge-icon {
  margin-bottom: 1.5rem;
}

.guarantee-main-text {
  color: white;
  font-size: 1.25rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

/* TRUST SIGNAL #2: Process Steps */
.guarantee-process {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(8, 87, 155, 0.08);
}

.process-heading {
  font-size: 1.5rem;
  color: #08579b;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.step {
  flex: 0 0 200px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #08579b 0%, #0a6bb8 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-text {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}

.step-arrow {
  font-size: 2rem;
  color: #08579b;
  font-weight: 700;
}

/* TRUST SIGNAL #3: Refund Testimonials */
.guarantee-testimonials {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 12px;
}

.testimonials-heading {
  font-size: 1.5rem;
  color: #856404;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.refund-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.refund-testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 600;
}

/* TRUST SIGNAL #4: Why We're Confident */
.guarantee-why-box {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: white;
  border-left: 4px solid #198754;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(8, 87, 155, 0.08);
}

.why-heading {
  font-size: 1.25rem;
  color: #198754;
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
  margin: 0;
}

/* TRUST SIGNAL #5: FAQ */
.guarantee-faq {
  max-width: 1000px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(8, 87, 155, 0.08);
}

.faq-summary {
  background: #edf5fc;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.125rem;
  color: #08579b;
  transition: background 0.2s;
}

.faq-summary:hover {
  background: #d7eeff;
}

.faq-content {
  padding: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-question {
  font-size: 1.125rem;
  color: #08579b;
  font-weight: 600;
}

.faq-answer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #495057;
  margin: 0;
}

/* Legal Text */
.guarantee-legal {
  text-align: center;
  font-size: 0.875rem;
  color: #6c757d;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .guarantee-section {
    padding: 3rem 0;
  }

  .guarantee-main-heading {
    font-size: 1.75rem;
  }

  .guarantee-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .guarantee-promise-box {
    padding: 2rem 1.5rem;
  }

  .guarantee-main-text {
    font-size: 1.125rem;
  }

  .guarantee-process {
    padding: 1.5rem;
  }

  .process-steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .refund-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guarantee-why-box {
    padding: 1.5rem;
  }
}

/* SCIENTIFIC REFERENCES - STRATOS STYLE */
.scientific-references {
  background: linear-gradient(
    135deg,
    #d8e8f4 0%,
    #c5def0 100%
  ); /* Light blue background */
  padding: 5rem 0;
}

.references-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5f7f; /* Dark blue */
  text-align: center;
  margin-bottom: 2rem;
}

/* References Logos Image */
.references-logos-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

/* Disclaimer - 12px black */
.references-disclaimer {
  background: rgba(255, 255, 255, 0.4);
  padding: 1rem 2rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 12px; /* 12px jak Stratos */
  color: #1a1a1a; /* Czarny */
  max-width: 900px;
}

/* References Lists */
.references-list-left,
.references-list-right {
  padding: 0 1.5rem;
}

.references-ol {
  font-size: 12px; /* 12px jak Stratos */
  line-height: 1.6;
  color: #1a1a1a; /* Czarny */
  padding-left: 1.2rem;
}

.references-ol li {
  margin-bottom: 1.2rem; /* Odstęp między badaniami */
}

/* Reference Title (nazwa badania) */
.ref-title {
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0; /* BEZ odstępu */
  line-height: 1.5;
}

/* Reference Link (link poniżej) */
.ref-link {
  color: #2c5f7f;
  word-break: break-all;
  margin-top: 0; /* BEZ odstępu od tytułu */
  padding-top: 0;
  line-height: 1.5;
}

.ref-link a,
.references-ol a {
  color: #2c5f7f;
  text-decoration: none;
}

.ref-link a:hover,
.references-ol a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .references-heading {
    font-size: 1.75rem;
  }

  .references-logos-img {
    max-width: 90%;
  }

  .references-disclaimer {
    font-size: 11px; /* Slightly smaller on mobile */
    padding: 0.75rem 1rem;
  }

  .references-ol {
    font-size: 11px; /* Slightly smaller on mobile */
  }
}

@media (max-width: 576px) {
  .scientific-references {
    padding: 3rem 0;
  }

  .references-heading {
    font-size: 1.5rem;
  }

  .references-logos-img {
    max-width: 95%;
  }
}

.references-flex {
  display: flex;
}

.color-black {
  color: var(--primary-black) !important;
}

@media (max-width: 768px) {
  .references-flex {
    flex-direction: column;
  }

  .step {
    flex: none;
  }

  .mobile-display-none {
    display: none;
  }
}
/* ===================================
   PRICING - MOBILE LAYOUT v2 (stacked, reordered)
   =================================== */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card:nth-child(1) {
    order: 3;
  }
  .pricing-card:nth-child(2) {
    order: 1;
  }
  .pricing-card:nth-child(3) {
    order: 2;
  }

  .pricing-card {
    padding: 1.5rem;
    text-align: center;
    overflow: hidden;
  }

  .pricing-amount {
    justify-content: center;
  }

  .payment-icons {
    justify-content: center;
  }

  /* Zdjęcia - % zamiast px */
  .pricing-card:nth-child(1) .package-bottles img {
    max-width: 100% !important;
    height: auto !important;
  }

  .pricing-card:nth-child(2) .package-bottles img {
    max-width: 100% !important;
    height: auto !important;
  }

  .pricing-card:nth-child(3) .package-bottles img {
    max-width: 100% !important;
    height: auto !important;
  }

  .price-per-bottle {
    font-size: 3rem;
  }

  .add-to-cart-btn {
    font-size: 1.2rem;
    padding: 0.85rem 1.5rem;
    margin: 0.75rem 0;
  }

  .total-price {
    font-size: 0.95rem;
    margin: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  .nav-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }

  .nav-menu {
    display: none !important;
  }

  .logo-text {
    font-size: clamp(13px, 3.8vw, 17px) !important;
    white-space: nowrap !important;
  }

  .nav-cta {
    font-size: clamp(11px, 3vw, 14px) !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
}

/* ============================================
   LABEL ZOOM SECTION
   ============================================ */
.label-zoom {
  margin-top: 3rem;
  padding: 0;
  background: transparent;
}

.label-zoom__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.label-zoom__trigger {
  position: relative;
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.label-zoom__trigger:hover,
.label-zoom__trigger:focus-visible {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(44, 95, 127, 0.25);
  outline: none;
}

.label-zoom__img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.label-zoom__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2c5f7f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(44, 95, 127, 0.35);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.label-zoom__trigger:hover .label-zoom__icon,
.label-zoom__trigger:focus-visible .label-zoom__icon {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.label-zoom__icon svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 575px) {
  .label-zoom {
    margin-top: 2rem;
  }
  .label-zoom__icon {
    width: 56px;
    height: 56px;
  }
  .label-zoom__icon svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   LABEL LIGHTBOX
   ============================================ */
.label-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.label-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.label-lightbox__content {
  position: relative;
  display: inline-block;
  line-height: 0;
  max-width: 100%;
}

.label-lightbox__img {
  display: block;
  max-width: calc(100vw - 4rem);
  max-height: calc(100vh - 4rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.label-lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #2c5f7f;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.label-lightbox__close:hover,
.label-lightbox__close:focus-visible {
  transform: scale(1.1);
  background: #fff;
  outline: none;
}

body.label-lightbox-open {
  overflow: hidden;
}

@media (max-width: 575px) {
  .label-lightbox {
    padding: 1rem;
  }
  .label-lightbox__img {
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
  }
  .label-lightbox__close {
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}

@media (max-width: 769px) {
  .label-zoom__img {
    max-width: 90%;
    margin: 0 auto;
  }
  .bonus-indicator-none {
    display: none;
  }
}
