/* =========================================================
   DO GOOD LANDING PAGE - CLEANED STYLESHEET
   Purpose: Main styling for English and Chinese landing pages
   Structure:
   01. Imports, variables, reset
   02. Header and navigation
   03. Shared buttons and layout utilities
   04. Hero section
   05. Shared section typography
   06. About / pain point section
   07. Certifications section
   08. 90 days guarantee section
   09. Video section
   10. Enzyme system / science section
   11. Paul D. Boyer quote section
   12. How it works / recovery timeline
   13. Expert voices section
   14. Product showcase section
   15. SGS proof section
   16. Improvement / benefits section
   17. FAQ section
   18. Final CTA section
   19. Footer
   20. Reveal animation
   21. Responsive styles
   ========================================================= */

/* =========================================================
   01. IMPORTS, VARIABLES, RESET
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --white: #ffffff;
  --ivory: #fbf7ec;
  --cream: #f5ecd9;
  --soft-cream: #fffdf7;

  --gold: #c89335;
  --gold-dark: #9f742c;
  --gold-light: #ecd59b;

  --green: #557742;
  --green-dark: #2f4728;
  --green-soft: #edf4e5;

  --text-main: #2d3027;
  --text-muted: #61635a;
  --text-light: #88877d;

  --danger: #c34824;

  --border-gold: rgba(200, 147, 53, 0.28);
  --border-green: rgba(47, 71, 40, 0.14);

  --shadow-soft: 0 16px 42px rgba(63, 51, 26, 0.08);
  --shadow-medium: 0 28px 70px rgba(63, 51, 26, 0.14);

  --container: 1220px;
  --header-height: 106px;

  --radius-large: 34px;
  --radius-medium: 22px;
  --radius-small: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--ivory);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 56px, var(--container));
  margin: 0 auto;
}

/* =========================================================
   HEADER / NAVIGATION
   Purpose: Clean desktop navbar with better spacing and less cramped layout.
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 147, 53, 0.12);
}

.header-inner {
  height: 100%;
  width: min(100% - 48px, 1320px);
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.brand img {
  width: 96px;
  height: auto;
  display: block;
}

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
  /* fade edges to hint scrollability */
  mask-image: linear-gradient(
    to right,
    transparent 0px,
    black 12px,
    black calc(100% - 12px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0px,
    black 12px,
    black calc(100% - 12px),
    transparent 100%
  );
  padding: 0 8px;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  position: relative;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #343a31;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.15;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold-dark);
  background: rgba(200, 147, 53, 0.08);
}

.main-nav a.active {
  color: var(--gold-dark);
  background: rgba(200, 147, 53, 0.1);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  min-width: 0;
}

.order-btn {
  width: 126px;
  height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(200, 147, 53, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.order-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(200, 147, 53, 0.28);
}

.language-switcher {
  height: 40px;
  padding-left: 14px;
  border-left: 1px solid rgba(47, 71, 40, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #343a31;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.lang-globe {
  width: 17px;
  height: 17px;
  border: 1.5px solid #3a3d34;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  position: relative;
}

.lang-globe::before,
.lang-globe::after {
  content: "";
  position: absolute;
  border: 1px solid #3a3d34;
  border-radius: 50%;
}

.lang-globe::before {
  width: 7px;
  height: 15px;
}

.lang-globe::after {
  width: 15px;
  height: 7px;
}

.lang-caret {
  color: var(--text-muted);
  font-size: 0.78rem;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1360px) {
  .header-inner {
    width: min(100% - 36px, 1240px);
    grid-template-columns: 100px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand img {
    width: 84px;
  }

  .main-nav a {
    padding: 0 9px;
    font-size: 0.75rem;
  }

  .order-btn {
    width: 110px;
    height: 48px;
    font-size: 0.71rem;
    padding: 0 12px;
  }

  .language-switcher {
    padding-left: 10px;
    font-size: 0.75rem;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    width: min(100% - 32px, var(--container));
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }

  .brand img {
    width: 92px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    z-index: 999;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 253, 247, 0.98);
    border: 1px solid rgba(200, 147, 53, 0.18);
    box-shadow: 0 24px 58px rgba(63, 51, 26, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open,
  .main-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 0.92rem;
    border-radius: 14px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .order-btn {
    width: auto;
    min-width: 106px;
    height: 44px;
    padding: 0 17px;
    font-size: 0.7rem;
  }

  .language-switcher {
    border-left: none;
    padding-left: 0;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 24px, var(--container));
  }

  .brand img {
    width: 86px;
  }

  .order-btn {
    display: none;
  }

  .language-switcher {
    font-size: 0.76rem;
  }
}

/* =========================================================
   03. SHARED BUTTONS AND LAYOUT UTILITIES
   ========================================================= */

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 15px 27px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.primary-btn {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(200, 147, 53, 0.24);
}

.primary-btn span {
  margin-left: 12px;
  font-size: 1.1rem;
}

.primary-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(200, 147, 53, 0.28);
}

.secondary-btn {
  border: 1px solid var(--border-gold);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.64);
}

.secondary-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 68px;
  align-items: center;
}

.info-card {
  padding: 42px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at top right, rgba(236, 213, 155, 0.22), transparent 36%),
    var(--white);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 25px;
}

.info-card ul,
.offer-points {
  list-style: none;
  display: grid;
  gap: 14px;
}

.info-card li,
.offer-points li {
  color: var(--text-muted);
  position: relative;
  padding-left: 30px;
}

.info-card li::before,
.offer-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

/* =========================================================
   04. HERO SECTION
   ========================================================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 52px 0 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.96) 26%, rgba(255, 253, 247, 0.73) 43%, rgba(255, 253, 247, 0.22) 61%, rgba(255, 253, 247, 0) 100%),
    url("DoGood Packaging bg2.png");
  background-size: cover;
  background-position: center right;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  bottom: -78px;
  height: 150px;
  background: var(--soft-cream);
  border-top: 3px solid rgba(236, 213, 155, 0.76);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  z-index: 2;
}

.hero-soft-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 11% 18%, rgba(255, 255, 255, 0.94), transparent 31%),
    radial-gradient(circle at 51% 13%, rgba(236, 213, 155, 0.2), transparent 29%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.72fr 0.28fr;
  align-items: center;
  gap: 28px;
}

.hero-content {
  padding-top: 8px;
}

.hero-tag {
  color: var(--green);
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-size: clamp(4rem, 5.4vw, 5.7rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 25px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 360px);
  margin-bottom: 22px;
}

.hero-divider span:first-child,
.hero-divider span:last-child {
  height: 1px;
  flex: 1;
  background: var(--gold);
}

.divider-symbol {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-description {
  max-width: 470px;
  color: #4f5148;
  font-size: 1.03rem;
  line-height: 1.58;
  margin-bottom: 27px;
}

.hero-icon-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 456px;
  margin-bottom: 34px;
}

.hero-icon-item {
  text-align: center;
}

.hero-icon-circle {
  width: 80px;
  height: 80px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 11px;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 247, 0.64);
  font-size: 3rem;
}

.hero-icon-item p {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 25px;
  border-left: 1px solid rgba(47, 71, 40, 0.22);
}

.hero-trust-icon {
  width: 45px;
  height: 45px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.hero-trust p {
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  font-weight: 800;
}

.hero-visual {
  min-height: 560px;
  position: relative;
  pointer-events: none;
}

.hero-pattern-ring,
.hero-product-image {
  display: none;
}

.hero-feature-container {
  position: relative;
  z-index: 4;
}

.hero-feature-bar {
  margin-top: 4px;
  padding: 22px 34px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(63, 51, 26, 0.12);
  border: 1px solid rgba(200, 147, 53, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.hero-feature-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid rgba(47, 71, 40, 0.12);
}

.hero-feature-card:last-child {
  border-right: none;
  padding-right: 0;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  background: rgba(255, 253, 247, 0.85);
  font-size: 1.05rem;
}

.hero-feature-card h3 {
  color: var(--green-dark);
  font-size: 0.91rem;
  line-height: 1.25;
  margin-bottom: 3px;
}

.hero-feature-card p {
  color: #55574e;
  font-size: 0.79rem;
  line-height: 1.35;
}

/* =========================================================
   05. SHARED SECTION TYPOGRAPHY
   ========================================================= */

.section {
  padding: 110px 0;
}

.section:nth-of-type(even) {
  background: var(--soft-cream);
}

.section:nth-of-type(odd) {
  background: var(--ivory);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-label {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading h2,
.section-copy h2,
.offer-copy h2,
.final-cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-heading p,
.section-copy p,
.offer-copy p,
.final-cta-box p {
  color: var(--text-muted);
  font-size: 1rem;
}

.section-copy p + p {
  margin-top: 18px;
}

/* =========================================================
   ABOUT / PAIN POINT BACKGROUND
   Purpose: Keeps the lifestyle image as the section background
========================================================= */

.pain-point-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  height: auto;
  padding: 64px 0 78px;
  overflow: hidden;
  background: var(--soft-cream);
}

.pain-point-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Images/pain-point-hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.pain-point-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 247, 0.96) 0%,
      rgba(255, 253, 247, 0.88) 34%,
      rgba(255, 253, 247, 0.68) 58%,
      rgba(255, 253, 247, 0.38) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.pain-point-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   PAIN POINT AUTO CAROUSEL
   Purpose: Moving pain-point cards that make users stop and notice
========================================================= */

.pain-carousel-section {
  position: relative;
  z-index: 2;
  margin-top: 36px;
}

.pain-carousel-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.pain-carousel-heading h3 {
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}

.pain-carousel-heading p:not(.section-label) {
  color: #20251f;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 650;
  max-width: 680px;
}

.pain-carousel-track-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  padding: 6px 0 18px;
  cursor: grab;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pain-carousel-track-wrap::-webkit-scrollbar {
  display: none;
}

.pain-carousel-track-wrap.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}


.pain-carousel-card {
  user-select: none;
}

.pain-carousel-card img {
  pointer-events: none;
  user-select: none;
}

.pain-carousel-track-wrap::before,
.pain-carousel-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.pain-carousel-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--soft-cream), rgba(255, 253, 247, 0));
}

.pain-carousel-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--soft-cream), rgba(255, 253, 247, 0));
}


.pain-carousel-card {
  position: relative;
  width: 330px;
  min-height: 390px;
  flex: 0 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(200, 147, 53, 0.18);
  box-shadow: 0 20px 44px rgba(63, 51, 26, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-carousel-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 30px 64px rgba(63, 51, 26, 0.18);
}

.pain-carousel-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #eee8dc;
}

.pain-carousel-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(122, 63, 64, 0.94);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(63, 51, 26, 0.2);
}

.pain-carousel-copy {
  padding: 22px 24px 26px;
}

.pain-carousel-copy span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(195, 72, 36, 0.1);
  color: #a94932;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pain-carousel-copy h3 {
  color: var(--green-dark);
  font-size: 1.35rem;
  line-height: 1.12;
  font-weight: 950;
  margin-bottom: 10px;
}

.pain-carousel-copy p {
  color: #33352d;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 600;
}

.pain-carousel-feature {
  width: 390px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 236, 0.96));
  border: 2px solid rgba(200, 147, 53, 0.32);
}

.pain-carousel-feature .pain-carousel-copy h3 {
  font-size: 1.65rem;
}

.pain-carousel-feature .pain-carousel-number {
  background: var(--gold);
}

.pain-carousel-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 6px 0 18px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  touch-action: pan-y;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.pain-carousel-track-wrap.is-dragging {
  cursor: grabbing;
}

