/* ============================================
           CSS RESET & BASE STYLES
           ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  will-change: auto;
}

:root {
  /* Color Palette - Calm, Quality, Trust */
  --primary-teal: #2d8b8b;
  --primary-teal-dark: #236666;
  --primary-teal-light: #e8f5f5;
  --secondary-coral: #e89b7e;
  --accent-gold: #d4af37;
  --bg-cream: #faf9f6;
  --text-dark: #2c3e50;
  --text-gray: #5a6c7d;
  --white: #ffffff;
  --success-green: #27ae60;
  --warning-orange: #e67e22;
  --error-red: #e74c3c;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Typography */
  --font-primary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, "Times New Roman", serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  margin-bottom: 0;
}

.container,
section,
.hero,
.footer {
  max-width: 100%;
  overflow-x: hidden;
}

html,
body {
  -webkit-overflow-scrolling: auto; /* control iOS smooth scroll */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ============================================
           VISITOR COUNTER BAR
           ============================================ */
.visitor-counter {
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: var(--white);
  text-align: center;
  padding: var(--spacing-sm);
  font-size: 0.9rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--error-red);
  border-radius: 50%;
  margin-right: var(--spacing-xs);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* ============================================
           FLOATING WHATSAPP BUTTON
           ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 50px; /* Above sticky footer + safe margin */
  right: 5px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  padding: var(--spacing-md);
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  z-index: 999; /* Above sticky footer */
  transition: var(--transition-normal);
  /* Prevent movement on scroll */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  max-width: calc(100vw - 40px);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.whatsapp-icon {
  font-size: 1.5rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Mobile: Show only icon */
@media (max-width: 768px) {
  .whatsapp-float {
    padding: 0.5rem;
    /* border-radius: 50%; */
    bottom: 70px;
  }

  /* .whatsapp-text {
    display: none;
  } */

  .whatsapp-icon {
    font-size: 1.8rem;
  }

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

/* ============================================
           ORDER NOTIFICATION POPUP
           ============================================ */
.order-notification {
  position: fixed;
  max-width: calc(100vw - 40px);
  right: 20px;
  left: auto;
  top: 80px;
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 997;
  border-left: 4px solid var(--primary-teal);
  transform: translate3d(calc(100% + 40px), 0, 0);
  -webkit-transform: translate3d(calc(100% + 40px), 0, 0);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.order-notification.show {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.hero-content,
.solution-content,
.pricing-grid,
.testimonials-grid {
  max-width: 100%;
  overflow-x: hidden;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.notification-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.notification-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.notification-text strong {
  color: var(--primary-teal);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .order-notification {
    top: 60px;
    right: 10px;
    max-width: 280px;
    font-size: 0.85rem;
  }
}
/* ============================================
           HERO SECTION
           ============================================ */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-teal-light) 0%,
    var(--bg-cream) 100%
  );
  padding: var(--spacing-xxl) 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.highlight {
  color: var(--primary-teal);
  position: relative;
}

.hero-subtitle {
  color: var(--primary-teal);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-black);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.badge-item {
  background: var(--white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-teal);
  box-shadow: var(--shadow-sm);
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
  background: var(--primary-teal);
  color: var(--white);
}

.hero-assurance {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1rem;
}

/* Hero Image */
/* HARD RESET for this component only */
.hero-image,
.product-placeholder,
.bottle-mockup {
  padding: 0;
  margin: 0;
}

/* layout */
.hero-image {
  display: flex;
  justify-content: center;
}

.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* image wrapper */
/* .bottle-mockup {
  width: 280px;
} */

/* image */
.whatsapp-placeholder img,
.bottle-mockup img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

/* caption */
.image-caption {
  margin: 8px 0 0;
  padding: 0;
}

/* Responsive Hero */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .trust-badges {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }
}

/* ============================================
           SECTION TITLES & COMMON ELEMENTS
           ============================================ */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
}

/* ============================================
           PROBLEM SECTION
           ============================================ */
.problem-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.problem-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.problem-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.problem-item h3 {
  font-size: 1.3rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-sm);
}

.problem-item p {
  color: var(--text-gray);
}

.problem-highlight {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-teal);
  font-weight: 600;
}

