.elementor-343 .elementor-element.elementor-element-c89bd23{margin:010px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-343 .elementor-element.elementor-element-0775e44{margin:020px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-343 .elementor-element.elementor-element-bc33b10{margin:020px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-343 .elementor-element.elementor-element-4503a2b{margin:020px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-343 .elementor-element.elementor-element-386ae69{margin:020px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-343 .elementor-element.elementor-element-cb7f83e{margin:020px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-c89bd23 *//* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #0F766E;
    --secondary: #ECFDF5;
    --accent: #10B981;
    --button: #F97316;
    --button-hover: #EA580C;
    --heading: #0F172A;
    --text: #475569;
    --white: #FFFFFF;
    --border: #D1FAE5;
    --shadow: 0 12px 35px rgba(15, 23, 42, .08);
    --radius: 14px;
    --transition: 0.35s ease;
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-title,
.hero-badge {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    padding: 32px 20px;
    background: linear-gradient(135deg, #ECFDF5 0%, #FFFFFF 45%, #D1FAE5 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Background decorative blur circles */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.hero-section::before {
    width: 400px;
    height: 400px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
}

.hero-section::after {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* ============================================
   LEFT CONTENT
   ============================================ */
.hero-content {
    max-width: 520px;
    flex: 1;
}

/* ============================================
   BADGE
   ============================================ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    margin-bottom: 12px;
    animation: fadeUp 0.6s ease forwards;
}

/* ============================================
   HEADING
   ============================================ */
.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    animation: fadeUp 0.6s ease 0.1s both;
}

/* ============================================
   DESCRIPTION
   ============================================ */
.hero-description {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 16px;
    animation: fadeUp 0.6s ease 0.2s both;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 18px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:nth-child(1) { animation: fadeUp 0.6s ease 0.25s both; }
.feature-card:nth-child(2) { animation: fadeUp 0.6s ease 0.35s both; }
.feature-card:nth-child(3) { animation: fadeUp 0.6s ease 0.45s both; }
.feature-card:nth-child(4) { animation: fadeUp 0.6s ease 0.55s both; }

/* Feature Card Hover Effects */
.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: var(--secondary);
    border-color: var(--accent);
    box-shadow: 0 16px 35px rgba(16, 185, 129, 0.20);
}

/* Animated Left Border (::before) */
.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 3px;
    background: var(--accent);
    border-radius: 3px 0 0 3px;
    transition: height 0.4s ease;
}

.feature-card:hover::before {
    height: 100%;
}

/* Shimmer Effect (::after) */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(16, 185, 129, 0.06) 50%,
        transparent 100%);
    transition: left 0.6s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    left: 100%;
}

/* Feature Icon */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.15);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.45);
}

/* Feature Content & Text */
.feature-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.feature-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--heading);
    transition: color 0.35s ease, letter-spacing 0.35s ease;
}

.feature-card:hover .feature-text {
    color: var(--primary);
    letter-spacing: 0.3px;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.hero-button {
    animation: fadeUp 0.6s ease 0.65s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--button);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.30);
}

.hero-btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

/* ============================================
   PRODUCT IMAGE
   ============================================ */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.6s ease 0.4s both;
}