.pain-carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.pain-carousel-card,
.pain-carousel-card * {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.pain-carousel-card img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

@media (max-width: 1180px) {
  .pain-carousel-card {
    width: 310px;
    min-height: 372px;
  }

  .pain-carousel-feature {
    width: 360px;
  }
}

@media (max-width: 760px) {
  .pain-carousel-heading h3 {
    font-size: 2.3rem;
  }

  .pain-carousel-track {
    gap: 16px;
    animation-duration: 32s;
  }

  .pain-carousel-card,
  .pain-carousel-feature {
    width: 280px;
    min-height: 360px;
  }

  .pain-carousel-card img {
    height: 185px;
  }

  .pain-carousel-copy {
    padding: 20px;
  }

  .pain-carousel-copy h3,
  .pain-carousel-feature .pain-carousel-copy h3 {
    font-size: 1.22rem;
  }

  .pain-carousel-track-wrap::before,
  .pain-carousel-track-wrap::after {
    width: 52px;
  }
}

.pain-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.pain-carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(200, 147, 53, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(63, 51, 26, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pain-carousel-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Prevent selection outline / drag boundary during carousel dragging */
.pain-carousel-track-wrap,
.pain-carousel-track,
.pain-carousel-card,
.pain-carousel-card * {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}


.pain-carousel-track-wrap:focus,
.pain-carousel-track-wrap:focus-visible,
.pain-carousel-card:focus,
.pain-carousel-card:focus-visible {
  outline: none;
}

.pain-carousel-card img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

/* =========================================================
   07. CERTIFICATIONS SECTION
   Purpose: Certification section with logos above certs.
   Certs are uncropped and clickable for zoom preview.
========================================================= */

.certification-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 42px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(236, 213, 155, 0.14), transparent 28%),
    radial-gradient(circle at 88% 15%, rgba(85, 119, 66, 0.06), transparent 30%),
    var(--soft-cream);
  overflow: hidden;
}

.certification-grid {
  min-height: calc(100vh - var(--header-height) - 84px);
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
}

/* LEFT COPY */

.certification-copy {
  max-width: 510px;
}

.certification-copy .section-label {
  margin-bottom: 10px;
}

.certification-copy h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-size: clamp(2.45rem, 3.35vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.certification-copy > p:not(.section-label) {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.58;
  margin-bottom: 20px;
}

.certification-list {
  display: grid;
  gap: 10px;
}

.certification-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(200, 147, 53, 0.14);
  box-shadow: 0 8px 18px rgba(63, 51, 26, 0.05);
}

.certification-item span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certification-item p {
  color: var(--text-main);
  font-size: 0.78rem;
  line-height: 1.42;
  font-weight: 500;
}

/* RIGHT VISUAL */

.certification-visual {
  display: grid;
  gap: 20px;
  align-items: center;
}

/* LOGOS ABOVE */

.certification-logo-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: center;
}

.cert-logo-card {
  height: 100px;
  padding: 10px;
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 236, 217, 0.88));
  border: 1px solid rgba(200, 147, 53, 0.16);
  box-shadow: 0 8px 18px rgba(63, 51, 26, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cert-logo-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

/* CERTIFICATES BELOW */

.certification-doc-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.cert-doc-card {
  height: 200px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 71, 40, 0.1);
  box-shadow: 0 12px 24px rgba(63, 51, 26, 0.1);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cert-doc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 147, 53, 0.38);
  box-shadow: 0 18px 36px rgba(63, 51, 26, 0.14);
}

.cert-doc-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* MODAL ZOOM */

.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(20, 24, 18, 0.82);
  backdrop-filter: blur(10px);
}

.cert-modal.active {
  display: flex;
}

.cert-modal img {
  max-width: min(94vw, 920px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.cert-modal-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(236, 213, 155, 0.38);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.96);
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

/* DESKTOP HEIGHT SAFETY */

@media (max-height: 820px) and (min-width: 1181px) {
  .certification-section {
    padding: 32px 0;
  }

  .certification-grid {
    min-height: calc(100vh - var(--header-height) - 64px);
    gap: 36px;
  }

  .certification-copy h2 {
    font-size: clamp(2.25rem, 3vw, 3.55rem);
    margin-bottom: 12px;
  }

  .certification-copy > p:not(.section-label) {
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .certification-item {
    min-height: 52px;
    padding: 10px 14px;
  }

  .cert-logo-card {
    height: 64px;
  }

  .cert-logo-card img {
    height: 44px;
  }

  .cert-doc-card {
    height: 154px;
  }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .certification-section {
    min-height: auto;
    padding: 74px 0;
    overflow: visible;
  }

  .certification-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .certification-copy {
    max-width: none;
    text-align: center;
  }

  .certification-list {
    max-width: 760px;
    margin: 0 auto;
  }

  .certification-logo-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .certification-doc-panel {
    grid-template-columns: repeat(4, 1fr);
  }

  .cert-doc-card {
    height: 170px;
  }
}

@media (max-width: 760px) {
  .certification-section {
    padding: 62px 0;
  }

  .certification-copy h2 {
    font-size: 2.45rem;
  }

  .certification-copy > p:not(.section-label) {
    font-size: 0.9rem;
  }

  .certification-item {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: left;
  }

  .certification-logo-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .certification-doc-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-doc-card {
    height: 180px;
  }

  .cert-modal {
    padding: 18px;
  }

  .cert-modal-close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 480px) {
  .certification-logo-panel,
  .certification-doc-panel {
    grid-template-columns: 1fr;
  }

  .cert-doc-card {
    height: 230px;
  }
}

/* =========================================================
   08. 90 DAYS GUARANTEE SECTION
   Purpose: full-width split layout matching reference image
   ========================================================= */

.guarantee-section {
  position: relative;
  background: #f7f4ed;
  padding: 0;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.guarantee-full-layout {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 63.5% 36.5%;
  align-items: stretch;
}

/* LEFT VISUAL AREA */

.guarantee-left-visual {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: #fbf8ef;
}

.guarantee-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
}

.guarantee-stat-overlay {
  position: absolute;
  left: 3.8%;
  top: 25%;
  width: 92.4%;
  max-width: 860px;
  display: block;
  border-radius: 20px;
  /* box-shadow: 0 20px 42px rgba(47, 71, 40, 0.22); */
}
.guarantee-stat-overlay-ch {
  position: absolute;
  left: 3.8%;
  top: 32%;
  width: 92.4%;
  max-width: 860px;
  display: block;
  border-radius: 20px;
  /* box-shadow: 0 20px 42px rgba(47, 71, 40, 0.22); */
}

/* RIGHT CONTENT AREA */

.guarantee-right-content {
  min-height: calc(100vh - var(--header-height));
  padding: 66px 72px 58px 54px;
  background: #fffdf8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guarantee-info-block {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: start;
}

.guarantee-info-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(47, 71, 40, 0.18);
}

.guarantee-info-text h3 {
  color: var(--green-dark);
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.guarantee-info-text p {
  color: #20251f;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 560;
  max-width: 520px;
}

.guarantee-divider {
  height: 1px;
  background: rgba(201, 154, 63, 0.5);
  margin: 34px 0 34px 76px;
}

.guarantee-cta-btn {
  width: 100%;
  max-width: 440px;
  min-height: 72px;
  margin-top: 36px;
  margin-left: 76px;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 18px 34px rgba(200, 147, 53, 0.24);
}

/* HEIGHT SAFETY */

@media (max-height: 820px) and (min-width: 1181px) {
  .guarantee-right-content {
    padding: 46px 64px 46px 48px;
  }

  .guarantee-info-block {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .guarantee-info-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .guarantee-info-text h3 {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .guarantee-info-text p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .guarantee-divider {
    margin: 24px 0 24px 64px;
  }

  .guarantee-cta-btn {
    min-height: 60px;
    margin-top: 24px;
    margin-left: 64px;
    font-size: 0.86rem;
  }

  .guarantee-stat-overlay {
    top: 27%;
    width: 91%;
  }
  .guarantee-stat-overlay-ch {
    top: 32%;
    width: 91%;
  }

}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .guarantee-section {
    min-height: auto;
  }

  .guarantee-full-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .guarantee-left-visual {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .guarantee-bg-image {
    object-position: left center;
  }

  .guarantee-right-content {
    min-height: auto;
    padding: 54px 8%;
  }

  .guarantee-divider {
    margin-left: 76px;
  }

  .guarantee-cta-btn {
    margin-left: 76px;
  }
}

@media (max-width: 760px) {
  .guarantee-left-visual {
    aspect-ratio: 4 / 4.4;
  }

  .guarantee-bg-image {
    object-position: left top;
  }

  .guarantee-stat-overlay {
    left: 4%;
    top: 35%;
    width: 92%;
  }
  .guarantee-stat-overlay-ch {
    left: 4%;
    top: 35%;
    width: 92%;
  }

  .guarantee-right-content {
    padding: 42px 22px;
  }

  .guarantee-info-block {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .guarantee-info-icon {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }

  .guarantee-info-text h3 {
    font-size: 1.55rem;
  }

  .guarantee-info-text p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .guarantee-divider {
    margin: 26px 0;
  }

  .guarantee-cta-btn {
    max-width: none;
    width: 100%;
    min-height: 58px;
    margin: 28px 0 0;
    font-size: 0.82rem;
    padding: 0 18px;
  }
}

/* =========================================================
   09. VIDEO SECTION
   Purpose: YouTube thumbnails with short summaries
   ========================================================= */

.video-section {
  background: var(--soft-cream);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(200, 147, 53, 0.16);
  box-shadow: 0 14px 30px rgba(63, 51, 26, 0.08);
  overflow: hidden;
}

.video-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #ece7dc;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 147, 53, 0.94);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 14px 26px rgba(63, 51, 26, 0.22);
}

.video-copy {
  padding: 22px;
}

.video-copy h3 {
  color: var(--green-dark);
  font-size: 1.12rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.video-copy p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =========================================================
   WHY HEALTH IS NOT GETTING BETTER / ENZYME SYSTEM
   Purpose: Fits the full enzyme explanation section into one
   desktop screen at normal 100% browser zoom.
========================================================= */

.science-deep-section {
  min-height: calc(100vh - var(--header-height));
  padding: 24px 0 22px;
  background:
    radial-gradient(circle at 12% 12%, rgba(236, 213, 155, 0.1), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(85, 119, 66, 0.05), transparent 28%),
    #f7f4ed;
  overflow: hidden;
}

.enzyme-system-layout {
  max-width: 1120px;
}

/* ================================
   3 PREMIUM ACTIVE COMPONENTS
================================ */

.active-components-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(199, 157, 67, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(92, 125, 63, 0.16), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, #f7f4ea 100%);
  padding: 90px 0 80px;
  color: #123b2a;
}

.active-components-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 158, 78, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 158, 78, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.active-components-container {
  position: relative;
  z-index: 2;
}

.active-components-hero {
  position: relative;
  display: block;
  min-height: 430px;
  margin-bottom: 38px;
}

.active-components-title-wrap {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}

.active-components-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #b98b2d;
  font-weight: 700;
}

.active-components-kicker span {
  width: 85px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b98b2d, transparent);
}

.active-components-title-wrap h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  color: #123f2b;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.active-components-title-wrap h2 span {
  color: #c2922f;
  font-size: 1.2em;
}

.active-components-gold-strip {
  display: inline-block;
  margin: 22px auto 18px;
  padding: 9px 28px;
  background: linear-gradient(90deg, #b8862c, #d7b45c, #b8862c);
  color: #fff;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(167, 119, 38, 0.18);
}

.active-components-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #40524a;
  font-size: 17px;
  line-height: 1.7;
}

.active-components-subtitle strong {
  color: #123f2b;
}

/* Product becomes decorative, does not affect title alignment */

.active-component-decoration{
  position: absolute;
  right: 100%;
  top: 95px;
  width: 360px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  transform: rotate(180deg);
}

.active-components-product {
  position: absolute;
  right: -16%;
  top: 95px;
  width: 360px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.active-component-box {
  width: 330px;
  max-width: none;
  transform: rotate(4deg);
  opacity: 0.88;
  filter: drop-shadow(0 24px 24px rgba(45, 55, 38, 0.18));
}

.active-components-product img {
  width: 140%;
  max-width: 600px;
  transform: rotate(6deg);
  filter: drop-shadow(0 24px 24px rgba(45, 55, 38, 0.18));
}

.active-components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.active-component-card {
  position: relative;
  min-height: 430px;
  padding: 30px 26px 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 244, 0.9));
  border: 1px solid rgba(188, 165, 112, 0.26);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(44, 51, 36, 0.08);
  overflow: hidden;
}

.active-component-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -45% -30%;
  height: 180px;
  background: radial-gradient(circle, rgba(129, 157, 76, 0.18), transparent 65%);
  pointer-events: none;
}