/* ============================================
           SOLUTION SECTION
           ============================================ */
.solution-section {
  padding: var(--spacing-xxl) 0;
  background: var(--primary-teal-light);
}

.brand-highlight {
  color: var(--primary-teal);
  font-weight: 700;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin: var(--spacing-xl) 0;
}

.solution-text h3 {
  font-size: 1.8rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-md);
}

.solution-text p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-md);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: var(--spacing-sm) 0;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.ingredients-box {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.ingredients-box h3 {
  font-size: 1.4rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-md);
}

.ingredient-item {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--bg-cream);
}

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

.ingredient-item strong {
  color: var(--primary-teal);
}

/* Timeline */
.timeline {
  margin-top: var(--spacing-xl);
}

.timeline h3 {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-lg);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 40px;
  bottom: -40px;
  width: 3px;
  background: var(--primary-teal);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-day {
  background: var(--primary-teal);
  color: var(--white);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  height: fit-content;
}

.timeline-content {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  color: var(--primary-teal);
  margin-bottom: var(--spacing-xs);
}

.timeline-content p {
  color: var(--text-gray);
}

@media (max-width: 968px) {
  .solution-content {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 100px 1fr;
    gap: var(--spacing-md);
  }

  .timeline-item::before {
    left: 50px;
  }
}

/* ============================================
           BENEFITS SECTION
           ============================================ */
.benefits-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.benefit-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.benefit-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-xs);
}

.benefit-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ============================================
           STOCK ALERT
           ============================================ */
