/* =========================================================
   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: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #343a31;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.15;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 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: 18px;
  right: 18px;
  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: 108px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .brand img {
    width: 88px;
  }

  .main-nav {
    gap: 2px;
  }

  .main-nav a {
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .order-btn {
    width: 116px;
    height: 50px;
    font-size: 0.72rem;
    padding: 0 14px;
  }

  .language-switcher {
    padding-left: 12px;
    font-size: 0.76rem;
  }
}

@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;
}

/* ---------- 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;
  }
}

/* =========================================================
   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;
  }
}
