.new-hero {
    background: #f8f9fa; /* Light clean background */
    /* padding: 0 20px 0; */
    text-align: center;
    border-radius: 0 0 8px 8px;
  }
  .hero-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .hero-image {
    flex: 1 1 300px;
    /* padding: 10px; */
    width: 100%;
  }
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
  }
  .hero-content {
    flex: 1 1 400px;
    padding: 20px;
    text-align: left;
  }
  .hero-badge {
    background-color: #d90000; /* Urgency Red */
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 0.9em;
    display: inline-block;
    margin-bottom: 10px;
  }
  .hero-headline {
    font-size: 2.2em;
    line-height: 1.2;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
  }
  .hero-subhead {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
  }
  .hero-cta {
    background-color: #28a745; /* Action Green */
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
  }
  .hero-cta:hover {
    background-color: #218838;
  }
  /* Mobile tweak */
  @media(max-width: 768px) {
    .hero-content { text-align: center; }
  } 

   .offer-stack {
    border: 2px dashed #ccc;
    background: #fff;
    padding: 20px;
    margin-top: 25px;
    max-width: 600px;
    border-radius: 10px;
  }
  .stack-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .stack-item.total {
    border-top: 2px solid #333;
    border-bottom: none;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 10px;
    padding-top: 15px;
  }
  .free-tag { 
    color: #d90000;
    font-weight: bold;
  }
  .strike {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
  }

 

   .science-container {
    background: #f0f8ff; /* Light clinical blue */
    padding: 24px 20px 40px;
    text-align: center;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 25px;
  }
  .science-headline {
    font-size: 1.8em;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
  }
  .comparison-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
  }
  .comp-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    text-align: left;
    position: relative;
  }
  .comp-card.bad { border-bottom: 5px solid #e74c3c; }
  .comp-card.good { border-bottom: 5px solid #27ae60; border: 2px solid #27ae60; }
 
  .chart-bar-bg {
    background: #eee;
    height: 25px;
    border-radius: 15px;
    margin: 15px 0;
    overflow: hidden;
  }
  .chart-bar-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    padding-right: 10px;
  }
  .fill-bad { width: 15%; background: #e74c3c; } /* 15% Absorption */
  .fill-good { width: 95%; background: #27ae60; } /* 95% Absorption */
 
  .badge-best {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
  } 
  .custom-class2{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }



  :root {
    --primary-red: #d9534f;
    --primary-blue: #007bff;
    --text-dark: #333;
    --bg-light: #f8f9fa;
  }

  /* --- 2. Scarcity Bar (Sticky Top) --- */
  .scarcity-bar {
    background-color: var(--primary-red);
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
  }

  /* --- 3. Visual Mechanism (Pill vs Liquid) --- */
  .mechanism-container {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
    padding: 0 15px;
  }
  .mechanism-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 10px;
  }
  .mechanism-caption {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: -5px;
  }

  /* --- 4. As Seen On (Logos) --- */
  .seen-on-container {
    /* background: #fff; */
    padding: 20px 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  .seen-on-title {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 700;
  }
  .logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
  }
  .logo-grid:hover{
      filter: grayscale(0);
  }
  .logo-item {
    height: 22px; /* Small and subtle */
    width: auto;
  }

  /* --- 5. UGC Testimonials (Polaroid Style) --- */
  .ugc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 on Desktop */
    gap: 15px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 15px;
  }
  .ugc-card {
    background: white;
    padding: 10px 10px 20px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    text-align: left;
    transform: rotate(-1deg); /* Slight Polaroid tilt */
    transition: transform 0.2s;
  }
  .ugc-card:nth-child(even) { transform: rotate(1deg); } /* Alternate tilt */
 
  .ugc-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
  }
  .ugc-quote {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
  }
  .ugc-author {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
  }

  /* --- 6. Scannable Benefits (Bullets) --- */
  .benefit-box {
    background: #f0f7ff;
    border: 1px solid #cce5ff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    max-width: 500px;
  }
  .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
  }
  .check-icon {
    color: #28a745;
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
  }
 
  /* --- MOBILE OPTIMIZATION --- */
  @media (max-width: 768px) {
    .ugc-grid {
      grid-template-columns: 1fr; /* 1 Column on Mobile */
      max-width: 350px; /* Restrict width for 'card' look */
    }
    .ugc-card {
      margin-bottom: 20px;
    }
    .logo-item {
      height: 18px; /* Smaller logos on phone */
      gap: 15px;
    }
    .benefit-item {
      font-size: 14px;
    }
  }