.stock-alert {
  background: linear-gradient(135deg, var(--warning-orange), #d35400);
  color: var(--white);
  padding: var(--spacing-md);
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  animation: pulse-alert 2s infinite;
}

@keyframes pulse-alert {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}

.alert-icon {
  font-size: 1.5rem;
  margin-right: var(--spacing-sm);
}

.alert-text strong {
  font-size: 1.3rem;
  text-decoration: underline;
}

/* ============================================
           TESTIMONIALS SECTION
           ============================================ */
.testimonials-section {
  padding: var(--spacing-xxl) 0;
  background: var(--primary-teal-light);
}

.rating-summary {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.rating-summary .stars {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: var(--spacing-sm);
}

.rating-summary p {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.testimonial-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
}

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

.featured-testimonial {
  border: 3px solid var(--accent-gold);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-header {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.location {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.testimonial-info .stars {
  color: var(--accent-gold);
  font-size: 1rem;
}

.testimonial-text {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.verified {
  color: var(--success-green);
  font-size: 0.85rem;
  font-weight: 600;
}

/* WhatsApp Testimonials */
.whatsapp-testimonials {
  margin-top: var(--spacing-xxl);
}

.whatsapp-testimonials h3 {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-sm);
}

.section-note {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
  font-size: 1.1rem;
}

.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.whatsapp-placeholder {
  background: var(--white);
  border: 3px solid var(--primary-teal);
  border-radius: var(--radius-lg);
  /* padding: var(--spacing-xl); */
  text-align: center;
  min-height: 280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.whatsapp-placeholder:hover {
  border-color: var(--secondary-coral);
  background: var(--primary-teal-light);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
}

.whatsapp-placeholder p {
  font-weight: 700;
  color: var(--primary-teal);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.placeholder-text {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================
           PRICING SECTION
           ============================================ */
.pricing-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.countdown-sticky {
  background: linear-gradient(135deg, var(--error-red), #c0392b);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin: 0 auto var(--spacing-xl);
  max-width: 600px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.timer-compact {
  font-size: 1.5rem;
  margin-left: var(--spacing-sm);
  letter-spacing: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--bg-cream);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-teal);
}

.pricing-card.featured {
  border-color: var(--accent-gold);
  border-width: 3px;
  background: linear-gradient(135deg, var(--primary-teal-light), var(--white));
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.package-contents {
  margin-bottom: var(--spacing-lg);
}

.package-contents p {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.duration {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 400;
}

.pricing {
  margin-bottom: var(--spacing-lg);
}

.pricing .old-price {
  display: block;
  font-size: 1.1rem;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-bottom: var(--spacing-xs);
}

.pricing .new-price {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-xs);
}

.savings {
  display: inline-block;
  background: var(--success-green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-pricing {
  display: block;
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

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

.recommended {
  margin-top: var(--spacing-md);
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-features {
  text-align: center;
  font-size: 1.1rem;
  color: var(--success-green);
  font-weight: 600;
}

/* ============================================
           ORDER FORM SECTION
           ============================================ */
.order-form-section {
  padding: var(--spacing-xxl) 0;
  background: var(--primary-teal-light);
}

.stock-warning {
  background: linear-gradient(135deg, var(--warning-orange), #d35400);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  margin: 0 auto var(--spacing-xl);
  max-width: 700px;
  animation: pulse-alert 2s infinite;
}

#orderForm {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

#orderForm label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin: 1.25rem 0 6px;
}

#orderForm label:first-of-type {
  margin-top: 0;
}

#orderForm input[type="text"],
#orderForm input[type="tel"],
#orderForm select,
#orderForm textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}

#orderForm input:focus,
#orderForm select:focus,
#orderForm textarea:focus {
  border-color: #1D9E75;
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
}

#orderForm textarea {
  resize: vertical;
  min-height: 90px;
}

#orderForm select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

#orderForm button[type="submit"] {
  margin-top: 1.75rem;
  width: 100%;
  padding: 14px;
  background: #1D9E75;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}

#orderForm button[type="submit"]:hover {
  background: #0F6E56;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 520px) {
  .phone-row { grid-template-columns: 1fr; }
  #orderForm { padding: 1.25rem; }
}

/* ============================================
           FAQ SECTION
           ============================================ */
.faq-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.faq-item {
  background: var(--bg-cream);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-teal);
  transition: var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.faq-question {
  color: var(--primary-teal);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.faq-answer {
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================
           FINAL CTA SECTION
           ============================================ */
.final-cta {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.cta-benefit {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.urgency-text {
  margin-bottom: var(--spacing-xl);
  font-size: 1.1rem;
}

.urgency-text p {
  margin: var(--spacing-xs) 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

.btn-primary-large,
.btn-whatsapp-large {
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
  display: inline-block;
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--secondary-coral), #d17958);
  color: var(--white);
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-large {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
}

.btn-whatsapp-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.cta-guarantee {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 1.8rem;
  }

  .cta-benefits {
    flex-direction: column;
    align-items: center;
  }
}

.whatsapp-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .whatsapp-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* ============================================
           FOOTER
           ============================================ */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand h3 {
  color: var(--primary-teal);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-contact h4,
.footer-guarantee h4 {
  color: var(--primary-teal);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-md);
}

.footer-contact p,
.footer-guarantee p {
  margin: var(--spacing-xs) 0;
  opacity: 0.9;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--primary-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  color: var(--text-dark);
}

.copyright {
  opacity: 0.8;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ============================================
           RESPONSIVE UTILITIES
           ============================================ */
@media (max-width: 968px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .pricing-grid,
  .benefits-grid,
  .problem-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
           ANIMATIONS
           ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  will-change: transform, opacity;
}

/* ============================================
           PRINT STYLES
           ============================================ */
@media print {
  .whatsapp-float,
  .order-notification,
  .modal-overlay,
  .visitor-counter,
  .stock-alert {
    display: none !important;
  }
}
body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

/* ================================
   CTA BUTTON
================================ */
html {
  scroll-padding-top: 80px; /* Account for sticky header */
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

/* ================================
   PULSE + GLOW EFFECT
================================ */

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.discount-toast {
  position: fixed;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f9d55;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
  max-width: 90%;
  width: auto;
  text-align: center;
  /* Prevent movement */
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Latest Update */

/* ============================================
   PROSTARELIEF PRO - ADDITIONAL CSS FOR NEW FEATURES
   Add this to your existing style.css file
   ============================================ */

/* ============================================
   SUCCESS COUNTER SECTION (10A)
   ============================================ */
.success-counter-section {
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.success-counter {
  color: var(--white);
}

.success-counter h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-xs);
}

.counter-number {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 2.5rem;
  animation: countPulse 2s infinite;
}

@keyframes countPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.success-counter p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* ============================================
   AS FEATURED IN SECTION (2A)
   ============================================ */
.featured-in-section {
  background: var(--bg-cream);
  padding: var(--spacing-xl) 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.featured-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 2px;
  margin-bottom: var(--spacing-md);
}

.featured-logos {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  align-items: center;
}

.featured-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.featured-item:hover {
  opacity: 1;
  color: var(--primary-teal);
}

/* ============================================
   REGIONAL STOCK SECTION (3B)
   ============================================ */
.regional-stock-section {
  background: #fff3cd;
  padding: var(--spacing-xl) 0;
}

.stock-title {
  text-align: center;
  color: var(--warning-orange);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-lg);
}

.regional-stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.stock-item {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.stock-location {
  font-weight: 600;
  color: var(--text-dark);
}

.stock-count {
  font-weight: 700;
  color: var(--error-red);
  font-size: 1.1rem;
}

.stock-note {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================
   FOUNDER'S STORY SECTION (5A)
   ============================================ */
.founder-story-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.founder-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.founder-photo-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

.founder-initials {
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
}

.founder-text h2 {
  font-size: 2.2rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-sm);
}

.founder-intro {
  font-size: 1.2rem;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
}

.founder-story p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.founder-signature {
  font-weight: 600;
  font-style: italic;
  margin-top: var(--spacing-lg);
}

.founder-name {
  font-weight: 700;
  color: var(--primary-teal);
}

@media (max-width: 968px) {
  .founder-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo-placeholder {
    width: 220px;
    height: 220px;
  }

  .founder-initials {
    font-size: 4rem;
  }
}

/* ============================================
   "I'VE TRIED EVERYTHING" SECTION (11A)
   ============================================ */
.tried-everything-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-cream);
}

.tried-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
}

.tried-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.tried-item {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid #ffdddd;
}

.tried-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.tried-item h3 {
  font-size: 1.3rem;
  color: var(--error-red);
  margin-bottom: var(--spacing-sm);
}

.tried-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

.tried-different {
  background: linear-gradient(135deg, var(--primary-teal-light), var(--white));
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  border: 3px solid var(--primary-teal);
}

.tried-different h3 {
  font-size: 2rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.difference-list {
  list-style: none;
  margin-bottom: var(--spacing-xl);
}

.difference-list li {
  padding: var(--spacing-sm) 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.tried-cta-text {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: var(--spacing-xl) 0;
}

/* ============================================
   INDUSTRY TRUTH SECTION (13A)
   ============================================ */
.industry-truth-section {
  padding: var(--spacing-xxl) 0;
  background: #f9fafb;
}

.truth-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.truth-text h3 {
  font-size: 1.8rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-md);
}

.truth-text p {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  font-size: 1.05rem;
}

.truth-list {
  list-style: none;
  margin: var(--spacing-md) 0;
}

.truth-list li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  position: relative;
}

.truth-list li:before {
  content: "💰";
  position: absolute;
  left: 0;
}

.truth-stats {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.truth-stat-box {
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 968px) {
  .truth-content {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CLINICAL STUDY SECTION (9A)
   ============================================ */
.clinical-study-section {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  margin: var(--spacing-xl) 0;
  box-shadow: var(--shadow-lg);
}

.clinical-study-section h3 {
  font-size: 1.8rem;
  color: var(--primary-teal);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.clinical-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.clinical-result-box {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--primary-teal-light);
  border-radius: var(--radius-lg);
}

.result-percentage {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-xs);
}

.result-label {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.clinical-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray);
  font-style: italic;
  margin-top: var(--spacing-md);
}

/* ============================================
   DOCTOR ENDORSEMENT SECTION (2B)
   ============================================ */
.doctor-endorsement-section {
  background: var(--bg-cream);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  margin: var(--spacing-xl) 0;
}

.doctor-content {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.doctor-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.doctor-initials {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.doctor-text h3 {
  font-size: 1.6rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-md);
}

.doctor-quote {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-teal);
}

.quote-text {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  font-size: 1.05rem;
}

.doctor-credentials {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .doctor-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ============================================
   CERTIFICATION BADGES (2C)
   ============================================ */
.certifications-section {
  background: var(--primary-teal-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  margin: var(--spacing-xl) 0;
}

.certifications-section h3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-lg);
}

.cert-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

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

.cert-image-placeholder {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl) var(--spacing-md);
  box-shadow: var(--shadow-sm);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.cert-image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.cert-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.cert-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-teal);
  text-align: center;
}

.cert-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray);
  font-style: italic;
}

/* ============================================
   COMPARISON TABLE SECTION (6A)
   ============================================ */
.comparison-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--spacing-xxl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: var(--spacing-md);
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.comparison-table th {
  font-weight: 700;
  font-size: 1.1rem;
}

.highlight-col {
  background: var(--primary-teal-light);
  font-weight: 700;
}

.check {
  color: var(--success-green);
  font-size: 1.5rem;
  font-weight: 700;
}

.times {
  color: var(--error-red);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ============================================
   COST COMPARISON (6B)
   ============================================ */
.cost-comparison-box {
  background: var(--bg-cream);
  padding: var(--spacing-xxl);
  border-radius: var(--radius-xl);
}

.cost-comparison-box h3 {
  font-size: 2rem;
  color: var(--primary-teal);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.cost-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
}

.cost-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.cost-item {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.cost-expensive {
  border: 2px solid var(--error-red);
}

.cost-affordable {
  border: 3px solid var(--success-green);
}

.cost-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
}

.cost-item h4 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--text-dark);
}

.cost-breakdown {
  margin-bottom: var(--spacing-md);
}

.cost-line {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid #ddd;
}

.cost-total {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: #ffe5e5;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 1.3rem;
  color: var(--error-red);
}

.cost-savings {
  background: #e7f9f1;
  color: var(--success-green);
}

.bonus-value {
  text-align: center;
  margin-top: var(--spacing-md);
  font-weight: 600;
  color: var(--primary-teal);
}

.cost-savings-box {
  background: linear-gradient(135deg, var(--success-green), #1e8e60);
  color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cost-savings-box h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.cost-savings-box p {
  font-size: 1.1rem;
  opacity: 0.95;
}

@media (max-width: 968px) {
  .cost-comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CHALLENGE SECTION (13B)
   ============================================ */
.challenge-section {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, #fff8e1, var(--bg-cream));
}

.challenge-box {
  background: var(--white);
  padding: var(--spacing-xxl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--accent-gold);
}

.challenge-intro {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--text-dark);
}

.challenge-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.challenge-point {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--primary-teal-light);
  border-radius: var(--radius-md);
}

.challenge-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.challenge-point p {
  font-size: 1.05rem;
  line-height: 1.5;
}

.challenge-verdict {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin: var(--spacing-xl) 0 var(--spacing-md);
}

.challenge-cta {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* ============================================
   GUARANTEE SECTION (4A, 4B, 4C)
   ============================================ */
.guarantee-section {
  padding: var(--spacing-xxl) 0;
  background: var(--primary-teal-light);
}

.guarantee-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.guarantee-box {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
}

.guarantee-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.featured-guarantee {
  border: 3px solid var(--accent-gold);
}

.guarantee-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.guarantee-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: var(--spacing-md);
}

.guarantee-box h3 {
  font-size: 1.5rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-md);
}

.guarantee-box p {
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.guarantee-note {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: italic;
  margin-top: var(--spacing-md);
}

.guarantee-cta-box {
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  text-align: center;
}

.guarantee-cta-box h3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.guarantee-cta-box p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

/* ============================================
   PRICING BONUSES (8A)
   ============================================ */
.package-includes {
  margin: var(--spacing-md) 0;
  padding: var(--spacing-md);
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  text-align: left;
}

.bonus-included {
  background: linear-gradient(135deg, #fff9e6, var(--bg-cream));
  border: 2px dashed var(--accent-gold);
}

.includes-title {
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
  text-align: center;
}

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

.includes-list li {
  padding: var(--spacing-xs) 0;
  font-size: 0.95rem;
}

.bonus-value {
  margin-top: var(--spacing-sm);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-align: center;
}

/* ============================================
   ORDER PROCESS TIMELINE (12A)
   ============================================ */
.order-process-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-cream);
}

.process-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: -60px;
  width: 3px;
  background: var(--primary-teal);
}

.process-step:last-child::before {
  display: none;
}

.process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.process-content {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-content h3 {
  font-size: 1.3rem;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-sm);
}

.process-content p {
  line-height: 1.7;
  color: var(--text-gray);
}

.process-guarantee {
  text-align: center;
  background: var(--primary-teal-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   REFERRAL PROGRAM (15A)
   ============================================ */
.referral-program-section {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(135deg, #fff8e1, var(--bg-cream));
}

.referral-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
}

.referral-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.referral-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
}

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

.featured-referral {
  border: 3px solid var(--accent-gold);
}

.referral-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.referral-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.referral-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.referral-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-bg);
}

.referral-info {
  flex: 1;
}

.referral-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.referral-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.referral-reward {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.1rem;
}
/* Footer Styles */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-bottom: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand h3 {
  color: var(--primary-teal);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-contact h4,
.footer-guarantee h4 {
  color: var(--primary-teal);
  font-size: 1.3rem;
  margin-bottom: var(--spacing-md);
}

.footer-contact p,
.footer-guarantee p {
  margin: var(--spacing-xs) 0;
  opacity: 0.9;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--primary-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  color: var(--text-dark);
}

.copyright {
  opacity: 0.8;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent-gold);
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

/* Responsive Design - Media Queries */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

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

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* .hero {
    padding: 100px 0 60px;
  } */

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

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

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

  .dashboard-preview {
    padding: 15px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 20px;
  }

  .pricing-card {
    padding: 25px;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent-gold);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll Animation Classes */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .hero-buttons,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
/* ============================================
   STICKY CTA BAR - NO OVERFLOW
   ============================================ */

.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1f9d55, #168045);
  padding: 0.75rem 1rem;
  text-align: center;
  z-index: 998;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  /* Prevent overflow */
  max-width: 100vw;
  box-sizing: border-box;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.cta-button {
  background: #ffffff;
  color: #1f9d55;
  border: none;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Prevent overflow */
  max-width: calc(100vw - 2rem);
  width: auto;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .cta-button {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .sticky-cta-bar {
    padding: 0.6rem 0.5rem;
  }
}

/* Add space at bottom so content doesn't hide under CTA */
body {
  padding-bottom: 70px;
}

.footer {
  margin-bottom: 70px;
}
/* ===== PASTE THIS INTO YOUR EXISTING <style> OR STYLESHEET ===== */

body {
  font-family: "Nunito", sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
}

/* ============================================================
     SECTION 1 — WHY TREATMENTS FAIL
  ============================================================ */
.why-fail-section {
  background: linear-gradient(135deg, #1a5252 0%, #2d8b8b 60%, #3aafaf 100%);
  padding: 72px 20px;
  position: relative;
  overflow: hidden;
}
.why-fail-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.why-fail-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.why-fail-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.why-fail-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}
.why-fail-section .subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 640px;
}
.fail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}
.fail-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px 22px;
  backdrop-filter: blur(6px);
  transition:
    transform 0.25s,
    background 0.25s;
}
.fail-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}
.fail-card .card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.fail-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.fail-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}
.fail-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 28px;
}
.fail-divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.fail-divider span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 600;
}
.fail-solution-box {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid var(--accent-gold);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.fail-solution-box .sol-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.fail-solution-box h3 {
  color: var(--accent-gold);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.fail-solution-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}
.fail-solution-box strong {
  color: #fff;
}

/* ============================================================
     SECTION 2 — PROSTATE SUPPORT ASSESSMENT QUIZ
  ============================================================ */
.quiz-section {
  background: var(--bg-cream);
  padding: 80px 20px;
}
.quiz-inner {
  max-width: 700px;
  margin: 0 auto;
}
.quiz-header {
  text-align: center;
  margin-bottom: 48px;
}
.quiz-header .tag {
  display: inline-block;
  background: var(--primary-teal-light);
  color: var(--primary-teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.quiz-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.quiz-header p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
}
.quiz-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(45, 139, 139, 0.12);
  overflow: hidden;
}
.quiz-progress-bar-wrap {
  background: var(--primary-teal-light);
  height: 6px;
}
.quiz-progress-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold));
  border-radius: 3px;
  transition: width 0.4s ease;
  width: 0%;
}
.quiz-body {
  padding: 36px 32px;
}
.quiz-step {
  display: none;
  animation: fadeInUp 0.35s ease;
}
.quiz-step.active {
  display: block;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.quiz-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-teal);
  margin-bottom: 10px;
}
.quiz-step h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.4;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 2px solid #e5edf0;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}
.quiz-option:hover {
  border-color: var(--primary-teal);
  background: var(--primary-teal-light);
}
.quiz-option.selected {
  border-color: var(--primary-teal);
  background: var(--primary-teal-light);
}
.quiz-option .opt-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #c5d8d8;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.quiz-option.selected .opt-radio {
  border-color: var(--primary-teal);
  background: var(--primary-teal);
}
.quiz-option.selected .opt-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.quiz-option span {
  font-size: 0.97rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Multi-select for Q3 */
.quiz-option.multi.selected {
  border-color: var(--primary-teal);
  background: var(--primary-teal-light);
}
.quiz-option.multi .opt-radio {
  border-radius: 5px;
}
.quiz-option.multi.selected .opt-radio {
  border-color: var(--primary-teal);
  background: var(--primary-teal);
}
.quiz-option.multi.selected .opt-radio::after {
  content: "✓";
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}
.quiz-btn-back {
  background: none;
  border: 2px solid #d0dfe0;
  color: var(--text-gray);
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.quiz-btn-back:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
}
.quiz-btn-next {
  background: var(--primary-teal);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 13px 30px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-left: auto;
}
.quiz-btn-next:hover {
  background: var(--primary-teal-dark);
  transform: translateY(-2px);
}
.quiz-btn-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* Result */
.quiz-result {
  display: none;
  padding: 36px 32px;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}
.quiz-result.show {
  display: block;
}
.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.result-badge.early {
  background: #e8f5e9;
  color: #2e7d32;
}
.result-badge.active {
  background: #fff8e1;
  color: #e65100;
}
.result-badge.advanced {
  background: #fce4ec;
  color: #b71c1c;
}
.quiz-result h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.quiz-result .result-desc {
  color: var(--text-gray);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.result-package-card {
  background: var(--primary-teal-light);
  border: 2px solid var(--primary-teal);
  border-radius: 18px;
  padding: 24px 22px;
  margin: 0 auto 28px;
  max-width: 380px;
}
.result-package-card .pkg-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-teal-dark);
  margin-bottom: 6px;
}
.result-package-card .pkg-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 4px;
}
.result-package-card .pkg-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-teal-dark);
}
.result-package-card .pkg-price span {
  font-size: 1rem;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}