.active-component-number {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c99735, #a9791f);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 10px 18px rgba(164, 115, 29, 0.22);
}

.active-component-card h3 {
  margin: 0 auto 14px;
  min-height: 54px;
  max-width: 280px;
  font-size: 17px;
  line-height: 1.35;
  color: #123f2b;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.active-component-card h3::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  margin: 14px auto 0;
  background: #c99735;
}
/* Better image treatment for Active Component cards */

.active-component-visual {
  position: relative;
  width: 240px;
  height: 185px;
  margin: 10px auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Soft golden glow behind image */
.active-component-visual::before {
  content: "";
  position: absolute;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(215, 183, 82, 0.35) 0%,
      rgba(215, 183, 82, 0.20) 38%,
      rgba(215, 183, 82, 0.06) 62%,
      transparent 78%
    );
  filter: blur(2px);
  z-index: 1;
}

/* Soft shadow underneath */
.active-component-visual::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 190px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(92, 111, 55, 0.18),
    transparent 70%
  );
  z-index: 1;
}

.active-component-visual span {
  position: relative;
  z-index: 2;
  display: block;
  width: 180px;
  height: 140px;
}

/* Main image fix */
.active-component-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;

  /* This helps blend white/light image backgrounds into the card */
  mix-blend-mode: multiply;

  /* Soft fade edges so the image background is less obvious */
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 58%,
    rgba(0, 0, 0, 0.8) 70%,
    transparent 88%
  );
  mask-image: radial-gradient(
    ellipse at center,
    #000 58%,
    rgba(0, 0, 0, 0.8) 70%,
    transparent 88%
  );

  filter: contrast(1.05) saturate(1.05);
}

/* Image 1: peptide image looks better smaller */
.peptide-visual span {
  width: 1500px;
  height: 1205px;
}

/* Image 2: growth factor image */
.growth-visual span {
  width: 165px;
  height: 1350px;
}

/* Image 3: antioxidant image is wider, so give it more space */
.antioxidant-visual span {
  width: 220px;
  height: 145px;
}

.antioxidant-visual img {
  border-radius: 8px;
  object-fit: cover;

  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 54%,
    rgba(0, 0, 0, 0.75) 68%,
    transparent 86%
  );
  mask-image: radial-gradient(
    ellipse at center,
    #000 54%,
    rgba(0, 0, 0, 0.75) 68%,
    transparent 86%
  );
}
.active-component-card h4 {
  margin: 0 0 12px;
  color: #143c2d;
  font-size: 15.5px;
  line-height: 1.45;
}

.active-component-card p {
  max-width: 300px;
  margin: 0 auto;
  color: #38433e;
  font-size: 14px;
  line-height: 1.65;
}

.activity-panel {
  padding: 18px 24px 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(185, 139, 45, 0.18);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(40, 55, 36, 0.06);
}

.activity-panel-title {
  margin: 0 0 16px;
  text-align: center;
  color: #b07c25;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 13px;
}

.activity-metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.activity-metric {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 4px 16px;
  border-right: 1px solid rgba(60, 88, 54, 0.16);
}

.activity-metric:last-child {
  border-right: none;
}

.metric-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid #5f8f3d;
  color: #4f7b33;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.activity-metric p {
  margin: 0 0 2px;
  color: #26352d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.activity-metric strong {
  color: #4f7732;
  font-size: 18px;
  line-height: 1;
}

.activity-metric small {
  font-size: 11px;
}

.active-components-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  padding: 20px 30px;
  background: rgba(239, 243, 225, 0.72);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(178, 156, 97, 0.12);
  text-align: center;
}

.active-components-footer p {
  margin: 0;
  color: #1e2f27;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.35;
}

.active-components-footer strong {
  color: #b07c25;
}

.footer-flower {
  width: 91px;
}

.footer-leaf {
  color: #77985b;
  font-size: 34px;
}

/* Decorative floating orbs */
.active-components-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.45;
}

.active-orb-left {
  width: 280px;
  height: 280px;
  left: -110px;
  top: 40px;
  background: radial-gradient(circle, rgba(203, 159, 67, 0.28), transparent 65%);
}

.active-orb-right {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 80px;
  background: radial-gradient(circle, rgba(116, 149, 77, 0.24), transparent 65%);
}

/* Responsive */
@media (max-width: 1024px) {
  .active-components-hero {
    grid-template-columns: 1fr;
  }

  .active-components-product img {
    max-width: 260px;
  }

  .active-components-grid {
    grid-template-columns: 1fr;
  }

  .activity-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 0;
  }

  .activity-metric:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .active-components-section {
    padding: 70px 0 60px;
  }

  .active-components-kicker {
    letter-spacing: 5px;
  }

  .active-components-kicker span {
    width: 45px;
  }

  .active-components-gold-strip {
    font-size: 12px;
    padding: 8px 16px;
  }

  .active-components-subtitle {
    font-size: 15px;
  }

  .active-component-card {
    min-height: auto;
    padding: 28px 20px;
  }

  .activity-metrics {
    grid-template-columns: 1fr;
  }

  .activity-metric {
    border-right: none;
    border-bottom: 1px solid rgba(60, 88, 54, 0.14);
    padding: 12px 4px;
  }

  .activity-metric:last-child {
    border-bottom: none;
  }

  .active-components-footer {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .footer-leaf {
    display: none;
  }
}

/* ---------- Section heading ---------- */

.enzyme-system-heading {
  text-align: center;
  margin-bottom: 32px;
}

.enzyme-section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 7px;
}

.enzyme-section-kicker span {
  width: 52px;
  height: .5px;
  background: rgba(47, 71, 40, 0.68);
}

.enzyme-section-kicker p {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.enzyme-system-heading h2 {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--green-dark);
  font-size: clamp(1.95rem, 3.15vw, 3.18rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

/* ---------- Intro row ---------- */

.enzyme-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 20px;
}

.enzyme-intro-copy {
  display: grid;
  gap: 8px;
}

.enzyme-intro-copy p {
  color: #1f241d;
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 700;
}

.enzyme-intro-copy strong {
  display: block;
  color: #c34824;
  font-size: 0.92rem;
  line-height: 1.32;
  font-weight: 900;
}

/* ---------- Enzyme system card ---------- */

.enzyme-system-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 147, 53, 0.18);
  box-shadow: 0 10px 24px rgba(63, 51, 26, 0.07);
}

.enzyme-system-icon {
  width:60px;
  height: 60px;
  border-radius: 11px;
  overflow: hidden;
  background: #fffdf7;
}

.enzyme-system-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enzyme-system-card p {
  color: #20251f;
  font-size: 0.72rem;
  line-height: 1.34;
  font-weight: 800;
  margin-bottom: 2px;
}

.enzyme-system-card h3 {
  color: #5e8245;
  font-size: clamp(1.32rem, 2vw, 1.95rem);
  line-height: 0.98;
  font-weight: 900;
  margin-top: 3px;
}

/* ---------- Four systems title ---------- */

.body-operation-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.body-operation-title span {
  width: 48px;
  height: 1.5px;
  background: rgba(47, 71, 40, 0.68);
}

.body-operation-title h3 {
  color: var(--green-dark);
  font-size: clamp(1.12rem, 1.6vw, 1.5rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

/* ---------- Four systems cards ---------- */

.body-operation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.body-operation-card {
  position: relative;
  text-align: center;
  padding: 0 4px;
}

.body-operation-number {
  position: absolute;
  top: 0;
  left: 26px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 900;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(63, 51, 26, 0.12);
}

.body-operation-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 5px;
  border-radius: 100%;
  overflow: hidden;
  background: #fffdf7;
  box-shadow: 0 8px 18px rgba(63, 51, 26, 0.07);
}

.body-operation-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body-operation-card h4 {
  display: inline-flex;
  justify-content: center;
  min-width: 104px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 4px;
}

.body-operation-card p {
  color: #1f241d;
  font-size: 1rem;
  line-height: 1.26;
  font-weight: 700;
  max-width: 145px;
  margin: 0 auto;
}

/* ---------- Bottom problem box ---------- */

.enzyme-problem-box {
  padding: 13px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 147, 53, 0.14);
  box-shadow: 0 10px 24px rgba(63, 51, 26, 0.07);
}

.enzyme-problem-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.enzyme-problem-heading img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 8px;
}

.enzyme-problem-heading h3 {
  color: #20251f;
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 900;
}

.enzyme-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.enzyme-problem-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding: 2px 13px;
  border-right: 1px solid rgba(200, 147, 53, 0.38);
}

.enzyme-problem-item:first-child {
  padding-left: 0;
}

.enzyme-problem-item:last-child {
  border-right: none;
  padding-right: 0;
}

.enzyme-problem-item img {
  width: 50px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
}

.enzyme-problem-item p {
  color: #20251f;
  font-size: 1rem;
  line-height: 1.22;
  font-weight: 700;
}

.enzyme-problem-item strong {
  display: block;
  color: #c34824;
  font-size: 0.78rem;
  font-weight: 900;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1180px) {
  .science-deep-section {
    min-height: auto;
    padding: 64px 0;
    overflow: visible;
  }

  .enzyme-intro-grid {
    grid-template-columns: 1fr;
  }

  .body-operation-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }

  .enzyme-problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .enzyme-problem-item {
    border-right: none;
    border-bottom: 1px solid rgba(200, 147, 53, 0.28);
    padding: 0 0 14px;
  }

  .enzyme-problem-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 760px) {
  .science-deep-section {
    padding: 56px 0;
  }

  .enzyme-system-heading h2 {
    font-size: 1.9rem;
  }

  .enzyme-section-kicker span,
  .body-operation-title span {
    width: 28px;
  }

  .enzyme-section-kicker p {
    font-size: 0.72rem;
  }

  .enzyme-system-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .enzyme-system-icon {
    margin: 0 auto;
  }

  .body-operation-grid {
    grid-template-columns: 1fr;
  }

  .body-operation-number {
    left: calc(50% - 74px);
  }

  .enzyme-problem-box {
    padding: 16px;
  }

  .enzyme-problem-heading {
    align-items: flex-start;
  }

  .enzyme-problem-heading h3 {
    font-size: 0.92rem;
  }

  .enzyme-problem-item {
    grid-template-columns: 42px 1fr;
  }
}

/* =========================================================
   ENZYME LOSS INFOGRAPHIC SECTION
   Purpose: Displays the full enzyme-loss explanation as one image.
   Placement: Before Prof Boyer section.
========================================================= */

.enzyme-loss-image-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(236, 213, 155, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(85, 119, 66, 0.06), transparent 30%),
    #f7f4ed;
  padding: 70px 0;
}

.enzyme-loss-image-wrap {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 46px rgba(63, 51, 26, 0.1);
  border: 1px solid rgba(200, 147, 53, 0.16);
}

.enzyme-loss-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 760px) {
  .enzyme-loss-image-section {
    padding: 52px 0;
  }

  .enzyme-loss-image-wrap {
    border-radius: 18px;
  }
}

/* ================================
   5 PATENTED TECHNOLOGIES
================================ */

.patented-tech-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(126, 153, 75, 0.14), transparent 34%),
    radial-gradient(circle at top left, rgba(199, 157, 67, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #f8f4e9 100%);
  color: #153c2b;
}

.patented-tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 158, 78, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 158, 78, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.patented-tech-container {
  position: relative;
  z-index: 2;
}

.patented-tech-hero {
  position: relative;
  min-height: 265px;
  margin-bottom: 26px;
}

.patented-tech-title-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.patented-tech-title-wrap h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  color: #9a6f23;
  letter-spacing: 1.2px;
}

.patented-tech-subtitle {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.3vw, 33px);
  color: #2d3330;
  line-height: 1.25;
}

.patented-tech-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 16px;
  color: #c1963f;
}

.patented-tech-divider span {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(174, 125, 37, 0.7), transparent);
}

.patented-tech-divider i {
  font-style: normal;
  font-size: 18px;
}