.image-card {
    background: var(--white);
    padding: 18px;
    border-radius: 22px;
    max-width: 360px;
    width: 100%;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE - TABLET (768px - 991px)
   ============================================ */
@media (max-width: 991px) {
    .container {
        gap: 30px;
    }

    .hero-section {
        padding: 28px 20px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-content {
        max-width: 460px;
    }

    .image-card {
        max-width: 300px;
        padding: 14px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (below 768px)
   ============================================ */
@media (max-width: 767px) {
    .hero-section {
        padding: 24px 18px;
    }

    .container {
        flex-direction: column;
        gap: 22px;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 28px;
        text-align: center;
    }

    .hero-description {
        font-size: 15px;
        max-width: 100%;
        text-align: center;
        margin-bottom: 14px;
    }

    .hero-features {
        width: 100%;
        align-items: stretch;
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .feature-card {
        padding: 12px 16px;
        gap: 12px;
        justify-content: flex-start;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 14px;
    }

    .feature-text {
        font-size: 14px;
        text-align: left;
    }

    .hero-button {
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }

    .image-card {
        max-width: 300px;
        width: 80%;
        padding: 14px;
    }

    /* Fix for left border on mobile - still works */
    .feature-card::before {
        height: 0%;
    }
    .feature-card:hover::before {
        height: 100%;
    }
}

/* ============================================
   RESPONSIVE - SMALL PHONES (below 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-section {
        padding: 20px 14px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

    .image-card {
        width: 90%;
        max-width: 260px;
        padding: 12px;
    }

    .feature-card {
        padding: 10px 14px;
        gap: 10px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 12px;
    }

    .feature-text {
        font-size: 13px;
    }

    .hero-btn {
        font-size: 15px;
        padding: 12px 18px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0775e44 *//* ===== SECTION 2 — WHY CHOOSE OUR MULTIVITAMIN? ===== */
/* Only styles for Section 2. No external frameworks, no JS. */

/* ----- FONT IMPORTS (Poppins + Inter) ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&family=Poppins:wght@600;700&display=swap');

/* ----- MAIN SECTION (compact, Deep Teal) ----- */
.multivitamin-benefits-section {
  width: 100%;
  background-color: #0F766E;          /* Deep Teal */
  padding: 50px 20px;                /* compact vertical */
  box-sizing: border-box;
  overflow: hidden;                  /* prevent horizontal scroll */
}

/* ----- CONTAINER (centered max-width) ----- */
.multivitamin-benefits-container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ----- SECTION HEADING (white, Poppins, compact) ----- */
.benefits-section-header {
  text-align: center;
}

.benefits-section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto 28px;               /* close to cards */
  letter-spacing: -0.01em;
}

/* ----- BENEFITS GRID (3 cols, 2 rows) ----- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  box-sizing: border-box;
}

/* ----- PREMIUM BENEFIT CARD (white, border, shadow) ----- */
.benefit-card {
  background-color: #FFFFFF;
  border: 1px solid #D1FAE5;         /* Light Green */
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Card hover (premium lift + border + shadow) */
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: #10B981;             /* Emerald Green */
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
}

/* ----- CARD ICON (round, mint bg, centered) ----- */
.benefit-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ECFDF5;         /* Soft Mint */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Icon hover (subtle scale) */
.benefit-card:hover .benefit-card-icon {
  transform: scale(1.08);
}

/* ----- SVG ICON (Emerald green, 25px) ----- */
.benefit-icon-svg {
  width: 25px;
  height: 25px;
  stroke: #10B981;                   /* Emerald Green */
  fill: none;
  transition: transform 0.3s ease;
}

/* Icon SVG subtle scale on card hover */
.benefit-card:hover .benefit-icon-svg {
  transform: scale(1.05);
}

/* ----- CARD CONTENT (centered, tight) ----- */
.benefit-card-content {
  width: 100%;
}

/* Card heading (Poppins, Dark Navy) */
.benefit-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #0F172A;                    /* Dark Navy */
  margin: 0 0 8px;
}

/* Card description (Inter, Slate Gray, compact) */
.benefit-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;                    /* Slate Gray */
  margin: 0;
}

/* ----- CARD ACCENT (animated green line at bottom) ----- */
.benefit-card-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #10B981;         /* Emerald Green */
  transition: width 0.35s ease;
  border-radius: 4px;
}

.benefit-card:hover .benefit-card-accent {
  width: 60px;                       /* expands on hover */
}

/* ----- TRUST STRIP (compact pill, white border) ----- */
.benefits-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-sizing: border-box;
}

/* ----- TRUST STARS (Emerald, compact) ----- */
.trust-stars {
  color: #10B981;                    /* Emerald Green */
  font-size: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
  line-height: 1;
}

/* ----- TRUST TEXT (white, Inter) ----- */
.trust-text {
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

/* ----- CTA WRAPPER (centered, compact top margin) ----- */
.benefits-cta-wrapper {
  text-align: center;
  margin-top: 18px;
}

/* ----- CTA BUTTON (Orange, Poppins, accessible) ----- */
.benefits-cta {
  background-color: #F97316;         /* Bright Orange */
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 23px;
  min-height: 44px;
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.15);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* CTA hover (Dark Orange, lift) */
.benefits-cta:hover {
  background-color: #EA580C;         /* Dark Orange */
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.20);
}