.result-package-card .pkg-why {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}
.quiz-cta-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-teal),
    var(--primary-teal-dark)
  );
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 14px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(45, 139, 139, 0.3);
}
.quiz-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(45, 139, 139, 0.4);
}
.quiz-retake {
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-family: "Nunito", sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
}

/* ============================================================
     SECTION 3 — FACEBOOK-STYLE COMMENTS
  ============================================================ */
.comments-section {
  background: var(--white);
  padding: 72px 20px;
  border-top: 1px solid #e8eff0;
}
.comments-inner {
  max-width: 680px;
  margin: 0 auto;
}
.comments-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary-teal-light);
}
.fb-logo {
  width: 36px;
  height: 36px;
  background: #1877f2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: Georgia, serif;
  flex-shrink: 0;
}
.comments-header-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.comments-header-text p {
  font-size: 0.82rem;
  color: var(--text-gray);
}
.comments-count {
  margin-left: auto;
  background: var(--primary-teal-light);
  color: var(--primary-teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

.comment-item {
  display: flex;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f4f4;
  animation: fadeInUp 0.4s ease;
}
.comment-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--primary-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-teal-dark);
}
.comment-content {
  flex: 1;
}
.comment-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.comment-name .verified-badge {
  background: var(--primary-teal);
  color: #fff;
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.comment-text {
  font-size: 0.93rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 8px;
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-gray);
}
.comment-meta .like-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: var(--text-gray);
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: "Nunito", sans-serif;
  font-size: 0.78rem;
  padding: 0;
}
.comment-meta .like-btn.liked {
  color: #1877f2;
}
.comment-meta .like-btn:hover {
  color: #1877f2;
}
.comment-meta .reply-btn {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-gray);
  background: none;
  border: none;
  font-family: "Nunito", sans-serif;
  font-size: 0.78rem;
  padding: 0;
}
.comment-meta .reply-btn:hover {
  color: var(--primary-teal);
}