.patented-tech-description {
  margin: 0 auto;
  color: #4b4f4d;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.4px;
}

.patented-tech-product {
  position: absolute;
  right: -20%;
  top: -28px;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.patented-tech-product::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 120px;
  bottom: 20px;
  background: radial-gradient(
    ellipse,
    rgba(54, 72, 42, 0.15),
    rgba(190, 151, 58, 0.08) 45%,
    transparent 72%
  );
  z-index: -1;
}

.patented-tech-product img {
  width: 400px;
  max-width: none;
  transform: rotate(4deg);
  filter: drop-shadow(0 24px 22px rgba(45, 55, 38, 0.2));
}

.patented-tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}

.patented-tech-card {
  position: relative;
  min-height: 178px;
  padding: 26px 26px 24px;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(190, 143, 51, 0.35);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(49, 55, 39, 0.06);
  overflow: hidden;
}

.patented-tech-card:nth-child(1),
.patented-tech-card:nth-child(2),
.patented-tech-card:nth-child(3) {
  grid-column: span 2;
}

.patented-tech-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.patented-tech-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.patented-tech-number {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d2ac59, #a67b29);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(160, 113, 31, 0.18);
  z-index: 3;
}

.patented-tech-image {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patented-tech-image::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 42px;
  bottom: 2px;
  background: radial-gradient(ellipse, rgba(104, 131, 72, 0.15), transparent 70%);
  z-index: 0;
}

.patented-tech-image img {
  position: relative;
  z-index: 1;
  width: 155px;
  height: 120px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.patented-tech-copy {
  position: relative;
  padding-left: 24px;
  border-left: 1px solid rgba(190, 143, 51, 0.28);
}

.patented-tech-copy h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  color: #2c302d;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 500;
}

.patented-tech-copy h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 14px;
  background: #c1963f;
}

.patented-tech-copy p {
  margin: 0;
  color: #484f4b;
  font-size: 14px;
  line-height: 1.45;
}

.patented-tech-footer {
  position: relative;
  margin-top: 22px;
  min-height: 78px;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 253, 246, 0.8);
  border: 1px solid rgba(190, 143, 51, 0.42);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(54, 61, 42, 0.05);
}

.patented-tech-footer p {
  margin: 0;
  flex: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: #2f3431;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
}

.patented-tech-footer strong {
  color: #a87320;
  font-weight: 500;
}

.patented-footer-flower {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(180, 128, 37, 0.55);
  color: #c1963f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 31px;
  flex: 0 0 auto;
}

.patented-footer-leaf {
  color: #7d9c57;
  font-size: 40px;
  flex: 0 0 auto;
}

/* decorative corner patterns */
.patented-tech-pattern {
  position: absolute;
  pointer-events: none;
  opacity: 0.2;
  z-index: 1;
}

.patented-pattern-left {
  width: 260px;
  height: 260px;
  left: -70px;
  top: -60px;
  background: radial-gradient(circle, rgba(189, 143, 51, 0.35), transparent 68%);
}

.patented-pattern-right {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 70px;
  background: radial-gradient(circle, rgba(113, 148, 77, 0.28), transparent 70%);
}

/* Responsive */
@media (max-width: 1180px) {
  .patented-tech-product {
    opacity: 0.55;
    right: -70px;
  }

  .patented-tech-title-wrap {
    max-width: 760px;
  }

  .patented-tech-card {
    grid-template-columns: 140px 1fr;
  }

  .patented-tech-image img {
    width: 135px;
  }
}

@media (max-width: 960px) {
  .patented-tech-hero {
    min-height: auto;
  }

  .patented-tech-product {
    position: relative;
    right: auto;
    top: auto;
    margin: 20px auto 0;
    opacity: 1;
  }

  .patented-tech-grid {
    grid-template-columns: 1fr;
  }

  .patented-tech-card:nth-child(1),
  .patented-tech-card:nth-child(2),
  .patented-tech-card:nth-child(3),
  .patented-tech-card:nth-child(4),
  .patented-tech-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .patented-tech-section {
    padding: 65px 0 55px;
  }

  .patented-tech-title-wrap h2 {
    font-size: 35px;
  }

  .patented-tech-subtitle {
    font-size: 20px;
  }

  .patented-tech-description {
    font-size: 15px;
  }

  .patented-tech-divider span {
    width: 80px;
  }

  .patented-tech-product {
    width: 280px;
    height: 190px;
  }

  .patented-tech-product img {
    width: 260px;
  }

  .patented-tech-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 72px 24px 26px;
  }

  .patented-tech-copy {
    padding-left: 0;
    border-left: none;
  }

  .patented-tech-copy h3::after {
    margin-left: auto;
    margin-right: auto;
  }

  .patented-tech-footer {
    border-radius: 18px;
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .patented-footer-leaf {
    display: none;
  }
}

/* =================================
   ENZYME DIFFERENCE COMPARISON
================================= */

.enzyme-difference-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(150, 175, 113, 0.10), transparent 32%),
    radial-gradient(circle at top left, rgba(196, 155, 74, 0.10), transparent 28%),
    linear-gradient(180deg, #fffefb 0%, #faf7f0 100%);
  color: #173a2b;
}

.enzyme-difference-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(193, 159, 84, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 159, 84, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  opacity: 0.35;
}

.enzyme-difference-container {
  position: relative;
  z-index: 2;
}

/* decorative background */
.enzyme-difference-bg-pattern {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
}

.enzyme-diff-left {
  left: -40px;
  top: -20px;
  width: 260px;
  height: 320px;
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 166, 87, 0.28), transparent 60%);
}

.enzyme-diff-right {
  right: -60px;
  top: 20px;
  width: 280px;
  height: 380px;
  background:
    radial-gradient(circle at 70% 20%, rgba(144, 175, 94, 0.24), transparent 58%);
}

/* hero */
.enzyme-difference-hero {
  margin-bottom: 34px;
}

.enzyme-difference-title-block {
  max-width: 760px;
}

.enzyme-difference-mini-brand {
  margin-bottom: 16px;
}

.enzyme-difference-mini-brand img {
  width: 42px;
  height: 42px;
  display: block;
}

.enzyme-difference-title-block h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  color: #173d2d;
  font-weight: 600;
}

.enzyme-difference-title-line {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: #c4952f;
  margin-bottom: 18px;
}

.enzyme-difference-title-block h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.3;
  color: #2c2f2d;
  font-weight: 500;
}

.enzyme-difference-title-block p {
  margin: 0;
  max-width: 630px;
  color: #4d5550;
  font-size: 18px;
  line-height: 1.65;
}

/* table */
.enzyme-comparison-table {
  display: grid;
  grid-template-columns: 220px 1fr 1.22fr;
  gap: 0;
  align-items: stretch;
  margin-top: 26px;
}

.comparison-header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  text-align: center;
  border: 1px solid rgba(188, 153, 85, 0.28);
  background: rgba(255, 255, 255, 0.78);
}

.comparison-spacer {
  background: transparent;
  border: none;
}

.comparison-ordinary {
  border-top-left-radius: 16px;
  color: #2a332e;
}

.comparison-dogood {
  border-top-right-radius: 16px;
  color: #b47d1f;
  border-color: rgba(195, 146, 42, 0.55);
}

.comparison-label-cell,
.comparison-value-cell {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(188, 153, 85, 0.20);
}

.comparison-label-cell {
  border-radius: 14px;
  margin: 6px 6px 0 0;
}

.comparison-label-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: #28312d;
}

.comparison-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #627b42;
  flex: 0 0 auto;
}

.comparison-value-cell {
  color: #4b504d;
  font-size: 15px;
  line-height: 1.45;
}

.comparison-value-highlight {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  color: #22362b;
  border-color: rgba(195, 146, 42, 0.48);
}

.comparison-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #d3a33a, #b88520);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-top: 2px;
}

/* footer strip */
.enzyme-difference-footer {
  margin-top: 18px;
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px 28px;
  border: 1.5px solid rgba(194, 149, 55, 0.55);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 10px 24px rgba(54, 61, 42, 0.04);
}

.enzyme-difference-footer-icon {
  width: 82px;
  height: 82px;
  border-right: 1px solid rgba(194, 149, 55, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 22px;
  flex: 0 0 auto;
}

.enzyme-difference-footer-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.enzyme-difference-footer p {
  margin: 0;
  flex: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.35;
  color: #173d2d;
}

.enzyme-difference-footer-leaf {
  color: #93a85b;
  font-size: 36px;
  flex: 0 0 auto;
}

/* responsive */
@media (max-width: 1100px) {
  .enzyme-comparison-table {
    grid-template-columns: 200px 1fr 1fr;
  }

  .enzyme-difference-title-block h2 {
    max-width: 720px;
  }
}

@media (max-width: 860px) {
  .enzyme-comparison-table {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .comparison-spacer,
  .comparison-ordinary,
  .comparison-dogood {
    border-radius: 14px;
    border: 1px solid rgba(188, 153, 85, 0.28);
  }

  .comparison-spacer {
    display: none;
  }

  .comparison-label-cell,
  .comparison-value-cell {
    margin: 0;
    border-radius: 14px;
  }

  .comparison-label-cell {
    background: rgba(249, 247, 241, 0.95);
  }

  .enzyme-difference-footer {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .enzyme-difference-footer-icon {
    border-right: none;
    border-bottom: 1px solid rgba(194, 149, 55, 0.55);
    width: 100%;
    height: auto;
    padding: 0 0 14px;
  }
}

@media (max-width: 640px) {
  .enzyme-difference-section {
    padding: 60px 0 50px;
  }

  .enzyme-difference-title-block h2 {
    font-size: 34px;
  }

  .enzyme-difference-title-block h3 {
    font-size: 21px;
  }

  .enzyme-difference-title-block p {
    font-size: 15px;
  }

  .comparison-label-inner {
    font-size: 17px;
  }

  .enzyme-difference-footer p {
    font-size: 20px;
  }

  .enzyme-difference-footer-leaf {
    display: none;
  }
}


/* =================================
   SEMI-SOLID FERMENTATION SECTION
================================= */

.fermentation-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(197, 151, 52, 0.15), transparent 30%),
    radial-gradient(circle at right center, rgba(105, 143, 67, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, #f7f2e7 100%);
  color: #153c2b;
}

.fermentation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 158, 78, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 158, 78, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.fermentation-container {
  position: relative;
  z-index: 2;
}

.fermentation-heading {
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
}

.fermentation-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 8px;
  color: #b6892e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.fermentation-kicker span {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b6892e, transparent);
}

.fermentation-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.12;
  color: #123f2b;
  font-weight: 600;
}

.fermentation-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px auto 12px;
  color: #b98b2d;
}

.fermentation-divider span {
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 139, 45, 0.8), transparent);
}

.fermentation-divider i {
  font-style: normal;
  font-size: 16px;
}

.fermentation-heading p:last-child {
  max-width: 640px;
  margin: 0 auto;
  color: #313b35;
  font-size: 17px;
  line-height: 1.55;
}

/* comparison */
.fermentation-comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto 18px;
}

.fermentation-panel {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(185, 139, 45, 0.28);
  box-shadow: 0 16px 34px rgba(44, 51, 36, 0.07);
}

.ordinary-panel {
  border-color: rgba(100, 100, 100, 0.18);
}

.dogood-panel {
  border-color: rgba(185, 139, 45, 0.55);
}

.fermentation-panel-title {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  color: #fff;
}

