/* ==================== ROOT VARIABLES ==================== */
/* ==================== ROOT VARIABLES (ProvaDent palette) ==================== */
:root{
  --primary-color: #233a7a;     /* navy blue from bottle body */
  --secondary-color: #5bc4ff;   /* light cyan from ProvaDent text */
  --accent-color: #5bc4ff;
  --accent-hover: #3db0f0;
  --dark-bg: #1a2d5f;

  /* Navy-to-cyan gradients to match bottle aesthetics */
  --gradient-1: linear-gradient(135deg, #233a7a 0%, #3d5aa8 100%);
  --gradient-2: linear-gradient(135deg, #5bc4ff 0%, #3db0f0 100%);
  --gradient-3: linear-gradient(135deg, #3d5aa8 0%, #5bc4ff 100%);
  --gradient-4: linear-gradient(135deg, #7ad4ff 0%, #5bc4ff 100%);
  --gradient-5: linear-gradient(135deg, #5bc4ff 0%, #2a9de0 100%); /* bonus/ebook chip */
  --gradient-6: linear-gradient(135deg, #1a2d5f 0%, #233a7a 100%);
}


/* ==================== RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
}

/* ==================== HEADER STYLES ==================== */
.header {
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h2 {
  color: #233a7a;
  font-weight: bold;
  font-size: 28px;
  margin: 0;
}

.glow-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.glow-link h2 {
  transition: all 0.3s ease;
  cursor: pointer;
}

.glow-link:hover h2 {
  color: var(--secondary-color);
}

.newHeadBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: #233a7a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 16px;
  padding: 0 12px;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.order-button {
  background: var(--gradient-1);
  color: white;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(35,58,122,0.3);
}

.order-button::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  font-size: 18px;
}

.order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35,58,122,0.4);
}

/* Mobile Menu */
.mobile-menu-icon {
  background: none;
  border: none;
  color: #233a7a;
  font-size: 28px;
  cursor: pointer;
  display: none;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: var(--dark-bg);
  color: #ffffff;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.sidebar-nav a:hover {
  background-color: rgba(91,196,255,0.2);
  border-radius: 8px;
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 250;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-button {
  margin: 0 !important;
}

/* ==================== HERO SECTION STYLES ==================== */
.product-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 0;
  color: white;
  background: var(--gradient-1);
  text-align: center;
  margin-top: 0;
  padding: 20px 10px;
}

.hero-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff 0%, #e8f4ff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.product-image {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.product-main-image {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
  max-width: 450px;
}

.product-main-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(35,58,122,0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.save-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: white;
  padding: 15px 20px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255,75,87,0.4);
  animation: pulse 2s infinite;
  z-index: 10;
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 4px 15px rgba(255,75,87,0.4);
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(255,75,87,0.6);
  }
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
  width: 100%;
  max-width: 450px;
}

.stat-box {
  padding: 20px 10px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: fadeInUp 0.8s ease-out;
  transition: all 0.5s ease, transform 0.3s ease;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.color-1 { background: var(--gradient-1); }
.color-2 { background: var(--gradient-2); }
.color-3 { background: var(--gradient-3); }
.color-4 { background: var(--gradient-4); }

.stat-number {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
  font-family: 'Arial Black', sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-below-para {
  font-size: 32px;
  color: #233a7a;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.ingredients-highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.product-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.product-info h3 {
  font-size: 24px;
  color: #233a7a;
  margin: 30px 0 15px 0;
  font-weight: 700;
}

.benefits-lists {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.benefits-lists li {
  padding: 12px 0;
  font-size: 16px;
  color: #444;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
}

.benefits-lists li::before {
  display: none;
}

.cta-buttons {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-button, .secondary-button {
  display: block;
  padding: 18px 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button {
  background: var(--gradient-1);
  color: white;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35,58,122,0.4);
}

.secondary-button {
  background: var(--gradient-2);
  color: white;
}

.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,196,255,0.4);
}

.benefit-badges {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.benefit-badge {
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease-out;
  transition: all 0.5s ease, transform 0.3s ease;
}

.benefit-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.icon {
  font-size: 20px;
  margin-right: 8px;
}

.badge-color-1 { background: var(--gradient-1); }
.badge-color-2 { background: var(--gradient-2); }
.badge-color-3 { background: var(--gradient-3); }
.badge-color-4 { background: var(--gradient-4); }
.badge-color-5 { background: var(--gradient-5); }
.badge-color-6 { background: var(--gradient-6); }

/* ==================== CERTIFICATIONS SECTION ==================== */
.certifications {
  background-color: #f9f9f9;
  padding: 0 0 60px 0;
  text-align: center;
  color: #333;
}

.certifications h2 {
  background: var(--gradient-1);
  color: white;
  margin: 0 0 40px 0;
  padding: 30px 20px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
}

.certification-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  padding: 0 20px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 280px;
  background-color: white;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-height: 400px;
  margin: 0 auto;
}

.badge:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(35,58,122,0.2);
}

.badge img {
  width: 100%;
  height: 180px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.badge:hover img {
  transform: scale(1.1);
}

.badge-title {
  font-weight: bold;
  margin-bottom: 15px;
  color: #233a7a;
  font-size: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge-description {
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
  color: #555;
  flex: 1;
}

/* ==================== PRODUCT DETAILS SECTION ==================== */
.product-details {
  padding: 0 0 60px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: #f9f9f9;
  color: #333;
}

.product-details h2 {
  background: var(--gradient-1);
  color: white;
  text-align: center;
  margin: 0 0 40px 0;
  padding: 30px 20px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
}

.product-details-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.product-details-text {
  flex: 1;
  min-width: 300px;
}

.product-details-content p {
  font-size: 16px;
  margin: 15px 0;
  line-height: 1.8;
  color: #555;
}

.product-details-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.product-details-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(35,58,122,0.15);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
  padding: 0 0 60px 0;
  max-width: 100%;
  margin: 0 auto;
  background-color: #f9f9f9;
  color: #333;
}

.how-it-works h2 {
  background: var(--gradient-1);
  color: white;
  margin: 0 0 40px 0;
  padding: 30px 20px;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}

.how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-it-works-intro {
  margin-bottom: 30px;
  font-size: 16px;
  color: #555;
  text-align: center;
  line-height: 1.8;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-it-works-step {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.how-it-works-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(35,58,122,0.2);
}

.step-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 20px;
  display: block;
}

.step-description {
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

.step-below-para {
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
}

.how-it-works .cta-button {
  display: inline-block;
}

/* ==================== CUSTOMER REVIEWS SECTION ==================== */
.customer-reviews {
  background-color: #f9f9f9;
  padding: 0 0 60px 0;
  text-align: center;
}

.customer-reviews h2 {
  background: var(--gradient-1);
  color: white;
  margin: 0 0 40px 0;
  padding: 30px 20px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(35,58,122,0.2);
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--secondary-color);
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.verified-badge svg {
  fill: var(--secondary-color);
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.reviewer-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reviewer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info h4 {
  margin: 0 0 10px 0;
  color: #233a7a;
  font-size: 18px;
  font-weight: bold;
}

.rating {
  display: flex;
  gap: 3px;
}

.rating svg {
  fill: #FFD700;
  width: 20px;
  height: 20px;
}

.review-text {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/* ==================== PRICING SECTION ==================== */
.image-grid-section {
  padding: 0 0 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.image-grid-section h2 {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
  color: white;
  margin: 0 0 50px 0;
  padding: 30px 20px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.4;
}

.pricing-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1300px;
}

.product-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(35,58,122,0.3);
}

.card-header {
  background: var(--gradient-1);
  color: white;
  padding: 20px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.header-1x {
  background: var(--gradient-1);
}

.header-3x {
  background: var(--gradient-2);
}

.header-6x {
  background: var(--gradient-6);
}

.supply-days {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
}

.card-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.product-image-new {
  width: 100%;
  max-width: 100%;
  height: 220px;
  margin-bottom: 30px;
  object-fit: contain;
}

.price-section {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.current-price {
  font-size: 48px;
  font-weight: 700;
  color: #233a7a;
}

.per-bottle {
  font-size: 16px;
  color: #666;
  margin-left: 8px;
}

.ebooks {
  background: var(--gradient-5);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
}

.buy-now-btn {
  background: var(--gradient-1);
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(35,58,122,0.3);
  text-decoration: none;
  display: inline-block;
}

.buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35,58,122,0.4);
}

.total-price {
  font-size: 16px;
  color: #333;
  margin: 20px 0;
}

.original-total {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.discounted-total {
  color: #233a7a;
  font-size: 20px;
  font-weight: 700;
}

.payment-methods {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.payment-methods img {
  height: 30px;
  width: auto;
}

.product-card.best-value {
  border: 3px solid var(--secondary-color);
  box-shadow: 0 15px 50px rgba(35,58,122,0.3);
}

.off-white-background {
  display: none;
}

.buying-background {
  display: none;
}

/* ==================== INGREDIENTS SECTION ==================== */
.ingredients-section {
  padding: 0 0 60px 0;
  background-color: #f9f9f9;
  color: #333;
}

.ingredients-section h2 {
  background: var(--gradient-1);
  color: white;
  margin: 0 0 40px 0;
  padding: 30px 20px;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.ingredients-intro {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

.ingredients-list {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.ingredient-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(35,58,122,0.2);
}

.ingredient-number {
  min-width: 60px;
  min-height: 60px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(35,58,122,0.3);
}

.ingredient-content {
  flex: 1;
}

.ingredient-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 12px 0;
}

.ingredient-description {
  margin: 0;
  line-height: 1.8;
  color: #555;
  font-size: 15px;
}

/* ==================== SCIENCE & GUARANTEE SECTION ==================== */
.science-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.cert-logos {
  background: var(--gradient-1);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cert-logos img {
  max-width: 100%;
  height: auto;
}

.science-heading {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 40px 0;
  color: #233a7a;
}

.science-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto 60px;
  max-width: 1200px;
  padding: 0 20px;
}

.science-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 280px;
  transition: all 0.3s ease;
}

.science-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(35,58,122,0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(35,58,122,0.3);
}

.step-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 15px 0;
  color: #233a7a;
}

.step-desc {
  line-height: 1.8;
  font-size: 15px;
  color: #555;
}

.step-arrow {
  font-size: 40px;
  color: var(--secondary-color);
  align-self: center;
  display: none;
}

.guarantee-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.guarantee-badge {
  flex: 0 0 auto;
}

.guarantee-badge img {
  max-width: 250px;
  height: auto;
}

.guarantee-text {
  flex: 1;
  min-width: 300px;
}

.guarantee-text h3 {
  color: var(--secondary-color);
  font-size: 24px;
  margin: 0 0 20px 0;
}

.guarantee-text p {
  line-height: 1.8;
  color: #555;
  font-size: 15px;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  background-color: #f9f9f9;
  padding: 0 0 60px 0;
}

.benefits-section h2 {
  background: var(--gradient-1);
  color: white;
  margin: 0 0 40px 0;
  padding: 30px 20px;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-intro {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #555;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 20px;
}

.benefits-list li {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(35,58,122,0.2);
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.checkmark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-1);
  flex-shrink: 0;
  position: relative;
  margin-top: 5px;
}

.checkmark::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 700;
  font-size: 20px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 700;
  font-size: 18px;
  color: #233a7a;
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: #f9f9f9;
  padding: 0 0 60px 0;
}

.faq-heading {
  background: var(--gradient-1);
  color: white;
  margin: 0 0 40px 0;
  padding: 30px 20px;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.faq-questions {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.faq-item {
  background: white;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(35,58,122,0.2);
}

.faq-q {
  font-weight: 600;
  font-size: 16px;
  color: #233a7a;
  display: block;
  position: relative;
  padding-right: 30px;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: 24px;
  color: var(--secondary-color);
}

.faq-item.open .faq-q::after {
  content: "-";
}

.faq-a {
  margin-top: 15px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-banners {
  display: flex;
  align-items: center;
  background: white;
  padding: 40px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  gap: 40px;
}

.faq-banner {
  background: white;
  padding: 40px;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.banner-image {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
}

.banner-image img {
  max-width: 300px;
  height: auto;
}

.banner-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.banner-content h3 {
  margin: 0 0 20px 0;
  font-size: 28px;
  font-weight: 700;
  color: #233a7a;
}

.max-button-padding {
  padding: 18px 40px;
  font-size: 18px;
}

.faq-answer-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-answer-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-text-content {
  flex: 1;
  min-width: 300px;
}

.faq-text-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--secondary-color);
}

.faq-text-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.answer-subheading {
  font-weight: 700;
  margin-top: 20px;
  color: #233a7a;
}

.faq-image-content {
  flex: 0 0 auto;
  max-width: 400px;
}

.checkout-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(35,58,122,0.15);
}

.bottom-banner {
  text-align: center;
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  max-width: 1200px;
  margin: 40px auto;
}

.bottom-banner h3 {
  font-size: 28px;
  color: #233a7a;
  margin-bottom: 30px;
}

.bottom-banner img {
  max-width: 400px;
  margin: 20px auto;
}

.regular-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin: 10px 0;
}

.regular-price.small {
  font-size: 14px;
}

.discounted {
  font-size: 28px;
  color: var(--secondary-color);
  font-weight: 700;
  display: block;
  margin: 15px 0 25px;
}

/* ==================== BONUSES SECTION ==================== */
.bonuses-section {
  padding: 0 0 60px 0;
  background-color: #f9f9f9;
}

.bonuses-section h2 {
  background: var(--gradient-1);
  color: white;
  margin: 0 0 40px 0;
  padding: 30px 20px;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.ebook-bonus-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.ebook-card {
  flex: 1;
  max-width: 500px;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.ebook-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(35,58,122,0.3);
}

.ebook-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.ebook-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.ebook-text strong {
  font-size: 18px;
  color: #233a7a;
  display: block;
  margin-bottom: 15px;
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
  background: white;
  border-top: 3px solid var(--secondary-color);
  padding: 40px 20px;
  font-size: 14px;
  color: #555;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.footer-disclaimer p {
  margin-bottom: 15px;
  line-height: 1.8;
  text-align: justify;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #e8f4ff 0%, #fff 100%);
  border-radius: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(35,58,122,0.3);
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(35,58,122,0.4);
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--secondary-color);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: #555;
  font-size: 14px;
}

/* ==================== LEGAL PAGES STYLES ==================== */
.legal-page {
  background-color: #f9f9f9;
  min-height: 100vh;
}

.legal-page-header {
  background: var(--gradient-1);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.legal-page-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.legal-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-container {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.legal-container h2 {
  color: var(--secondary-color);
  font-size: 28px;
  margin: 0 0 30px 0;
  font-weight: 700;
}

.legal-container h3 {
  color: #233a7a;
  font-size: 22px;
  margin: 30px 0 15px 0;
  font-weight: 700;
}

.legal-container h4 {
  color: #233a7a;
  font-size: 18px;
  margin: 20px 0 10px 0;
  font-weight: 600;
}

.legal-container p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.legal-divider {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 40px 0;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-subsection {
  margin: 20px 0;
  padding-left: 20px;
}

.legal-highlight {
  background: #e8f4ff;
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
}

.legal-highlight p {
  margin: 0;
}

.legal-notice {
  background: #fff9e6;
  border-left: 4px solid #ffa500;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
}

.legal-notice h4 {
  color: #ffa500;
  margin-top: 0;
}

.contact-info {
  background: #e8f4ff;
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
}

.contact-info h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.legal-navigation {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.legal-back-link {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.legal-back-link:hover {
  color: var(--accent-hover);
  transform: translateX(-5px);
}

.legal-nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-nav-link {
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.legal-nav-link:hover {
  background: var(--gradient-1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35,58,122,0.3);
}

.legal-nav-link.active {
  background: var(--gradient-1);
  color: white;
  border-color: var(--secondary-color);
}

/* ==================== CUSTOMER PURCHASE NOTIFICATION ==================== */
.purchase-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  padding: 20px;
  min-width: 350px;
  max-width: 400px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(-120%);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 5px solid var(--secondary-color);
}

.purchase-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.purchase-notification-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.purchase-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.purchase-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.purchase-details {
  flex: 1;
}

.purchase-header {
  font-size: 14px;
  color: #233a7a;
  margin-bottom: 5px;
  font-weight: 600;
}

.purchase-product {
  font-size: 13px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 3px;
}

.purchase-time {
  font-size: 12px;
  color: #999;
}

.purchase-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  cursor: pointer;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.purchase-close:hover {
  background: var(--secondary-color);
  color: white;
  transform: rotate(90deg);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 16px;
  }

  .certification-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .badge {
    max-width: 100%;
  }

  .legal-container {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-icon {
    display: block;
  }

  .header .nav-links,
  .header .order-button {
    display: none;
  }

  .logo h2 {
    font-size: 22px;
  }

  .product-title {
    font-size: 22px;
    padding: 15px 10px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 20px;
    margin: 20px auto;
  }

  .step-below-para {
    font-size: 24px;
  }

  .product-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-box {
    padding: 15px 10px;
  }

  .stat-number {
    font-size: 28px;
  }

  .benefit-badges {
    grid-template-columns: 1fr;
  }

  .product-description,
  .benefits-lists li {
    font-size: 15px;
  }

  .cta-button, .secondary-button {
    font-size: 15px;
    padding: 15px 25px;
  }

  .certification-badges {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .badge {
    max-width: 100%;
    min-height: auto;
  }

  .badge-title {
    min-height: auto;
  }

  .product-details-content,
  .faq-answer-content,
  .guarantee-content {
    flex-direction: column;
    padding: 25px;
  }

  .ingredients-list {
    grid-template-columns: 1fr;
  }

  .science-steps {
    flex-direction: column;
  }

  .faq-banners {
    flex-direction: column;
    padding: 25px;
  }

  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    max-width: 100%;
  }

  .purchase-notification {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-width: auto;
    max-width: calc(100% - 20px);
  }

  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  .legal-page-header h1 {
    font-size: 28px;
  }

  .legal-container {
    padding: 30px 20px;
  }

  .legal-container h2 {
    font-size: 24px;
  }

  .legal-container h3 {
    font-size: 20px;
  }

  .legal-nav-links {
    flex-direction: column;
  }

  .legal-nav-link {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo h2 {
    font-size: 20px;
  }

  .product-title {
    font-size: 20px;
  }

  .step-below-para {
    font-size: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .save-badge {
    width: 70px;
    height: 70px;
    font-size: 14px;
    padding: 10px 15px;
  }

  .legal-page-header h1 {
    font-size: 24px;
  }

  .legal-container {
    padding: 20px 15px;
  }
}

/* Hidden SEO Links - In HTML code but invisible to users */
.seo-hidden-links {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Stronger hero heading scale */
.hero-section h2,
.product-info h2,
.step-below-para {            /* if this is your hero H2 text */
  font-size: clamp(32px, 2.6vw + 10px, 35px);
  line-height: 1.2;
  color: var(--primary-color);
}

/* Paragraph under hero heading a touch calmer */
.product-description { font-size: 17px; }

/* Give hero more bottom air so lifted badges don't touch next section */
.hero-section{
  position: relative;
  margin: 40px auto 90px;     /* increased bottom margin */
  padding-bottom: 50px;       /* extra inner space for animations */
  overflow: visible;          /* keep hover float visible without clipping */
}

/* Keep badges from visually spilling into next block */
.benefit-badges{
  padding-bottom: 10px;
}

/* Ensure certifications sits above anything following */
.certifications{
  position: relative;
  z-index: 1;
}