.comment-reply {
  background: #f7fafa;
  border-left: 3px solid var(--primary-teal-light);
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.comment-reply .reply-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--secondary-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
.comment-reply .reply-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.comment-reply .reply-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-teal-dark);
  margin-bottom: 2px;
}

.comments-compose {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  background: var(--primary-teal-light);
  border-radius: 16px;
}
.compose-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.compose-input {
  flex: 1;
  background: var(--white);
  border: 1px solid #cfe0e0;
  border-radius: 24px;
  padding: 10px 18px;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
}
.compose-input:focus {
  border-color: var(--primary-teal);
}
.compose-send {
  background: var(--primary-teal);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.compose-send:hover {
  background: var(--primary-teal-dark);
}

/* ============================================================
     SECTION 4 — WHAT HAPPENS IF IGNORED
  ============================================================ */
.danger-section {
  background: linear-gradient(180deg, #fff9f7 0%, #fce8e1 100%);
  padding: 72px 20px;
  border-top: 1px solid #f5d8ce;
}
.danger-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.danger-tag {
  display: inline-block;
  background: #fce8e1;
  color: var(--warning-orange);
  border: 1px solid #f5c8b4;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.danger-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.danger-inner > p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}

.danger-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: left;
}
.danger-timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #f5c8b4, #e74c3c);
}
.danger-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}
.danger-step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.danger-step:nth-child(1) .danger-step-num {
  background: #fff8e1;
}
.danger-step:nth-child(2) .danger-step-num {
  background: #fff3e0;
}
.danger-step:nth-child(3) .danger-step-num {
  background: #fce4ec;
}
.danger-step:nth-child(4) .danger-step-num {
  background: #fce4ec;
}
.danger-step:nth-child(5) .danger-step-num {
  background: #f5c8b4;
}

.danger-step-text h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  padding-top: 14px;
}
.danger-step-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.danger-cta-box {
  background: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--primary-teal-dark) 100%
  );
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(45, 139, 139, 0.25);
}
.danger-cta-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.danger-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.danger-cta-btn {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--text-dark);
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 14px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}
.danger-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
}
.danger-cta-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 600px) {
  .quiz-body,
  .quiz-result {
    padding: 24px 18px;
  }
  .fail-solution-box {
    flex-direction: column;
  }
  .comments-compose {
    flex-wrap: wrap;
  }
  .danger-timeline::before {
    left: 24px;
  }
}