.ordinary-title {
  background: linear-gradient(90deg, #595959, #777, #595959);
}

.dogood-title {
  gap: 10px;
  background: linear-gradient(90deg, #0f4a2d, #045227, #0f4a2d);
}

.dogood-title span {
  color: #d5a33a;
}

.fermentation-panel-body {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
}

.dogood-panel .fermentation-panel-body {
  grid-template-columns: 45% 1fr;
}

.fermentation-visual {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fermentation-visual::after {
  content: "";
  position: absolute;
  bottom: 15px;
  width: 170px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(68, 72, 50, 0.13), transparent 70%);
  z-index: 0;
}

.fermentation-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 210px;
  height: 170px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.fermentation-dogood-visual img {
  max-width: 240px;
  border-radius: 50%;
}

.five-year-badge {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  z-index: 3;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, #fff9d7, #d3a23b 58%, #8b671e 100%);
  border: 4px solid rgba(255, 241, 179, 0.9);
  box-shadow: 0 10px 18px rgba(92, 67, 19, 0.24);
  display: grid;
  place-items: center;
  text-align: center;
  color: #644613;
}

.five-year-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 0.8;
}

.five-year-badge span {
  display: block;
  margin-top: -10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fermentation-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fermentation-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  padding: 7px 0;
  color: #26372e;
  font-size: 14.5px;
  line-height: 1.25;
  border-bottom: 1px solid rgba(92, 102, 83, 0.12);
}

.fermentation-list li:last-child {
  border-bottom: none;
}

.fermentation-list li span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

.ordinary-list li span {
  background: #7a7a7a;
  color: #fff;
}

.dogood-list li span {
  border: 1px solid #7b965b;
  color: #315a32;
  background: rgba(237, 246, 225, 0.85);
}

.fermentation-vs {
  position: absolute;
  left: calc(42.3% - 17px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c99a36, #9d711f);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(134, 90, 18, 0.25);
}

/* steps */
.fermentation-steps {
  max-width: 1080px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fermentation-step {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 140px;
  padding: 18px 18px 16px 72px;
  border: 1px solid rgba(185, 139, 45, 0.42);
  border-radius: 13px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 12px 24px rgba(48, 56, 38, 0.05);
}

.fermentation-step-number {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0d5a32, #063d22);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.fermentation-step-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fermentation-step-image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.fermentation-step-copy h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.05;
  color: #173d2d;
}

.fermentation-step-copy h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 8px;
  background: #c3942e;
}

.fermentation-step-copy p {
  margin: 0;
  color: #3d4640;
  font-size: 13.5px;
  line-height: 1.45;
}

/* footer */
.fermentation-footer {
  max-width: 940px;
  margin: 20px auto 0;
  min-height: 66px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #05391f, #094c2a, #05391f);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 16px 28px rgba(25, 56, 30, 0.18);
}

.fermentation-footer-flower {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.fermentation-footer-flower img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.fermentation-footer p {
  margin: 0;
  flex: 1;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.25;
  letter-spacing: 0.3px;
}

.fermentation-footer strong {
  color: #d6a640;
  font-weight: 600;
}

.fermentation-footer-shield {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 2px solid #d4a23a;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #d4a23a;
  font-size: 22px;
}

/* decorative orbs */
.fermentation-bg-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

.fermentation-orb-left {
  left: -110px;
  top: 20px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(203, 159, 67, 0.24), transparent 68%);
}

.fermentation-orb-right {
  right: -120px;
  top: 130px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(91, 139, 65, 0.22), transparent 70%);
}

/* responsive */
@media (max-width: 1100px) {
  .fermentation-comparison {
    grid-template-columns: 1fr;
  }

  .fermentation-vs {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -4px auto;
  }

  .fermentation-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .fermentation-section {
    padding: 62px 0 54px;
  }

  .fermentation-heading h2 {
    font-size: 34px;
  }

  .fermentation-heading p:last-child {
    font-size: 15px;
  }

  .fermentation-kicker {
    letter-spacing: 2px;
    font-size: 11px;
  }

  .fermentation-kicker span,
  .fermentation-divider span {
    width: 55px;
  }

  .fermentation-panel-body,
  .dogood-panel .fermentation-panel-body {
    grid-template-columns: 1fr;
  }

  .fermentation-step {
    grid-template-columns: 1fr;
    padding: 72px 22px 22px;
    text-align: center;
  }

  .fermentation-step-copy h3::after {
    margin-left: auto;
    margin-right: auto;
  }

  .fermentation-footer {
    border-radius: 18px;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
  }

  .fermentation-footer-shield {
    display: none;
  }
}

/* =================================
   BODY ADJUSTMENT REACTIONS
================================= */

.adjustment-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(199, 157, 67, 0.16), transparent 30%),
    radial-gradient(circle at right center, rgba(105, 143, 67, 0.18), transparent 36%),
    linear-gradient(180deg, #fffdf7 0%, #f8f3e9 100%);
  color: #153c2b;
}

.adjustment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 158, 78, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 158, 78, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  opacity: 0.7;
}

.adjustment-container {
  position: relative;
  z-index: 2;
}

.adjustment-heading {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.adjustment-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 8px;
  color: #b6892e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.adjustment-kicker span {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b6892e, transparent);
}

.adjustment-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.08;
  color: #123f2b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.adjustment-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px auto 12px;
  color: #b98b2d;
}

.adjustment-divider span {
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 139, 45, 0.8), transparent);
}

.adjustment-divider i {
  font-style: normal;
  font-size: 16px;
}

.adjustment-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #1f2f29;
  font-size: 17px;
  line-height: 1.6;
}

.adjustment-heading strong {
  color: #103f2a;
}

/* Cards */
.adjustment-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto 18px;
}

.adjustment-card {
  min-height: 330px;
  padding: 24px 22px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(190, 143, 51, 0.38);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(44, 51, 36, 0.06);
  text-align: center;
}

.adjustment-icon-wrap {
  width: 132px;
  height: 112px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adjustment-icon-wrap img {
  width: 200px;
  height: 205px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.adjustment-card h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  color: #173d2d;
  font-size: 18px;
  line-height: 1.12;
  text-transform: uppercase;
}

.adjustment-card h3 span {
  color: #1f3f2c;
}

.adjustment-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 10px auto 0;
  background: #c3942e;
}

.adjustment-card ul {
  margin: 0;
  padding-left: 18px;
  text-align: left;
}

.adjustment-card li {
  color: #25362e;
  font-size: 13.5px;
  line-height: 1.42;
  margin-bottom: 6px;
}

/* Safety panel */
.adjustment-safety-panel {
  max-width: 1080px;
  margin: 0 auto 14px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 116px 1fr 260px;
  gap: 22px;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(190, 143, 51, 0.38);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(44, 51, 36, 0.05);
}

.safety-shield {
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-shield img {
  width: 102px;
  height: 102px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.safety-copy {
  padding-left: 20px;
  border-left: 1px solid rgba(190, 143, 51, 0.35);
}

.safety-copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #173d2d;
}

.safety-copy p {
  margin: 0;
  color: #26362f;
  font-size: 13.5px;
  line-height: 1.5;
}

.safety-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.safety-icon-item span {
  width: 54px;
  height: 54px;
  margin: 0 auto 6px;
  border: 1.5px solid #c2942f;
  border-radius: 50%;
  color: #174b2c;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: rgba(251, 249, 240, 0.85);
}

.safety-icon-item p {
  margin: 0;
  color: #20392c;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
}

/* Footer */
.adjustment-footer {
  max-width: 940px;
  margin: 0 auto;
  min-height: 66px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #05391f, #094c2a, #05391f);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 16px 28px rgba(25, 56, 30, 0.18);
}

.adjustment-footer-flower {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.adjustment-footer-flower img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.adjustment-footer p {
  margin: 0;
  flex: 1;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.25;
  letter-spacing: 0.3px;
}

.adjustment-footer strong {
  color: #d6a640;
  font-weight: 600;
}

.adjustment-footer-leaf {
  color: #d4a23a;
  font-size: 34px;
  flex: 0 0 auto;
}

/* Decorative orbs */
.adjustment-bg-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

.adjustment-orb-left {
  left: -110px;
  top: 20px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(203, 159, 67, 0.24), transparent 68%);
}

.adjustment-orb-right {
  right: -120px;
  top: 130px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(91, 139, 65, 0.22), transparent 70%);
}

/* Responsive */
@media (max-width: 1100px) {
  .adjustment-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .adjustment-safety-panel {
    grid-template-columns: 100px 1fr;
  }

  .safety-icons {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .adjustment-section {
    padding: 62px 0 54px;
  }

  .adjustment-heading h2 {
    font-size: 32px;
  }

  .adjustment-heading p {
    font-size: 15px;
  }

  .adjustment-kicker {
    letter-spacing: 2px;
    font-size: 11px;
  }

  .adjustment-kicker span,
  .adjustment-divider span {
    width: 55px;
  }

  .adjustment-card-grid {
    grid-template-columns: 1fr;
  }

  .adjustment-card {
    min-height: auto;
  }

  .adjustment-safety-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .safety-copy {
    padding-left: 0;
    border-left: none;
  }

  .adjustment-footer {
    border-radius: 18px;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
  }

  .adjustment-footer-leaf {
    display: none;
  }
}
.safety-bottom-note {
  grid-column: 3;
  margin: -6px 0 0;
  text-align: center;
  color: #20392c;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .safety-bottom-note {
    grid-column: 1 / -1;
  }
}

/* =================================
   HOW TO TAKE DOGOOD ENZYME 131
================================= */

.intake-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 50px;
  background:
    radial-gradient(circle at top left, rgba(199, 157, 67, 0.16), transparent 30%),
    radial-gradient(circle at right center, rgba(105, 143, 67, 0.18), transparent 36%),
    linear-gradient(180deg, #fffdf7 0%, #f8f3e9 100%);
  color: #153c2b;
}

.intake-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 158, 78, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 158, 78, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  opacity: 0.65;
}

.intake-container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Heading ── */
.intake-heading {
  text-align: center;
  margin-bottom: 36px;
}

.intake-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
  color: #123f2b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", serif;
}

.intake-kicker span {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b6892e, transparent);
}

.intake-heading h2 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 0.95;
  color: #123f2b;
  font-weight: 700;
}

.intake-heading h3 {
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  color: #b07a23;
  font-style: italic;
  font-weight: 500;
}

.intake-consistency {
  margin: 0 0 4px;
  color: #123f2b;
  font-size: 17px;
  font-weight: 700;
  font-family: sans-serif;
}

.intake-consistency::before { content: "❯❯ "; }
.intake-consistency::after  { content: " ❮❮"; }

.intake-description {
  max-width: 560px;
  margin: 0 auto;
  color: #27352e;
  font-size: 16px;
  line-height: 1.55;
  font-family: sans-serif;
}

/* ── Routine cards grid ── */
.intake-routine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.intake-routine-card {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(190, 143, 51, 0.48);
  border-radius: 16px;
  padding: 22px 20px 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(44, 51, 36, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Card header row: icon + title/dose */
.routine-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.routine-main-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
  color: #c09634;
}

.routine-header-text h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  color: #173d2d;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 700;
}

.routine-dose {
  margin: 0 0 10px;
  color: #b2761d;
  font-size: 14px;
  font-weight: 700;
  font-family: sans-serif;
}

.routine-dose::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 8px;
  background: #c3942e;
}

/* Middle row: sachet count icon + product image side by side */
.routine-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 12px;
}

.routine-body-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.routine-icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #143f2c;
  font-weight: 700;
  font-family: sans-serif;
  font-size: 16px;
}

.routine-icon-row .sachet-icon {
  font-size: 22px;
}

.routine-meal-icon {
  font-size: 22px;
  color: #143f2c;
}

.routine-desc {
  margin: 0;
  color: #27362f;
  font-size: 13px;
  line-height: 1.5;
  font-family: sans-serif;
}

/* Product image — right side of body row */
.routine-product {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.routine-product img {
  width: 90px;
  height: auto;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(55, 65, 48, 0.18));
}

/* Water card — glass image */
.routine-glass {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.routine-glass img {
  width: 255px;
  height: auto;
  max-height: 155px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Check list (water card) */
.routine-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.routine-check-list li {
  position: relative;
  padding-left: 26px;
  color: #28382f;
  font-size: 13px;
  line-height: 1.4;
  font-family: sans-serif;
}

.routine-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #16482d;
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
}

/* ── 90-day panel ── */
.enzyme-routine-panel {
  display: grid;
  grid-template-columns: 160px 1fr 210px;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(190, 143, 51, 0.42);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(44, 51, 36, 0.05);
}

/* Gold badge */
.routine-days-badge {
  width: 118px;
  height: 118px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 40% 35%, #fff9dc, #e5c66a 58%, #a4771c);
  border: 4px solid rgba(255, 246, 202, 0.95);
  color: #163d2b;
  box-shadow:
    0 0 0 6px rgba(164, 119, 28, 0.18),
    0 12px 24px rgba(111, 79, 20, 0.22);
}

.routine-days-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 0.8;
  display: block;
}