/* CTA focus (keyboard accessibility) */
.benefits-cta:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
  border-radius: 8px;
}

/* ===== TABLET (768px – 1199px) ===== */
@media (max-width: 1199px) and (min-width: 768px) {
  .multivitamin-benefits-section {
    padding: 45px 18px;
  }

  .benefits-section-header h2 {
    font-size: 31px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .benefit-card {
    padding: 20px 16px;
    min-height: 180px;
  }
}

/* ===== MOBILE (< 768px) ===== */
@media (max-width: 767px) {
  .multivitamin-benefits-section {
    padding: 38px 14px;
  }

  .benefits-section-header h2 {
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 22px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    padding: 20px 17px;
    min-height: auto;                /* auto height on mobile */
    border-radius: 14px;
  }

  .benefit-card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .benefit-icon-svg {
    width: 23px;
    height: 23px;
  }

  .benefit-card h3 {
    font-size: 17px;
  }

  .benefit-card p {
    font-size: 13.5px;
  }

  /* Trust strip stays compact */
  .benefits-trust-strip {
    padding: 6px 12px;
    gap: 7px;
    margin-top: 18px;
  }

  .trust-stars {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .trust-text {
    font-size: 12px;
  }

  .benefits-cta-wrapper {
    margin-top: 16px;
  }

  .benefits-cta {
    font-size: 13px;
    padding: 10px 20px;
    min-height: 42px;
  }
}

/* ===== SMALL MOBILE (< 480px) ===== */
@media (max-width: 480px) {
  .multivitamin-benefits-section {
    padding: 32px 12px;
  }

  .benefits-section-header h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .benefits-grid {
    gap: 12px;
  }

  .benefit-card {
    padding: 18px 15px;
    border-radius: 12px;
  }

  .benefit-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .benefit-icon-svg {
    width: 22px;
    height: 22px;
  }

  .benefit-card h3 {
    font-size: 16px;
  }

  .benefit-card p {
    font-size: 13px;
  }

  .benefits-trust-strip {
    padding: 6px 10px;
    gap: 5px;
    border-radius: 999px;
  }

  .trust-stars {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .trust-text {
    font-size: 11.5px;
  }

  .benefits-cta {
    font-size: 12.5px;
    padding: 9px 18px;
    min-height: 40px;
  }
}

/* ===== REDUCED MOTION (accessibility) ===== */
@media (prefers-reduced-motion: reduce) {
  .benefit-card,
  .benefit-card-icon,
  .benefit-icon-svg,
  .benefit-card-accent,
  .benefits-cta {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }

  .benefit-card:hover {
    transform: none !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10) !important;
  }

  .benefit-card:hover .benefit-card-accent {
    width: 0 !important;
  }

  .benefits-cta:hover {
    transform: none !important;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.15) !important;
  }

  .benefit-card:hover .benefit-card-icon {
    transform: none !important;
  }

  .benefit-card:hover .benefit-icon-svg {
    transform: none !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bc33b10 *//* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400&display=swap');

/* Section 3 — Key Benefits */
.benefits-section *,
.benefits-section *::before,
.benefits-section *::after {
  box-sizing: border-box;
}

.benefits-section {
  width: 100%;
  background: #ECFDF5;
  padding: 45px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.benefits-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.benefits-heading {
  text-align: center;
  margin-bottom: 28px;
}

.benefits-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.3px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.benefit-card {
  background: #F0FDFA;
  border: 1px solid #99F6E4;
  border-radius: 16px;
  padding: 20px 16px;
  min-height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.07);
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease,
              background 0.3s ease;
}

/* Subtle shimmer effect */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(110deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: #F7FFFD;
  border-color: #10B981;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.13);
}

.benefit-card:hover::before {
  left: 140%;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #10B981;
  background: #D1FAE5;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.3s ease,
              background 0.3s ease,
              box-shadow 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.08) rotate(3deg);
  background: #D1FAE5;
  box-shadow: 0 6px 14px rgba(16, 185, 129, 0.18);
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  stroke: #10B981;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
  transform: scale(1.05);
}

.benefit-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #0F172A;
  margin: 0;
  max-width: 220px;
  position: relative;
  z-index: 2;
}

.benefits-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  width: 100%;
}