.routine-days-badge span {
  font-family: sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: block;
  margin-top: 4px;
}

/* Timeline */
.routine-timeline-content h3 {
  margin: 0 0 4px;
  color: #143f2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
}

.routine-timeline-content > p {
  margin: 0 0 14px;
  color: #3f4742;
  font-size: 13px;
  font-family: sans-serif;
}

.routine-timeline {
  display: grid;
  grid-template-columns: auto 32px auto 32px auto 32px auto;
  gap: 4px;
  align-items: start;
}

.routine-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.timeline-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid #c2942f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #16482d;
  font-size: 16px;
  background: rgba(249, 248, 237, 0.85);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.routine-timeline-item strong {
  color: #173d2d;
  font-size: 13px;
  font-weight: 800;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.routine-timeline-item p {
  margin: 0;
  color: #2e3933;
  font-size: 12px;
  line-height: 1.3;
  font-family: sans-serif;
}

.routine-line {
  height: 1px;
  margin-top: 19px;
  background: rgba(23, 61, 45, 0.4);
  position: relative;
}

.routine-line::after {
  content: "→";
  position: absolute;
  right: -6px;
  top: -9px;
  font-size: 11px;
  color: #143f2c;
}

/* Frequency box */
.routine-frequency-box {
  background: linear-gradient(145deg, #064023, #0a542e);
  color: #fff;
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 120px;
}

.frequency-clock {
  font-size: 26px;
  color: #d4a23a;
  margin-bottom: 4px;
}

.routine-frequency-box p {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  font-family: sans-serif;
  line-height: 1.3;
}

.routine-frequency-box strong {
  color: #e0b543;
  font-size: 14px;
  line-height: 1.3;
  font-family: sans-serif;
}

/* ── Bottom grid ── */
.intake-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
  margin-bottom: 18px;
}

/* Note panel */
.intake-note-panel {
  display: grid;
  grid-template-columns: 100px 1fr 210px;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(190, 143, 51, 0.35);
  border-radius: 14px;
}

.note-shield {
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-shield img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.note-copy h3 {
  margin: 0 0 6px;
  color: #173d2d;
  font-size: 16px;
  font-weight: 700;
  font-family: sans-serif;
}

.note-copy p {
  margin: 0;
  color: #26362f;
  font-size: 12.5px;
  line-height: 1.5;
  font-family: sans-serif;
}

.note-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: center;
  border-left: 1px solid rgba(190, 143, 51, 0.3);
  padding-left: 16px;
}

.note-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.note-icon-item span {
  width: 46px;
  height: 46px;
  border: 1.5px solid #c2942f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #174b2c;
  background: rgba(251, 249, 240, 0.9);
}

.note-icon-item p {
  margin: 0;
  color: #20392c;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
  font-family: sans-serif;
}

/* CTA card */
.intake-cta-card {
  text-decoration: none;
  padding: 20px 22px;
  border-radius: 14px;
  background: linear-gradient(145deg, #06391f, #0a542e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 14px 28px rgba(25, 56, 30, 0.2);
  cursor: pointer;
}

.intake-cta-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.05;
}

.intake-cta-card p {
  margin: 0;
  color: #e0b543;
  font-size: 13px;
  line-height: 1.35;
  font-family: sans-serif;
}

.intake-cta-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid #d4a23a;
  border-radius: 50%;
  color: #d4a23a;
  display: grid;
  place-items: center;
  font-size: 26px;
  flex-shrink: 0;
}

/* ── Mini strip ── */
.intake-mini-strip {
  text-align: center;
  color: #173d2d;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: sans-serif;
}

.intake-mini-strip i {
  color: #b78b31;
  margin: 0 12px;
  font-style: normal;
}

/* ── Decorative orbs ── */
.intake-bg-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
}

.intake-orb-left {
  left: -110px;
  top: 20px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(203, 159, 67, 0.22), transparent 68%);
}

.intake-orb-right {
  right: -120px;
  top: 130px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(91, 139, 65, 0.2), transparent 70%);
}

/* =================================
   RESPONSIVE
================================= */
@media (max-width: 1100px) {
  .intake-routine-grid {
    grid-template-columns: 1fr 1fr;
  }

  .enzyme-routine-panel {
    grid-template-columns: 140px 1fr;
  }

  .routine-frequency-box {
    grid-column: 1 / -1;
  }

  .intake-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .intake-section {
    padding: 52px 0 40px;
  }

  .intake-routine-grid {
    grid-template-columns: 1fr;
  }

  .intake-routine-card {
    padding: 20px 18px;
  }

  .routine-body {
    grid-template-columns: 1fr 110px;
  }

  .routine-product img {
    width: 110px;
  }

  .routine-glass img {
    width: 95px;
  }

  .enzyme-routine-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .routine-days-badge {
    margin: 0 auto;
  }

  .routine-timeline {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }

  .routine-line {
    display: none;
  }

  .routine-timeline-item {
    align-items: center;
    text-align: center;
  }

  .intake-note-panel {
    grid-template-columns: 80px 1fr;
  }

  .note-shield img {
    width: 72px;
    height: 72px;
  }

  .note-icons {
    grid-column: 1 / -1;
    border-left: none;
    padding-left: 0;
    max-width: 280px;
    margin: 0 auto;
  }

  .intake-cta-card {
    flex-direction: column;
    text-align: center;
  }

  .intake-mini-strip {
    line-height: 2;
  }

  .intake-mini-strip i {
    display: none;
  }
}

@media (max-width: 480px) {
  .routine-body {
    grid-template-columns: 1fr 90px;
  }

  .routine-product img {
    width: 88px;
  }

  .routine-glass img {
    width: 78px;
  }

  .intake-note-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .note-shield {
    margin: 0 auto;
  }
}

/* =========================================================
   11. PAUL D. BOYER QUOTE SECTION
   Purpose: Nobel quote section
   ========================================================= */

.nobel-section {
  background: var(--soft-cream);
}

.nobel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.nobel-image img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 20px 42px rgba(63, 51, 26, 0.14);
}