.benefits-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F97316;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  min-height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.25s ease,
              transform 0.25s ease,
              box-shadow 0.25s ease;
}

.benefits-button:hover {
  background: #EA580C;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(249, 115, 22, 0.22);
}

.benefits-button:focus {
  outline: 2px solid #0F766E;
  outline-offset: 2px;
}

/* Tablet Responsive */
@media (max-width: 900px) {
  .benefits-section {
    padding: 40px 18px;
  }

  .benefits-heading h2 {
    font-size: 29px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .benefit-card {
    min-height: 120px;
    padding: 18px 14px;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .benefits-section {
    padding: 32px 16px;
    width: 100%;
    overflow: hidden;
  }

  .benefits-container {
    width: 100%;
    max-width: 100%;
  }

  .benefits-heading {
    margin-bottom: 20px;
  }

  .benefits-heading h2 {
    font-size: 25px;
    line-height: 1.25;
    max-width: 340px;
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .benefit-card {
    width: 100%;
    min-width: 0;
    min-height: 115px;
    padding: 16px 10px;
    border-radius: 14px;
  }

  .benefit-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }

  .benefit-icon svg {
    width: 23px;
    height: 23px;
  }

  .benefit-title {
    font-size: 14px;
    line-height: 1.35;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .benefits-cta {
    margin-top: 20px;
    width: 100%;
  }

  .benefits-button {
    font-size: 14px;
    padding: 11px 20px;
    min-height: 42px;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }
}

/* Very Small Mobile */
@media (max-width: 400px) {
  .benefits-section {
    padding: 28px 12px;
  }

  .benefits-heading h2 {
    font-size: 23px;
    line-height: 1.25;
  }

  .benefits-grid {
    gap: 10px;
  }

  .benefit-card {
    min-height: 108px;
    padding: 14px 8px;
    border-radius: 12px;
  }

  .benefit-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 7px;
  }

  .benefit-icon svg {
    width: 21px;
    height: 21px;
  }

  .benefit-title {
    font-size: 13px;
    line-height: 1.3;
  }

  .benefits-button {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* Touch device optimization - ensure hover effects don't cause issues */
@media (hover: none) {
  .benefit-card:hover {
    transform: none;
    background: #F0FDFA;
    border-color: #99F6E4;
    box-shadow: 0 6px 18px rgba(15, 118, 110, 0.07);
  }

  .benefit-card:hover::before {
    left: -120%;
  }

  .benefit-card:hover .benefit-icon {
    transform: none;
    background: #D1FAE5;
    box-shadow: none;
  }

  .benefit-card:hover .benefit-icon svg {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4503a2b *//* ============================================================
   SECTION 4 — “What’s Inside?” — Premium Multivitamin
   CSS only — HTML structure untouched
   ============================================================ */

/* ---------- reset / safety ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg {
  max-width: 100%;
  display: block;
}

/* ---------- color variables ---------- */
:root {
  --primary: #0F766E;
  --secondary: #ECFDF5;
  --accent: #10B981;
  --button: #F97316;
  --button-hover: #EA580C;
  --heading: #0F172A;
  --text: #475569;
  --white: #FFFFFF;
  --border: #D1FAE5;
}

/* ---------- section background (deep teal) ---------- */
.section-inside {
  background: var(--primary);
  width: 100%;
  box-sizing: border-box;
  padding: 55px 20px;           /* compact vertical padding */
  overflow: hidden;
  border-radius: 2rem;
}

/* ---------- centered container ---------- */
.section-inside .container,
.section-inside > * {
  max-width: 1150px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* ---------- heading area ---------- */
.heading-wrap {
  text-align: center;
  margin-bottom: 1.8rem;
}

.label-small {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 2px 0;
}

.main-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  color: var(--white);
  margin: 8px 0 0 0;
  letter-spacing: -0.3px;
}

/* ---------- ingredient grid (responsive) ---------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}

/* ---------- ingredient cards ---------- */
.ingredient-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 140px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

/* icon badge – white circle */
.icon-badge {
  background: var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.08);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* card text */
.card-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 0.1rem;
}

.card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text);
  line-height: 1.4;
  max-width: 100%;
}

/* ---------- card hover (desktop only) ---------- */
@media (hover: hover) and (pointer: fine) {
  .ingredient-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
    background: #ffffff;
  }

  .ingredient-card:hover .icon-badge {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.18);
  }
}

/* ---------- trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;
  padding: 0.6rem 0.2rem 0.8rem 0.2rem;
  border-top: 1px solid rgba(209, 250, 229, 0.2);
  border-bottom: 1px solid rgba(209, 250, 229, 0.2);
  margin-bottom: 1.6rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.trust-item .highlight {
  color: var(--accent);
  font-weight: 600;
  margin-right: 0.1rem;
}

/* ---------- CTA button ---------- */
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.3rem;
}