.nobel-copy blockquote {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.nobel-attribution {
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

/* =========================================================
   HOW IT WORKS / RECOVERY SECTION
========================================================= */
.recovery-section {
  min-height: calc(100vh - var(--header-height));
  padding: 34px 0 28px;
  background:
    radial-gradient(circle at 14% 16%, rgba(236, 213, 155, 0.14), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(85, 119, 66, 0.06), transparent 32%),
    #f7f4ed;
  overflow: hidden;
}

.recovery-story-layout {
  max-width: 1180px;
}

/* Main 2-column layout */
.recovery-story-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 24px;
}

.recovery-story-left,
.recovery-story-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* -------------------------
   Left column
------------------------- */
.recovery-story-left {
  gap: 18px;
}

.recovery-story-heading .section-label {
  margin-bottom: 8px;
}

.recovery-story-heading h2 {
  color: var(--green-dark);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 900;
  max-width: 500px;
}

.recovery-story-visual {
  display: grid;
  gap: 12px;
}

.recovery-visual-card {
  min-height: 138px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  border: 1px solid rgba(200, 147, 53, 0.16);
  box-shadow: 0 12px 26px rgba(63, 51, 26, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.recovery-visual-card img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  display: block;
}

.recovery-visual-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recovery-step-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(47, 71, 40, 0.08);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 850;
  border: 1px solid rgba(47, 71, 40, 0.14);
}

/* -------------------------
   Right column
------------------------- */
.recovery-story-right {
  gap: 18px;
}

.recovery-story-subheading h3 {
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.38;
  font-weight: 850;
  margin-bottom: 12px;
  max-width: 540px;
}

.recovery-story-subheading h4 {
  color: #1d241d;
  font-size: 1.5rem;
  line-height: 1.22;
  font-weight: 900;
  max-width: 560px;
}

.recovery-story-copy {
  display: grid;
  gap: 8px;
}

.recovery-story-copy p {
  color: #20251f;
  font-size: 0.86rem;
  line-height: 1.55;
}

.recovery-story-btn {
  margin-top: 6px;
  width: fit-content;
  min-height: 44px;
  padding: 12px 22px;
  font-size: 0.72rem;
}

.recovery-story-note {
  color: var(--text-light);
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

/* -------------------------
   Timeline cards
------------------------- */
.recovery-timeline-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.recovery-timeline-inline .timeline-item {
  display: block;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(200, 147, 53, 0.16);
  box-shadow: 0 10px 22px rgba(63, 51, 26, 0.06);
}

.recovery-timeline-inline .timeline-day {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(200, 147, 53, 0.14);
  color: var(--gold-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.recovery-timeline-inline h3 {
  color: var(--green-dark);
  font-size: 0.9rem;
  line-height: 1.28;
  margin-bottom: 7px;
}

.recovery-timeline-inline p {
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1180px) {
  .recovery-section {
    min-height: auto;
    padding: 72px 0;
    overflow: visible;
  }

  .recovery-story-main {
    grid-template-columns: 1fr;
  }

  .recovery-story-heading h2 {
    max-width: none;
  }

  .recovery-timeline-inline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .recovery-section {
    padding: 60px 0;
  }

  .recovery-story-heading h2 {
    font-size: 2.1rem;
  }

  .recovery-story-subheading h3 {
    font-size: 0.95rem;
  }

  .recovery-story-subheading h4 {
    font-size: 1.24rem;
  }

  .recovery-story-copy p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .recovery-timeline-inline {
    grid-template-columns: 1fr;
  }

  .recovery-story-btn {
    width: 100%;
  }
}

/* =========================================================
   13. EXPERT VOICES SECTION
   Purpose: 6 expert images, names, titles, and quotes
   ========================================================= */

.experts-section {
  min-height: calc(100vh - var(--header-height));
  padding: 42px 0 46px;
  background:
    radial-gradient(circle at 50% 12%, rgba(236, 213, 155, 0.14), transparent 28%),
    var(--soft-cream);
  overflow: hidden;
}

.experts-section .section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.experts-section .section-label {
  margin-bottom: 0;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* Replace only the expert image/card sizing part with this */

.expert-card {
  height: 360px;
  padding: 16px 18px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(200, 147, 53, 0.16);
  box-shadow: 0 12px 26px rgba(63, 51, 26, 0.07);
  text-align: center;
  display: grid;
  grid-template-rows: 155px auto auto 1fr;
  justify-items: center;
  overflow: hidden;
}

.expert-card img {
  width: 118px;
  height: 155px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  background: #eee8dc;
  margin-bottom: 12px;
  box-shadow: 0 10px 22px rgba(63, 51, 26, 0.08);
}

.expert-card h3 {
  color: var(--green-dark);
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
  margin: 0 0 8px;
  max-width: 96%;
}

.expert-role {
  color: var(--gold-dark);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 850;
  text-align: center;
  margin: 0 0 8px;
}

.expert-card p:not(.expert-role) {
  color: var(--text-main);
  font-size: 0.78rem;
  line-height: 1.38;
  text-align: center;
  margin: 0;
  max-width: 96%;
}

/* Individual portrait positioning */
.expert-card:nth-child(1) img {
  object-position: center 12%;
}

.expert-card:nth-child(2) img {
  object-position: center top;
}

.expert-card:nth-child(3) img {
  object-position: center top;
}

.expert-card:nth-child(4) img {
  object-position: center 10%;
}

.expert-card:nth-child(5) img {
  object-position: center 12%;
}

.expert-card:nth-child(6) img {
  object-position: center 10%;
}

/* Height safety for smaller laptop screens */
@media (max-height: 820px) and (min-width: 1181px) {
  .expert-card {
    height: 315px;
    padding: 13px 15px 15px;
    grid-template-rows: 128px auto auto 1fr;
  }

  .expert-card img {
    width: 98px;
    height: 128px;
    border-radius: 15px;
    margin-bottom: 9px;
  }

  .expert-card h3 {
    font-size: 0.86rem;
    line-height: 1.18;
    margin-bottom: 6px;
  }

  .expert-role {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .expert-card p:not(.expert-role) {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

@media (max-width: 1180px) {
  .expert-card {
    height: 360px;
    grid-template-rows: 150px auto auto 1fr;
  }

  .expert-card img {
    width: 116px;
    height: 150px;
  }
}

@media (max-width: 760px) {
  .expert-card {
    height: auto;
    min-height: 0;
    grid-template-rows: auto;
  }

  .expert-card img {
    width: 150px;
    height: 195px;
  }

  .expert-card p:not(.expert-role) {
    margin-top: 8px;
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .experts-section {
    min-height: auto;
    padding: 68px 0;
    overflow: visible;
  }

  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expert-card {
    height: 360px;
  }

  .expert-card img {
    height: 165px;
  }
}

@media (max-width: 760px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }

  .expert-card {
    height: auto;
    min-height: 0;
  }

  .expert-card img {
    height: 220px;
  }

  .expert-card p:not(.expert-role) {
    margin-top: 8px;
  }
}

/* ===== PRODUCTS SECTION ===== */
.product-showcase-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(236, 213, 155, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(85, 119, 66, 0.06), transparent 30%),
    #f7f4ed;
}

.product-showcase-image-wrap {
  width: 100%;
  margin-top: 28px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(63, 51, 26, 0.08);
}

.product-showcase-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 760px) {
  .product-showcase-image-wrap {
    border-radius: 18px;
    margin-top: 20px;
  }
}

/* =========================================================
   14. SOD SUPPORT SECTION
   Purpose: SOD antioxidant explanation and high-activity support cards
   ========================================================= */

.sod-support-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 54px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(236, 213, 155, 0.16), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(85, 119, 66, 0.07), transparent 28%),
    var(--soft-cream);
  overflow: hidden;
}

.sod-support-grid {
  min-height: calc(100vh - var(--header-height) - 108px);
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 34px;
  align-items: center;
}

.sod-intro-image-card,
.sod-support-image-card {
  border-radius: 28px;
  /* overflow: hidden; */
  /* background: rgba(255, 255, 255, 0.88); */
  /* border: 1px solid rgba(200, 147, 53, 0.16); */
  box-shadow: 0 20px 44px rgba(63, 51, 26, 0.08);
}

.sod-intro-image-card img,
.sod-support-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.sod-intro-image-card {
  max-width: 360px;
  justify-self: end;
}

.sod-support-image-card {
  max-width: 820px;
  justify-self: start;
}

/* Height safety */
@media (max-height: 820px) and (min-width: 1181px) {
  .sod-support-section {
    padding: 36px 0;
  }

  .sod-support-grid {
    min-height: calc(100vh - var(--header-height) - 72px);
    gap: 28px;
  }

  .sod-intro-image-card {
    max-width: 300px;
  }

  .sod-support-image-card {
    max-width: 720px;
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .sod-support-section {
    min-height: auto;
    padding: 70px 0;
  }

  .sod-support-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sod-intro-image-card,
  .sod-support-image-card {
    justify-self: center;
  }

  .sod-intro-image-card {
    max-width: 420px;
  }

  .sod-support-image-card {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .sod-support-section {
    padding: 56px 0;
  }

  .sod-intro-image-card,
  .sod-support-image-card {
    border-radius: 20px;
  }
}

/* =========================================================
   IMPROVEMENT ISSUES INFOGRAPHIC SECTION
   Purpose: Displays the DoGood improvement issues infographic.
   Placement: Below SGS Proof section.
========================================================= */

.improvement-image-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(236, 213, 155, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(85, 119, 66, 0.06), transparent 30%),
    #f7f4ed;
  padding: 70px 0;
}

.improvement-image-wrap {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 46px rgba(63, 51, 26, 0.1);
  border: 1px solid rgba(200, 147, 53, 0.16);
}

.improvement-image {
  width: 100%;
  height: 800px;
  display: block;
}

@media (max-width: 760px) {
  .improvement-image-section {
    padding: 52px 0;
  }

  .improvement-image-wrap {
    border-radius: 18px;
  }
}

/* Legacy science, ingredients, and benefits cards if still used */
.science-section,
.ingredients-section,
.benefits-section,
.how-section,
.quote-section,
.offer-section,
.faq-section,
.final-cta-section {
  position: relative;
}

.science-section::before,
.ingredients-section::before,
.benefits-section::before,
.how-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 46%, rgba(200, 147, 53, 0.08) 47%, transparent 49%),
    repeating-conic-gradient(from 0deg, rgba(200, 147, 53, 0.045) 0deg 14deg, transparent 14deg 28deg);
  right: -120px;
  top: 60px;
  pointer-events: none;
}

.science-grid,
.ingredient-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.science-card,
.ingredient-card,
.benefit-card {
  position: relative;
  z-index: 1;
  padding: 34px;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.science-card:hover,
.ingredient-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.science-card h3,
.ingredient-card h3,
.benefit-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 12px;
}

.science-card p,
.ingredient-card p,
.benefit-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.highlight-card {
  background:
    linear-gradient(145deg, rgba(47, 71, 40, 0.96), rgba(85, 119, 66, 0.93)),
    radial-gradient(circle at top right, rgba(236, 213, 155, 0.26), transparent 40%);
  border-color: rgba(236, 213, 155, 0.26);
}

.highlight-card h3,
.highlight-card p {
  color: var(--white);
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.75);
}

.highlight-card strong {
  color: var(--gold-light);
}

.ingredient-number {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 42px;
}

/* =========================================================
   6 BENEFITS OF ENZYME SUPPORT SECTION
   Purpose: Explains the six major benefits of replenishing
   compound enzymes.
========================================================= */

.enzyme-benefits-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(236, 213, 155, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(85, 119, 66, 0.06), transparent 30%),
    #f7f4ed;
  padding: 76px 0 66px;
  overflow: hidden;
}

.enzyme-benefits-container {
  max-width: 1180px;
}

.enzyme-benefits-heading {
  max-width: 920px;
  margin: 0 auto 4px;
  text-align: center;
}

.enzyme-benefits-heading h2 {
  color: var(--green-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.enzyme-benefits-heading h2::first-letter {
  color: var(--gold);
}

.enzyme-benefits-heading p {
  color: #20251f;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 650;
}

.enzyme-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}

.enzyme-benefit-card {
  display: grid;
  grid-template-columns: 48px 1fr 118px;
  gap: 18px;
  align-items: center;
  min-height: 148px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 147, 53, 0.18);
  box-shadow: 0 14px 30px rgba(63, 51, 26, 0.08);
}

.enzyme-benefit-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.3), transparent 30%),
    linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(200, 147, 53, 0.18);
}

.enzyme-benefit-copy h3 {
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 6px;
}

.enzyme-benefit-copy p {
  color: #20251f;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 600;
}

.enzyme-benefit-icon {
  height: 86px;
  padding-left: 20px;
  border-left: 1px solid rgba(200, 147, 53, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.enzyme-benefit-icon img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.enzyme-benefits-footer {
  width: fit-content;
  max-width: 860px;
  margin: 20px auto 0;
  padding: 16px 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(200, 147, 53, 0.16);
  box-shadow: 0 14px 30px rgba(63, 51, 26, 0.07);
  display: flex;
  align-items: center;
  gap: 14px;
}

.enzyme-benefits-leaf {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.enzyme-benefits-footer p {
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
}

@media (max-width: 980px) {
  .enzyme-benefits-grid {
    grid-template-columns: 1fr;
  }

  .enzyme-benefit-card {
    grid-template-columns: 58px 1fr 100px;
  }
}

@media (max-width: 640px) {
  .enzyme-benefits-section {
    padding: 58px 0;
  }

  .enzyme-benefits-heading h2 {
    font-size: 2.3rem;
  }

  .enzyme-benefits-heading p {
    font-size: 0.95rem;
  }

  .enzyme-benefit-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .enzyme-benefit-number {
    margin: 0 auto;
  }

  .enzyme-benefit-icon {
    border-left: none;
    border-top: 1px solid rgba(200, 147, 53, 0.22);
    padding-left: 0;
    padding-top: 16px;
  }

  .enzyme-benefits-footer {
    border-radius: 24px;
    align-items: flex-start;
  }
}

/* =========================================================
   BODY CONDITIONING PLANS SECTION
   Purpose: Package selection section before FAQ
========================================================= */

.plan-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 46px 0 42px;
  background:
    radial-gradient(circle at 50% 8%, rgba(236, 213, 155, 0.2), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(85, 119, 66, 0.07), transparent 28%),
    var(--soft-cream);
  overflow: hidden;
}

.plan-heading {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
}

.plan-heading h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--green-dark);
  font-size: clamp(1.5rem, 4.6vw, 3.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

.plan-heading p:not(.section-label) {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.45;
  max-width: 780px;
  margin: 0 auto;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-height: 520px;
  padding: 20px 20px 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(249, 244, 232, 0.94));
  border: 1px solid rgba(200, 147, 53, 0.22);
  box-shadow: 0 14px 30px rgba(63, 51, 26, 0.09);
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.plan-card-featured {
  border: 3px solid rgba(201, 154, 63, 0.7);
  box-shadow: 0 18px 42px rgba(201, 154, 63, 0.18);
}

.plan-duration {
  width: fit-content;
  min-width: 142px;
  margin: 0 auto 14px;
  padding: 8px 22px;
  border-radius: 10px;
  border: 1px solid rgba(201, 154, 63, 0.55);
  background: rgba(255, 253, 247, 0.8);
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.plan-product {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.plan-product img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(63, 51, 26, 0.12));
}

.plan-card h3 {
  color: var(--green-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-boxes {
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-price {
  color: var(--green-dark);
  font-size: 1.38rem;
  line-height: 1.15;
  font-weight: 900;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 154, 63, 0.38);
  margin-bottom: 4px;
}

.plan-value {
  color: #827b6e;
  font-size: 0.86rem;
  font-weight: 650;
  margin-bottom: 8px;
}

.plan-description {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.42;
  min-height: 58px;
  margin-bottom: 14px;
}

.plan-benefits {
  list-style: none;
  display: grid;
  gap: 8px;
  text-align: left;
  margin: 0 0 18px;
  padding: 0;
}

.plan-benefits li {
  position: relative;
  color: #4d544a;
  font-size: 0.9rem;
  line-height: 1.25;
  padding-left: 24px;
  font-weight: 650;
}

.plan-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #698859;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.plan-btn {
  margin-top: auto;
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #174b37, #0f3c2d);
  color: #fff;
  border: 1px solid rgba(236, 213, 155, 0.5);
  box-shadow:
    inset 0 0 0 2px rgba(236, 213, 155, 0.18),
    0 12px 24px rgba(47, 71, 40, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.plan-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 2px rgba(236, 213, 155, 0.22),
    0 18px 32px rgba(47, 71, 40, 0.2);
}

.plan-btn-gold {
  background: linear-gradient(135deg, #b7832f, #d2a144);
}

.plan-ribbon {
  position: absolute;
  top: 0;
  right: 18px;
  width: 70px;
  padding: 12px 8px 18px;
  background: linear-gradient(180deg, #164b37, #0d3729);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
  z-index: 3;
}

.plan-ribbon::before {
  content: "★";
  display: block;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 5px;
}

.plan-ribbon-green::before {
  content: "♛";
}

.plan-best-value {
  position: absolute;
  top: 0;
  right: 18px;
  width: 82px;
  padding: 12px 8px 20px;
  background: linear-gradient(180deg, #d4a142, #a87525);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 84%, 0 100%);
  z-index: 3;
}

.plan-best-value::before {
  content: "♛";
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.plan-info-strip {
  width: min(100%, 980px);
  margin: 22px auto 0;
  padding: 14px 22px;
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.84);
  border: 1px solid rgba(200, 147, 53, 0.24);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-info-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  border-right: 1px solid rgba(201, 154, 63, 0.34);
}

.plan-info-item:last-child {
  border-right: none;
}

.plan-info-item span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 154, 63, 0.5);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.plan-info-item p {
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.25;
}

.plan-info-item strong {
  color: var(--green-dark);
}

.plan-bottom-note {
  margin-top: 14px;
  text-align: center;
  color: var(--green-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Height safety */
@media (max-height: 820px) and (min-width: 1181px) {
  .plan-section {
    padding: 30px 0 28px;
  }

  .plan-heading {
    margin-bottom: 18px;
  }

  .plan-heading h2 {
    font-size: clamp(2.35rem, 3.8vw, 4.2rem);
    margin-bottom: 8px;
  }

  .plan-heading p:not(.section-label) {
    font-size: 0.95rem;
  }

  .plan-card {
    min-height: 450px;
    padding: 16px 16px 18px;
  }

  .plan-duration {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }

  .plan-product {
    height: 108px;
  }

  .plan-product img {
    max-height: 106px;
  }

  .plan-card h3 {
    font-size: 1.55rem;
  }

  .plan-boxes {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .plan-price {
    font-size: 1.12rem;
  }

  .plan-description {
    font-size: 0.78rem;
    min-height: 46px;
  }

  .plan-benefits {
    gap: 5px;
    margin-bottom: 12px;
  }

  .plan-benefits li {
    font-size: 0.78rem;
  }

  .plan-btn {
    min-height: 42px;
    font-size: 0.86rem;
  }

  .plan-info-strip {
    margin-top: 16px;
    padding: 10px 18px;
  }

  .plan-info-item span {
    width: 38px;
    height: 38px;
  }

  .plan-info-item p {
    font-size: 0.78rem;
  }

  .plan-bottom-note {
    font-size: 1rem;
    margin-top: 10px;
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .plan-section {
    min-height: auto;
    padding: 72px 0;
  }

  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card {
    min-height: 520px;
  }

  .plan-info-strip {
    grid-template-columns: 1fr;
  }

  .plan-info-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 154, 63, 0.26);
    padding-bottom: 12px;
  }

  .plan-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 760px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-product {
    height: 150px;
  }

  .plan-product img {
    max-height: 148px;
  }

  .plan-description {
    min-height: auto;
  }

  .plan-heading h2 {
    font-size: 2.65rem;
  }
}

/* =========================================================
   17. FAQ SECTION
   Purpose: accordion FAQ
   ========================================================= */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 28px rgba(63, 51, 26, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  border: none;
  background: transparent;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 1.35rem;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 26px 24px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--text-muted);
}

/* =========================================================
   FINAL CTA SECTION ALIGNMENT FIX
========================================================= */

.final-cta-section {
  background: #fffdf7;
  padding: 110px 0 120px;
}

.final-cta-box {
  width: min(100%, 780px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-box .section-label {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-box h2 {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.final-cta-box p {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.final-cta-box .primary-btn {
  margin-left: auto;
  margin-right: auto;
}

.disclaimer {
  margin-top: 32px !important;
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.52) !important;
}

/* =========================================================
   19. FOOTER
   ========================================================= */

.site-footer {
  padding: 48px 0;
  background: #1f271c;
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.footer-logo {
  width: 125px;
  height: auto;
  margin-bottom: 12px;
  filter: brightness(1.65);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* =========================================================
   20. REVEAL ANIMATION
   Purpose: scroll animation for elements controlled by script.js
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   SHARED SECTION NEXT BUTTON SPACING
   Purpose: Adds clean spacing above newly added section redirect buttons
   ========================================================= */

.section-next-action {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-next-action .primary-btn,
.section-next-action .secondary-btn {
  margin-top: 0;
}

/* When button comes directly after image/card content */
.product-showcase-image-wrap + .section-next-action,
.enzyme-loss-image-wrap + .section-next-action,
.improvement-image-wrap + .section-next-action,
.enzyme-benefits-container + .section-next-action {
  margin-top: 10px;
}

/* When button is inside grid-based sections */
.certification-action,
.sod-support-grid .section-next-action,
.experts-grid + .section-next-action,
.video-grid + .section-next-action,
.enzyme-problem-box + .section-next-action {
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 760px) {
  .section-next-action {
    margin-top: 10px;
  }

  .section-next-action .primary-btn,
  .section-next-action .secondary-btn {
    width: 100%;
    max-width: 360px;
  }
}

/* =========================================================
   21. RESPONSIVE STYLES
   Purpose: tablet and mobile layout behavior
   ========================================================= */

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 132px 1fr auto;
    gap: 22px;
  }

  .brand img {
    width: 104px;
  }

  .main-nav {
    gap: 19px;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .hero-grid {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .hero-feature-bar,
  .pain-symptom-grid,
  .guarantee-stat-bar,
  .video-grid,
  .experts-grid,
  .improvement-grid,
  .recovery-timeline,
  .science-deep-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-feature-card:nth-child(2) {
    border-right: none;
  }

  .pain-point-section {
    height: auto;
    min-height: auto;
    padding: 70px 0;
  }

  .pain-symptom-card {
    height: auto;
  }

  .pain-hero-content {
    width: min(100%, 660px);
  }

  .certification-grid,
  .certification-visual,
  .guarantee-two-column,
  .guarantee-grid,
  .science-deep-grid,
  .nobel-grid,
  .product-showcase-grid,
  .sgs-grid,
  .enzyme-intro-grid {
    grid-template-columns: 1fr;
  }

  .certification-copy {
    max-width: none;
  }

  .certification-doc-panel {
    max-width: 680px;
  }

  .guarantee-two-column {
    gap: 34px;
  }

  .guarantee-right {
    order: 2;
  }

  .guarantee-left {
    order: 1;
  }

  .guarantee-point-text h3 {
    font-size: 1.7rem;
  }

  .guarantee-point-text p {
    font-size: 1.05rem;
  }

  .body-operation-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .enzyme-problem-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .enzyme-problem-item {
    border-right: none;
    border-bottom: 1px solid rgba(200, 147, 53, 0.28);
    padding: 0 0 18px;
  }

  .enzyme-problem-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 86px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    grid-template-columns: 122px 1fr auto;
  }

  .brand img {
    width: 96px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-medium);
    display: grid;
    justify-content: stretch;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: block;
    padding: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .order-btn,
  .language-switcher {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 70px 0 64px;
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.86) 46%, rgba(255, 253, 247, 0.38) 100%),
      url("DoGood Packaging bg.png");
    background-size: cover;
    background-position: center;
  }

  .hero-grid,
  .two-column,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 20px;
  }

  .hero-content {
    max-width: 690px;
  }

  .hero-visual {
    display: none;
  }

  .science-grid,
  .ingredient-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 760px) {

  /* Improvement image section */
.improvement-image-section {
  overflow: hidden;
}

.improvement-image-wrap {
  display: flex;
  justify-content: center;
}

.improvement-image {
  width: 100%;
  max-width: 980px;
  height: auto;
  display: block;
}
  .improvement-image-wrap::-webkit-scrollbar {
    display: none;
  }

  .improvement-image-wrap {
    scrollbar-width: none;
  }

  .hero-title {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }
  
  .hero-icon-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: start;
  }

  .hero-icon-item {
    text-align: center;
  }

  .hero-icon-circle {
    width: 58px;
    height: 58px;
    margin: 0 auto 8px;
  }

  .hero-icon-circle span {
    font-size: 1.45rem;
  }

  .hero-icon-item p {
    font-size: 0.68rem;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }


  .hero-feature-bar,
  .science-grid,
  .ingredient-grid,
  .benefits-grid,
  .certification-logo-panel,
  .certification-doc-panel,
  .guarantee-stat-bar,
  .video-grid,
  .experts-grid,
  .improvement-grid,
  .recovery-timeline,
  .science-deep-cards,
  .body-operation-grid,
  .pain-symptom-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-trust {
    width: 100%;
    padding-left: 0;
    border-left: none;
    padding-top: 18px;
    border-top: 1px solid rgba(47, 71, 40, 0.18);
  }

  .hero-feature-bar {
    padding: 22px;
  }

  .hero-feature-card {
    border-right: none;
    padding-right: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(47, 71, 40, 0.12);
  }

  .hero-feature-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .pain-point-section {
    height: auto;
    min-height: auto;
    padding: 64px 0;
  }

  .pain-point-section::after {
    background-position: center;
  }

  .pain-point-section::before {
    background: linear-gradient(180deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 253, 247, 0.9) 58%, rgba(255, 253, 247, 0.55) 100%);
  }

  .pain-hero-content h2 {
    font-size: 2.2rem;
  }

  .pain-hero-lead {
    font-size: 1rem;
  }

  .pain-hero-body {
    font-size: 0.9rem;
  }

  .certification-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cert-doc-card {
    height: 240px;
  }

  .guarantee-section {
    padding: 70px 0 50px;
  }

  .guarantee-point-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guarantee-check-icon {
    margin-top: 0;
  }

  .guarantee-point-text h3 {
    font-size: 1.4rem;
  }

  .guarantee-point-text p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .guarantee-cta-btn {
    width: 100%;
    min-width: 0;
  }

  .guarantee-trust-line {
    align-items: flex-start;
  }

  .enzyme-system-heading h2 {
    font-size: 2.35rem;
  }

  .enzyme-section-kicker span,
  .body-operation-title span {
    width: 38px;
  }

  .enzyme-section-kicker p {
    font-size: 0.95rem;
  }

  .enzyme-intro-copy p {
    font-size: 1rem;
  }

  .enzyme-intro-copy strong {
    font-size: 1.15rem;
  }

  .enzyme-system-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .enzyme-system-icon {
    margin: 0 auto;
  }

  .body-operation-number {
    left: calc(50% - 108px);
  }

  .enzyme-problem-box {
    padding: 22px;
  }

  .enzyme-problem-heading {
    align-items: flex-start;
  }

  .enzyme-problem-heading h3 {
    font-size: 1.15rem;
  }

  .enzyme-problem-item {
    grid-template-columns: 58px 1fr;
  }

  .enzyme-problem-item img {
    width: 58px;
    height: 58px;
  }

  .timeline::before {
    left: 34px;
  }

  .timeline-item {
    grid-template-columns: 68px 1fr;
    gap: 18px;
  }

  .timeline-day {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
  }

  .timeline-content {
    padding: 22px;
  }

  .expert-card {
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    align-items: flex-start;
  }

}
@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand img {
    width: 90px;
  }

  .hero-section {
    padding-top: 56px;
  }

  .hero-tag {
    font-size: 0.98rem;
  }

  .hero-title {
    font-size: 3.1rem;
  }

  .hero-description {
    font-size: 0.96rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .section-copy h2,
  .offer-copy h2,
  .final-cta-box h2 {
    font-size: 2.55rem;
  }

  .info-card,
  .science-card,
  .ingredient-card,
  .benefit-card,
  .offer-card {
    padding: 26px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-day {
    width: 60px;
    height: 60px;
  }

  .quote-text {
    font-size: 2.65rem;
  }
}

/* =========================================================
   MOBILE LANGUAGE SWITCHER FIX
   Keep the language switcher visible beside the hamburger menu
   ========================================================= */
@media (max-width: 980px) {
  .header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .language-switcher {
    display: inline-flex !important;
    height: 38px;
    padding: 0 10px;
    border-left: none;
    border: 1px solid rgba(200, 147, 53, 0.28);
    border-radius: 999px;
    background: rgba(255, 253, 247, 0.92);
    font-size: 0.74rem;
  }

  .menu-toggle {
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    gap: 10px;
  }

  .language-switcher {
    height: 34px;
    padding: 0 8px;
    gap: 5px;
    font-size: 0.68rem;
  }

  .lang-globe {
    width: 15px;
    height: 15px;
  }

  .lang-caret {
    display: none;
  }
}

/* ================================
   WHATSAPP STICKY BUTTON
================================ */

.whatsapp-sticky {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-sticky:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.whatsapp-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.whatsapp-text {
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 640px) {
  .whatsapp-sticky {
    right: 16px;
    bottom: 16px;
    padding: 11px 15px 11px 12px;
    font-size: 14px;
  }

  .whatsapp-icon-img {
    width: 26px;
    height: 26px;
  }
}