.btn-nutrition {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: var(--button);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 60px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.3px;
  line-height: 1.4;
  box-shadow: 0 8px 18px -6px rgba(249, 115, 22, 0.3);
}

.btn-nutrition:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(234, 88, 12, 0.35);
}

/* ---------- tablet : max-width 992px ---------- */
@media (max-width: 992px) {
  .section-inside {
    padding: 50px 20px;
  }

  .grid-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .main-heading {
    font-size: 30px;
  }
}

/* ---------- mobile : max-width 768px ---------- */
@media (max-width: 768px) {
  .section-inside {
    padding: 42px 16px;
  }

  .main-heading {
    font-size: 27px;
  }

  .grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ingredient-card {
    padding: 16px 12px;
    border-radius: 14px;
    min-height: 120px;
  }

  .icon-badge {
    width: 44px;
    height: 44px;
  }

  .icon-badge svg {
    width: 22px;
    height: 22px;
  }

  .card-name {
    font-size: 0.9rem;
  }

  .card-desc {
    font-size: 0.65rem;
  }

  .trust-strip {
    gap: 14px 28px;
    padding: 0.5rem 0;
  }

  .trust-item {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .trust-item svg {
    width: 18px;
    height: 18px;
  }

  .btn-nutrition {
    font-size: 0.9rem;
    padding: 10px 26px;
    border-radius: 50px;
  }
}

/* ---------- very small phones : max-width 420px ---------- */
@media (max-width: 420px) {
  .section-inside {
    padding: 36px 12px;
  }

  .main-heading {
    font-size: 24px;
  }

  .grid-cards {
    gap: 10px;
  }

  .ingredient-card {
    padding: 14px 10px;
    min-height: 110px;
    border-radius: 12px;
  }

  .icon-badge {
    width: 38px;
    height: 38px;
  }

  .icon-badge svg {
    width: 18px;
    height: 18px;
  }

  .card-name {
    font-size: 0.8rem;
  }

  .card-desc {
    font-size: 0.6rem;
  }

  .trust-strip {
    gap: 8px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-item {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .trust-item svg {
    width: 16px;
    height: 16px;
  }

  .btn-nutrition {
    font-size: 0.8rem;
    padding: 10px 22px;
  }
}

/* ---------- extremely narrow : force single column ---------- */
@media (max-width: 360px) {
  .grid-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-inside {
    padding: 30px 10px;
  }

  .main-heading {
    font-size: 21px;
  }

  .trust-item {
    white-space: normal;
    font-size: 0.7rem;
  }
}

/* ---------- disable hover on touch devices ---------- */
@media (hover: none) {
  .ingredient-card:hover {
    transform: none !important;
    border-color: var(--border) !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08) !important;
    background: var(--secondary) !important;
  }

  .ingredient-card:hover .icon-badge {
    transform: none !important;
  }

  .btn-nutrition:hover {
    transform: none !important;
    background: var(--button) !important;
    box-shadow: 0 8px 18px -6px rgba(249, 115, 22, 0.3) !important;
  }
}/* End custom CSS */